SAP ISCD_PARTNER_INTERN_EXTERN Function Module for
ISCD_PARTNER_INTERN_EXTERN is a standard iscd partner intern extern 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 iscd partner intern extern FM, simply by entering the name ISCD_PARTNER_INTERN_EXTERN into the relevant SAP transaction such as SE37 or SE38.
Function Group: FSCDMAD_OBSOLET_IO
Program Name: SAPLFSCDMAD_OBSOLET_IO
Main Program: SAPLFSCDMAD_OBSOLET_IO
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISCD_PARTNER_INTERN_EXTERN 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 'ISCD_PARTNER_INTERN_EXTERN'".
EXPORTING
I_PARTNER_INT = "
I_PARTNER_EXT = "
I_PARTNER_IS_KEY = "
I_AKTYP = "
* I_NO_DATA_SIGN = '/' "Single-Character Flag
IMPORTING
E_PARTNER_INT = "
E_PARTNER_EXT = "
EXCEPTIONS
ERROR_SAVE = 1
IMPORTING Parameters details for ISCD_PARTNER_INTERN_EXTERN
I_PARTNER_INT -
Data type: BUS_DI-PARTNEROptional: No
Call by Reference: No ( called with pass by value option)
I_PARTNER_EXT -
Data type: BUS_DI-BPEXTOptional: No
Call by Reference: No ( called with pass by value option)
I_PARTNER_IS_KEY -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
I_AKTYP -
Data type: BUS_DI-AKTYPOptional: No
Call by Reference: No ( called with pass by value option)
I_NO_DATA_SIGN - Single-Character Flag
Data type: BUS000FLDS-CHAR1Default: '/'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISCD_PARTNER_INTERN_EXTERN
E_PARTNER_INT -
Data type: BUS_DI-PARTNEROptional: No
Call by Reference: No ( called with pass by value option)
E_PARTNER_EXT -
Data type: BUS_DI-BPEXTOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
ERROR_SAVE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISCD_PARTNER_INTERN_EXTERN 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_save | TYPE STRING, " | |||
| lv_e_partner_int | TYPE BUS_DI-PARTNER, " | |||
| lv_i_partner_int | TYPE BUS_DI-PARTNER, " | |||
| lv_e_partner_ext | TYPE BUS_DI-BPEXT, " | |||
| lv_i_partner_ext | TYPE BUS_DI-BPEXT, " | |||
| lv_i_partner_is_key | TYPE BUS_DI, " | |||
| lv_i_aktyp | TYPE BUS_DI-AKTYP, " | |||
| lv_i_no_data_sign | TYPE BUS000FLDS-CHAR1. " '/' |
|   CALL FUNCTION 'ISCD_PARTNER_INTERN_EXTERN' " |
| EXPORTING | ||
| I_PARTNER_INT | = lv_i_partner_int | |
| I_PARTNER_EXT | = lv_i_partner_ext | |
| I_PARTNER_IS_KEY | = lv_i_partner_is_key | |
| I_AKTYP | = lv_i_aktyp | |
| I_NO_DATA_SIGN | = lv_i_no_data_sign | |
| IMPORTING | ||
| E_PARTNER_INT | = lv_e_partner_int | |
| E_PARTNER_EXT | = lv_e_partner_ext | |
| EXCEPTIONS | ||
| ERROR_SAVE = 1 | ||
| . " ISCD_PARTNER_INTERN_EXTERN | ||
ABAP code using 7.40 inline data declarations to call FM ISCD_PARTNER_INTERN_EXTERN
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.| "SELECT single PARTNER FROM BUS_DI INTO @DATA(ld_e_partner_int). | ||||
| "SELECT single PARTNER FROM BUS_DI INTO @DATA(ld_i_partner_int). | ||||
| "SELECT single BPEXT FROM BUS_DI INTO @DATA(ld_e_partner_ext). | ||||
| "SELECT single BPEXT FROM BUS_DI INTO @DATA(ld_i_partner_ext). | ||||
| "SELECT single AKTYP FROM BUS_DI INTO @DATA(ld_i_aktyp). | ||||
| "SELECT single CHAR1 FROM BUS000FLDS INTO @DATA(ld_i_no_data_sign). | ||||
| DATA(ld_i_no_data_sign) | = '/'. | |||
Search for further information about these or an SAP related objects