Hi guys,
I need help on the follow.
1. currently we have a transaction "T1"that can be used to manully upload the parts claim data one by
one.This is a module pool program.
The selection screen has 3 fields .Comp, Org, Plant.After the value for these fields are entered
we go to screen 200 where user can enter data about the parts claimed and thus can save these
data (record) after certain check into database.
2. Now instead the user manually entering data on to the screen 200 of the t'code"T1" in point 1),we
have the bulk data eg(100) records(part claim) be entered gathered into an internal table .Now I
want enter these 100 records through screen 200 from internal table & save into data base .
My question is :In my new report.
1. I am gathering data in internal table.
2. Using
CALL TRANSACTION 'T1' AND SKIP FIRST SCREEN.
SET PARAMETER ID 'BUK' FIELD company.
SET PARAMETER ID 'VKO' FIELD ORG.
SET PARAMETER ID 'WRK' FIELD PLANT.
3. After this I will get the sceen 200.Now how do I skip this screen and directly take each record from
my internal table into the internal table of T'oce "T1" and proceed the checks and save the data to
data base?
Do giude.