SAP RRSI_SID_VAL_SINGLE_CONVERT Function Module for Converts an SID Into the Characteristic Value or Node









RRSI_SID_VAL_SINGLE_CONVERT is a standard rrsi sid val single convert SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Converts an SID Into the Characteristic Value or Node 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 rrsi sid val single convert FM, simply by entering the name RRSI_SID_VAL_SINGLE_CONVERT into the relevant SAP transaction such as SE37 or SE38.

Function Group: RRSI
Program Name: SAPLRRSI
Main Program: SAPLRRSI
Appliation area: B
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RRSI_SID_VAL_SINGLE_CONVERT 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 'RRSI_SID_VAL_SINGLE_CONVERT'"Converts an SID Into the Characteristic Value or Node
EXPORTING
I_IOBJNM = "InfoObject Name
* I_S_COB_PRO = "
I_SID = "

IMPORTING
E_CHAVL = "Characteristic Value (If SID > 0)
E_CHAVL_NC = "Characteristic Value not compound part
E_S_NODESID = "
E_S_NODESID_ASO = "

EXCEPTIONS
NO_VALUE_FOR_SID = 1 X_MESSAGE = 2
.



IMPORTING Parameters details for RRSI_SID_VAL_SINGLE_CONVERT

I_IOBJNM - InfoObject Name

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

I_S_COB_PRO -

Data type: RSD_S_COB_PRO
Optional: Yes
Call by Reference: Yes

I_SID -

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

EXPORTING Parameters details for RRSI_SID_VAL_SINGLE_CONVERT

E_CHAVL - Characteristic Value (If SID > 0)

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

E_CHAVL_NC - Characteristic Value not compound part

Data type:
Optional: No
Call by Reference: Yes

E_S_NODESID -

Data type: RRSI_S_NODESID
Optional: No
Call by Reference: Yes

E_S_NODESID_ASO -

Data type: RRSI_S_NODESID_ASO
Optional: No
Call by Reference: Yes

EXCEPTIONS details

NO_VALUE_FOR_SID -

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

X_MESSAGE -

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

Copy and paste ABAP code example for RRSI_SID_VAL_SINGLE_CONVERT 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_e_chavl  TYPE STRING, "   
lv_i_iobjnm  TYPE RSD_IOBJNM, "   
lv_no_value_for_sid  TYPE RSD_IOBJNM, "   
lv_x_message  TYPE RSD_IOBJNM, "   
lv_e_chavl_nc  TYPE RSD_IOBJNM, "   
lv_i_s_cob_pro  TYPE RSD_S_COB_PRO, "   
lv_i_sid  TYPE RSD_SID, "   
lv_e_s_nodesid  TYPE RRSI_S_NODESID, "   
lv_e_s_nodesid_aso  TYPE RRSI_S_NODESID_ASO. "   

  CALL FUNCTION 'RRSI_SID_VAL_SINGLE_CONVERT'  "Converts an SID Into the Characteristic Value or Node
    EXPORTING
         I_IOBJNM = lv_i_iobjnm
         I_S_COB_PRO = lv_i_s_cob_pro
         I_SID = lv_i_sid
    IMPORTING
         E_CHAVL = lv_e_chavl
         E_CHAVL_NC = lv_e_chavl_nc
         E_S_NODESID = lv_e_s_nodesid
         E_S_NODESID_ASO = lv_e_s_nodesid_aso
    EXCEPTIONS
        NO_VALUE_FOR_SID = 1
        X_MESSAGE = 2
. " RRSI_SID_VAL_SINGLE_CONVERT




ABAP code using 7.40 inline data declarations to call FM RRSI_SID_VAL_SINGLE_CONVERT

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



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!