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

Fetch data from IDoc

Former Member
0 Likes
1,349

Hi All

I have to fetch data from idoc means the values of the idoc fields.

In table EDIDD, all the data is getting stored in single field "SDATA".

Is there any table in which records stored as individual?

Regards.

1 ACCEPTED SOLUTION
Read only

former_member203501
Active Contributor
0 Likes
1,090

i think there is no table which can display like this ...

we can get the data into a single field sdata only

5 REPLIES 5
Read only

former_member203501
Active Contributor
0 Likes
1,091

i think there is no table which can display like this ...

we can get the data into a single field sdata only

Read only

0 Likes
1,090

check table EDSAPPL

Read only

Former Member
0 Likes
1,090

Hi Nikhil,

All the idoc data is stored in SDATA. As per my knowledge there is no such table which holds record individually.We need to split the data by our own by using work area and Move statements.

Regards

Vinod

Read only

Former Member
0 Likes
1,090

Hi Nikhil,

Unfortunaltely there is no table which stores value for individual segment field level, the reason is clear that How can SAP define such table it will require Coulmns for each Segment field, Even if logically its not making sense.

You can read the Segment structure programatically and then Map it to the Values stored in EDIDD (EDID4).

I think we have to bear with this pain

Best Luck....

Regards

Shital

Read only

Former Member
0 Likes
1,090

Thanks All