PREPARE_EXTDOC SAP Method prepare entry for EXTDOC









Below is documentation, parameters and attributes of ABAP Method PREPARE_EXTDOC within SAP class IF_FICA_ODN_INT_PREPARE_EXTDOC. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_FICA_ODN_INT_PREPARE_EXTDOC into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method PREPARE_EXTDOC can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method PREPARE_EXTDOC

.

NameTypeData TypeDescriptionDefault Value
IO_FICA_ODN_XXImportingTYPE REF TO
CL_FICA_ODN_XX
FICA ODN generic
EX_RETURNExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
CS_FKKEXTDOCChangingTYPE
DFKKEXTDOC
Official Document Number with Attributes
CS_FKKEXTDOC_CANCELChangingTYPE
DFKKEXTDOC
Official Document Number with Attributes
CT_MESSAChangingTYPE
FKK_TAB_CORR_FIMSG
Table of FI Messages



Exceptions of Method PREPARE_EXTDOC

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_FICA_ODN_INT_PREPARE_EXTDOC.
DATA: lv_CS_FKKEXTDOC TYPE DFKKEXTDOC,
lv_CS_FKKEXTDOC_CANCEL TYPE DFKKEXTDOC,
lv_CT_MESSA TYPE FKK_TAB_CORR_FIMSG,
lv_EX_RETURN TYPE BOOLE_D,
lv_IO_FICA_ODN_XX TYPE CL_FICA_ODN_XX,
lv_other TYPE c.

CALL METHOD lo_class=>PREPARE_EXTDOC(
EXPORTING
IO_FICA_ODN_XX = lv_IO_FICA_ODN_XX
IMPORTING
EX_RETURN = lv_EX_RETURN
CHANGING
CS_FKKEXTDOC = lv_CS_FKKEXTDOC
CS_FKKEXTDOC_CANCEL = lv_CS_FKKEXTDOC_CANCEL
CT_MESSA = lv_CT_MESSA ).

Links to Related Class(s)

IF_FICA_...
Full list of available SAP object classes

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!