SlideShare a Scribd company logo
Field Help (Documentation and or Supplementary
             /Additional Documentation)
Creating Field Help

Prerequisites
   1) Transport Request [see StepByStepCreateTransportRequestUsingSE80.pdf]
   2) Package [use the package created in the first class] or create new [see
      StepByStep_ABAP_Create_Package.doc]
   3) Copy Z027393_007A as Z027393_009A [See
      StepByStep_Copy_Function_Group_Program.pdf]

Instead of creating from scratch we are using an exiting program, duplicating it and making
changes. First copy the program and continue from here.

Note: There are three methods for creating the Field Help

1) Method 1: Documentation: Here the data element documentation help is specified in the
ABAP dictionary for every data element by using Go To > Documentation menu.
2) Method 2: Additional Documentation: This is used in case the data element documentation
help is not applicable, here the additional documentation is entered that can be called from the
dynpro using the Process on Help Request (POH) event as shown below.
PROCESS ON HELP-REQUEST.
 FIELD fieldname WITH num.
3) Method 3: This is a custom help where you may call your own screens etc from a module mod
that in turn is trigger by the Process on Help Request (POH) event as shown below.
PROCESS ON HELP-REQUEST.
 FIELD fieldname MODULE mod.

In the following instructions, we are creating Field Help using the 1st and 2nd methods.

Step by Step Instructions (complete prerequisites shown above
before you proceed)
Launch SE80.

Ensure that you are on the ‘Repository Browser’.

Select Package from the drop down and enter your Package name [ZxxxxxxA], then click on the
[Display] button. Your Function Group should be displayed below the package [if it was
previously copied correctly to this package.]

Open the Function Group Zxxxxxx_009A that was previously copied from Zxxxxxx_007A (if
not already opened.)


                                                                                         1 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




To display the property page, double click on the program name (node - Zxxxxxx_009A). The
properties may be updated by clicking on the [Change <> Display] icon (Ctrl+F1). If any values
are updated (example: the short text), ensure they are saved by clicking on the [Save] button.




Now, click on the [Main program] button.


                                                                                        2 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)
After the main program is opened, toggle the [Change <> Display] icon (Ctrl+F1) to update the
program code. Note the name of the Main Program [SAPLZ027393_009A] it will be used to
create a transaction code (T-code) later.




Add description on the top as shown.

*&---------------------------------------------------------------------*
*& Module Pool       Z027393_009A
*& DEMO -> Field Help (Documemtation and Additional Documentation.)
*&---------------------------------------------------------------------*

Save the program.
Activate the Function Group by clicking on the [Activate] button on the top tool bar.




                                                                                        3 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




If a list of objects to be activated is provided, select all the objects (related to this program), by
clicking on each of them and then click on the [Continue] button or [hit Enter] to activate them
all.
Before we make any changes to create the Input Help, we will confirm that the program runs fine
using the T-Code.
If you have not created a Transaction Code while copying the program, create it now.
To create a Transaction Code (T-Code), we need the name of the Function Group Main program
[SAPLZ027393_009A] and use following menu in SE80 (or by directly using T-Code SE93 –
not shown here.)




                                                                                              4 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




Enter the Transaction Code name and a short description. Leave remaining fields as default as
shown below on this screen. Click [Continue] or hit [Enter].




                                                                                         5 of 21
Field Help (Documentation and or Supplementary
           /Additional Documentation)




                                           6 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




Enter program name as [main program - SAPLZ027393_009A] and the (starting) Screen number
as [0100]. Save. Accept the Package and the Transport Request in the subsequent screens.

Run the program by entering the T-code/Transaction Code [Z027393_009A] or
[/nZ027393_009A], to confirm that the program runs fine.
Note: /n is required if you are not currently in the SAP Easy Access screen, but in another
transaction.


Note: If the program is not working correctly, check the name of the Functions and the Program
name in three places – see next 3 screenshots. Update if necessary.




                                                                                              7 of 21
Field Help (Documentation and or Supplementary
           /Additional Documentation)




                                           8 of 21
Field Help (Documentation and or Supplementary
           /Additional Documentation)




                                           9 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




Save and Activate.

After you ensure that you have a working program to get started, the following (new) changes
that will demo the Field Help may be done.


METHOD 1:

We need to add the documentation to the Date Element of the field that needs the F1 help
documentation. To access the Data Element, we can access the Table first, then the Field, and
finally the Data Element. Open the Function Group and access the TOP include
(LZ027393_009ATOP) [or directly using the T-Code se11 – Dictionary: Maintain Table]




                                                                                        10 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




Double click on the Table name ZBC400_S_DYNCONN shown above (highlighted.) The Table
definition is displayed.




                                                                             11 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




