SAP Function Modules

OIG_OUTPUT_DETERMINATION SAP Function module - Output determination processing







OIG_OUTPUT_DETERMINATION 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 OIG_OUTPUT_DETERMINATION into the relevant SAP transaction such as SE37 or SE80.

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


Pattern for FM OIG_OUTPUT_DETERMINATION - OIG OUTPUT DETERMINATION





CALL FUNCTION 'OIG_OUTPUT_DETERMINATION' "Output determination processing
  EXPORTING
    o_kappl =                   " t683s-kappl
    o_kalsm =                   " t683s-kalsm
    o_objky =                   " nast-objky
*   o_text =                    "
    o_btext =                   " dv70a-btext
  TABLES
    o_part =                    " msgpa
  EXCEPTIONS
    OTHERS = 1                  "
    FUNCTION_CANCELLED = 2      "
    .  "  OIG_OUTPUT_DETERMINATION

ABAP code example for Function Module OIG_OUTPUT_DETERMINATION





The ABAP code below is a full code listing to execute function module OIG_OUTPUT_DETERMINATION 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).

DATA:
it_o_part  TYPE STANDARD TABLE OF MSGPA,"TABLES PARAM
wa_o_part  LIKE LINE OF it_o_part .


SELECT single KAPPL
FROM T683S
INTO @DATA(ld_o_kappl).


SELECT single KALSM
FROM T683S
INTO @DATA(ld_o_kalsm).


SELECT single OBJKY
FROM NAST
INTO @DATA(ld_o_objky).

DATA(ld_o_text) = 'some text here'.

DATA(ld_o_btext) = some text here

"populate fields of struture and append to itab
append wa_o_part to it_o_part. . CALL FUNCTION 'OIG_OUTPUT_DETERMINATION' EXPORTING o_kappl = ld_o_kappl o_kalsm = ld_o_kalsm o_objky = ld_o_objky * o_text = ld_o_text o_btext = ld_o_btext TABLES o_part = it_o_part EXCEPTIONS OTHERS = 1 FUNCTION_CANCELLED = 2 . " OIG_OUTPUT_DETERMINATION
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_o_kappl  TYPE T683S-KAPPL ,
it_o_part  TYPE STANDARD TABLE OF MSGPA ,
wa_o_part  LIKE LINE OF it_o_part,
ld_o_kalsm  TYPE T683S-KALSM ,
ld_o_objky  TYPE NAST-OBJKY ,
ld_o_text  TYPE STRING ,
ld_o_btext  TYPE DV70A-BTEXT .


SELECT single KAPPL
FROM T683S
INTO ld_o_kappl.


"populate fields of struture and append to itab
append wa_o_part to it_o_part.

SELECT single KALSM
FROM T683S
INTO ld_o_kalsm.


SELECT single OBJKY
FROM NAST
INTO ld_o_objky.

ld_o_text = 'some text here'.

ld_o_btext = 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 OIG_OUTPUT_DETERMINATION or its description.