Account edit authorization based on prospect/customer classification

Hi everyone,
Is it possible somehow to ensure that a user is allowed to create and edit prospects but when the prospect flag gets removed the user should not be able to edit the customer data?
The business logic is that when an account is classified as a customer then we do not want sales people to change address data in Cloud for Customer because this will then be replicated as a change to ERP which is considered the master for customer master data.
Br,
Anders

Hello Andres,
We had a similar requirement for one of our Customers who had integration to CRM OnPremise.
They did not wanted users to Create or Change Accounts, but only Prospects.
We used SDK fro that where in we had set the Properties for the Prospect:
1. Make Prospect Flag READ-ONLY & Checked, so that ONLY Prospect creation is permitted.
2. Make the Header & other available items for the Account Object READ-ONLY, this would not allow any user to make changes to the Accounts.
There is a little Custom work involved here of creation of your solution & using the extesnsibility explorer to enhance this.
[Generally, Customers would not like Master data to be flowing back from Cloud to ECC/CRM OnPremise to maintain consistency of Master data, for this case which I have mentioned above, for Accounts, it was a unidirectional integration flow of accounts from CRM OnPremise to Cloud.]
Hope this gives you some direction.
BR
Ankur
Message was edited by: Ankur Godre

Similar Messages

  • Generating Supplier Liability Account based on the Supplier Classification

    Hi ,
    In R12 I have a custom requirement like follows. Need to generate the Supplier Liability Account based on the Supplier Classification. When we select supplier type then by default liabilty account value will be the value from supplier--> setup --> options --> fianancial otpions --> accounting tab (GL -accounts liability value).
    so when we change the supplier type the liability account should changed based on that classification value.
    I have code in 11i where custom.pll was modified to acheive this, but how to implement this in R12 as supplier form is OAF based.
    the code from custom.pll for this is
    procedure event(event_name varchar2)
    is
    lCurrBlock varchar2(30);
    lVendorType varchar2(30);
    lDefaultCCID number(15);
    lCustomCCID number(15);
    cursor customCC(x_vendor_type varchar2,x_default_cc_id number) is
                   select
                   cst.code_combination_id
                   from
                   fnd_lookup_values vty,
                   gl_code_combinations dfl,
                   gl_code_combinations cst
                   where 1=1
                   and vty.view_application_id = 201
                   and vty.lookup_type = 'VENDOR TYPE'
                   and vty.language = 'US'
                   and vty.lookup_code = x_vendor_type
                   and dfl.code_combination_id = x_default_cc_id
                   and dfl.segment1 = cst.segment1
                   and vty.tag = cst.segment2 --account no
                   and dfl.segment3 = cst.segment3
                   and dfl.segment4 = cst.segment4
                   and dfl.segment5 = cst.segment5
                   and (dfl.segment6 = cst.segment6 or (dfl.segment6 is null and cst.segment6 is null))
                   and (dfl.segment7 = cst.segment7 or (dfl.segment7 is null and cst.segment7 is null))
                   and (dfl.segment8 = cst.segment8 or (dfl.segment8 is null and cst.segment8 is null))
                   and (dfl.segment9 = cst.segment9 or (dfl.segment9 is null and cst.segment9 is null))
                   and (dfl.segment10 = cst.segment10 or (dfl.segment10 is null and cst.segment10 is null))
                   and (dfl.segment11 = cst.segment11 or (dfl.segment11 is null and cst.segment11 is null))
                   and (dfl.segment12 = cst.segment12 or (dfl.segment12 is null and cst.segment12 is null))
                   and (dfl.segment13 = cst.segment13 or (dfl.segment13 is null and cst.segment13 is null))
                   and (dfl.segment14 = cst.segment14 or (dfl.segment14 is null and cst.segment14 is null))
                   and (dfl.segment15 = cst.segment15 or (dfl.segment15 is null and cst.segment15 is null))
                   and (dfl.segment16 = cst.segment16 or (dfl.segment16 is null and cst.segment16 is null))
                   and (dfl.segment17 = cst.segment17 or (dfl.segment17 is null and cst.segment17 is null))
                   and (dfl.segment18 = cst.segment18 or (dfl.segment18 is null and cst.segment18 is null))
                   and (dfl.segment19 = cst.segment19 or (dfl.segment19 is null and cst.segment19 is null))
                   and (dfl.segment20 = cst.segment20 or (dfl.segment20 is null and cst.segment20 is null))
                   and (dfl.segment21 = cst.segment21 or (dfl.segment21 is null and cst.segment21 is null))
                   and (dfl.segment22 = cst.segment22 or (dfl.segment22 is null and cst.segment22 is null))
                   and (dfl.segment23 = cst.segment23 or (dfl.segment23 is null and cst.segment23 is null))
                   and (dfl.segment24 = cst.segment24 or (dfl.segment24 is null and cst.segment24 is null))
                   and (dfl.segment25 = cst.segment25 or (dfl.segment25 is null and cst.segment25 is null))
                   and (dfl.segment26 = cst.segment26 or (dfl.segment26 is null and cst.segment26 is null))
                   and (dfl.segment27 = cst.segment27 or (dfl.segment27 is null and cst.segment27 is null))
                   and (dfl.segment28 = cst.segment28 or (dfl.segment28 is null and cst.segment28 is null))
                   and (dfl.segment29 = cst.segment29 or (dfl.segment29 is null and cst.segment29 is null))
                   and (dfl.segment30 = cst.segment30 or (dfl.segment30 is null and cst.segment30 is null));
    begin
         if name_in('SYSTEM.CURRENT_FORM') != 'APXVDMVD' then
              return;
         end if;
         lCurrBlock := name_in('SYSTEM.CURSOR_BLOCK');
         if event_name = 'WHEN-NEW-FORM-INSTANCE' then
         --     app_item_property.set_property('VNDR.VENDOR_TYPE_DISP_MIR',required,property_true);
              copy(name_in('WORLD.ACCTS_PAY_CODE_COMBINATION_ID'),'GLOBAL.XX_APXVDMVD_ACCTS_PAY_CC_ID');
         elsif lCurrBlock = 'VNDR' and event_name in ('WHEN-VALIDATE-RECORD','WHEN-NEW-RECORD-INSTANCE') then
         open customCC(name_in('VNDR.VENDOR_TYPE_LOOKUP_CODE'),name_in('GLOBAL.XX_APXVDMVD_ACCTS_PAY_CC_ID'));
         fetch customCC into lCustomCCID;
         close customCC;
         if lCustomCCID is null then
              copy(name_in('GLOBAL.XX_APXVDMVD_ACCTS_PAY_CC_ID'),'WORLD.ACCTS_PAY_CODE_COMBINATION_ID');
         else
         copy(lCustomCCID,'WORLD.ACCTS_PAY_CODE_COMBINATION_ID');
         end if;
         end if;
    end;
    end;
    please help

    Hi,
    While you can refer to the SLA guide, for quick pointers what you need to do is:
    1. Identify the transaction types and associated events for that transaction.
    2. Build an accounting rule for the above.
    An example would be AP invoice validation or application of prepayments.
    The SLA guide provides step by step details on the above.
    Good Luck !!!
    Regards,
    Udit

  • Error while changing Account Group for Prospective Customer

    Dear All,
    I am getting an error when the account group of a prospective customer needs to be changed to Sold to Party
    The planned change is not allowed as the following groups would be masked by the new account group,
    S      Group                    Group Name             M                 Group Name
    V       D315                    Shipping                   030              Rail Specifications.
    Please let me know what is the reason for this error and as per my knowledge even if the no range is different for both these partner functions the system should allow me to change the account group however the earlier no given to prospective customer will still exist even if the prospective customer number is changed to sold to party please let me know otherwise.
    Kind Regards
    Atul

    Hi,
    Go to KOH2
    Select the order by pressing F9. Now place the cursor where you want to put the order group. i.e on same level or Lower level.
    Regards,
    Jigar

  • Classification by role sales org  (prospect, customer, competitor).URGENT!!

    Hi All,
    Could someone please help me in customizing the Classification by
    Classification customizing:
    - Role by sales organization (prospect, customer, competitor)
    - Ranking by country (gold, silver, normal, problematic)
    This can be done in the IMG>Master Data>BP--> define classification.
    The criteria should be role as Sales Org and ranking as Country with their respective attributes as mentioned above.
    Please help me guys!!!
    U can also mail me at  [email protected]
    thanks in advance ....

    Hi Chin,
    You need to maintain the sales organization field in transaction code O7F1.  Then, this field is available for open item selection on incoming payment.
    In the same screen, you can rearrange and bring this field on the first few fields of selection.
    Also, you can update the same field on O7F3, this will be useful for making search for selection of open items.
    Hope this helps.  Let me know if you have any questions.
    Rgds,
    Sreeni

  • R/3 to CRM: Automatic replication of Prospect  customer

    Hi Guys
    We are downloading Business Partner data from R/3 to CRM , Manual download of BP'S (Initial Load->start) is working fine . we are creating prospect customer in R/3  through CRM Action Box call the moment we create the prospect customer in R/3 it should automatically replicate in CRM with out initiating manual down load .
    pls help what settings to be done inorder to download BP'S automatically
    Thanks in advance
    Warm regards
    Rajasekhar

    Hi madhu,
    Have you done the Intial load for the object "CUSTOMER_MAIN". Once the download of this object is done, Delta load for business partners to flow from R/3 to CRM and vice-versa will be activated automatically.
    Please check the transaction R3AC4, where you should identify the Object calss entry as BUPA and RFC destination as your R/3 system. If not please make that entry, then delta will happen automatically
    As vikas suggested, please make sure the PIDE settings, where you should assign R/3 prospect account group to CRM classification "C" and Number grouping.
    And also check the BDOCS in Transaction SMW01.
    Rewards points if it helps
    Murali

  • R/3 BP role ship to party from prospective customer not updating in to CRM

    Hi,
      When we change Business partner role to ship-to-party from prospective customer in R/3  not updating in to SAP CRM .
    Please suggest the solution for this.
    Thanks,
    Naveen Kumar.

    Dear Rekha,
    I have verified but No issues in PIDE, looks everything is fine.
    Account Groups 0001 to 0005 were asssigned to Classification B.
    But initially when I started replicating customers all the roles were created as Sold-to-Party in CRM irrespective of their role in R/3. We have applied Note: 914437. Since then the issue got resolved.
    Pls suggest me in this regard.
    Srujan

  • Questions to be asked to a Prospective Customer

    Dear Guys,
                     Well we are in need of some Questionnare or Document which covers the List of Questions or Topics to be asked to  a Prospective Customer,coz we are about to meet them regarding BW Implementation.So it would be great if someone can take time to help us out with this...
    Manythanks
    Arun
    ([email protected])

    HI here are the few Question from ASAP methodology:
    Questionnaire for Initial Business Blueprint Design Workshop
    What is the current systems environment, which exists today, in support of the Planning Process? Please include all primary source systems / interfaces currently in use as well as any outbound interfaces / systems which receive data from the planning Process. If systems documentation exists please provide.
    What changes to the above process are expected as a result of the current implementation and/or other projects currently underway?
    Does the Company have SAP-BW installed and if so which version? For what purpose is the BW currently being used? Is there existing content within the Business Warehouse, which would potentially be utilised in the Planning Process (i.e. Actual Data / Master and Meta-Data)?
    If BW is currently in place, what are the primary data sources for that Master / Transactional data which will be utilised in the Planning Process?
    Is the intent to develop a global template for rollout across the organisation?
    What are the key business benefits which it is expected the implementation will deliver?
    What is the current organisational structure of the Business Units, in which planning is to be implemented?
    What are the key characteristics or dimensions by which planning will be performed?
    Approximately how many characteristic values would exist for each of these key dimensions/characteristics (i.e. Number of accounts, cost centres, product masters etc.)?
    What is the source for Master Data and Meta-Data (i.e. Hierarchies) for these characteristics?
    What is the planning period (annual, monthly, weekly etc.)?
    How many different plan/budget versions are created by the Company and what is the purpose of each?
    DATA SOURCES
    What source data is required to support the planning process (i.e. Actual results)?
    Where would this data be sourced?
    Does an existing interface currently exist to extract this information from the source system?
    Can this data be obtained via the use of SAP BW Data Extraction from R/3?
    DATA INPUT
    How do users currently input / process plan data?
    Are input templates/models available for analysis?
    How many different data input templates/models currently exist?
    What changes to the input process are expected?
    Is WEB enabled input of data a requirement?
    Approximately how many users currently provide input into the planning process? How many users are expected subsequent to introduction of the new system?
    Where Excel templates/models are currently used, would the intent be to integrate these models into the core BPS functionality or alternately to maintain the existing Excel spreadsheets and link to SEM-BPS?
    Are centralised templates to be developed or will different users within the organisation require the ability to create their own business models locally?
    AUTHORISATION AND CONTROL
    Is control over access to either plan and / or reported data required?
    By which characteristics does plan access need to be restricted.
    What are the primary roles within the Planning Process? Obtain a brief overview of functions and any required restrictions on the ability to either plan and/or view data.
    STATUS AND TRACKING
    Is there a requirement to monitor the current status of the Planning Process?
    Does this monitoring include the requirement for plan data to be submitted for review and approval at different levels within the organisation?
    If monitoring and approval is required please define the current review and approval process, additionally highlight any desired changes to this process.
    REPORTING/ OUTBOUND INTERFACES
    What Plan Reports are generated today?
    What new and or additional reports are desired?
    What is the current process for report distribution?
    Are there desired changes to this process?
    Is WEB Based Reporting Required?
    Are third Party Reporting Products currently utilised if so which ones?
    Is it expected that they will continue to be going forward?
    Are Published Quality Reports required (I.E. Requirement to utilise Crystal)?
    Will Reports / Queries be defined centrally or is the desire to allow end-users full ad-hoc query capability?
    Are there any requirements to provide for Outbound Interfaces passing plan data from BPS to other Systems? If so what data needs to be passed, to which system and how often?
    Is there a requirement to retract the plan data back to SAP R/3? Is so what data needs to be passed and to which modules within R/3?

  • Create prospect customer from UI

    Hello to All,
    Does anyone know how to create a prospect customer from UI?
    Thank you in advance,
    Roula

    Hi Roula,
    Please, see OSS Note 1129682. The correct authorization object is CRM_BPROLE for WEB UI.
    I have completed similar requirement in our CRM 2007 WEB UI.
    I have maintained CRM_BPROLE authorization object for users with the following values:
    Activity: 02 (Change)
    Value: ZBP02 (Prospect).
    and
    Activity: 03 (Display)
    Value: ZCRM01  (Sold-To).
    Also, please activate the badi Implementation - BADI_CRM_BP_FILTER_ATTRIBUTE for BADI_CRM_BUPA_FILTER_BPROLE.
    spro->CRM->Master Data->Business Partner->Business Add Ins->Implementation:Filtering of BP Roles by Authorization check.
    Let me know if it helps.
    Regards,
    Vadim.
    Edited by: vadim0770 on Oct 28, 2009 4:37 PM

  • Analysis Authorization based on Hier node with multiple display hierarchies

    Hi guys - I've got a problem where s.o. might have an idea of how to switch on the light at the end of the tunnel, I am currently standing in:
    Requirement:
    Cost Center Authorization should be given through RSECADMIN, reporting should be possible for any hierarchy that exists for the authorization relevant info object.
    Preferred solution:
    The Cost Center Analysis Authorization should be given through RSECADMIN - Hierarchy node assignment.
    u2022     A dedicated Authorization Cost Center Hierarchy will be maintained in ECC6 as an alternative cost center hierarchy and extracted into BW.
    u2022     The RSECADMIN Hierarchy node assignment should be based on a particular node (Type 2).
    u2022     The display level will be specified as required (here: Level 7)
    u2022     The Authorization granted should be independent of hierarchy name and version (validity 3).
    Reporting Scenario and technical impact:
    As mentioned above, when designing and running a query the user should be able to freely select other (i.e. than the authorization) display hierarchies for the authorization relevant reporting object 'Cost Center' as well. The technical names of the semantically relevant hierarchy nodes could therefore vary. E.g. cost centers 1, 2 and 3, being assigned under hierarchy node u2018Au2019 of the RSECADMIN relevant authorization hierarchy, could be subsumed by hierarchy node u2018Bu2019 in another display hierarchy, which the user may want to display in accordance to his reporting needs. Ideally, the alternative display hierarchy should therefore display node u2018Bu2019.
    My findings so far (based on prototyping) turn out that this is not possible as long u2018Bu2019 (and its hierarchy) is not authorized in RSECADMIN. Can these findings be confirmed? And if not, would anyone have an idea of how to facilitate the reporting scenario?
    Would there be any other way to grant access, possibly based on RSECADMIN single values, and also enable the user to flexibly display hierarchies with only those hierarchy nodes whose single cost center values the user has been given access to?
    Thanks everyone for your input...
    Claus
    Edited by: Claus64 on Jul 13, 2009 4:10 AM

    HI CLause,
    On Jul 14 2009, you wrote in SDN and said:
    FYI: Found a solution...
    The hierarchy analysis authorization will be based on a navigational attribute of cost center.
    With analysis authorizations it is possible to declare the Auth object (e.g. 0COSTCENTER__RACCAUT0) as authorization relevant and leave the superior object 0COSTCENTER auth irrelevant.
    The auth will be given for 0COSTCENTER__RACCAUT0. This object will be placed as a filter of the query, being restricted by an Authorization variable for hierarchy nodes.
    Due to the concept of Analysis Authorizations, this variable will automatically pick up the nodes granted as part of RSECADMIN Hierarchy based Authorization.
    As mentioned above, 0COSTCENTER as the regular reporting characteristic remains auth irrelevant and can therefore take any hierarchy thatu2019s available. Reporting on single values will be possible, too. Only those nodes show up that hold the authorized cost centers in accordance to the authorization.
    If the auth relevant 0COSTCENTER__RACCAUT0 is not used in the query definition by either not taking it in as a filter or skipping the Auth variable, the query will launch the message that the authorization is missing. No data show up at all.
    Claus
    See this thread:
    Analysis Authorization based on Hier node with multiple display hierarchies
    I am also in the same situation as you and need to understadn your solution. I understand that you created a Nav Attr on 0COSTCENTER and made this auth relevant whilst ensuring that 0COSTCENTER is NOT auth relevant. This is all fine. The issue was you have multiple hierachies for 0COSTCENTER, how did the new Nav Attr help you solve your issue. When loading 0COSTCENTER what values did you load ino the new Nav Attribute and how did that link to the hierachies? Also, in RSECADMIN you created hiearchy nodes based on the Nav Attribute but I am confused as to what values you have in the Nav Attr.
    I appreciate if you can share your solution from the past in more details.
    many thanks

  • Ship to Party in Prospective Customer

    Hi All
    I am facing problem with Prospective Customer. In account group 0005 there is no Ship to, Bill to and Payer as partner.
    which is logical in this scenario.
    But when I create a sales document it asks for a Ship to party in the initial screen and does not let me go further.
    My doubt is how would I bring Ship to party here for this Propective customer.
    Regards,
    Neeraj Srivastava

    Hi neeraj,
    as i told u earlier, u cannot do inquiry or quotation or order with prospective customer..u only can do Sales Activity with him..
    This is a special feature available in SD which is similar to Lead Management in CRM. Lead (Prospective Customer) make a phone call or mail you. If he agrees to do business with you, then you can treat him as a Regular Customer.
    Use: By following this process, you can create a sales activity called Computer Aided Selling.
    Procedure: To define a Sales Activity you should follow the below mentioned SAP Menu path.
    1. Create Customer under u201CProspective Customeru201D Account Group (Account Group-0005) by using Transaction Code XD01
    2. Create a Contact Person for this customer by using Transaction Code VAP1
    3. Go to Sales Activity screen by using Transaction Code VC01N
    4. Enter type of Sales Activity
    5. Enter your Prospective Customer, Contact Person, Sales Summary and other details.
    IF THE CUSTOMER AGREES TO DO BUSINESS WITH US,THEN U HAVE TO CONVERT HIM AS A REGULAR CUSTOMER. then u can raise inquiry,quotation  or sales order from that sales activity itself (from VC01N)..then u can see the sales summary of that customer also..
    hope it helps..
    reward points if helpful..
    regards..
    yogi...

  • How to check the authorization based on webdynpro application

    Hi Experts,
    I was asked to develop a webdynpro component with two webdynpro applications, one each for internal party and external party to be used.
    So how to restrict or check the authorization based on webdynpro application used?
    Do we have any authorization object like S_TCODE for webdynpro application in roles and authorizations?
    Please enlighten me.
    Regards,
    Ajay Matam

    You can assign an authorization object to the Web Dynpro Application within SICF -
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/61/d93822a88e15489a9391f309767366/frameset.htm
    Of course you could also programatically check which web dynpro application is being used from within the component and then call a custom auth-check. However maintain at the SICF is probably better for visibilty and long term maintenance costs.

  • Custom classifications in Services Registry search

    I have created 6 custom classification categories in our Services Registry, in PI 7.11.  Of those 6 categories, 2 are not visible in the classification list of the Services Registry > Service Definitions > Search Services > Advanced screen, Available Classifications list.  The missing 2 categories differ from the others as follows:  They are both hierarchies, and they both permit multiple value assignments to a given service.
    Are either of these differences the cause of the categories not being present in Advanced Search?  Is this by design, or is there a fix?  Does this behavior differ in PI 7.3?
    Thanks in advance for your assistance,
    -- Chris

    Hi chris,
    Can you please help me if you have any steps or document, to create hierarchical classifications systems in service registry and assign the service to multiple hierarchies.
    I do not have any Idea, really appreciate if you could send me any details to my id mytecneedsATTHERATEatt.net
    That would be great help, really appreciate it.
    I have type @  as ATTHERATE, as the editer is not allowing to write email id
    Thanks and Regards.
    Suraj.

  • Prospective Customer

    Dear All,
    How to use the prospective customer account grp in std SAP(Scenario)? Means During at the Inquiry& Quotation stage? If so the std acc.grp 005 doesn't have the proper field settings? Does this needs to be amended as per our requirement?
    Also Once the customer turns as a regular customer we can change the a/c grp from 005 to 001..Am i correct? and how can i get the report to see in a year how many prospect custoemr are turned as regular customers? Is there a std report for the same?
    Pls clarify.
    Thanks in advance.
    Reg,
    JJ

    hi,
    this is to inform you that,
    i refered SAP LIABRARY intensely to give solution to you.  but invain.
    Prospective Customer - you mean, the customer who is in the first stage of discuission but he identified himself as PROSPECT for our product.
    you can use 0005 account group for the same & this account group can be used only when a customer who is in stage of discuission and most of the integration fields will not support as 0001 account group.
    0005 - will be having different number ranges & changing from 0005 to 0001 will be difficuilt and the integration fields has to support for the change and it SAP it will not happen.
    hope this clears your issue.
    balajia

  • Prospective Customer Usage

    I am confused.  We are using the prospective customer account group (005), that supposedly will let you create a quote and an order but save the order as incomplete until you enter in a valid sold to partner number.  I can save and deliver an order using the customer created as a prospect.  What am I missing that will make the sales document incomplete until a valid customer number is entered?

    It looks my mistake in understanding the requirement. Why don't you use user exit USEREXIT_CHECK_VBAK in program MV45AFZB to check valid customer number. If no valid customer is not maintained, then you can provide hard error/waring message and by further using user exit USEREXIT_SAVE_DOCUMENT in program MV45AFZZ, you can apply delivery/billing block.
    Will this fulfill your requirement?
    Regards,

  • Extending prospective customer to Customer

    Hi
    I have a issue loke--
    When i Extending prospective customer(Account group-0005) to Customer(Account group-0001) by mistake we have changed sold to party is different than customer.Now we want same customer number should appear in Sold to party.
    Deletion option is not acceptable.
    Any suggestion to rectify this problem?

    Is any solution to correct it?

