SAP Function Modules

VS_HP_VERSION_GROUP SAP Function module







VS_HP_VERSION_GROUP is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name VS_HP_VERSION_GROUP into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: VSHP
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM VS_HP_VERSION_GROUP - VS HP VERSION GROUP





CALL FUNCTION 'VS_HP_VERSION_GROUP' "
  IMPORTING
    selected_group =            " vssteu-vsgruppe
* TABLES
*   range_aufnr =               " rng_aufnr
*   range_posid =               " rng_posid
*   range_pspid =               " rng_pspid
  EXCEPTIONS
    NO_GROUP_FOUND = 1          "
    NO_GROUP_SELECT = 2         "
    ERROR = 3                   "
    .  "  VS_HP_VERSION_GROUP

ABAP code example for Function Module VS_HP_VERSION_GROUP





The ABAP code below is a full code listing to execute function module VS_HP_VERSION_GROUP including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).

DATA:
ld_selected_group  TYPE VSSTEU-VSGRUPPE ,
it_range_aufnr  TYPE STANDARD TABLE OF RNG_AUFNR,"TABLES PARAM
wa_range_aufnr  LIKE LINE OF it_range_aufnr ,
it_range_posid  TYPE STANDARD TABLE OF RNG_POSID,"TABLES PARAM
wa_range_posid  LIKE LINE OF it_range_posid ,
it_range_pspid  TYPE STANDARD TABLE OF RNG_PSPID,"TABLES PARAM
wa_range_pspid  LIKE LINE OF it_range_pspid .


"populate fields of struture and append to itab
append wa_range_aufnr to it_range_aufnr.

"populate fields of struture and append to itab
append wa_range_posid to it_range_posid.

"populate fields of struture and append to itab
append wa_range_pspid to it_range_pspid. . CALL FUNCTION 'VS_HP_VERSION_GROUP' IMPORTING selected_group = ld_selected_group * TABLES * range_aufnr = it_range_aufnr * range_posid = it_range_posid * range_pspid = it_range_pspid EXCEPTIONS NO_GROUP_FOUND = 1 NO_GROUP_SELECT = 2 ERROR = 3 . " VS_HP_VERSION_GROUP
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 2. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 3. "Exception "Add code for exception here ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_selected_group  TYPE VSSTEU-VSGRUPPE ,
it_range_aufnr  TYPE STANDARD TABLE OF RNG_AUFNR ,
wa_range_aufnr  LIKE LINE OF it_range_aufnr,
it_range_posid  TYPE STANDARD TABLE OF RNG_POSID ,
wa_range_posid  LIKE LINE OF it_range_posid,
it_range_pspid  TYPE STANDARD TABLE OF RNG_PSPID ,
wa_range_pspid  LIKE LINE OF it_range_pspid.


"populate fields of struture and append to itab
append wa_range_aufnr to it_range_aufnr.

"populate fields of struture and append to itab
append wa_range_posid to it_range_posid.

"populate fields of struture and append to itab
append wa_range_pspid to it_range_pspid.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name VS_HP_VERSION_GROUP or its description.