Application Development 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: 

Fetch data from IDoc

Former Member
0 Kudos

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

former_member203501
Active Contributor
0 Kudos

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

former_member203501
Active Contributor
0 Kudos

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

we can get the data into a single field sdata only

0 Kudos

check table EDSAPPL

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

Thanks All