‎2007 Jun 04 12:06 PM
hi all,
can anyone please let me know how to declare an internal table with out a structure.my requirement is i have a flat file with many disorders and now i am supposed to send that file to the application server and i should not use cg3z transaction.
please let me know.
thanks in advance.
sultan.s
‎2007 Jun 04 12:14 PM
Hi,
Data: Begin of W_DATA,
Data(200) Type C,
End Of W_Data.
Data: T_DATA Like Standard Table of W_DATA.
Now Use GUI_UPLOAD To Get the Data into this structure less table and pass the same to Application layer using OPEN DATASET..TRANSFER, CLOSE
Santhosh
‎2007 Jun 04 12:13 PM
Use
open dataset for input in text mode encoding default.
you can have your itab with string as your structure.
‎2007 Jun 04 12:14 PM
Hi,
Data: Begin of W_DATA,
Data(200) Type C,
End Of W_Data.
Data: T_DATA Like Standard Table of W_DATA.
Now Use GUI_UPLOAD To Get the Data into this structure less table and pass the same to Application layer using OPEN DATASET..TRANSFER, CLOSE
Santhosh