cancel
Showing results for 
Search instead for 
Did you mean: 

Get BPM Container Variable?

Former Member
0 Kudos

Is it possible to get the value of a BPM simple type container variable at Mapping time?

Accepted Solutions (1)

Accepted Solutions (1)

udo_martens
Active Contributor
0 Kudos

Hi Ruben,

you can use a trick:

- datatype: extend the source container with one field (your simple type)

- datatype: make all fields optional (0-1 or 0-unbounded)

- process: create a new multiline container from this type

- tranformation: fill the one line container with simple type

- container operation: append to multiline

- tranformation: fill the one line container with your message

- container operation: append to multiline

- transformation: merge the multiline to single-line

- transformation: Now you have the value of your simple type in an additional field

Regards,

Udo

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Udo, my BPM is as follow:

JDBCBPM(async), BPMRFC(sync), BPM--JDBC(async)

I split the incoming message. In a ForEach Block I execute a BAPI and expect a Notice number back, the message that I use to create the Notice has a secuence value that I need to update a table, despite I use the same container variable to send and receive from the RFC I lose the secuence value how can I adapt your procedure in order to keep the value?