Hi ,
I am running a small report.
Now i enter some values on the selection screen.
And the results i am able to display in an ALV using the FM Reuse_alv_grid_display.
I am trying to have a Push Button & i have added the following code in my program.
REPORT Z_TABLE_UPLOAD.
SET PF-STATUS 'XYZ'.
LL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
I_CALLBACK_PROGRAM = SY-REPID
IT_FIELDCAT = WA_FIELD
I_GRID_TITLE = 'ZTDA DETAILS'
I_CALLBACK_PF_STATUS_SET = 'XYZ'
TABLES
T_OUTTAB = IT_ZTDA[]
EXCEPTIONS
PROGRAM_ERROR = 1
OTHERS = 2.
I have added a push button in XYZ.
But i am not getting any push button in the application toolbar.
pls suggest.
regards,
Kevin.