Application Development 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: 

how to load database records into variants...

former_member181959
Contributor
0 Kudos

Hi….

I am working with eCATT tool. Can anyone please tell me,

How to create variants dynamically?

And how to load database table into variants (variant per each record)?

Regards.

Prasad.

1 REPLY 1

christian_wohlfahrt
Active Contributor
0 Kudos

Hi Prasad!

I had a look into test script DEMO, there are some coding examples:


GETTAB ( T100 , T100_1 ).
LOG (TEXT).
LOG (T100_PAR).
TEXT2 = T100_PAR-TEXT.
TEXT2 = TEXT.
************************************************************************************
* That is inline ABAP

ABAP.
DATA: XYZ(4).
XYZ = 'ABCD'.
ENDABAP.

Regards,

Christian