SAP Function Modules

K_SETTLEMENT_TECHINFO_GET SAP Function module







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

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


Pattern for FM K_SETTLEMENT_TECHINFO_GET - K SETTLEMENT TECHINFO GET





CALL FUNCTION 'K_SETTLEMENT_TECHINFO_GET' "
* EXPORTING
*   incl_aufgr =                " c
*   incl_count_com =            " c
*   incl_trace_objnr =          " c
*   id_aufgr =                  " lko74-aufgr
*   id_count_com =              " lko74-count_com
*   id_trace_objnr =            " coiob-objnr
*   id_rfc_no =                 " lko74-rfc_no  Maximum number of work processes that can be used
  IMPORTING
    ed_aufgr =                  " lko74-aufgr
    ed_count_com =              " lko74-count_com
    ed_trace_objnr =            " coiob-objnr
    ed_rfc_no =                 " lko74-rfc_no  Maximum number of work processes that can be used
    .  "  K_SETTLEMENT_TECHINFO_GET

ABAP code example for Function Module K_SETTLEMENT_TECHINFO_GET





The ABAP code below is a full code listing to execute function module K_SETTLEMENT_TECHINFO_GET 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:
ld_ed_aufgr  TYPE LKO74-AUFGR ,
ld_ed_count_com  TYPE LKO74-COUNT_COM ,
ld_ed_trace_objnr  TYPE COIOB-OBJNR ,
ld_ed_rfc_no  TYPE LKO74-RFC_NO .

DATA(ld_incl_aufgr) = 'Check type of data required'.
DATA(ld_incl_count_com) = 'Check type of data required'.
DATA(ld_incl_trace_objnr) = 'Check type of data required'.

DATA(ld_id_aufgr) = some text here

DATA(ld_id_count_com) = 123

DATA(ld_id_trace_objnr) = some text here

DATA(ld_id_rfc_no) = 123 . CALL FUNCTION 'K_SETTLEMENT_TECHINFO_GET' * EXPORTING * incl_aufgr = ld_incl_aufgr * incl_count_com = ld_incl_count_com * incl_trace_objnr = ld_incl_trace_objnr * id_aufgr = ld_id_aufgr * id_count_com = ld_id_count_com * id_trace_objnr = ld_id_trace_objnr * id_rfc_no = ld_id_rfc_no IMPORTING ed_aufgr = ld_ed_aufgr ed_count_com = ld_ed_count_com ed_trace_objnr = ld_ed_trace_objnr ed_rfc_no = ld_ed_rfc_no . " K_SETTLEMENT_TECHINFO_GET
IF SY-SUBRC EQ 0. "All OK 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_ed_aufgr  TYPE LKO74-AUFGR ,
ld_incl_aufgr  TYPE C ,
ld_ed_count_com  TYPE LKO74-COUNT_COM ,
ld_incl_count_com  TYPE C ,
ld_ed_trace_objnr  TYPE COIOB-OBJNR ,
ld_incl_trace_objnr  TYPE C ,
ld_ed_rfc_no  TYPE LKO74-RFC_NO ,
ld_id_aufgr  TYPE LKO74-AUFGR ,
ld_id_count_com  TYPE LKO74-COUNT_COM ,
ld_id_trace_objnr  TYPE COIOB-OBJNR ,
ld_id_rfc_no  TYPE LKO74-RFC_NO .

ld_incl_aufgr = 'Check type of data required'.
ld_incl_count_com = 'Check type of data required'.
ld_incl_trace_objnr = 'Check type of data required'.

ld_id_aufgr = some text here

ld_id_count_com = 123

ld_id_trace_objnr = some text here

ld_id_rfc_no = 123

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 K_SETTLEMENT_TECHINFO_GET or its description.