BPM or Java/Db for this requirement

Hi,
Here's the requirement: A user creates a document (using webcenter portal UI) and he has a provision to add 'n' number of reviewers both sequential and parallel reviews are needed and also a combination is needed, which the user will add through the UI page.
The requiment also states that the user should be able to modify the review steps. Suppose A has reivewed and B is yet to review, he should be able to replace B with C or even delete his review. Bottomline is that, the client needs a free hand to manage document review/approval as we deal with physical docs.
The documents will be stored in Oracle UCM and I am using JSR 286 portlets for the UI.
Is BPM a right thing to use here? can I dynamically build/query update BPM processes? OR shall I use java with Db to achieve this. The later gives me more control and developers are readily available for this. I have very limited knowledge about BPM.
Request your suggestions here. Please help......
Thanks in advance.
Regards,
Yousuf
Edited by: Oracle Enthusiast on Feb 13, 2013 10:44 AM

Hi Lavanya,
I think the conditional reciever determination in your case might not work. Reason being, you  are trying to send chunks of message i.e., line items based on condition.
What i am trying to say is, suppose one IDoc has 3 lineitems and for each line item you are trying to achieve the conditionals receiver determination.
According to me, you can one of the possible solution
1. You have to genearte 1 IDoc message for each line item and then use the condition
2. Use BPM
Regards
Ramesh

