SAP SO_WIND_RECEIVER_SELECT Function Module for SAPoffice: Selection of different receiver









SO_WIND_RECEIVER_SELECT is a standard so wind receiver select SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for SAPoffice: Selection of different receiver processing and below is the pattern details for this FM, 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 so wind receiver select FM, simply by entering the name SO_WIND_RECEIVER_SELECT into the relevant SAP transaction such as SE37 or SE38.

Function Group: SO04
Program Name: SAPLSO04
Main Program: SAPLSO04
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function SO_WIND_RECEIVER_SELECT 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 'SO_WIND_RECEIVER_SELECT'"SAPoffice: Selection of different receiver
EXPORTING
* DEFAULT_RECTYPE = ' ' "Default value of recipient type
* NO_ORG_SELECT = 'X' "No recipient list is to be selected
* NO_EDI_SELECT = 'X' "
* PROF = "
* NO_NEW_X400_ADDRESS = 'X' "No new X.400 address is to be created
* NO_NEW_INTERNET_ADDRESS = 'X' "
* NO_NEW_FAX_ADDRESS = 'X' "
* NO_NEW_RML_ADDRESS = 'X' "
* NO_AUTHORITY_CHECK = ' ' "
* ALLOW_GENERIC_ENTRY = ' ' "
* NO_COMMTYPE_CHECK = ' ' "
* EXTERN_CALL = ' ' "
* NO_ADDRESS_SELECT = ' ' "No address is to be selected
* NO_DLI_SELECT = ' ' "No recipient list is to be selected
* NO_USER_SELECT = ' ' "SAPoffice user is not to be selected
* RESPONS_USER = ' ' "
* NO_X500_SELECT = 'X' "
* NO_OBJECT_SELECT = 'X' "
* SINGLE_SELECTION = ' ' "

TABLES
SELECTION_TAB = "Table of the selected entries

EXCEPTIONS
PARAMETER_ERROR = 1 X_ERROR = 2
.



IMPORTING Parameters details for SO_WIND_RECEIVER_SELECT

DEFAULT_RECTYPE - Default value of recipient type

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_ORG_SELECT - No recipient list is to be selected

Data type:
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_EDI_SELECT -

Data type:
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

PROF -

Data type: SOPRD
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_NEW_X400_ADDRESS - No new X.400 address is to be created

Data type:
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_NEW_INTERNET_ADDRESS -

Data type:
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_NEW_FAX_ADDRESS -

Data type:
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_NEW_RML_ADDRESS -

Data type:
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_AUTHORITY_CHECK -

Data type: SONV-FLAG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

ALLOW_GENERIC_ENTRY -

Data type: SONV-FLAG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_COMMTYPE_CHECK -

Data type: SONV-FLAG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXTERN_CALL -

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_ADDRESS_SELECT - No address is to be selected

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_DLI_SELECT - No recipient list is to be selected

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_USER_SELECT - SAPoffice user is not to be selected

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

RESPONS_USER -

Data type: SOUD-USRNAM
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_X500_SELECT -

Data type:
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_OBJECT_SELECT -

Data type:
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

SINGLE_SELECTION -

Data type: SONV-FLAG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for SO_WIND_RECEIVER_SELECT

SELECTION_TAB - Table of the selected entries

Data type: SOOS1
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

PARAMETER_ERROR - incorrect parameters transferred

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

