FILL_HELP_VALUES SAP Method Fill Value Help









Below is documentation, parameters and attributes of ABAP Method FILL_HELP_VALUES within SAP class IF_EX_HRPAD00INFTYUI. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_EX_HRPAD00INFTYUI into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method FILL_HELP_VALUES can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method FILL_HELP_VALUES

.

NameTypeData TypeDescriptionDefault Value
PNNNNImportingTYPE
ANY
PNNNN2ImportingTYPE
ANY
SCREEN_STRUCTUREImportingTYPE
ANY
SCREEN_STRUCTURE_NAMEImportingTYPE
PAD_SNAME
Name of UI Structure
FIELD_CATALOGSChangingTYPE
HRPAD_HELP_VALUE_FIELD_CAT_TAB
Table of Field Catalogs for Value Help
HELP_VALUESChangingTYPE
HRPAD_HELP_VALUE_DATA_TAB
Table with Value Help Structures



Exceptions of Method FILL_HELP_VALUES

CX_HRPA_VIOLATED_ASSERTION - HR Master Data: Unfulfilled Program Condition

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_HRPAD00INFTYUI.
DATA: lv_FIELD_CATALOGS TYPE HRPAD_HELP_VALUE_FIELD_CAT_TAB,
lv_HELP_VALUES TYPE HRPAD_HELP_VALUE_DATA_TAB,
lv_PNNNN TYPE ANY,
lv_PNNNN2 TYPE ANY,
lv_SCREEN_STRUCTURE TYPE ANY,
lv_SCREEN_STRUCTURE_NAME TYPE PAD_SNAME,
lv_other TYPE c.

CALL METHOD lo_class=>FILL_HELP_VALUES(
EXPORTING
PNNNN = lv_PNNNN
PNNNN2 = lv_PNNNN2
SCREEN_STRUCTURE = lv_SCREEN_STRUCTURE
SCREEN_STRUCTURE_NAME = lv_SCREEN_STRUCTURE_NAME
CHANGING
FIELD_CATALOGS = lv_FIELD_CATALOGS
HELP_VALUES = lv_HELP_VALUES ).

Links to Related Class(s)

IF_EX_HR...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!