REDEFINE_CREDIT_STATUS_ICON SAP Method Redefine icon for credit status (GUIBB)
Below is documentation, parameters and attributes of ABAP Method REDEFINE_CREDIT_STATUS_ICON within SAP class IF_BADI_SLS_LO_OIF_IDR. 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_BADI_SLS_LO_OIF_IDR 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 REDEFINE_CREDIT_STATUS_ICON can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method REDEFINE_CREDIT_STATUS_ICON
.| Name | Type | Data Type | Description | Default Value |
| IO_MODEL_EXT | Importing | TYPE REF TO IF_LO_OIF_MODEL_EXT | Interface for external access to class CL_LO_OIF_MODEL | |
| IV_CALLER_ID | Importing | TYPE TDD_CALLER_ID | Lean Order: ID of Caller | |
| IV_CREDIT_CHECK_STATUS | Importing | TYPE CMGST | Overall status of credit checks | |
| IV_TRTYP | Importing | TYPE TRTYP | Transaction type | |
| CS_IMAGE_ATTRIBUTES | Changing | TYPE TDS_LO_OIF_IMAGE_ATTRIBUTES | LO OIF Image attributes |
Exceptions of Method REDEFINE_CREDIT_STATUS_ICON
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_BADI_SLS_LO_OIF_IDR.
DATA: lv_CS_IMAGE_ATTRIBUTES TYPE TDS_LO_OIF_IMAGE_ATTRIBUTES,
lv_IO_MODEL_EXT TYPE IF_LO_OIF_MODEL_EXT,
lv_IV_CALLER_ID TYPE TDD_CALLER_ID,
lv_IV_CREDIT_CHECK_STATUS TYPE CMGST,
lv_IV_TRTYP TYPE TRTYP,
lv_other TYPE c.
CALL METHOD lo_class=>REDEFINE_CREDIT_STATUS_ICON(
EXPORTING
IO_MODEL_EXT = lv_IO_MODEL_EXT
IV_CALLER_ID = lv_IV_CALLER_ID
IV_CREDIT_CHECK_STATUS = lv_IV_CREDIT_CHECK_STATUS
IV_TRTYP = lv_IV_TRTYP
CHANGING
CS_IMAGE_ATTRIBUTES = lv_CS_IMAGE_ATTRIBUTES ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects