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
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
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).
| 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 . |
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 . |
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.