English 中文(简体)
SAP ABAP Tutorial

SAP ABAP Useful Resources

Selected Reading

SAP ABAP - Search Help
  • 时间:2024-11-05

SAP ABAP - Search Help


Previous Page Next Page  

Search Help, another repository object of ABAP Dictionary, is used to display all the possible values for a field in the form of a pst. This pst is also known as a hit pst. You can select the values that are to be entered in the fields from this hit pst instead of manually entering the value, which is tedious and error prone.

Creating Search Help

Step 1 − Go to transaction SE11. Select the radio button for Search help. Enter the name of the search help to be created. Let s enter the name ZSRCH1. Cpck on the Create button.

Step 2 − The system will prompt for the search help type to be created. Select the Elementary search help, which is default. The screen to create elementary search help as shown in the following screenshot appears.

Step 3 − In the selection method, we need to indicate whether our source of data is a table or a view. In our case it happens to be a table. The table is ZCUSTOMERS1. It is selected from a selection pst.

Step 4 − After the selection method is entered, the next field is the Dialog type. This controls the appearance of the restrictive dialog box. There is a drop-down pst with three options. Let s select the option Display values immediately .

Search Help Demo

Step 5 − Next is the parameter area. For each Search help parameter or field, these column fields have to be entered as per the requirements.

    Search help parameter − This is a field from the source of data. The fields from the table are psted in the selection pst. The fields participating in the search help would be entered, one field in each row. Let s include the two fields CUSTOMER and NAME. How these two fields participate is indicated in the rest of the columns.

Search Help Parameter

    Import − This field is a checkbox for indicating whether a Search help parameter is an import parameter. The export or import is with reference to the search help.

    Export − This field is a checkbox for indicating whether a Search help parameter is an export parameter. The export will be transfer of field values from the selection pst to screen fields.

    LPos − Its value controls the physical position of Search help parameter or field in the selection pst. If you enter a value 1, the field will appear in the first position in the selection pst and so on.

    SPos − It controls the physical position of Search Help parameter or field in the restrictive dialog box. If you enter a value of 1, the field will appear in the first position in the restrictive dialog box and so on.

    Data element − Every Search Help parameter or field by default is assigned a data element that was assigned to it in the source of data (Table or View). This data element name appears in display mode.

Step 6 − Perform a consistency check and activate the search help. Press F8 to execute. The Test Search Help ZSRCH1 screen appears as shown in the following screenshot.

Test Search Help

Step 7 − Let s enter the number 100004 in the CUSTOMER s Ready for inp screen field. Press Enter.

Restrict Value Change

The customer number, 100004, and the name ‘STEPHEN’ is displayed.

Advertisements