2008 Jan 01 9:11 AM
Hi Experts,
In ALV report for FM we use PF_STATUS_SET.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_pf_status_set = 'PF_STATUS_SET'
For each time we have to go in se41 and copy the standard screen full screen for :
FORM pf_status_set USING extab TYPE slis_t_extab.
SET PF-STATUS 'STD' EXCLUDING extab.
ENDFORM. "pf_status_set
Is there any standard procedure to do this in ALV without copy screen in se41 each time?
Yusuf
2008 Jan 02 7:26 AM
Hi,
I think you want the program can use a default status bar with out creating threw se41
then use the syntax-
SET PF_STATUS SPACE.
here there is no need to create threw se41 i think.
Edited by: vijay Mekala on Jan 2, 2008 8:26 AM
Edited by: vijay Mekala on Jan 2, 2008 8:27 AM
Edited by: vijay Mekala on Jan 2, 2008 8:29 AM
Hi Experts,
In ALV report for FM we use PF_STATUS_SET.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_pf_status_set = 'PF_STATUS_SET'
For each time we have to go in se41 and copy the standard screen full screen for :
FORM pf_status_set USING extab TYPE slis_t_extab.
SET PF-STATUS 'STD' EXCLUDING extab.
ENDFORM. "pf_status_set
Is there any standard procedure to do this in ALV without copy screen in se41 each time?
Yusuf
2008 Jan 01 11:33 AM
hi,
ya if u want ALV tool bar along with ur added buttons than u need to do this....
2008 Jan 01 12:10 PM
2008 Jan 01 12:14 PM
means every time u need to copy standard status to ur status
whenever u need ur buttons with standard toolbar....
2008 Jan 02 7:26 AM
Hi,
I think you want the program can use a default status bar with out creating threw se41
then use the syntax-
SET PF_STATUS SPACE.
here there is no need to create threw se41 i think.
Edited by: vijay Mekala on Jan 2, 2008 8:26 AM
Edited by: vijay Mekala on Jan 2, 2008 8:27 AM
Edited by: vijay Mekala on Jan 2, 2008 8:29 AM
2008 Jan 03 8:51 AM
Hi Vijay,
Thanks, I was thinking that there is some way. Anyway you solved my problem.
Rewarded.
Yusuf