Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Documentation on ALV Report

Former Member
0 Likes
1,438

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,002

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

5 REPLIES 5
Read only

Former Member
0 Likes
1,002

That is the Better way to do...

as you are using ALV. it is much simpler ..

vijay

Read only

Former Member
0 Likes
1,002

Or Call another screen where you can display the Help..

vijay

Read only

0 Likes
1,002

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

Read only

Former Member
0 Likes
1,003

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

Read only

0 Likes
1,002

thanx srikant

gr8 help points awarded

Abhishek Suppal