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

Technical Information

Former Member
0 Likes
1,055

Hi All,

If we maintain field document (F1 help) in Deta element we can get Technical Informtion from pop-up box after pressing F1 from that field. If we maitain F1 help docu by calling FM DSYS_SHOW_FOR_F1HELP , there is no complete technical info passing technical infor button from F1 help pop-up box. I am passing parameter as below.


  CALL FUNCTION 'DSYS_SHOW_FOR_F1HELP'
    EXPORTING
      dokclass                 = 'TX'
      DOKLANGU            = SY-LANGU
      dokname                 = 'docum-name'
      APPENDIX               = 'X'.

  IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.

Plz help me on this. Thnx in advance.

2 REPLIES 2
Read only

Former Member
0 Likes
496

hello

To see the f1 document , you can use the follwoing function module:

DATA : TXT(20).

DATA : LINKS TYPE TABLE OF TLINE WITH HEADER LINE.

CALL SCREEN 0100.

&----


*& Module TXT_H1_HELP INPUT

&----


  • text

----


MODULE TXT_H1_HELP INPUT.

CALL FUNCTION 'HELP_OBJECT_SHOW'

EXPORTING

DOKCLASS = 'TX'

DOKLANGU = SY-LANGU

DOKNAME = 'ZUDOC'

  • DOKTITLE = ' '

  • CALLED_BY_PROGRAM = ' '

  • CALLED_BY_DYNP = ' '

  • CALLED_FOR_TAB = ' '

  • CALLED_FOR_FIELD = ' '

  • CALLED_FOR_TAB_FLD_BTCH_INPUT = ' '

  • MSG_VAR_1 = ' '

  • MSG_VAR_2 = ' '

  • MSG_VAR_3 = ' '

  • MSG_VAR_4 = ' '

  • CALLED_BY_CUAPROG = ' '

  • CALLED_BY_CUASTAT =

  • SHORT_TEXT = ' '

TABLES

LINKS = LINKS

  • EXCEPTIONS

  • OBJECT_NOT_FOUND = 1

  • SAPSCRIPT_ERROR = 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.

ENDMODULE. " TXT_H1_HELP INPUT

********************************************

GOTO SE61 AND CREATE DOCUMENT

hope it helps.

Regards

Geeta Gupta

Read only

0 Likes
496

Hi Geeta,

Thnx for response. I tried withe this FM * HELP_OBJECT_SHOW* also, but i can get F1 help only, in this Technical info button is disabled. My requirement is, want to display technival info also from F1 help pop-up box.