2007 Aug 24 8:15 AM
Hi Experts,
how to prepopulate the default values from a table on to the screen for a cotract account while creating it using transaction caa1.
regards,
surya.
2007 Aug 24 8:18 AM
2007 Aug 24 8:59 AM
Hi thanks for reply,
could u plz give me solution descriptively
regards,
surya
2007 Aug 24 9:21 AM
hi,
use SET PARAMETERS for filling up of default values for any transaction.
Here is the sample code.
********************
*----
at line-selection.
*----
get cursor field c_field.
if c_field = 'SUM_IT-BELNR'.
set parameter id 'GJR' field sum_it-gjahr.
set parameter id 'BUK' field sum_it-bukrs.
set parameter id 'BLN' field sum_it-belnr.
call transaction 'FB03' and skip first screen.
endif.
*********************
if helpful reward some points.
with regards,
Suresh Aluri.