Maybe you are looking for

  • IMovie 09 crashes when I try to put titles

    iMovie keeps on crashing and I don't know why. here is the crash log: Process:         iMovie [448] Path:            /Applications/iMovie.app/Contents/MacOS/iMovie Identifier:      com.apple.iMovie8 Version:         8.0.6 (821) Build Info:      iMovi

  • IMac and HP 6940 Deskjet printer

    I'm using an iMac 3.06 GHz Core 2 Duo 4 GB RAM and an HP 6940 Deskjet printer. Recently the printer started working erratically: printer stalls frequently, takes way too long to print pages.  Driver is 4.0, no new one seems to be available. Suggestio

  • Pro Tools 7.4 LE compatible w/Leopard OS yet?

    Digidesign website is no help. Anyone heard if Digidesign worked out the bugs for Pro Tools 7.4 LE copatibility w/Leopard OS yet? Thnx.

  • Problems with interlaced and progressive on the same timeline ?

    Is there any problem with having both interlaced and progressive on the same timetine ? EG will DVD work OK? thanks Narada

  • ADF date comparison problem!

    Hello to everyone, I have a problem when I try to compare dates between two related VO with a master-detail relationship. For the child VO, in the date field I created a business rule and made it Greater than VO attribute - of the parent VO. The prob