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

for datasets

Former Member
0 Likes
371

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
356

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

2 REPLIES 2
Read only

Azeemquadri
Contributor
0 Likes
356

Use

open dataset for input in text mode encoding default.

you can have your itab with string as your structure.

Read only

Former Member
0 Likes
357

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