SAP SCWH_NOTE_IMPL_TEST Function Module for
SCWH_NOTE_IMPL_TEST is a standard scwh note impl test SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for scwh note impl test FM, simply by entering the name SCWH_NOTE_IMPL_TEST into the relevant SAP transaction such as SE37 or SE38.
Function Group: SCWH
Program Name: SAPLSCWH
Main Program: SAPLSCWH
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SCWH_NOTE_IMPL_TEST pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'SCWH_NOTE_IMPL_TEST'".
EXPORTING
IV_INTERACTIV = "
IMPORTING
ET_INTERVALLS = "
ET_VALIDITY_WITHOUT_VERSDB = "
ET_VALIDITY_NOT_SEL = "
ET_VALIDITY_WO_PATCHVERSION = "
ET_VALIDITY_SELECTED = "
EV_TIMESTAMP = "Date and Time, Current (Application Server) Date
ET_COMPONENT_RELATION = "
ET_INTERVAL_ERROR = "
CHANGING
CT_NUMM_TRACK_STATUS = "Key of a Note with Version Number
CV_CONT = "
EXCEPTIONS
ERROR = 1
IMPORTING Parameters details for SCWH_NOTE_IMPL_TEST
IV_INTERACTIV -
Data type: BCWBN_BOOLOptional: No
Call by Reference: Yes
EXPORTING Parameters details for SCWH_NOTE_IMPL_TEST
ET_INTERVALLS -
Data type: SCWH_INTERVALL_QUEUESOptional: No
Call by Reference: Yes
ET_VALIDITY_WITHOUT_VERSDB -
Data type: BCWBN_VALIDITY_INTERVALSOptional: No
Call by Reference: Yes
ET_VALIDITY_NOT_SEL -
Data type: BCWBN_VALIDITY_INTERVALSOptional: No
Call by Reference: Yes
ET_VALIDITY_WO_PATCHVERSION -
Data type: BCWBN_VALIDITY_INTERVALSOptional: No
Call by Reference: Yes
ET_VALIDITY_SELECTED -
Data type: BCWBN_VALIDITY_INTERVALSOptional: No
Call by Reference: Yes
EV_TIMESTAMP - Date and Time, Current (Application Server) Date
Data type: TIMESTAMPOptional: No
Call by Reference: Yes
ET_COMPONENT_RELATION -
Data type: CWB_COMPONENT_RELATIONSOptional: No
Call by Reference: Yes
ET_INTERVAL_ERROR -
Data type: SCWH_INTERVAL_MESSAGESOptional: No
Call by Reference: Yes
CHANGING Parameters details for SCWH_NOTE_IMPL_TEST
CT_NUMM_TRACK_STATUS - Key of a Note with Version Number
Data type: CWBNTKEYSTOptional: No
Call by Reference: Yes
CV_CONT -
Data type: BCWBN_BOOLOptional: No
Call by Reference: Yes
EXCEPTIONS details
ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SCWH_NOTE_IMPL_TEST Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_error | TYPE STRING, " | |||
| lv_et_intervalls | TYPE SCWH_INTERVALL_QUEUES, " | |||
| lv_iv_interactiv | TYPE BCWBN_BOOL, " | |||
| lv_ct_numm_track_status | TYPE CWBNTKEYST, " | |||
| lv_cv_cont | TYPE BCWBN_BOOL, " | |||
| lv_et_validity_without_versdb | TYPE BCWBN_VALIDITY_INTERVALS, " | |||
| lv_et_validity_not_sel | TYPE BCWBN_VALIDITY_INTERVALS, " | |||
| lv_et_validity_wo_patchversion | TYPE BCWBN_VALIDITY_INTERVALS, " | |||
| lv_et_validity_selected | TYPE BCWBN_VALIDITY_INTERVALS, " | |||
| lv_ev_timestamp | TYPE TIMESTAMP, " | |||
| lv_et_component_relation | TYPE CWB_COMPONENT_RELATIONS, " | |||
| lv_et_interval_error | TYPE SCWH_INTERVAL_MESSAGES. " |
|   CALL FUNCTION 'SCWH_NOTE_IMPL_TEST' " |
| EXPORTING | ||
| IV_INTERACTIV | = lv_iv_interactiv | |
| IMPORTING | ||
| ET_INTERVALLS | = lv_et_intervalls | |
| ET_VALIDITY_WITHOUT_VERSDB | = lv_et_validity_without_versdb | |
| ET_VALIDITY_NOT_SEL | = lv_et_validity_not_sel | |
| ET_VALIDITY_WO_PATCHVERSION | = lv_et_validity_wo_patchversion | |
| ET_VALIDITY_SELECTED | = lv_et_validity_selected | |
| EV_TIMESTAMP | = lv_ev_timestamp | |
| ET_COMPONENT_RELATION | = lv_et_component_relation | |
| ET_INTERVAL_ERROR | = lv_et_interval_error | |
| CHANGING | ||
| CT_NUMM_TRACK_STATUS | = lv_ct_numm_track_status | |
| CV_CONT | = lv_cv_cont | |
| EXCEPTIONS | ||
| ERROR = 1 | ||
| . " SCWH_NOTE_IMPL_TEST | ||
ABAP code using 7.40 inline data declarations to call FM SCWH_NOTE_IMPL_TEST
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects