SAP Function Modules

IW_C_AREA_GET SAP Function module







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

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


Pattern for FM IW_C_AREA_GET - IW C AREA GET





CALL FUNCTION 'IW_C_AREA_GET' "
* EXPORTING
*   language = SY-LANGU         " sy-langu
*   kw_application = 'KM_KW_R3'  " skwf_refst-appl  KW Framework: Application
*   only_local_areas = 'X'      " iwparams-flag
* TABLES
*   areas =                     " iwbarea
*   areas_texts =               " sdokdocspt
    .  "  IW_C_AREA_GET

ABAP code example for Function Module IW_C_AREA_GET





The ABAP code below is a full code listing to execute function module IW_C_AREA_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:
it_areas  TYPE STANDARD TABLE OF IWBAREA,"TABLES PARAM
wa_areas  LIKE LINE OF it_areas ,
it_areas_texts  TYPE STANDARD TABLE OF SDOKDOCSPT,"TABLES PARAM
wa_areas_texts  LIKE LINE OF it_areas_texts .

DATA(ld_language) = 'Check type of data required'.

DATA(ld_kw_application) = some text here

DATA(ld_only_local_areas) = some text here

"populate fields of struture and append to itab
append wa_areas to it_areas.

"populate fields of struture and append to itab
append wa_areas_texts to it_areas_texts. . CALL FUNCTION 'IW_C_AREA_GET' * EXPORTING * language = ld_language * kw_application = ld_kw_application * only_local_areas = ld_only_local_areas * TABLES * areas = it_areas * areas_texts = it_areas_texts . " IW_C_AREA_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_language  TYPE SY-LANGU ,
it_areas  TYPE STANDARD TABLE OF IWBAREA ,
wa_areas  LIKE LINE OF it_areas,
ld_kw_application  TYPE SKWF_REFST-APPL ,
it_areas_texts  TYPE STANDARD TABLE OF SDOKDOCSPT ,
wa_areas_texts  LIKE LINE OF it_areas_texts,
ld_only_local_areas  TYPE IWPARAMS-FLAG .

ld_language = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_areas to it_areas.

ld_kw_application = some text here

"populate fields of struture and append to itab
append wa_areas_texts to it_areas_texts.

ld_only_local_areas = 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 IW_C_AREA_GET or its description.