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

unicode

Former Member
0 Likes
275

How to convert this code to unicode compliance

FORM fill_e1adrm4 TABLES idoc_data structure edidd

USING data TYPE tr_idoc_shpmnt_indata

p_parvw.

i just want to declare idoc_data of type edidd.

any help is appreciated

thanks

sonali

1 REPLY 1
Read only

Former Member
0 Likes
244

Hi Sonali

I guess structure EDIDD is not giving the problem, as i have tested this in my system with the below code:

data: idoc_data type table of edidd.

perform fill_e1adrm4 tables idoc_data.

*&---------------------------------------------------------------------*
*&      Form  fill_e1adrm4
*&---------------------------------------------------------------------*
FORM fill_e1adrm4  TABLES  idoc_data STRUCTURE edidd.


ENDFORM.                    " fill_e1adrm4

Please check...

Regards

Eswar