SAP Classes

Share |

CONVERT_TO_BRF150 SAP Method - Convert result_def to TBRF150


CONVERT_TO_BRF150 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 CONVERT_TO_BRF150

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 CONVERT_TO_BRF150 or its description.


Class Name: RS_BCT_PBPC_ADD_DATA_SVC

Method Name: CONVERT_TO_BRF150

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

Importing Parameters:
   IS_RESULT_DEF " TYPE RESULT_DEF

Changing Parameters:
   CS_BRF150 " BRF: Expression TYPE TBRF150

Exceptions:


Example ABAP coding

DATA:
   ld_IS_RESULT_DEF TYPE RESULT_DEF ,
   ld_CS_BRF150 TYPE TBRF150.

" ld_IS_RESULT_DEF = "<Populate with value>

CALL METHOD RS_BCT_PBPC_ADD_DATA_SVC=>CONVERT_TO_BRF150(
EXPORTING
   IS_RESULT_DEF = ld_IS_RESULT_DEF
CHANGING
   CS_BRF150 = ld_CS_BRF150 ).


comments powered by Disqus