SAP LSO_CREDITMEMO_DIALOG Function Module for









LSO_CREDITMEMO_DIALOG is a standard lso creditmemo dialog 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 lso creditmemo dialog FM, simply by entering the name LSO_CREDITMEMO_DIALOG into the relevant SAP transaction such as SE37 or SE38.

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



Function LSO_CREDITMEMO_DIALOG 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 'LSO_CREDITMEMO_DIALOG'"
EXPORTING
IN_PLVAR = "
IN_EOTYP = "
IN_EVEID = "
IN_DOCUMENT = "
IN_REFDOCNO = "

IMPORTING
OUT_MESSAGELEVEL = "
OUT_REFERENCEDOCUMENT = "
OUT_BILLINGDOCUMENT = "
OUT_STATUS = "

TABLES
* OUT_MESSAGES = "
* OUT_NETVALUE = "

EXCEPTIONS
CREDITMEMO_ALREADY_EXISTS = 1 CREDITMEMO_NOT_POSSIBLE = 2
.



IMPORTING Parameters details for LSO_CREDITMEMO_DIALOG

IN_PLVAR -

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

IN_EOTYP -

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

IN_EVEID -

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

IN_DOCUMENT -

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

IN_REFDOCNO -

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

EXPORTING Parameters details for LSO_CREDITMEMO_DIALOG

OUT_MESSAGELEVEL -

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

OUT_REFERENCEDOCUMENT -

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

OUT_BILLINGDOCUMENT -

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

OUT_STATUS -

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

TABLES Parameters details for LSO_CREDITMEMO_DIALOG

OUT_MESSAGES -

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

OUT_NETVALUE -

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

EXCEPTIONS details

CREDITMEMO_ALREADY_EXISTS -

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

CREDITMEMO_NOT_POSSIBLE -

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

Copy and paste ABAP code example for LSO_CREDITMEMO_DIALOG 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_in_plvar  TYPE T77REFDOC-PLVAR, "   
lt_out_messages  TYPE STANDARD TABLE OF MESG, "   
lv_out_messagelevel  TYPE SY-MSGTY, "   
lv_creditmemo_already_exists  TYPE SY, "   
lv_in_eotyp  TYPE T77REFDOC-EOTYP, "   
lt_out_netvalue  TYPE STANDARD TABLE OF HRVFAKTNET, "   
lv_out_referencedocument  TYPE T77REFDOC-REFDOCNO, "   
lv_creditmemo_not_possible  TYPE T77REFDOC, "   
lv_in_eveid  TYPE T77REFDOC-EVEID, "   
lv_out_billingdocument  TYPE T77REFDOC-DOCUMENT, "   
lv_out_status  TYPE T77REFDOC-STATUS, "   
lv_in_document  TYPE T77REFDOC-DOCUMENT, "   
lv_in_refdocno  TYPE T77REFDOC-REFDOCNO. "   

  CALL FUNCTION 'LSO_CREDITMEMO_DIALOG'  "
    EXPORTING
         IN_PLVAR = lv_in_plvar
         IN_EOTYP = lv_in_eotyp
         IN_EVEID = lv_in_eveid
         IN_DOCUMENT = lv_in_document
         IN_REFDOCNO = lv_in_refdocno
    IMPORTING
         OUT_MESSAGELEVEL = lv_out_messagelevel
         OUT_REFERENCEDOCUMENT = lv_out_referencedocument
         OUT_BILLINGDOCUMENT = lv_out_billingdocument
         OUT_STATUS = lv_out_status
    TABLES
         OUT_MESSAGES = lt_out_messages
         OUT_NETVALUE = lt_out_netvalue
    EXCEPTIONS
        CREDITMEMO_ALREADY_EXISTS = 1
        CREDITMEMO_NOT_POSSIBLE = 2
. " LSO_CREDITMEMO_DIALOG




ABAP code using 7.40 inline data declarations to call FM LSO_CREDITMEMO_DIALOG

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 PLVAR FROM T77REFDOC INTO @DATA(ld_in_plvar).
 
 
"SELECT single MSGTY FROM SY INTO @DATA(ld_out_messagelevel).
 
 
"SELECT single EOTYP FROM T77REFDOC INTO @DATA(ld_in_eotyp).
 
 
"SELECT single REFDOCNO FROM T77REFDOC INTO @DATA(ld_out_referencedocument).
 
 
"SELECT single EVEID FROM T77REFDOC INTO @DATA(ld_in_eveid).
 
"SELECT single DOCUMENT FROM T77REFDOC INTO @DATA(ld_out_billingdocument).
 
"SELECT single STATUS FROM T77REFDOC INTO @DATA(ld_out_status).
 
"SELECT single DOCUMENT FROM T77REFDOC INTO @DATA(ld_in_document).
 
"SELECT single REFDOCNO FROM T77REFDOC INTO @DATA(ld_in_refdocno).
 


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!