SAP FVD_GET_SBEWART_SORTID Function Module for CML Corr.: Determine Sort ID from Flow Type









FVD_GET_SBEWART_SORTID is a standard fvd get sbewart sortid SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for CML Corr.: Determine Sort ID from Flow Type 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 fvd get sbewart sortid FM, simply by entering the name FVD_GET_SBEWART_SORTID into the relevant SAP transaction such as SE37 or SE38.

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



Function FVD_GET_SBEWART_SORTID 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 'FVD_GET_SBEWART_SORTID'"CML Corr.: Determine Sort ID from Flow Type
EXPORTING
* ID_RANTYP = '1' "Contract Type
ID_SBEWART = "Flow Type

IMPORTING
ED_POS = "CML Corr.: Pos. Line of Document (One Line per Fin. Proj.)
ED_SORTID = "Classification: sort position

EXCEPTIONS
NOT_FOUND = 1
.



IMPORTING Parameters details for FVD_GET_SBEWART_SORTID

ID_RANTYP - Contract Type

Data type: RANTYP
Default: '1'
Optional: Yes
Call by Reference: Yes

ID_SBEWART - Flow Type

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

EXPORTING Parameters details for FVD_GET_SBEWART_SORTID

ED_POS - CML Corr.: Pos. Line of Document (One Line per Fin. Proj.)

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

ED_SORTID - Classification: sort position

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

EXCEPTIONS details

NOT_FOUND - Not Found

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FVD_GET_SBEWART_SORTID 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_ed_pos  TYPE TB_ESRPOSITION, "   
lv_id_rantyp  TYPE RANTYP, "   '1'
lv_not_found  TYPE RANTYP, "   
lv_ed_sortid  TYPE CLSORTPOS, "   
lv_id_sbewart  TYPE SBEWART. "   

  CALL FUNCTION 'FVD_GET_SBEWART_SORTID'  "CML Corr.: Determine Sort ID from Flow Type
    EXPORTING
         ID_RANTYP = lv_id_rantyp
         ID_SBEWART = lv_id_sbewart
    IMPORTING
         ED_POS = lv_ed_pos
         ED_SORTID = lv_ed_sortid
    EXCEPTIONS
        NOT_FOUND = 1
. " FVD_GET_SBEWART_SORTID




ABAP code using 7.40 inline data declarations to call FM FVD_GET_SBEWART_SORTID

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_id_rantyp) = '1'.
 
 
 
 


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!