Double click on the ZCITYFROM Data Element. Click on the [Display <> Update] button to
make this data element updateable.




                                                                                  12 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




Now click on the ‘Documentation’ button displayed on the top tool bar.




                                                                         13 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




After the Documentation is entered, Click on Save and Activate (the Documentation.) Then click
on the green back button two time to get back to the Table Definition, or go back to TOP include
(LZ027393_009ATOP) and Double click on the Table name ZBC400_S_DYNCONN.

METHOD 2:

To demo method 2 (Supplementary/Additional Documentation) access a different field
ZCITYTO.

Double click on the ZCITYTO Data Element.




                                                                                        14 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




Click on the [Display <> Update] button to make this data element updateable.




                                                                                15 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




Now click on the ‘Supplementary Documentation’ button displayed on the top tool bar.




                                                                                       16 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)
Enter ‘0001’ for the Data Element Suppl field.

Click on [Change] button shown above.




After entering the supplementary documentation, Save and Activate it.

Click on the green back button. Then click on the sub screen 0202 (because this has the CITYTO
field), and access the Flow Logic Tab. Enter the code shown below for the POH Logic.

PROCESS ON HELP-REQUEST.
FIELD ZBC400_S_HDR_CURR-CITYTO WITH '0001'.




                                                                                      17 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




Save and Activate.

Run the program, using its T-Code created earlier.




                                                     18 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




Click (one time) on the CITYFROM field (to move cursor focus) and then hit the F1 help button.




                                                                                      19 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




The Documentation is displayed as shown above.

Exit the documentation by clicking on the [x] at the top right corner.

Now access the second tab and click (one time) on the CITYTO field.




                                                                         20 of 21
Field Help (Documentation and or Supplementary
             /Additional Documentation)




Advantage of using the Additional or Supplementary documentation is that we can define
multiple instances of the supplementary documentation (‘0001’, ‘0002’, ‘0003’, etc) and call the
appropriate [supplementary] documentation from any DYNPRO screen - based on requirement
of the field. In other words, theoretically we could have various different [numerous]
documentation for one field and any one of these could be accessed - depending on the
DYNPRO screen the field is displayed.




                                                                                        21 of 21

More Related Content

PPT
애자일 게임 개발이란?
PPTX
社會住宅可負擔租金與非自償補助標準
DOC
Cps 36 open record act documentation of request
DOCX
Jessica E. Saari Demand Letter
PDF
Step by step abap_input help or lov
PDF
Abap slides set1
PPT
Chapter 10 online help & documentation1
애자일 게임 개발이란?
社會住宅可負擔租金與非自償補助標準
Cps 36 open record act documentation of request
Jessica E. Saari Demand Letter
Step by step abap_input help or lov
Abap slides set1
Chapter 10 online help & documentation1

Similar to Step bystep abap_field help or documentation (10)

PPTX
Day 1 Whiteboard.pptx bootcamp for SAP ABAP
PPT
Abap slide class3
PDF
The semantic web an inside look at the creation of control loop foundation
KEY
Pure Sign Breakfast Presentations - Drupal FieldAPI
PDF
Crm middleware related
PPTX
Fyp presentation final
PDF
Nov 07 P1
PPTX
Using MarcEdit for batch cataloging
PDF
MATLAB simulink open loop dynamics system
PDF
mobl presentation @ IHomer
Day 1 Whiteboard.pptx bootcamp for SAP ABAP
Abap slide class3
The semantic web an inside look at the creation of control loop foundation
Pure Sign Breakfast Presentations - Drupal FieldAPI
Crm middleware related
Fyp presentation final
Nov 07 P1
Using MarcEdit for batch cataloging
MATLAB simulink open loop dynamics system
mobl presentation @ IHomer
Ad

More from Milind Patil (20)

PDF
Abap slide class4 unicode-plusfiles
PDF
Step bystep abap_fieldhelpordocumentation
PDF
Abap slides user defined data types and data
PDF
Abap slide lock Enqueue data clusters auth checks
PDF
Step bystep abap_changinga_singlerecord
PDF
Abap slide lockenqueuedataclustersauthchecks
PDF
Abap slide exceptionshandling
PDF
Step bystep abap_changinga_singlerecord
PDF
Abap reports
PPT
Lecture16 abap on line
PPT
Lecture14 abap on line
PPT
Lecture13 abap on line
PPT
Lecture12 abap on line
PPT
Lecture11 abap on line
PPT
Lecture10 abap on line
PPT
Lecture09 abap on line
PPT
Lecture08 abap on line
PPT
Lecture07 abap on line
PPT
Lecture06 abap on line
PPT
Lecture05 abap on line
Abap slide class4 unicode-plusfiles
Step bystep abap_fieldhelpordocumentation
Abap slides user defined data types and data
Abap slide lock Enqueue data clusters auth checks
Step bystep abap_changinga_singlerecord
Abap slide lockenqueuedataclustersauthchecks
Abap slide exceptionshandling
Step bystep abap_changinga_singlerecord
Abap reports
Lecture16 abap on line
Lecture14 abap on line
Lecture13 abap on line
Lecture12 abap on line
Lecture11 abap on line
Lecture10 abap on line
Lecture09 abap on line
Lecture08 abap on line
Lecture07 abap on line
Lecture06 abap on line
Lecture05 abap on line
Ad

