cancel
Showing results for 
Search instead for 
Did you mean: 

Graphical Mapping For createif & If then else

Former Member
0 Kudos

Hi,

I have a requirement where I have to create node based upon the below mentioned conditions.

In BAPI  return structure, we have Message ID, Message Type, Message Number  and so on...

In response, return node has to be created only when

1) Messge Type is S and message Number is 311

2) Message Type is E

And for the rest, return node need not get created in response. How to achieve this requirement with createif & If then else functions.

Please help on this..

Thanks,

Rajasekar . M

Accepted Solutions (0)

Answers (2)

Answers (2)

azharshaikh
Active Contributor
0 Kudos

Hi,

As suggested by Suman..the following sud help to achieve the results:

Regards,

Azhar

Former Member
0 Kudos

Thank you suman & Azhar..

I achieved like this.

suman_saha
Contributor
0 Kudos

Hi,

MessageType Equals Constant[S] AND Message Number Equals Constant[311]

OR MessageType Equals Constant[E]

CreateIf ReturnNode

Suman