Similar Messages

  • Please provide the abap code for this requirement

    note : if the below mentioned user exit is not suitable please find the suitable user exit and provide the code for this requirement.
    •     The User-exit MEFLD004 is only to be used at PO level (ME21N/ME22N).
    •     When PO is create or changed (ekko-ebeln) user exit MEFLD004 is triggered which check for the business requirement of the PO check for PO doc types (ekko-bsart) :z4,z6,z11,z12 from the table ekko and Account Assignment Category (knttp) is either N or K then stock process follows.  
    •     When an PO is cancelled, all entries will have to be reversed
    •     The Buffer table for the PO will have the following fields:
    Purchase order Number                     EKKO-EBELN
    Line item number of the PO               EKPO-EBELP
    Vendor Number                                  EKKO-LIFNR
    PO Quantity                                        EKPO-MENGE
    PO Nett Price                                     EKPO-NETPR
    Base Unit of Measure                  EKPO-LMEIN
    Account Assignment Category          EKPO-KNTTP
    PO Doc type                       EKPO-BSART     
    Plant                            EKPO-WERKS     
    Purchase Org                                  EKKO-EKORG
    Purchase Group                    EKKO-EKGRP     
    Company code                                EKPO-WAERS
    Item category                     EKPO-PSTYP
    PO Doc Date                      EKKO-BEDAT
    •     No duplications are allowed for any created, changed or cancelled purchase orders. If such a case occurs, the record will be updated with the latest update time stamp. This custom table will be keyed by purchase order number.

    Cross-post: http://forum.java.sun.com/thread.jspa?threadID=763485

  • "You must specify a value for this required field" in SharePoint list

    HI All,
    I have a couple of taxonomy fields in my content type. When I try to add a new item with my content type and save, I'm getting an error message "You must specify a value for this required field" against each taxonomy field. I'm not sure what am
    I missing. I deleted the content type and added that again to my list but still no luck. Can someone please help me out? Thanks.
    Regards,
    SC Vinod

    hi
    it depends how you updated existing field. We faced with the problem that update of taxonomy site column was not propagated to the lists. In Sharepoint when content type is bound to the list, new hidden content type is created for that list - you may check
    it if will enumerate
    SPList.ContentTypes property. And when you try to update site column changes may not be propagated to these list content types. In order to update it you need to get reference on a field from list content type and update if explicitly.
    Blog - http://sadomovalex.blogspot.com
    Dynamic CAML queries via C# - http://camlex.codeplex.com

  • Could you please suggest me the scenario for this requirement ?

    In module booking process we need the following process
    1.Student select their interested event package via website.
    2.Advisor review the student's event package list.
           2.1 In case of REJECT : student need to revise their list
           2.2 In case of APPROVE : all event package have confirm and run fee calculation.
    The information above is shortly requirement , if any one have suggestion for this requirement please suggest me.

    Vorad,
    I have some suggestions for you:
    1.  Create the module/event booking with 'Manual Conditional' flag.  Then, when the advisor approves a booking, remove the conditional flag.  If the advisor rejects, cancel the booking.  Here, you need to create some kind of UI for the advisor to review and approve/reject the requests.
    OR
    2.  Create the booking using a booking status such as 'pre-booked'.
    OR
    3.  Don't create any bookings from the student side.  Just create a booking plan instead.
    OR
    4. Look at a subtle process change that would let you use more out-of-the-box user interfaces/processes.  Students simply request special booking authorization for the event packages they want.  This automatically sends workflow approval messages to the advisor.  Then, just have a general rule which blocks all bookings that don't have this special authorization.   Once the student has a special booking authorization, he can just go into the course registration self-service and book the approved event packages.
    Michael

  • Pls give me the solution for this requirement

    Hi experts ,
    pls give me the solution for this requirement
    what we have to do when basis guys are tranported my object to the production without completting . how can we rectiify this .
    thanks in advance

    Hi
    After Transporting a request or released a request you cant do any thing in that so now you have to create a new Transport request for your report continue with that. After completion transport it . It will makes no difference it will just over write already existing report
    Reward alll helpfull answers
    Regards
    Pavan

  • Regarding select statement for this requirement

    Hi................
    good evening
    here is a requirement.
    i want to retrieve data from the following table.but how to join these table is my dought.
    tables  fields
    t001w--werks " plant id
    t001w--name1 " pl;ant name
    t001w--regio " plant address
    ekko--ebeln " purchase  order
    ekko-erdat : creation date
    ekko-ernam "name of the person
    ekpo-ebelp " item
    ekpo-bstyp "purchase order type
    eket-erdat " delivery date
    mara-matnr " material number
    these are the tables and fields.now we want to retrive data from these tables
    how we have to code select statement.
    selection-screen is
    plant id
    order type
    delivery date
    please provide select statement for this requirement.
    thanks and regards.
    k.swaminath  reddy.

    Is this what you are looking for?
    SQL> CREATE OR REPLACE FUNCTION f_team
      2  RETURN VARCHAR2
      3  IS
      4    s_return VARCHAR2(500);
      5  BEGIN
      6    FOR i IN ( select team from t_team order by 1) LOOP
      7      s_return := s_return || i.team || ', ';
      8    END LOOP;
      9   
    10    RETURN substr(s_return, 1, length(s_return) - 2);
    11  END;
    12  /
    Function created.
    SQL>  SELECT f_team FROM dual;
    F_TEAM
    Australia, Bangladesh, England, India, Kenya, Pakistan, South Africa, UAE, USA, West Indies, Zimbabwe
    SQL>

  • Warning: There are Java errors for this object. The wizard will be read only until they are corrected.

    when I try to open seeded VO.xml from Jdeveloper it is giving below error. Can any one please help me out.
    Warning: There are Java errors for this object. The wizard will be read only until they are corrected.
    R12 version 12.1.3
    Jdev patchp9879989_R12_GENERIC.zip
    Thanks
    Venkata .T

    Hi Venkata,
    Same thing happening to me, R12.1.3. Please let me know if you find anything on this.
    I tried some steps in this forums related to this, but no change. however I am not worried, customization works perfect after extension, but wanted to know the reason.
    Thx..

  • Warning: There are java errors for this object. The wizar will be read-only

    I migrate JDev9 to JDev10 and if open any module show message:
    "Warning: There are java errors for this object. The wizard will be read-only util they are corrected."

    [Solved, sort of] view objects read only mode
    The Oracle fix the problem?
    Message was edited by:
    oracle_user7

  • Warning : There are JAVA errors for this object .This wizard will be read

    Hi All,
    I am getting this error when trying to open the standard VO or AM's .
    Warning : There are JAVA errors for this object .This wizard will be read only until they are corrected.
    Please help me on this.
    Thanks

    Decompile the VOImpl and AmImpl class files and keep the .java files in myprojects folder under appropriate package structure and try.
    -Anand

  • Is it Possible in JSF? Can anyone recommend any java Technology for this?

    I am doing Post Graduate Degree in Computer Science. This is my final semester and doing project work.
    Any body having idea about my requirment, help and guide to me
    My description and questions are as follows:
    Current Approach:
    PHP has been used to achieve the flexibility of creating custom images on-the-fly. Using this approach we were able to create a web-interface similar to the application client, where we could display links and get the exact look and feel of the application client.
    Drawback:
    This approach forces us to use two different technologies Java and PHP, since our system uses 'Java' accessing all the API's from PHP becomes a problem. while PHP provides a way to invoke any java method. It comes with a draw back, the method calls are little slow. This delay's are loading of web-page.
    Requirment:
    1. Creating custom images on various locations of the screen
    2. The Exact look and feel of the application map should be achieved
    3. Place elements and links correctly as in application-client reflect any changes
    4. Generation events on the Links and Elements
    5. Setting Backgroud images for different maps
    Questions:
    1. is it possible in JavaServer Faces (BETA)?
    2. If it is possible is JavaServer Faces(BETA) How to create custom images and create interfaces among them?
    3.Can anyone recommend any java Technology for doing this?
    Anybody having idea, help and guide me for doing my project

    hi,
    I think you can use JSF
    cheers
    Trajano

  • Which Hardware shud i go? For this requirement.

    Hello all,
    As per requirement, In Oracle 9i, 1000 tps(transaction per sec) requirement ( 60% insert update and 40 % search operations). Dose oracle 9i ( standard ed.) with 2 CPU machine will handle this requirement ?
    What will be performance figure on LINUX/SUN in term of tps in oracle 9i standard ed.?
    Could you all please suggest me for what hardware platform should i go and also what RAM should i use here.
    Database Size will be apporx 10G
    Thanks in Advance!!
    Its urgent please....
    Pankaj

    We have no idea what your hardware will be or whether these will be long running or short transactions or whatever.
    Your question is not easy to answer; the only way of getting a definitive answer is to test your workload over a period of time.
    For this there are tools which will load a system up : for example Hammer Ora or Swingbench are both freely available.

  • Table for this requirement

    Dear Cons
         In a service p.o we have given service qty. as 10 ea & price 100/- inr . we want in which table this data is going to store. Also for Text entered in the doc. Header , for this we want to know in which table it will available.
    thanks
    nrk

    Hi
    Check table ESLL.
    regards
    rb

  • SAP ECC S&OP Macro for this requirement

    Hi there,
    I am doing flexible planning in S&OP and as a result maintained a row to calculate the actual inventory cost. The S&OP is done at Product Group level with many FERT in it per group. So when I do my S&OP plan I want to be able to calculate the members together standard cost from material master and do a sum total of it.
    For example:
    PRODUCT GROUP: PG1 has
    MAT 1 - 25%
    MAT 2 - 25%
    MAT 3 - 25%
    MAT 4 - 25%
    MATERIAL MASTER: St.Cost
    MAT 1 - $1.5
    MAT 2 - $2.5
    MAT 3 - $1.0
    MAT 4 - $2.0
    S&OP forecast for PG1 = 100 units ( which eventually passes 25% each to its members during dis-aggregation )
    MAT 1 - 25 units
    MAT 2 - 25 units
    MAT 3 - 25 units
    MAT 4 - 25 units
    So, when the macro runs for this product group inventory calculation, I would want the output to be 25(1.5) + 25(2.5) + 25(1.0) + 25(2.0)
    Any advise ?
    Thank you

    Any one, thoughts? thanks

  • How to form a query for this requirment

    Hi Friends,
    I have a database table in which I store the employee data along with his phone number. Now this row of data can repeat for different phone number depending on if it is office phone or home phone or cell phone.
    But in the output of query, I need name of empoyee and other three columns namely "Home Phone", "Office Phone" and "Cell Phone".
    If employee has three rows for each kind of phone, then in the result of query all three columns for phone numbers should be filled, otherwise as many columns should be filled with data as different phone numbers employee has.
    Can any one please post SQL query for this scenario ?
    Thanks in Adavance

    I cannot imagine, that second and third query are
    under any circumstances faster as first one, but i
    can imagine that they are slower You stated that query without the inline view can only be faster. Did you check on optimizer plans or use tkprof to verify your claim?
    A quick check on those two selects
    SELECT object_id, object_type, object_name
      FROM user_objects;
    SELECT object_id, object_type, object_name
      FROM (SELECT object_id, object_type, object_name
              FROM user_objects)
              ;didn't show any changes in the explain plan unter 10g1.
    C.

  • How should i write a pcr for this requirement?

    Dear Friends,
           Can any tell me whether we can write a pcr in such a way that if the person resigns the company on any day after 15th his full absence quota(for that month) should be accrued.
          if yes can you tell me  
          what are the key decision parameters i have to use in writing the pcr.
            waiting for you kind reply.
    Regards,
    Sai Prasad.

    Hai Prasad,
    I can give you the logic, cannot write exact rules.
    While genegarting absence quota
    - Check for termination action using OUTWPMASSN
        - If yes
              Check for Action year current year. (HRS=YSAY, HRS?CURYR)
                  - If its equal to 0
                      Check for current month (HRS=YSAO, HRS?CURMO)
                           - if its equal to 0
                                  check for current day (HRS=YSAA, HRS?CURDY
                                        - if its >=15
                                             generate quota
                           - Exit
    (Note: for this logic you have to generate monthly quota)
    With regards
    Shyam V

Maybe you are looking for