cancel
Showing results for 
Search instead for 
Did you mean: 

Script problem

laxman_sankhla3
Participant
0 Kudos

hi i am getting data into ABAP programe i want to call that into sapscript. how i can call that ABAP internal table data.

thanks.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi...

Use Perform and endperform or...

Loop that internal table in ABAP and call write_form and the pass the values...

Regards,

sg

Former Member
0 Kudos

hi

u have to call ur script in driver program , by using

OPEN_FORM, WRITE_FORM , CLOSE_FORM.

and directly put value from ur itab to script in b/w && l

like if u want to display ITAB-EMPNAME in script .

then in script write as &itab-empname& and call that script in ur driver program .

place WRITE_FORM in LOOP at ITAB.

ENDLOOP.

reward if helpful.

Former Member
0 Kudos

Hi,

1.You can Pass the values From driver program to Script.

2.In the script,directly you can call the variables like &itab-kunnr&.

3.You can put the loop on that internal table,within the loop ,write write_form.

Regards,

Shiva Kumar