ABAP OO Class Methods

GET_LINE_ID SAP Method - Get Line Id







Below is documentation, parameters and attributes of ABAP Method GET_LINE_ID within SAP class TD_DIAN_EXTRACTION_INFO_HELPER. There is also a number of example ABAP code snipts to help you implement this method.

This method is available within SAP systems depending on your version and release level and you can view further information by entering the class name TD_DIAN_EXTRACTION_INFO_HELPER into relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in. Also check out the contributions below to view or add related hints, tips, example screen shots and any other information.


SAP Class method belongs too

TD_DIAN_EXTRACTION_INFO_HELPER

Method Name

GET_LINE_ID

Method Type

Instance Method:   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.







Returning Parameters:


RV_VALUE " TYPE GUID

Exceptions:



Example ABAP coding


DATA:
ld_RV_VALUE TYPE GUID.


DATA: lo_HELPER TYPE REF TO TD_DIAN_EXTRACTION_INFO_HELPER .
CALL METHOD lo_HELPER->GET_LINE_ID(
RECEIVING
RV_VALUE = ld_RV_VALUE ).

"Alternate coding for Method Call with returning parameter



ld_RV_VALUE = lo_HELPER->GET_LINE_ID().


ld_RV_VALUE = lo_HELPER->GET_LINE_ID().