SAP ASSIGNMENT_SKOART_SKOTYP_POINT Function Module for
ASSIGNMENT_SKOART_SKOTYP_POINT is a standard assignment skoart skotyp point 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 assignment skoart skotyp point FM, simply by entering the name ASSIGNMENT_SKOART_SKOTYP_POINT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVIK
Program Name: SAPLFVIK
Main Program: SAPLFVIK
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ASSIGNMENT_SKOART_SKOTYP_POINT 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 'ASSIGNMENT_SKOART_SKOTYP_POINT'".
EXPORTING
IP_SKOART = "
IP_SIKOTYP = "
* IP_CHECK_NONAMBIG = ' ' "
IMPORTING
EP_SKOTYP = "
CHANGING
* EFLG_NONAMBIGUOUS = "
EXCEPTIONS
NO_SIKOTYP_ASSIGNED = 1 NO_SKOART_ASSIGNED = 2 NO_SKOARTTYP_MAINTAINED = 3 NO_SKOTYP_MAINTAINED = 4 OTHER_ERROR_IN_ASSIGN_TAB = 5 SIKOTYP_DOESNOT_MATCH = 6
IMPORTING Parameters details for ASSIGNMENT_SKOART_SKOTYP_POINT
IP_SKOART -
Data type: SKOARTOptional: No
Call by Reference: Yes
IP_SIKOTYP -
Data type: SIKOTYPOptional: No
Call by Reference: Yes
IP_CHECK_NONAMBIG -
Data type: XFELDDefault: SPACE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ASSIGNMENT_SKOART_SKOTYP_POINT
EP_SKOTYP -
Data type: SKOTYPOptional: No
Call by Reference: Yes
CHANGING Parameters details for ASSIGNMENT_SKOART_SKOTYP_POINT
EFLG_NONAMBIGUOUS -
Data type: XFELDOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
NO_SIKOTYP_ASSIGNED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_SKOART_ASSIGNED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_SKOARTTYP_MAINTAINED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_SKOTYP_MAINTAINED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
OTHER_ERROR_IN_ASSIGN_TAB -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SIKOTYP_DOESNOT_MATCH -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ASSIGNMENT_SKOART_SKOTYP_POINT 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_ep_skotyp | TYPE SKOTYP, " | |||
| lv_ip_skoart | TYPE SKOART, " | |||
| lv_eflg_nonambiguous | TYPE XFELD, " | |||
| lv_no_sikotyp_assigned | TYPE XFELD, " | |||
| lv_ip_sikotyp | TYPE SIKOTYP, " | |||
| lv_no_skoart_assigned | TYPE SIKOTYP, " | |||
| lv_ip_check_nonambig | TYPE XFELD, " SPACE | |||
| lv_no_skoarttyp_maintained | TYPE XFELD, " | |||
| lv_no_skotyp_maintained | TYPE XFELD, " | |||
| lv_other_error_in_assign_tab | TYPE XFELD, " | |||
| lv_sikotyp_doesnot_match | TYPE XFELD. " |
|   CALL FUNCTION 'ASSIGNMENT_SKOART_SKOTYP_POINT' " |
| EXPORTING | ||
| IP_SKOART | = lv_ip_skoart | |
| IP_SIKOTYP | = lv_ip_sikotyp | |
| IP_CHECK_NONAMBIG | = lv_ip_check_nonambig | |
| IMPORTING | ||
| EP_SKOTYP | = lv_ep_skotyp | |
| CHANGING | ||
| EFLG_NONAMBIGUOUS | = lv_eflg_nonambiguous | |
| EXCEPTIONS | ||
| NO_SIKOTYP_ASSIGNED = 1 | ||
| NO_SKOART_ASSIGNED = 2 | ||
| NO_SKOARTTYP_MAINTAINED = 3 | ||
| NO_SKOTYP_MAINTAINED = 4 | ||
| OTHER_ERROR_IN_ASSIGN_TAB = 5 | ||
| SIKOTYP_DOESNOT_MATCH = 6 | ||
| . " ASSIGNMENT_SKOART_SKOTYP_POINT | ||
ABAP code using 7.40 inline data declarations to call FM ASSIGNMENT_SKOART_SKOTYP_POINT
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_ip_check_nonambig) | = ' '. | |||
Search for further information about these or an SAP related objects