cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP: How to read iDoc table edid4-sdata field (LCHR data type)

Former Member
0 Kudos

Hi all,

Is there any way to read iDoc table edid4-sdata field (LCHR data type)? Thanks.

Accepted Solutions (0)

Answers (1)

Answers (1)

VijayCR
Active Contributor

Use FM

IDOC_READ_COMPLETELY

Sandra_Rossi
Active Contributor
0 Kudos

EDID4 being a clustered table (in EDI40), as you can see in transaction SE11, its content is compressed and accessible only via EXPORT TO and IMPORT FROM DATABASE ABAP statements (it's what does IDOC_READ_COMPLETELY, as mentioned by Vijaya, one IDoc at a time).

For more information, cf Export/Import Tables (ABAP doc 7.51) and SAP Library: Pooled and Cluster Tables

Former Member
0 Kudos

Hi Vijaya / Rossi,

Do you have an example / sample code for the usage of IDOC_READ_COMPLETELY? Thanks

Sandra_Rossi
Active Contributor
0 Kudos

If you search the web, there are many examples.