2005 Dec 07 6:35 AM
I have made an ALV Report, i want to show some help to the User, i have created the Documentation thru SE38 but its only visible thru SE38, but my requirement is that when the Report is Displayed then the User will be able to see that Documentation. i have done by creating one button in the PF Status of ALV and then by calling the FM REUSE_ALV_POPUP_TO_SELECT, is this the only way or some else can also be done for displaying the Documentaion to the User.
Abhishek Suppal
2005 Dec 07 6:42 AM
Hi Abhishek,
You can use function module DSYS_SHOW_FOR_F1HELP.
CALL FUNCTION 'DSYS_SHOW_FOR_F1HELP'
EXPORTING
APPLICATION = 'SO70'
dokclass = 'RE'
DOKLANGU = SY-LANGU
dokname = 'SBAL_DOCUMENTATION' <b>"Fill your report name here</b>
doktitle = 'Test'
HOMETEXT = ' '
OUTLINE = ' '
VIEWNAME = 'STANDARD'
Z_ORIGINAL_OUTLINE = ' '
CALLED_FROM_SO70 = ' '
short_text = 'X'
appendix = 'X'
IMPORTING
APPL =
PF03 =
PF15 =
PF12 =
EXCEPTIONS
class_unknown = 1
object_not_found = 2
OTHERS = 3.
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Hope this helps..
Sri
Message was edited by: Srikanth Pinnamaneni
Message was edited by: Srikanth Pinnamaneni
I have made an ALV Report, i want to show some help to the User, i have created the Documentation thru SE38 but its only visible thru SE38, but my requirement is that when the Report is Displayed then the User will be able to see that Documentation. i have done by creating one button in the PF Status of ALV and then by calling the FM REUSE_ALV_POPUP_TO_SELECT, is this the only way or some else can also be done for displaying the Documentaion to the User.
Abhishek Suppal
2005 Dec 07 6:38 AM
That is the Better way to do...
as you are using ALV. it is much simpler ..
vijay
2005 Dec 07 6:39 AM
Or Call another screen where you can display the Help..
vijay
2005 Dec 07 6:44 AM
you can use the following FM to show program documentation.
HELP_DOCULINES_SHOW
onclickk of the button you defined fill the header and call this FM
Regards
Raja
2005 Dec 07 6:42 AM
Hi Abhishek,
You can use function module DSYS_SHOW_FOR_F1HELP.
CALL FUNCTION 'DSYS_SHOW_FOR_F1HELP'
EXPORTING
APPLICATION = 'SO70'
dokclass = 'RE'
DOKLANGU = SY-LANGU
dokname = 'SBAL_DOCUMENTATION' <b>"Fill your report name here</b>
doktitle = 'Test'
HOMETEXT = ' '
OUTLINE = ' '
VIEWNAME = 'STANDARD'
Z_ORIGINAL_OUTLINE = ' '
CALLED_FROM_SO70 = ' '
short_text = 'X'
appendix = 'X'
IMPORTING
APPL =
PF03 =
PF15 =
PF12 =
EXCEPTIONS
class_unknown = 1
object_not_found = 2
OTHERS = 3.
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Hope this helps..
Sri
Message was edited by: Srikanth Pinnamaneni
Message was edited by: Srikanth Pinnamaneni
2005 Dec 07 7:07 AM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |