cancel
Showing results for 
Search instead for 
Did you mean: 

CX_WDR_ADAPTER_EXCEPTION

Former Member
0 Kudos

Hello Dear Gurus,

Got an unusual dump in my Webdynpro ABAP program. I'm trying to display the Header and Line items of a corresponding Material Document Number and the Fiscal Year. If both values are found in the Database then the corresponding data will be displayed.

If not present I've customized it to throw an error message. But instead, my program is giving me the below mentioned error when I execute if there is no value exists in both the fields. The Value mapping for the context attribute is correctly done. Still it says

Adapter error in &VIEW_ELEMENT_TYPE& "IFLD1" of view "ZSY_MIGO_PROJ.MAIN":
Context binding of property VALUE cannot be resolved: Node MAIN.1.DETAILS does
not contain any elements

Kindly requested to provide me the necessary solution for the same.

Regards,

-Syed.

Accepted Solutions (0)

Answers (2)

Answers (2)

abhimanyu_lagishetti7
Active Contributor
0 Kudos

It says the Details node doesnot contains any Elements.

make sure your bind_table method is not receiving empty table.

Abhi

Former Member
0 Kudos

Hi Abhi,

It is not empty.

LO_ND_DETAILS->BIND_TABLE( LS_DETAILS ). And I could see the details in the table LS_DETAILS in debugg mode.

Regards,

-Syed.

Former Member
0 Kudos

Hi Wahid,

Please check the node definations again. Also all the declarations and binding again.

If you have done any modifications for the node then please update it everywhere.

Hope this helps.

Thanks,

Tejaswini

Former Member
0 Kudos

hi

pls check with the cardinality 0..n and selection 0..1 of the node Main , which contains the attributes .

also check if the attributes are binded properly .

Former Member
0 Kudos

Hi Amit,

The Cardinality to be checked is for node DETAILS - it is 0..n and 0..1. All the attributes are properly binded.

Regards,

-Syed.

Former Member
0 Kudos

Hi All,

Solved by myself. The cardinality has to be 1..n

Thanks,

-Syed.