Recently uploaded (20)

PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
KodekX | Application Modernization Development
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
cuic standard and advanced reporting.pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Machine learning based COVID-19 study performance prediction
PDF
Unlocking AI with Model Context Protocol (MCP)
DOCX
The AUB Centre for AI in Media Proposal.docx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPTX
Cloud computing and distributed systems.
Dropbox Q2 2025 Financial Results & Investor Presentation
KodekX | Application Modernization Development
Network Security Unit 5.pdf for BCA BBA.
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
cuic standard and advanced reporting.pdf
Understanding_Digital_Forensics_Presentation.pptx
Encapsulation_ Review paper, used for researhc scholars
MIND Revenue Release Quarter 2 2025 Press Release
sap open course for s4hana steps from ECC to s4
Machine learning based COVID-19 study performance prediction
Unlocking AI with Model Context Protocol (MCP)
The AUB Centre for AI in Media Proposal.docx
“AI and Expert System Decision Support & Business Intelligence Systems”
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Reach Out and Touch Someone: Haptics and Empathic Computing
Per capita expenditure prediction using model stacking based on satellite ima...
Cloud computing and distributed systems.

Step bystep abap_field help or documentation

  • 1. Field Help (Documentation and or Supplementary /Additional Documentation) Creating Field Help Prerequisites 1) Transport Request [see StepByStepCreateTransportRequestUsingSE80.pdf] 2) Package [use the package created in the first class] or create new [see StepByStep_ABAP_Create_Package.doc] 3) Copy Z027393_007A as Z027393_009A [See StepByStep_Copy_Function_Group_Program.pdf] Instead of creating from scratch we are using an exiting program, duplicating it and making changes. First copy the program and continue from here. Note: There are three methods for creating the Field Help 1) Method 1: Documentation: Here the data element documentation help is specified in the ABAP dictionary for every data element by using Go To > Documentation menu. 2) Method 2: Additional Documentation: This is used in case the data element documentation help is not applicable, here the additional documentation is entered that can be called from the dynpro using the Process on Help Request (POH) event as shown below. PROCESS ON HELP-REQUEST. FIELD fieldname WITH num. 3) Method 3: This is a custom help where you may call your own screens etc from a module mod that in turn is trigger by the Process on Help Request (POH) event as shown below. PROCESS ON HELP-REQUEST. FIELD fieldname MODULE mod. In the following instructions, we are creating Field Help using the 1st and 2nd methods. Step by Step Instructions (complete prerequisites shown above before you proceed) Launch SE80. Ensure that you are on the ‘Repository Browser’. Select Package from the drop down and enter your Package name [ZxxxxxxA], then click on the [Display] button. Your Function Group should be displayed below the package [if it was previously copied correctly to this package.] Open the Function Group Zxxxxxx_009A that was previously copied from Zxxxxxx_007A (if not already opened.) 1 of 21
  • 2. Field Help (Documentation and or Supplementary /Additional Documentation) To display the property page, double click on the program name (node - Zxxxxxx_009A). The properties may be updated by clicking on the [Change <> Display] icon (Ctrl+F1). If any values are updated (example: the short text), ensure they are saved by clicking on the [Save] button. Now, click on the [Main program] button. 2 of 21
  • 3. Field Help (Documentation and or Supplementary /Additional Documentation) After the main program is opened, toggle the [Change <> Display] icon (Ctrl+F1) to update the program code. Note the name of the Main Program [SAPLZ027393_009A] it will be used to create a transaction code (T-code) later. Add description on the top as shown. *&---------------------------------------------------------------------* *& Module Pool Z027393_009A *& DEMO -> Field Help (Documemtation and Additional Documentation.) *&---------------------------------------------------------------------* Save the program. Activate the Function Group by clicking on the [Activate] button on the top tool bar. 3 of 21
  • 4. Field Help (Documentation and or Supplementary /Additional Documentation) If a list of objects to be activated is provided, select all the objects (related to this program), by clicking on each of them and then click on the [Continue] button or [hit Enter] to activate them all. Before we make any changes to create the Input Help, we will confirm that the program runs fine using the T-Code. If you have not created a Transaction Code while copying the program, create it now. To create a Transaction Code (T-Code), we need the name of the Function Group Main program [SAPLZ027393_009A] and use following menu in SE80 (or by directly using T-Code SE93 – not shown here.) 4 of 21
  • 5. Field Help (Documentation and or Supplementary /Additional Documentation) Enter the Transaction Code name and a short description. Leave remaining fields as default as shown below on this screen. Click [Continue] or hit [Enter]. 5 of 21
  • 6. Field Help (Documentation and or Supplementary /Additional Documentation) 6 of 21
  • 7. Field Help (Documentation and or Supplementary /Additional Documentation) Enter program name as [main program - SAPLZ027393_009A] and the (starting) Screen number as [0100]. Save. Accept the Package and the Transport Request in the subsequent screens. Run the program by entering the T-code/Transaction Code [Z027393_009A] or [/nZ027393_009A], to confirm that the program runs fine. Note: /n is required if you are not currently in the SAP Easy Access screen, but in another transaction. Note: If the program is not working correctly, check the name of the Functions and the Program name in three places – see next 3 screenshots. Update if necessary. 7 of 21
  • 8. Field Help (Documentation and or Supplementary /Additional Documentation) 8 of 21
  • 9. Field Help (Documentation and or Supplementary /Additional Documentation) 9 of 21
  • 10. Field Help (Documentation and or Supplementary /Additional Documentation) Save and Activate. After you ensure that you have a working program to get started, the following (new) changes that will demo the Field Help may be done. METHOD 1: We need to add the documentation to the Date Element of the field that needs the F1 help documentation. To access the Data Element, we can access the Table first, then the Field, and finally the Data Element. Open the Function Group and access the TOP include (LZ027393_009ATOP) [or directly using the T-Code se11 – Dictionary: Maintain Table] 10 of 21
  • 11. Field Help (Documentation and or Supplementary /Additional Documentation) Double click on the Table name ZBC400_S_DYNCONN shown above (highlighted.) The Table definition is displayed. 11 of 21
  • 12. Field Help (Documentation and or Supplementary /Additional Documentation) Double click on the ZCITYFROM Data Element. Click on the [Display <> Update] button to make this data element updateable. 12 of 21
  • 13. Field Help (Documentation and or Supplementary /Additional Documentation) Now click on the ‘Documentation’ button displayed on the top tool bar. 13 of 21
  • 14. Field Help (Documentation and or Supplementary /Additional Documentation) After the Documentation is entered, Click on Save and Activate (the Documentation.) Then click on the green back button two time to get back to the Table Definition, or go back to TOP include (LZ027393_009ATOP) and Double click on the Table name ZBC400_S_DYNCONN. METHOD 2: To demo method 2 (Supplementary/Additional Documentation) access a different field ZCITYTO. Double click on the ZCITYTO Data Element. 14 of 21
  • 15. Field Help (Documentation and or Supplementary /Additional Documentation) Click on the [Display <> Update] button to make this data element updateable. 15 of 21
  • 16. Field Help (Documentation and or Supplementary /Additional Documentation) Now click on the ‘Supplementary Documentation’ button displayed on the top tool bar. 16 of 21
  • 17. Field Help (Documentation and or Supplementary /Additional Documentation) Enter ‘0001’ for the Data Element Suppl field. Click on [Change] button shown above. After entering the supplementary documentation, Save and Activate it. Click on the green back button. Then click on the sub screen 0202 (because this has the CITYTO field), and access the Flow Logic Tab. Enter the code shown below for the POH Logic. PROCESS ON HELP-REQUEST. FIELD ZBC400_S_HDR_CURR-CITYTO WITH '0001'. 17 of 21
  • 18. Field Help (Documentation and or Supplementary /Additional Documentation) Save and Activate. Run the program, using its T-Code created earlier. 18 of 21
  • 19. Field Help (Documentation and or Supplementary /Additional Documentation) Click (one time) on the CITYFROM field (to move cursor focus) and then hit the F1 help button. 19 of 21
  • 20. Field Help (Documentation and or Supplementary /Additional Documentation) The Documentation is displayed as shown above. Exit the documentation by clicking on the [x] at the top right corner. Now access the second tab and click (one time) on the CITYTO field. 20 of 21
  • 21. Field Help (Documentation and or Supplementary /Additional Documentation) Advantage of using the Additional or Supplementary documentation is that we can define multiple instances of the supplementary documentation (‘0001’, ‘0002’, ‘0003’, etc) and call the appropriate [supplementary] documentation from any DYNPRO screen - based on requirement of the field. In other words, theoretically we could have various different [numerous] documentation for one field and any one of these could be accessed - depending on the DYNPRO screen the field is displayed. 21 of 21