2008 May 30 2:23 PM
hi,
i have the following message interface defined in XI
aaa - element
bbb - element - 1: unbound
ccc - element
basically bbb is like an internal table holding list of values (i.e. ccc )
so in in my abap proxy class program i have to loop thru the values in bbb and store in a local internal table. can anyone give the sample code for looping ? how do i access the values in bbb ?
thks
2008 May 30 2:39 PM
Hi,
goto transaction sproxy and goto the structure tab there you can see the path you need to follows until you reach the table bbb
bbb can be accessed as follows :
input -(message_type)-recordset-bbb
message type is the inbound message type for which you created a proxy in t-code sproxy.
so you can directly loop at this as follows :
loop at input-(message_type)-recordset-bbb
endloop.
hi,
i have the following message interface defined in XI
aaa - element
bbb - element - 1: unbound
ccc - element
basically bbb is like an internal table holding list of values (i.e. ccc )
so in in my abap proxy class program i have to loop thru the values in bbb and store in a local internal table. can anyone give the sample code for looping ? how do i access the values in bbb ?
thks
2008 May 30 2:39 PM
Hi,
goto transaction sproxy and goto the structure tab there you can see the path you need to follows until you reach the table bbb
bbb can be accessed as follows :
input -(message_type)-recordset-bbb
message type is the inbound message type for which you created a proxy in t-code sproxy.
so you can directly loop at this as follows :
loop at input-(message_type)-recordset-bbb
endloop.
2008 May 30 3:10 PM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |