‎2010 May 12 10:49 AM
Hi,
I make a call to FDTA transaction, enhance 2 select option and go to the next screen.
the problem is that id did not select option so I can not use the SET statement parameter id.
Moderator message: please use a more descriptive subject line next time.
Edited by: Thomas Zloch on May 12, 2010 12:46 PM
‎2010 May 12 11:07 AM
help
Moderator message: please be more patient, this is not your personal help desk.
Edited by: Thomas Zloch on May 12, 2010 12:46 PM
‎2010 May 12 11:07 AM
help
Moderator message: please be more patient, this is not your personal help desk.
Edited by: Thomas Zloch on May 12, 2010 12:46 PM
‎2010 May 12 11:14 AM
Hi,
try:
CALL TRANSACTION 'FDTA' AND SKIP FIRST SCREEN. "Without parameters
or
CALL TRANSACTION 'FDTA' USING BDCDATA. "With parameters in BDCDATA.
Regards, Dieter
‎2010 May 12 11:16 AM
using CALL TRANSACTION 'FDTA' USING BDCDATA.
you can go on to the next screen?
‎2010 May 12 11:41 AM
Hi,
yes you can go to the next screen. Fill the BDCDATA correct.
With help for BDCDATA use SHDB.
Regards, Dieter
‎2010 May 12 11:09 AM
If there is no parameter id set for a field, use SHDB recording to fill the field and use CALL TRANSACTION ... BDCDATA
Vikranth
‎2010 May 28 11:50 AM
Hi Guru's,
Am facing error while executing Call Transaction Program. The message is IT_ITAB is not an internal table.
Sample of program is :
Call Function 'GUI_UPLOAD'
Exporting
FileName = 'c:\call.txt
filetype = 'ASC'
Separator = 'X'
tables
Data_tab = 'IT_ITAB'.
Thanks in advance.
‎2010 May 28 12:17 PM
Hi Sarvesh,
I believe you have declared it_tab as a structure instead of table.
You need to declare IT_TAB as internal table:
DATA: it_tab type standard table of ty_tab.
where: you can define ty_tab according to ur requirement.
Hope you find it useful.
Regards,
Pragya
‎2010 May 28 12:20 PM
hi,
do:
Call Function 'GUI_UPLOAD'
Exporting
FileName = 'c:\call.txt
filetype = 'ASC'
Separator = 'X'
tables
Data_tab = IT_ITAB.
Regards, Dieter