RETRIEVE_POLICY SAP Method Get Insurance Policy
Below is documentation, parameters and attributes of ABAP Method RETRIEVE_POLICY within SAP class /FSIH/CL_POLICY_OPERATION. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /FSIH/CL_POLICY_OPERATION 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 RETRIEVE_POLICY can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method RETRIEVE_POLICY
.| Name | Type | Data Type | Description | Default Value |
| IM_POLICY_KEY | Importing | TYPE REF TO /FSIH/IF_POLICY_KEY | ||
| EX_POLICY | Exporting | TYPE REF TO /FSIH/CL_POLICY | Value Object Class for Insurance Policy |
Exceptions of Method RETRIEVE_POLICY
/FSIH/CL_POLICY
Example ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO /FSIH/CL_POLICY_OPERATION.
DATA: lv_EX_POLICY TYPE /FSIH/CL_POLICY,
lv_IM_POLICY_KEY TYPE /FSIH/IF_POLICY_KEY,
lv_other TYPE c.
CALL METHOD lo_class=>RETRIEVE_POLICY(
EXPORTING
IM_POLICY_KEY = lv_IM_POLICY_KEY
IMPORTING
EX_POLICY = lv_EX_POLICY ).
Links to Related Class(s)
/FSIH/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects