‎2006 Dec 28 10:30 PM
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
‎2006 Dec 29 1:24 AM
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_e1adrm4Please check...
Regards
Eswar