cancel
Showing results for 
Search instead for 
Did you mean: 

Dynamic Type Conflict

Former Member
0 Kudos

I have a context node called ERROR_MESSAGE, with a single attribute

called MSG of type BAPI_MSG.

I encounter an error stating "Dynamic type conflict when assigning references" at the

following point in my code:

lo_nd_error_message->bind_elements( error_msgs )

error_msgs is defined as follows:

Data: error_messages type standard table of bapi_msg.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Try to use the code wizard, and get that table content and use it in BIND_ELEMENTS...

Answers (2)

Answers (2)

Former Member
0 Kudos

I get the same result when using bind_table

aaron_morden2
Contributor
0 Kudos

What is the Cardinality of your context node ERROR_MESSAGE? Make sure that it is 0...n or 1...n.

Former Member
0 Kudos

Try with this :

lo_nd_error_message->bind_table( error_msgs )