SAP Classes

Share |

CHECK_BRF_FIELDS SAP Method - Check fieldname in data def


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

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


Class Name: RS_BCT_PBPC_ADD_DATA_SVC

Method Name: CHECK_BRF_FIELDS

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

Importing Parameters:
   I_FIELDNAME " Field Name TYPE FIELDNAME

Exceptions:
   NOT_FOUND -


Example ABAP coding

DATA:
   ld_I_FIELDNAME TYPE FIELDNAME.

" ld_I_FIELDNAME = "<Populate with value>

CALL METHOD RS_BCT_PBPC_ADD_DATA_SVC=>CHECK_BRF_FIELDS(
EXPORTING
   I_FIELDNAME = ld_I_FIELDNAME
EXCEPTIONS
   NOT_FOUND = 5 ).


comments powered by Disqus