SAP Function Modules

SWA_CONT_VALUE_CHECK SAP Function module







SWA_CONT_VALUE_CHECK 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 SWA_CONT_VALUE_CHECK into the relevant SAP transaction such as SE37 or SE80.

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


Pattern for FM SWA_CONT_VALUE_CHECK - SWA CONT VALUE CHECK





CALL FUNCTION 'SWA_CONT_VALUE_CHECK' "
  EXPORTING
*   language = SY-LANGU         " swotddic-language  Language
*   reffield =                  " swaexpref-reffield  Field name
*   refstruct =                 " swaexpref-refstruct  Table name
*   reftype = 'D'               " swaexpref-reftype  Field name
*   refobjtype =                " swaexpref-refobjtype  Reference object type
    value =                     " swcont-value  Value
*   screen_value =              " swcont-value  Value from screen entry
*   continst_value =            " swcont-value  Value from container instance
*   input_convert = ' '         "               Input conversion of constants according to reference
  IMPORTING
    errorcount =                " swaexpedit-errorcount  Number of error messages
    value_out =                 " swcont-value  Value after output conversion
    worst_messagetype =         " swaexerror-msgty  Worst message type
  TABLES
    exerror =                   " swaexerror    Messages
    .  "  SWA_CONT_VALUE_CHECK

ABAP code example for Function Module SWA_CONT_VALUE_CHECK





The ABAP code below is a full code listing to execute function module SWA_CONT_VALUE_CHECK 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_errorcount  TYPE SWAEXPEDIT-ERRORCOUNT ,
ld_value_out  TYPE SWCONT-VALUE ,
ld_worst_messagetype  TYPE SWAEXERROR-MSGTY ,
it_exerror  TYPE STANDARD TABLE OF SWAEXERROR,"TABLES PARAM
wa_exerror  LIKE LINE OF it_exerror .


DATA(ld_language) = Check type of data required

DATA(ld_reffield) = some text here

DATA(ld_refstruct) = some text here

DATA(ld_reftype) = some text here

DATA(ld_refobjtype) = some text here

DATA(ld_value) = some text here

DATA(ld_screen_value) = some text here

DATA(ld_continst_value) = some text here
DATA(ld_input_convert) = 'some text here'.

"populate fields of struture and append to itab
append wa_exerror to it_exerror. . CALL FUNCTION 'SWA_CONT_VALUE_CHECK' EXPORTING * language = ld_language * reffield = ld_reffield * refstruct = ld_refstruct * reftype = ld_reftype * refobjtype = ld_refobjtype value = ld_value * screen_value = ld_screen_value * continst_value = ld_continst_value * input_convert = ld_input_convert IMPORTING errorcount = ld_errorcount value_out = ld_value_out worst_messagetype = ld_worst_messagetype TABLES exerror = it_exerror . " SWA_CONT_VALUE_CHECK
IF SY-SUBRC EQ 0. "All OK 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_errorcount  TYPE SWAEXPEDIT-ERRORCOUNT ,
ld_language  TYPE SWOTDDIC-LANGUAGE ,
it_exerror  TYPE STANDARD TABLE OF SWAEXERROR ,
wa_exerror  LIKE LINE OF it_exerror,
ld_value_out  TYPE SWCONT-VALUE ,
ld_reffield  TYPE SWAEXPREF-REFFIELD ,
ld_worst_messagetype  TYPE SWAEXERROR-MSGTY ,
ld_refstruct  TYPE SWAEXPREF-REFSTRUCT ,
ld_reftype  TYPE SWAEXPREF-REFTYPE ,
ld_refobjtype  TYPE SWAEXPREF-REFOBJTYPE ,
ld_value  TYPE SWCONT-VALUE ,
ld_screen_value  TYPE SWCONT-VALUE ,
ld_continst_value  TYPE SWCONT-VALUE ,
ld_input_convert  TYPE STRING .


ld_language = Check type of data required

"populate fields of struture and append to itab
append wa_exerror to it_exerror.

ld_reffield = some text here

ld_refstruct = some text here

ld_reftype = some text here

ld_refobjtype = some text here

ld_value = some text here

ld_screen_value = some text here

ld_continst_value = some text here
ld_input_convert = 'some text here'.

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 SWA_CONT_VALUE_CHECK or its description.