SAP Classes

Share |

GET_RESULT_DEFINITION SAP Method - Get result definition to special data fields


GET_RESULT_DEFINITION is a standard SAP ABAP method of class RS_BCT_PBPC_ADD_DATA_SVC available within R/3 SAP systems depending on your version and release level. Below is the standard documentation available for it. You can view this information and more if you enter the class name RS_BCT_PBPC_ADD_DATA_SVC into the relevant SAP transaction such as SE24 or SE80 and then select the method GET_RESULT_DEFINITION

Contribute(Add Comment)
See the comments section below for any useful hints, tips and information specific to this SAP Method. Also please feel free to add any further details you feel would be useful or ask any questions you may have. You can then easily find this info again simply by searching on the method name GET_RESULT_DEFINITION or its description.


Class Name: RS_BCT_PBPC_ADD_DATA_SVC

Method Name: GET_RESULT_DEFINITION

Method Type: Static Method
This is a Static Method so you can call it directly

Importing Parameters:
   I_DATA_REF " Data TYPE DATA
   I_ROLLNAME " Data element (semantic domain) TYPE ROLLNAME

Returning Parameters:
   RE_RESULT_DEF " Result Definition TYPE REF TO RESULT_DEF

Exceptions:


Example ABAP coding

DATA:
   ld_I_DATA_REF TYPE DATA ,
   ld_I_ROLLNAME TYPE ROLLNAME ,
   ld_RE_RESULT_DEF TYPE REF TO RESULT_DEF.

" ld_I_DATA_REF = "<Populate with value>
" ld_I_ROLLNAME = "<Populate with value>

CALL METHOD RS_BCT_PBPC_ADD_DATA_SVC=>GET_RESULT_DEFINITION(
EXPORTING
   I_DATA_REF = ld_I_DATA_REF
   I_ROLLNAME = ld_I_ROLLNAME
RECEIVING
   RE_RESULT_DEF = ld_RE_RESULT_DEF ).

"Alternate coding for Method Call with returning parameter

ld_RE_RESULT_DEF = RS_BCT_PBPC_ADD_DATA_SVC=>GET_RESULT_DEFINITION(
EXPORTING
   I_DATA_REF = ld_I_DATA_REF
   I_ROLLNAME = ld_I_ROLLNAME ).


comments powered by Disqus