Hi ,
iam working on an requirement , user enters the data in selection screen , output will display with records , i added custom pushbutton on application toolbar , now the user enters the button a background job should be created and remaining logic should be executed ( doing rate change for customer).
idid logic for displaying report using ALV GRID and also added the push button then my logic is as below.
SET PF-STATUS 'EXECUTE'.
CASE SY-UCOM.
WHEN 'EXECUTE'.
PERFORM RATE CHANGE,.
_____________________
FORM RATE CHANGE.
..............
ENDFORM.
i know FM open-job, submit ,close_job should be called for automatic background.
my question when i need to call these FM's, because after user pressing the button , using the final itab the remaining logic should execute ,
do i need to create another report and keep my additional logic and call that from first report. or can i do everything in same report.
please help with order of the logic i should call.
thanks
NK
Add comment