Hi Sandeep,
The best way is BDC only as Archer said.
Else another option, you have to create a report program with all these parameters a and use SUBMIT.
For BDC...Follow these steps..
DATA : it_bdc type table of bdcdata,
wa_bdc type bdcdata.
wa_bdc-PROGRAM = 'SAPLSLG3'.
wa_bdc-DYNPRO = '100'.
wa_bdc-DYNBEGIN = 'X'.
Append wa_bdc to it_bdc.
clear wa_bdc.
wa_bdc-FNAM = 'BALHDR-OBJECT'.
wa_bdc-FVAL = 'abc'.
append wa_bdc to it_bdc.
Repeat the bold code for rest of fields..
CALL TRANSACTION 'SLG1' WITH it_bdc.