SAP Classes

Share |

GET_BRF_FIELDS_TEXT SAP Method - Get text to brf fields


GET_BRF_FIELDS_TEXT 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_BRF_FIELDS_TEXT

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


Class Name: RS_BCT_PBPC_ADD_DATA_SVC

Method Name: GET_BRF_FIELDS_TEXT

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

Importing Parameters:
   I_FIELDNAME " Field Name TYPE FIELDNAME

Returning Parameters:
   RE_TEXT " Explanatory short text TYPE REF TO DDTEXT

Exceptions:


Example ABAP coding

DATA:
   ld_I_FIELDNAME TYPE FIELDNAME ,
   ld_RE_TEXT TYPE REF TO DDTEXT.

" ld_I_FIELDNAME = "<Populate with value>

CALL METHOD RS_BCT_PBPC_ADD_DATA_SVC=>GET_BRF_FIELDS_TEXT(
EXPORTING
   I_FIELDNAME = ld_I_FIELDNAME
RECEIVING
   RE_TEXT = ld_RE_TEXT ).

"Alternate coding for Method Call with returning parameter

ld_RE_TEXT = RS_BCT_PBPC_ADD_DATA_SVC=>GET_BRF_FIELDS_TEXT(
EXPORTING
   I_FIELDNAME = ld_I_FIELDNAME ).


comments powered by Disqus