X_ERROR - internal error occurred

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for SO_WIND_RECEIVER_SELECT 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:
lt_selection_tab  TYPE STANDARD TABLE OF SOOS1, "   
lv_default_rectype  TYPE SOOS1, "   SPACE
lv_parameter_error  TYPE SOOS1, "   
lv_no_org_select  TYPE SOOS1, "   'X'
lv_no_edi_select  TYPE SOOS1, "   'X'
lv_prof  TYPE SOPRD, "   
lv_no_new_x400_address  TYPE SOPRD, "   'X'
lv_no_new_internet_address  TYPE SOPRD, "   'X'
lv_no_new_fax_address  TYPE SOPRD, "   'X'
lv_no_new_rml_address  TYPE SOPRD, "   'X'
lv_no_authority_check  TYPE SONV-FLAG, "   SPACE
lv_allow_generic_entry  TYPE SONV-FLAG, "   SPACE
lv_no_commtype_check  TYPE SONV-FLAG, "   SPACE
lv_x_error  TYPE SONV, "   
lv_extern_call  TYPE SONV, "   SPACE
lv_no_address_select  TYPE SONV, "   SPACE
lv_no_dli_select  TYPE SONV, "   SPACE
lv_no_user_select  TYPE SONV, "   SPACE
lv_respons_user  TYPE SOUD-USRNAM, "   SPACE
lv_no_x500_select  TYPE SOUD, "   'X'
lv_no_object_select  TYPE SOUD, "   'X'
lv_single_selection  TYPE SONV-FLAG. "   SPACE

  CALL FUNCTION 'SO_WIND_RECEIVER_SELECT'  "SAPoffice: Selection of different receiver
    EXPORTING
         DEFAULT_RECTYPE = lv_default_rectype
         NO_ORG_SELECT = lv_no_org_select
         NO_EDI_SELECT = lv_no_edi_select
         PROF = lv_prof
         NO_NEW_X400_ADDRESS = lv_no_new_x400_address
         NO_NEW_INTERNET_ADDRESS = lv_no_new_internet_address
         NO_NEW_FAX_ADDRESS = lv_no_new_fax_address
         NO_NEW_RML_ADDRESS = lv_no_new_rml_address
         NO_AUTHORITY_CHECK = lv_no_authority_check
         ALLOW_GENERIC_ENTRY = lv_allow_generic_entry
         NO_COMMTYPE_CHECK = lv_no_commtype_check
         EXTERN_CALL = lv_extern_call
         NO_ADDRESS_SELECT = lv_no_address_select
         NO_DLI_SELECT = lv_no_dli_select
         NO_USER_SELECT = lv_no_user_select
         RESPONS_USER = lv_respons_user
         NO_X500_SELECT = lv_no_x500_select
         NO_OBJECT_SELECT = lv_no_object_select
         SINGLE_SELECTION = lv_single_selection
    TABLES
         SELECTION_TAB = lt_selection_tab
    EXCEPTIONS
        PARAMETER_ERROR = 1
        X_ERROR = 2
. " SO_WIND_RECEIVER_SELECT




ABAP code using 7.40 inline data declarations to call FM SO_WIND_RECEIVER_SELECT

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.

 
DATA(ld_default_rectype) = ' '.
 
 
DATA(ld_no_org_select) = 'X'.
 
DATA(ld_no_edi_select) = 'X'.
 
 
DATA(ld_no_new_x400_address) = 'X'.
 
DATA(ld_no_new_internet_address) = 'X'.
 
DATA(ld_no_new_fax_address) = 'X'.
 
DATA(ld_no_new_rml_address) = 'X'.
 
"SELECT single FLAG FROM SONV INTO @DATA(ld_no_authority_check).
DATA(ld_no_authority_check) = ' '.
 
"SELECT single FLAG FROM SONV INTO @DATA(ld_allow_generic_entry).
DATA(ld_allow_generic_entry) = ' '.
 
"SELECT single FLAG FROM SONV INTO @DATA(ld_no_commtype_check).
DATA(ld_no_commtype_check) = ' '.
 
 
DATA(ld_extern_call) = ' '.
 
DATA(ld_no_address_select) = ' '.
 
DATA(ld_no_dli_select) = ' '.
 
DATA(ld_no_user_select) = ' '.
 
"SELECT single USRNAM FROM SOUD INTO @DATA(ld_respons_user).
DATA(ld_respons_user) = ' '.
 
DATA(ld_no_x500_select) = 'X'.
 
DATA(ld_no_object_select) = 'X'.
 
"SELECT single FLAG FROM SONV INTO @DATA(ld_single_selection).
DATA(ld_single_selection) = ' '.
 


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!