HI
can anybody tell me does how to activate iCF Service for FDT_WorkBench.
I've to use BRFPlus Workbench . and i've sap netweaver 7.01 ABAP Trial Version.
HI
can anybody tell me does how to activate iCF Service for FDT_WorkBench.
I've to use BRFPlus Workbench . and i've sap netweaver 7.01 ABAP Trial Version.
Hi All,
Our firm is using BRF+ to manage data quality in SAP MDG (Master Data Governance).
Hence for deriving values of SAP fields based on conditions in MDG, we have taken the decision table approach.
The rule is configured as follows:
"Change the value of context parameter to 'X' after processing the decision table"
MDG successfully changes the value of the context parameter to X upon execution of rule/decision table.
However, my aim is to assign the value X just once after which the end user cannot change the value in MDG, for eg. Y. Since I am using the change functionality, it defaults the value to X even if I change the value to Y in MDG.
Hence I wanted to know if there is any other approach/function that can be used in BRF+ where the derived values are populated just once and can be changed thereafter by the user.
Thanks in advance.
hi brf+ experts,
i have requirement which shud be configured in brf+ and called to webdynpro /abap program.
requirement is """based on date range ,report type it has to display all division correspondingly and has to send mail to users as well as send an attachment to same recipients"''
thanks
siva.
Hi,
I've created an expression type in a System Application and marked its Access Level as Global. I've created a Class & Interface and assigned it to my Expression Type, and activated it successfully.
Now how do use this Expression Type to create expression in my Customizing Applications?
Do I have to make any more code changes like extending any more classes or implementing additional interfaces? (I've already created a dummy Query Class and UI class)
Any documentation or example of how to create a user-defined Expression Type and how to use them will be very helpful for me.
Thank you & Best Regards
Hi All,
Can anyone explain the brf+ with example.
With Regards,
Kapil
Message was edited by: Jocelyn Dart As a beginner, please refer to the links on the main page of the Business Rules Management space - such as this one http://scn.sap.com/docs/DOC-8824 where you will find many examples and explanations.
Hi All,
I have created an BRF plus application through FDT_WORKBENCH to calculate bonus of the employee with the help of SDN tutorial.
Now my concern is that how can i use this application in my report.
I have also read in the tutorial that we can create BRF plus application through ABAP coding but my question is, if i created an application through FDT_WORKBENCH then how can i use it in my ABAP report.
Thanks a lot in advance.
Regards,
Sheelesh
Hi,
After reading blogs on brm,I am sure we can export/import data in decision table from an excel.
But can it be done dynamically by say,a web service etc.
Please help me with this.
Regards,
Sri
Hi All,
I searched a lot for step by step BRFPlus tutorial blog/webinar or anything but could not find any.
Can you please help me get it?
Thanks in advance
Hi BRFPlus gurus,
We are using BRFplus rules in place of customizing tables to maintain some of our business rules.
The way I want to see this working is.
1) Define Application, Function, Expression (decision table), Data objects in Dev - maintain some test entries in decision table in dev to test.
2) Transport all the objects created in step 1 except decision table entries to QA and evntually to PRD.
The problem that I am facing is.
1) When I create an application I get to choose Storage Type: System, Customizing or Master Data.
I choose Customizing and that way the application and all the underneath objects get included in the customizing transport and is transportable. What I am not sure is how to exclude decision table entries from the customizing transport.
2) In Target systems (QA/PRD) we are not able to maintain any object, including decision table entries. We want users to be able to maintain decision table entris in target systems.
How can this be achieved? Is this even possible?
Also I will appreciate if someone can help me understand storage types (System, Customizing or Master Data) with examples. I see that if 'Master Data' type is used objects cann't be transported. If 'System' type is used, BRFPlus GUI screen exits while trying to enter transport number and Save. Customizing type is the only type I was able to use for my scneario, but I was not able to exclude decision table entries from the customizing request.
I will appreciate any ideas.
Thanks,
Saurabh
Hi,
I have a data object called Unit_Rate in more than one BRF+ application.
I want to know all the applications where this data object is used.
Code:
DATA ls_object_category TYPE if_fdt_query=>s_object_category_sel.
DATA lt_appl_id_name TYPE if_fdt_types=>ts_id_name.
DATA lt_selection TYPE if_fdt_query=>ts_selection.
DATA ls_selection TYPE if_fdt_query=>s_selection.
ls_object_category-customizing_objects = abap_true.
ls_object_category-masterdata_objects = abap_true.
ls_object_category-system_objects = abap_true.
ls_selection-queryfield = if_fdt_admin_data_query=>gc_fn_name.
ls_selection-sign = 'I'
ls_selection-option = 'EQ'
ls_selection-low = 'Unit_Rate'.
TRANSLATE ls_selection-low TO UPPER CASE.
INSERT ls_selection INTO TABLE lt_selection.
so_appl_query->select_data(
EXPORTING
is_object_category_sel = ls_object_category
its_selection = lt_selection
iv_memory_option = if_fdt_query=>gc_memopt_both
IMPORTING
eta_data = lt_appl_id_name ).
I have instantiated so_appl_query.
Regards,
Gopa
Hi
Iam trying to access Transaction code BRFPLUS in SAP ECC6.0.
But its showing the message that " Transaction BRFPLUS does not exist".
If any body knows how to resolve this issue please help me.
Regards
K.S.L.Neelima
Hi,
I have configured to trigger work flow and send email for QM notifications when a task is closed. I am using BRF + to send email. Could you please let me know the process of how can I debug the BRF+ application how to proceed when the QM notification is closed.
Thanks,
Balu
I understand that BRF Plus comes as pre-installed with Netweaver 7. Enh pack 1. Is this is optional package while installing Netwever?
Also I would like to what is the transaction code to launch the work bench? One document says it is FDT_WORKBENCH whereas some says it is BRFPlus. Please confirm.
Hello.
I need to get the complete content of a BRF+ decision table in an internal table in ABAP.
Is that possible?
Can someone show me some example code?
kind regards,
Jasper Blok
Hi,
I'm using the code template to call my BRF+ Application. As context the application gets a some elements and a table. The following shows the allocation of this table: itab is an internal table where the data is selected into. "line" is the line-type of itab. It consists of 2 Strings and 2 Floats (or rather the types of the View/Table from which the entries are going to be selected).
I had to change the CREATE DATA statement from TYPE [ENTER DESIRED TYPE HERE] to LIKE TABLE OF line because of the following conversion. With "CREATE DATA ... TYPE itab." I get an Error which says that a table of deep structure cant be converted to type itab.
Inside the move_data_to_data_object function I get a runtime error which says:
The trigger location is the line: ASSIGN er_internal->* to <lv_table_int>.
The Components of the table inside of the BRF+ Context are Text, Text, Number, Number. All other Context Elements are Numbers and set to 0.
Thanks for any hints!
Best Regards,
Dominik
Message was edited by: Dominik Eira Elias
Hi Experts ,
I have a requirement , where I want to read complete decision table in internal table whenever user tries to maintain that particular decision table.
So before maintaining values in the decision table, take backup of decision table into internal table and send mail with attachment.
I have already gone through the available links where it is mentioned to implement interface IF_FDT_DECISION_TABLE~GET_TABLE_DATA.
But I need help on how to write code to read data in internal table using GET_TABLE_DATA method.
Please help with the sample code to read decision table into an internal table.Thanks.
Hi Gurus,
I have created a BRF+ Application which has two decision tables and rules and functions to simulate thoese rules. I am calling BRF+ functions in my ABAP application.I
My application worked well in DEV and QUALITY system.
But when we transported this application to PROD, it says we can not make changes to BRF+ decision tables.
We want to maintain rules in both decision tables in PROD system directly.
have created my application as customized object. Is this the reason it is stopping me to modify BRF+ decision tables?
Please suggest ASAP as its production system issue.
Thanks in advance.
Hello.
I need to get the complete content of a BRF+ decision table in an internal table in ABAP.
Is that possible?
Can someone show me some example code?
kind regards,
Jasper Blok
Hello Experts,
I am using BRF+ ACTION SEND EMAIL to send email to a group of people when a QN is completed.
I already have 8 place holders for this , when I am trying to insert 9th 10th 11th place holders its not all showing in the message place holders list where it should show,
I already tried activating and refreshing message place holders but didnt work.
I want to know if there is any restriction when the number of place holders.
Thanks,
Bala