SAP Function Modules

ISU_DEVCHECK_APPLLOG_ONE_MSG SAP Function module







ISU_DEVCHECK_APPLLOG_ONE_MSG is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name ISU_DEVCHECK_APPLLOG_ONE_MSG into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: EDEC
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM ISU_DEVCHECK_APPLLOG_ONE_MSG - ISU DEVCHECK APPLLOG ONE MSG





CALL FUNCTION 'ISU_DEVCHECK_APPLLOG_ONE_MSG' "
  EXPORTING
    x_object =                  " balhdr-object
    x_subobject =               " balhdr-subobject
    x_msgty =                   " balmi-msgty
    x_msgid =                   " balmi-msgid
    x_msgno =                   " balmi-msgno
*   x_msgv1 =                   "
*   x_msgv2 =                   "
*   x_msgv3 =                   "
*   x_msgv4 =                   "
*   x_altext =                  " balmi-altext
*   x_userexitp =               " balmi-userexitp
*   x_userexitf =               " balmi-userexitf
*   x_detlevel =                " balmi-detlevel
*   x_probclass =               " balmi-probclass
*   x_alsort =                  " balmi-alsort
  EXCEPTIONS
    OBJECT_NOT_FOUND = 1        "
    SUBOBJECT_NOT_FOUND = 2     "
    .  "  ISU_DEVCHECK_APPLLOG_ONE_MSG

ABAP code example for Function Module ISU_DEVCHECK_APPLLOG_ONE_MSG





The ABAP code below is a full code listing to execute function module ISU_DEVCHECK_APPLLOG_ONE_MSG including all data declarations. The code uses 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 original method of declaring data variables up front. 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).

 

SELECT single OBJECT
FROM BALHDR
INTO @DATA(ld_x_object).


SELECT single SUBOBJECT
FROM BALHDR
INTO @DATA(ld_x_subobject).


DATA(ld_x_msgty) = some text here

DATA(ld_x_msgid) = some text here

DATA(ld_x_msgno) = Check type of data required
DATA(ld_x_msgv1) = 'some text here'.
DATA(ld_x_msgv2) = 'some text here'.
DATA(ld_x_msgv3) = 'some text here'.
DATA(ld_x_msgv4) = 'some text here'.

DATA(ld_x_altext) = some text here

DATA(ld_x_userexitp) = some text here

DATA(ld_x_userexitf) = some text here

DATA(ld_x_detlevel) = some text here

DATA(ld_x_probclass) = some text here

DATA(ld_x_alsort) = some text here . CALL FUNCTION 'ISU_DEVCHECK_APPLLOG_ONE_MSG' EXPORTING x_object = ld_x_object x_subobject = ld_x_subobject x_msgty = ld_x_msgty x_msgid = ld_x_msgid x_msgno = ld_x_msgno * x_msgv1 = ld_x_msgv1 * x_msgv2 = ld_x_msgv2 * x_msgv3 = ld_x_msgv3 * x_msgv4 = ld_x_msgv4 * x_altext = ld_x_altext * x_userexitp = ld_x_userexitp * x_userexitf = ld_x_userexitf * x_detlevel = ld_x_detlevel * x_probclass = ld_x_probclass * x_alsort = ld_x_alsort EXCEPTIONS OBJECT_NOT_FOUND = 1 SUBOBJECT_NOT_FOUND = 2 . " ISU_DEVCHECK_APPLLOG_ONE_MSG
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 2. "Exception "Add code for exception here ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_x_object  TYPE BALHDR-OBJECT ,
ld_x_subobject  TYPE BALHDR-SUBOBJECT ,
ld_x_msgty  TYPE BALMI-MSGTY ,
ld_x_msgid  TYPE BALMI-MSGID ,
ld_x_msgno  TYPE BALMI-MSGNO ,
ld_x_msgv1  TYPE STRING ,
ld_x_msgv2  TYPE STRING ,
ld_x_msgv3  TYPE STRING ,
ld_x_msgv4  TYPE STRING ,
ld_x_altext  TYPE BALMI-ALTEXT ,
ld_x_userexitp  TYPE BALMI-USEREXITP ,
ld_x_userexitf  TYPE BALMI-USEREXITF ,
ld_x_detlevel  TYPE BALMI-DETLEVEL ,
ld_x_probclass  TYPE BALMI-PROBCLASS ,
ld_x_alsort  TYPE BALMI-ALSORT .


SELECT single OBJECT
FROM BALHDR
INTO ld_x_object.


SELECT single SUBOBJECT
FROM BALHDR
INTO ld_x_subobject.


ld_x_msgty = some text here

ld_x_msgid = some text here

ld_x_msgno = Check type of data required
ld_x_msgv1 = 'some text here'.
ld_x_msgv2 = 'some text here'.
ld_x_msgv3 = 'some text here'.
ld_x_msgv4 = 'some text here'.

ld_x_altext = some text here

ld_x_userexitp = some text here

ld_x_userexitf = some text here

ld_x_detlevel = some text here

ld_x_probclass = some text here

ld_x_alsort = some text here

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name ISU_DEVCHECK_APPLLOG_ONE_MSG or its description.