cancel
Showing results for 
Search instead for 
Did you mean: 

Error code occurs while doing copy data from form to table

Former Member
0 Kudos

Error Code: -V: RABAX_STATE -e:UNCAUGHT_EXCEPTION

The ABAP call stack was:

Method: RAISEELEMENT_NOT_FOUND of program CL_WDR_CONTEXT_NODE

Accepted Solutions (0)

Answers (7)

Answers (7)

Former Member
0 Kudos

Hi,

Then you can check whether you have any empty nodes or not .If you have any empty nodes then sometimes it leads to this kind of error.

Also you check whether you set the bound UI elements invisible.

Thanks and regards,

Dhaya.G

Former Member
0 Kudos

Hi,

There may be some error regarding your cardinality.Check it once and also please inform where exactly

were you getting the error by debugging.

Former Member
0 Kudos

Hi,

Check the names of all the references used, and please check the mapping and binding again.

Element no found may be coming because of the same reasons only.

Regards

Suraj

Former Member
0 Kudos

Hi,

U have did some mistakes during mapping or generating the code.So pls check on that.

Karthik.R

Former Member
0 Kudos

Hi,

The error implies that you are trying to access the lead selection of a context node which is not set.

You just set the Initialization Lead Selection flag of that context node, so the lead selection will always be set if the node contains elements.

Thanks and regards,

Dhaya.

Former Member
0 Kudos

Hi

This is caused due to some error in program.Go to ST22 and check the errors in code.If u cant clear that post the code.

Thanks

Karthik.R

former_member199125
Active Contributor
0 Kudos

there was an error in your program lines

Please analyze the error and you can found the exact line of error in ST22 tcode

Once you open the st22, select your error and double click on it, then in left hand panel select " Source code extract".

then you wiil see your prg lines...

you will see the arrow like >>>>> in front of exact line error.

As per your errror seems, you have missed the node declaration part , some like that..any how check in st22

Regards

Srinivas

Former Member
0 Kudos

method RAISEELEMENT_NOT_FOUND.

......

......

else.

raise exception type cx_wd_context exporting textid = cx_wd_context=>ELEMENT_NOT_FOUND n

endif..

................

endmethod

this code is inbuild how i can set cx_wd_context_node

please tell me