Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Problem with trans_resbind TYPE

Former Member
0 Likes
684

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
593

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

3 REPLIES 3
Read only

Former Member
0 Likes
594

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

Read only

arindam_m
Active Contributor
0 Likes
593

Hi,

Yes you have to include the TYPE-POOL  ABAP for that to work

Cheers,

Arindam

Read only

Former Member
0 Likes
593

Thank you!!

I never used this before 🙂

Regards,

Florian