‎2013 May 02 12:35 PM
Hi,
I want to transform a XML into abap and was looking for a tutorial. There they use:
gt_result_xml TYPE abap_trans_resbind_tab and gs_result_xml TYPE abap_trans_resbind.
My Problem is, the TYPE doesn't exist in our SAP-System. Sometimes in the tutorials there is srcbind instead of resbind, but it also doesn't exist.
Can you help me in getting the right Data Type or do you know in which SAP Version this TYPE was implemented?
Thanks,
regards, Florian
‎2013 May 02 6:16 PM
Florian,
The type abap_trans_resbind is present in the types pool ABAP.
Declare the statement at the top of your program and it should work.
TYPE-POOLS abap.
You can also look at the structure of this type pool in SE11.
SE11 -> TYPE GROUP -> ABAP.
this should solve your issue.
Thanks,
Vikram.M
‎2013 May 02 6:16 PM
Florian,
The type abap_trans_resbind is present in the types pool ABAP.
Declare the statement at the top of your program and it should work.
TYPE-POOLS abap.
You can also look at the structure of this type pool in SE11.
SE11 -> TYPE GROUP -> ABAP.
this should solve your issue.
Thanks,
Vikram.M
‎2013 May 03 3:19 AM
Hi,
Yes you have to include the TYPE-POOL ABAP for that to work
Cheers,
Arindam
‎2013 May 03 9:40 AM