API's For assign action on element of Collection Plan

I have created Collection Plan and element through "QA_PLANS_PUB" API. But not able to assign action on created elements.
Please suggest any APl or interface.
Thanks in Advance
Regards,
Jignesh

I have created Collection Plan and element through "QA_PLANS_PUB" API. But not able to assign action on created elements.
Please suggest any APl or interface.
Thanks in Advance
Regards,
Jignesh

Similar Messages

  • Is there APIs for Oracle Quality Module - Collection Plan, Specifications ?

    We are converting Collection Plan, Specifications etc and was wondering whether there exists API?
    Thanks

    I have found packages to create Collection Plans (QA_PLANS_PUB) and Specifications (QA_SPECS_PUB). Both allow you to add elements to the Plan or Spec.
    However, both assume that the Collection Element already exists so that it can be added to the Plan or Spec. And I can't find an API or package to create the Collection Elements. Does such a package exist?

  • How to use one Assign action to create multiple context variables

    Hello, everyone.
    I read some tips from Oracle documentation that said:
    Avoid creating many OSB context variables that are used just once within another XQuery
    Context variables created using an Assign action are converted to XmlBeans and then reverted to the native XQuery format for the next XQuery. Multiple "Assign" actions can be collapsed into a single Assign action using a FLWOR expression. Intermediate values can be created using "let" statements. Avoiding redundant context variable creation eliminates overheads associated with internal data format conversions. This benefit has to be balanced against visibility of the code and reuse of the variables.
    Oracle® Fusion Middleware Performance and Tuning Guide
    +11g Release 1 (11.1.1)+
    Part Number E10108-03
    But I don't know how to do that. Can you show me ?
    Thank in advance
    Edited by: Doubt_Man on Aug 17, 2011 3:30 PM

    if you return sequences, you can declare the return type of your xquery as xs:double*
    (notice the asterix at the end)
    but I have the impression that in the assign action only the first element will be assigned to the context variable
    (correct me if I am wrong)
    So in fact you might indeed have to transform the sequence into a element()*, or concatenate it into a CVS string - for instance using string-join
    http://www.xqueryfunctions.com/xq/fn_string-join.html

  • Problem for Struts action to insert multiple records

    I am writting a code for Struts action which inserting a single record to table A and multiple records to table B .The architecture that I applied is Struts+Spring+iBatis.The multiple records are come from a 10-rows table in the design.The name of each column element is same.The field name other than these are just single-row field.
    <tr>
    <td><input name="date" type="text" size="12" /></td>
    <td><input name="billno" type="text" size="8" /></td>
    <td><input name="desc" type="text" size="11" /></td>
    <td><input name="purpose" type="text" size="20" /></td>
    <td><input name="proName" type="text" size="6" /></td>
    <td><input name="trainingCost" type="text" size="5" /></td>
    <td><input name="travelCost" type="text" size="7" /></td>
    <td><input name="entCost"  type="text" size="5" /></td>
    <td><input name="miscCost" type="text" size="5" /></td>
    </tr> I am using three DTO objects to hold the data.claimArray is the ClaimDTO array that hold the multiple record insert to table B.claimdto is the object that hold the single field record to table A.claim_dtldto is the object that hold the single field record to table B.
    PK of table A and table B are claimNo and claimDtlNo respectively.claimNo is also FK of table B. HTMLUtil is just an API that I used it for type conversion.There will have two insert statements in iBatis xml, insertClaim & insertClaimDtl to insert data into table A and table B respectively.I not sure what went wrong in the code,the data is not inserted into db.Thank advanced for you guys help..
    This is the codes in Action file:
    public class InsertClaimAction extends SpringAction {
       public ActionForward execute(ActionMapping mapping,
                                     ActionForm form,
                                     HttpServletRequest request,
                                     HttpServletResponse response) throws Exception {
        // string arrays that store multiple values
        String [] date = new String[10];
        String [] billno = new String[10];
        String [] description = new String[10];
        String [] purpose = new String[10];
        String [] proName = new String[10];
        String [] trainingCost = new String[10];
        String [] travelCost = new String[10];
        String [] entCost = new String[10];
        String [] miscCost = new String[10];
        String staffName = request.getParameter("name");
        String claimMy = request.getParameter("monthyear");
        String department = request.getParameter("department");
        String designation = request.getParameter("designation");
        Double excrate =  HTMLUtil.str2double(request.getParameter("excrate"),0.0);
        Double grandTotal = HTMLUtil.str2double(request.getParameter("grandTotal"),0.0);
        Double totalRM = HTMLUtil.str2double(request.getParameter("totalRM"),0.0);
        Double totalFC =    HTMLUtil.str2double(request.getParameter("totalFC"),0.0);
        String fcName = request.getParameter("fcAbbr");
        if(request.getParameter("date") != null)
            date = request.getParameterValues("date");
        if(request.getParameter("billno") != null)
            billno = request.getParameterValues("billno");
        if(request.getParameter("description") != null)
            description = request.getParameterValues("description");
        if(request.getParameter("purpose") != null)
            purpose = request.getParameterValues("purpose");
        if(request.getParameter("proName") != null)
            proName = request.getParameterValues("proName");
        if(request.getParameter("trainingCost") != null)
            trainingCost = request.getParameterValues("trainingCost");
        if(request.getParameter("travelCost") != null)
            travelCost = request.getParameterValues("travelCost");
        if(request.getParameter("entCost") != null)
            entCost = request.getParameterValues("entCost");
        if(request.getParameter("miscCost") != null)
            miscCost = request.getParameterValues("miscCost");
          //initialize dto
        ClaimDTO claimdto = new ClaimDTO();
        ClaimDTO claim_dtldto = new ClaimDTO();
        ClaimDTO[] claimArray = new ClaimDTO[10];
        claimdto.setClaimNo(claimNo);
        claimdto.setStaffName(staffName);
        claimdto.setClaimMy(claimMy);
        claimdto.setDepartment(department);
        claimdto.setDesignation(designation);
        claimdto.setExcrate(excrate);
        claimdto.setGrandTotal(grandTotal);
        claim_dtldto.setClaimDtlNo(claimDtlNo);
        claim_dtldto.setClaimNo(claimNo);
        claim_dtldto.setTotalRM(totalRM);
        claim_dtldto.setTotalFC(totalFC);
        claim_dtldto.setFcName(fcName);
        for(int i = 0;i < claimArray.length;i++) {
            if(claimArray[i] != null) {
                claimArray.setDate(date[i]);
    claimArray[i].setBillno(billno[i]);
    claimArray[i].setDescription(description[i]);
    claimArray[i].setPurpose(purpose[i]);
    claimArray[i].setProName(proName[i]);
    claimArray[i].setTrainingCost(Double.parseDouble(trainingCost[i]));
    claimArray[i].setTravelCost(Double.parseDouble(travelCost[i]));
    claimArray[i].setEntCost(Double.parseDouble(entCost[i]));
    claimArray[i].setMiscCost(Double.parseDouble(miscCost[i]));
    //service
    ClaimService springservice = (ClaimService)getBean("ClaimService");
    springservice.insertClaim(claimdto);
    springservice.insertClaimDtl(claim_dtldto,claimArray);
    return mapping.findForward("success");

    Two things; you need to pass #number# as a form field and you
    need to pull the correct record out.
    Use this:
    <cfloop list="#form.fieldnames#" index="fieldName">
    <CFSET record = Evaluate("form.record_#number#")>
    </cfloop>
    Here's some example code:

  • OSB : BEA-382510: OSB Assign action failed updating variable

    Hi all,
    I just started learning OSB and created a simple process .
    This is my request :
    <soapenv:Envelope      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Header      xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         </soap:Header>
         <soapenv:Body>
         <hel:getGreeting      xmlns:hel="http://hello.alsb.com/">
         <!--Optional:-->
         <arg0>string</arg0>
         </hel:getGreeting>
         </soapenv:Body>
         </soapenv:Envelope>
    im getting a error response in Assign:
    <soapenv:Envelope      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
         <soapenv:Body>
         <soapenv:Fault>
         <faultcode>soapenv:Server</faultcode>
         <faultstring>
         BEA-382510: OSB Assign action failed updating variable "Test": weblogic.xml.query.exceptions.XQueryTypeException: {err}XP0006: "element return { {http://www.w3.org/2004/07/xpath-datatypes}untypedAny }": bad value for type {http://www.w3.org/2001/XMLSchema}string
         </faultstring>
         <detail>
         <con:fault      xmlns:con="http://www.bea.com/wli/sb/context">
         <con:errorCode>BEA-382510</con:errorCode>
         <con:reason>
         OSB Assign action failed updating variable "Test": weblogic.xml.query.exceptions.XQueryTypeException: {err}XP0006: "element return { {http://www.w3.org/2004/07/xpath-datatypes}untypedAny }": bad value for type {http://www.w3.org/2001/XMLSchema}string
         </con:reason>
         <con:location>
         <con:node>RouteTo_HelloWorldBiz</con:node>
         <con:path>response-pipeline</con:path>
         </con:location>
         </con:fault>
         </detail>
         </soapenv:Fault>
         </soapenv:Body>
         </soapenv:Envelope>
    This is my Xquery:
    xquery version "1.0" encoding "Cp1252";
    declare namespace xf = "http://tempuri.org/GoodbyeWorld_SB/XQuery/Hello_to_GoodBye/";
    declare function xf:Hello_to_GoodBye($helloStr as xs:string)
    as xs:string {
    replace($helloStr, 'HELLO', 'Goodbye')
    declare variable $helloStr as xs:string external;
    xf:Hello_to_GoodBye($helloStr)
    in my message response pipeln of the proxy service:
    i have added the assign and given the expression : $body/hel:getGreetingResponse/return
    var :Test
    After the assign: i have given a replace activity:
    xpath: ./hel:getGreetingResponse/return
    varabile : body
    Expression : string($Test)
    when i test in OSB console:
    im getting this error:
    <soapenv:Envelope      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
         <soapenv:Body>
         <soapenv:Fault>
         <faultcode>soapenv:Server</faultcode>
         <faultstring>
         BEA-382510: OSB Assign action failed updating variable "Test": weblogic.xml.query.exceptions.XQueryTypeException: {err}XP0006: "element return { {http://www.w3.org/2004/07/xpath-datatypes}untypedAny }": bad value for type {http://www.w3.org/2001/XMLSchema}string
         </faultstring>
         <detail>
         <con:fault      xmlns:con="http://www.bea.com/wli/sb/context">
         <con:errorCode>BEA-382510</con:errorCode>
         <con:reason>
         OSB Assign action failed updating variable "Test": weblogic.xml.query.exceptions.XQueryTypeException: {err}XP0006: "element return { {http://www.w3.org/2004/07/xpath-datatypes}untypedAny }": bad value for type {http://www.w3.org/2001/XMLSchema}string
         </con:reason>
         <con:location>
         <con:node>RouteTo_HelloWorldBiz</con:node>
         <con:path>response-pipeline</con:path>
         </con:location>
         </con:fault>
         </detail>
         </soapenv:Fault>
         </soapenv:Body>
         </soapenv:Envelope>
    aany suggestions on where the issue is.
    im totaly stuck here:
    TIA,
    karthik

    it is not clear at which point you are invoking Hello_to_GoodBye, and using which argument
    anyway it's likely that you are passing an Xml element (a node, something like <hello>Charlie</hello>) instead of a simple type (a string, like "Charlie")
    you should use the function data($body/bla) or text ($body/bla/text() ) to extract the value (Charlie) of your element

  • Which UWL API needed for Task Generation?

    Hi,
         We have a requirement to create a UWL task and assign it to a user dynamically  at runtime.
    Please provide me the list of APIs needed for this purpose.
    Although I have a list of all APIs of UWL but it is difficult to get the required without experience.
    Relevant APIs with example code will get full marks!!
    please reply!
    Sumit

    Hi,
    I have got this error log :
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[./log/applications/sap.com/uwl/uwl_defaultLog.log]/>
    <!PATTERN[uwl_defaultLog.log]/>
    <!FORMATTER[com.sap.tc.logging.ListFormatter]/>
    <!ENCODING[Cp1252]/>
    <!FILESET[0, 5, 10000000]/>
    <!PREVIOUSFILE[uwl_defaultLog.4.log]/>
    <!NEXTFILE[uwl_defaultLog.1.log]/>
    <!LOGHEADER[END]/>
    #1.5#0013721FB784005C0000004600000DC80004350178D94669#1184180345203#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#0####c84643602fe011dca8cb0013721fb784#SAPEngine_Application_Thread[impl:3]_18##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLUniversalWorklistService was not bound in #
    #1.5#0013721FB7840062000000220000082C0004350207872A57#1184182738770#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#0####5e70b3202fe611dc838d0013721fb784#SAPEngine_Application_Thread[impl:3]_8##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLnull#
    #1.5#0013721FB784007C0000000C00000ED00004350DDAFF617F#1184233531871#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#0####a17cd6f0305c11dc85c70013721fb784#SAPEngine_Application_Thread[impl:3]_18##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLnull#
    #1.5#0013721FB7840075000001BE00000ED00004350E0A60B1DF#1184234326777#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#1397####7b49de91305e11dcb1650013721fb784#SAPEngine_Application_Thread[impl:3]_37##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLnull#
    #1.5#0013721FB784006B0000031A00000ED00004350E0F253868#1184234406763#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#1479####a4d12020305e11dc8c370013721fb784#J-Integra for .NET TP Thread 2##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLUniversalWorklistService was not bound in #
    #1.5#0013721FB784007000000050000000C00004350E6357D270#1184235819383#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#0##blrkec91547d.ad_ES1_13638250#Guest#af5c8770306111dc9cb70013721fb784#SAPEngine_Application_Thread[impl:3]_9##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLUniversalWorklistService was not bound in #
    #1.5#0013721FB784006200000054000016F00004350EF7350580#1184238300103#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#533####b6fe34f0306711dcc4890013721fb784#SAPEngine_Application_Thread[impl:3]_38##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLUniversalWorklistService was not bound in #
    #1.5#0013721FB784005F00000022000013C40004350F650053F4#1184240142170#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#0####05886ba0306c11dc875e0013721fb784#SAPEngine_Application_Thread[impl:3]_37##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLnull#
    #1.5#0013721FB7840071000000BC000013C40004350F6AEB28B9#1184240241453#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#613####3c7b5870306c11dcb5c40013721fb784#SAPEngine_Application_Thread[impl:3]_24##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLUniversalWorklistService was not bound in #
    #1.5#0013721FB784005D000000510000118C0004351004717E6E#1184242817143#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#0####3eaa37a0307211dcae960013721fb784#SAPEngine_Application_Thread[impl:3]_2##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLUniversalWorklistService was not bound in #
    #1.5#0013721FB78400750000009D00000D7C00043510657D767A#1184244444273#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#598####fc7d76e0307511dcaa580013721fb784#SAPEngine_Application_Thread[impl:3]_33##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLUniversalWorklistService was not bound in #
    #1.5#0013721FB7840061000000240000154000043510ACCDA92D#1184245641313#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#0####d3470d10307811dc9d3c0013721fb784#SAPEngine_Application_Thread[impl:3]_5##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLnull#
    #1.5#0013721FB784007A000000C80000154000043510B07C9296#1184245703051#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#561####f3f1ef80307811dc96400013721fb784#SAPEngine_Application_Thread[impl:3]_37##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLUniversalWorklistService was not bound in #
    #1.5#0013721FB784007D0000002F00000BC00004351109BEB7D1#1184247199716#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#581####72b75e10307c11dc8b030013721fb784#SAPEngine_Application_Thread[impl:3]_31##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLUniversalWorklistService was not bound in #
    #1.5#0013721FB784006600000047000008F0000435133BDDF730#1184256633302#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#1371####65a9fd70309211dca9620013721fb784#SAPEngine_Application_Thread[impl:3]_20##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLUniversalWorklistService was not bound in #
    #1.5#0013721FB784006600000048000009E0000435137175AFAA#1184257530898#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#526####7b6bd5f0309411dcc88b0013721fb784#SAPEngine_Application_Thread[impl:3]_13##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLUniversalWorklistService was not bound in #
    #1.5#0013721FB784007E000000060000103C000435142CBF61E5#1184260672796#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#0####d2bd55c0309b11dc9b6f0013721fb784#SAPEngine_Application_Thread[impl:3]_18##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLnull#
    #1.5#0013721FB7840062000004520000103C000435143DE08ADA#1184260960084#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#755####79f6c880309c11dc930b0013721fb784#SAPEngine_Application_Thread[impl:3]_11##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLUniversalWorklistService was not bound in #
    #1.5#0013721FB784005F0000010B000005B400043523653EB198#1184326045678#/uwl#sap.com/irj#com.sap.netweaver.bc.uwl#Guest#1193####feb0b940313311dc86480013721fb784#SAPEngine_Application_Thread[impl:3]_4##0#0#Error#1#com.sap.netweaver.bc.uwl#Plain###UWLUniversalWorklistService was not bound in #
    #1.5#0013721FB784006A00000027000007A8000435FF4DD1C67E#1185270545369#/uwl/service/config#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Administrator#42124####1c5e2af039cb11dc9e9f0013721fb784#ID\#(J2EE13638200)ID13638250DB20068940681557766111End.WID1185270386901##0#0#Warning#1#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Plain### No displayname found for action :launchUrl#
    #1.5#0013721FB784006A00000028000007A8000435FF4DD2DDA2#1185270545479#/uwl/service/config#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Administrator#42124####1c5e2af039cb11dc9e9f0013721fb784#ID\#(J2EE13638200)ID13638250DB20068940681557766111End.WID1185270386901##0#0#Warning#1#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Plain### No displayname found for action :launchUrl#
    #1.5#0013721FB784006A00000029000007A8000435FF4DEC7F51#1185270547150#/uwl/service/config#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Administrator#42124####1c5e2af039cb11dc9e9f0013721fb784#ID\#(J2EE13638200)ID13638250DB20068940681557766111End.WID1185270386901##0#0#Warning#1#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Plain### No displayname found for action :complete#
    #1.5#0013721FB784006A0000002A000007A8000435FF4DEC880A#1185270547150#/uwl/service/config#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Administrator#42124####1c5e2af039cb11dc9e9f0013721fb784#ID\#(J2EE13638200)ID13638250DB20068940681557766111End.WID1185270386901##0#0#Warning#1#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Plain### No displayname found for action :delete#
    #1.5#0013721FB784006A0000002B000007A8000435FF4DEC892F#1185270547150#/uwl/service/config#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Administrator#42124####1c5e2af039cb11dc9e9f0013721fb784#ID\#(J2EE13638200)ID13638250DB20068940681557766111End.WID1185270386901##0#0#Warning#1#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Plain### No displayname found for action :complete#
    #1.5#0013721FB784006A0000002C000007A8000435FF4DEC8A34#1185270547150#/uwl/service/config#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Administrator#42124####1c5e2af039cb11dc9e9f0013721fb784#ID\#(J2EE13638200)ID13638250DB20068940681557766111End.WID1185270386901##0#0#Warning#1#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Plain### No displayname found for action :accept#
    #1.5#0013721FB784006A0000002D000007A8000435FF4DEC8BC2#1185270547150#/uwl/service/config#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Administrator#42124####1c5e2af039cb11dc9e9f0013721fb784#ID\#(J2EE13638200)ID13638250DB20068940681557766111End.WID1185270386901##0#0#Warning#1#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Plain### No displayname found for action :reject#
    #1.5#0013721FB784006A0000002E000007A8000435FF4DEC8CCE#1185270547150#/uwl/service/config#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Administrator#42124####1c5e2af039cb11dc9e9f0013721fb784#ID\#(J2EE13638200)ID13638250DB20068940681557766111End.WID1185270386901##0#0#Warning#1#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Plain### No displayname found for action :uwlTaskWizard#
    #1.5#0013721FB784006A0000002F000007A8000435FF4DEC91FF#1185270547166#/uwl/service/config#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Administrator#42124####1c5e2af039cb11dc9e9f0013721fb784#ID\#(J2EE13638200)ID13638250DB20068940681557766111End.WID1185270386901##0#0#Warning#1#com.sap.netweaver.bc.uwl.core.config.ActionsHandler#Plain### No displayname found for action :complete#
    #1.5#0013721FB784007C00000168000007A8000435FF62DF3901#1185270898626#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.utils.ServiceHelper#Administrator#42124####f041ca2039cb11dc89140013721fb784#ID\#(J2EE13638200)ID13638250DB20068940681557766111End.WID1185270817497##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.utils.ServiceHelper#Plain###com.sap.netweaver.bc.uwl.UWLException: Tue Jul 24 15:24:58 GMT+05:30 2007
    Tue Jul 24 15:24:58 GMT+05:30 2007
    (Item) Item is missing from the UWL persistent cache #
    #1.5#0013721FB784006A00000038000007A8000435FF878C711D#1185271513903#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.utils.ServiceHelper#Administrator#42124####5efd9bf039cd11dc81750013721fb784#ID\#(J2EE13638200)ID13638250DB20068940681557766111End.WID1185271507924##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.utils.ServiceHelper#Plain###com.sap.netweaver.bc.uwl.UWLException: Tue Jul 24 15:35:13 GMT+05:30 2007
    Tue Jul 24 15:35:13 GMT+05:30 2007
    (Item) Item is missing from the UWL persistent cache #
    #1.5#0013721FB7840075000001B3000007A8000435FFE584FEF8#1185273090481#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.utils.ServiceHelper#Administrator#42371####0ab4521039d111dc8a260013721fb784#ID\#(J2EE13638200)ID13638250DB2009470336408950417End.WID1185273074972##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.utils.ServiceHelper#Plain###com.sap.netweaver.bc.uwl.UWLException: Tue Jul 24 16:01:30 GMT+05:30 2007
    Tue Jul 24 16:01:30 GMT+05:30 2007
    (Item) Item is missing from the UWL persistent cache #
    #1.5#0013721FB7840065000001AF000007A8000435FFFA21790E#1185273436284#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.utils.ServiceHelper#Administrator#42371####d8d1abc039d111dcbd460013721fb784#ID\#(J2EE13638200)ID13638250DB2009470336408950417End.WID1185273082582##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.utils.ServiceHelper#Plain###com.sap.netweaver.bc.uwl.UWLException: Tue Jul 24 16:07:16 GMT+05:30 2007
    Tue Jul 24 16:07:16 GMT+05:30 2007
    (Item) Item is missing from the UWL persistent cache #
    #1.5#0013721FB784007000000162000007A8000436011AE0CA66#1185278280705#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.utils.ServiceHelper#inf71850#42901####1fb6c6a039dd11dcac630013721fb784#ID\#(J2EE13638200)ID13638250DB2009470336408950417End.WID1185278235413##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.utils.ServiceHelper#Plain###com.sap.netweaver.bc.uwl.UWLException: Tue Jul 24 17:28:00 GMT+05:30 2007
    Tue Jul 24 17:28:00 GMT+05:30 2007
    (Item) Item is missing from the UWL persistent cache #
    #1.5#0013721FB784006000000015000007A8000436011B8985EE#1185278291768#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.utils.ServiceHelper#inf71850#42901####26c124e039dd11dc92330013721fb784#ID\#(J2EE13638200)ID13638250DB2009470336408950417End.WID1185278235413##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.utils.ServiceHelper#Plain###com.sap.netweaver.bc.uwl.UWLException: Tue Jul 24 17:28:11 GMT+05:30 2007
    Tue Jul 24 17:28:11 GMT+05:30 2007
    (Item) Item is missing from the UWL persistent cache #
    Please help me if anybody faced this situation error.
    regards,
    Sumit

  • The QuickCode is invalid for YES_NO BEE Lines Element Entries

    Hi there
    While I am trying to create the batch in BEE for Oracle Payroll Element Entries I am getting fatal ERROR
    The QuickCode is invalid for YES_NO
    I have an element which has two input value one is Separate Payment and second is Tax Separately. While I am moving “No” which is a valid LOOKUP Code values, the BEE (Oracle Internal Process) move “N” instead of “No” and that Batch Line goes invalid with Fatal error.
    This Element has also Default value "No" setup at element description, If I don't pass any thing it suppose to pass "No" to all element entreis but Oracle some times Pass "No" in Element entries and some time it just move NULL.
    So I have to forced "No" at Batch Line in that Input value but it is not working.
    Every time I run the interface it has the problem. BEE move "N" instead of "No"
    I am using pay_batch_element_entry_api.create_batch_line API. to creat Batch Line.
    Element Type: Recurring
    Element Clasification: Supplemental Earnings
    At Earning Screen: Separate Payment ='No'
    At Element Screen: Separate Payment is Checked
    RDBMS : 10.2.0.4.0
    Oracle Applications : 11.5.10.2
    Thanks
    ASIM

    Hi All
    This is a Bug 8643341 and 8754329.
    Bug *8643341* - RUP4:PAY_BATCH_ELEMENT_ENTRY_API.CREATE_BATCH_LINE REVERT LOOKUP MEANING TO CODE
    fixed in
    pybthapi.pkb 115.20
    pay patch/115/sql pybthapi.pkh 115.20
    pay patch/115/sql pybthasd.sql 115.3
    The following Solution is provided by Oracle.
    To implement the solution, please execute the following steps:
    1) Please download and review the readme for Patch.8643341 - RUP4:PAY_BATCH_ELEMENT_ENTRY_API.CREATE_BATCH_LINE REVERT LOOKUP MEANING TO CODE.
    2) Please apply Patch.*8643341* in a test environment.
    3) Please confirm the following file versions:
    pybthapi.pkb 115.20
    pybthapi.pkh 115.20
    pybthasd.sql 115.3
    Thanks
    ASIM

  • How to capture the different sold-to party for a single WBS Element

    Hello,
    The client wants to automatically populate the Partner field in the WBSE. The Sold-to party that is indicated in the Sales Order will be the same with the Partner Field in the WBSE. I would like to ask regarding on how can we capture the different sold-to party for a single wbs element, since in our project there is a system constraint where it is not possible to have multiple u2018sold tou2019 rows assigned to partner field in the WBSE.
    Hoping for your suggestions and comments. Thanks in advance.
    - Irica
    Edited by: Irica Vaile Dalisay on May 25, 2011 3:45 PM

    Try using the Customer Enhancement

  • How to find out the amount assigned to WBS element

    Hello Friends,
    Will you please inform how to find out the (amount/value/budget) assigned
    to WBS element
    Which Table it is stored in?
    Thanks in Advance
    Bset Regards
    Diwakar

    Hi Diwakarnd,
    You can use any of the following reports to get the information you require.
    1. <b>S_ALR_87013557</b> - Budget/Actual/Variance
    2. <b>S_ALR_87013558</b> - Budget/Actual/Commitment/Rem Plan/Assigned
    3. <b>S_ALR_87013559</b> - Budget/Distributed/Plan/Distributed
    Some of these reports use a complex selection criteria from various tables which has been grouped together, logically by SAP. The Logical Database table name for PS is <b>PSJ</b>.
    Execute transaction code <b>SE36</b> -> <b>PSJ</b> -> (Subobject : Radio button <b>Structure)</b> -> Click on <b>Display</b>.
    You would see all the underlining tables used.
    I hope the above helps.
    Do not forget to award the points please.
    Regards,
    Jacob

  • Shared Services Console - User is not authorized for the action

    Hi,
    I have installed Essbase 11.11.3 and configured on Linux. I started EPM and then the Shared Services Console. I created a new group Poweruser and assigned a new user to it. I provisioned the group withall the rights of the admin. This all works.
    When I log on with the new user on the Shared Service Console and go to Essbase Studio Server and click on the Essbase Studio Server application it gives me the message:
    User is not authorized for the action
    This is the same message as I get under the user admin. Can anyone tell me what I can possibly do to make it work.
    The service for EAS is started properly. The one thing that is not configured is HBR.
    Patrick

    Hi,
    What are you trying to achieve, provision a user for essbase studio ?
    EAS is a separate product from Studio.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Function module for assigning BP Number to the Postion ID in org model

    Hi Experts,
    Is there any function module for assigning BP Number to the Postion ID in organizational model.
    The requirement is:
    1)There are some employees which are reporting to a Manager who has a position ID.
    2) Each of these employees should be assigned to the given position ID.
    This can be done by First Locate the BP Record in SAP via the Vantive Person ID  and retrieve the SAP BP Number.
    <b>Then assign the SAP BP Number found to the Position ID.</b>
    My question is <b>Is there any function module for assigning BP Number to the Postion ID .</b>
    Looking forward for reply.
    Thanks & Regards,
    Renju.

    Hi,
       Org. management uses API classe objects with static methods as APIs. You may be able to achieve this using
    CL_CRM_ORGMAN_SERVICES->MAPPING_ORGUNIT_TO_BP
    Reward if helpful!
    Regards,
    Sudipta.

  • Installing Actions in Elements 10 Mac/SSD drive

    I've installed actions in Photoshop elements 9 before with no problem. I just tried to install an action in PSE 10 and here's the puzzling thing: I'm going to Library (not user library) / Application Support / Adobe / Photoshop Elements 10, but instead of seeing the Photo Creation folder and Locale folder, I'm only seeing a Presets folder and in the Presets folder is an Actions folder.
    It's now the same in PSE 9 folder as well.
    At first I thought, cool - Adobe changed this, but the action I put in the action folder doesn't show up and all the instructions I'm finding on the internet are telling me to install actions the way I did before - except those folders are not there for me!!
    Since the last time I installed an action in Elements, I've upgraded my iMac to a one with an SSD drive / Mac Hard drive. I don't know how this might make a difference, but it's all I can think of.
    I'm not really an Elements user, I just use it to test the Actions I make in Photoshop.
    I'm making my action in PS CS2
    My system is 10.7.5

    There are two methods to play actions in PSE10. One from the Effects panel and other from the Action Player Guided Edit.
    To play in Effects Panel:
    Mac HD\Library\Application Support\Adobe\Photoshop Elements\10.0\Photo Creations\photo effects
    Put you .atn file and .png file here (as explained by 99jon)
    To play in Action Player guided edit:
    Mac HD\Library\Application Support\Adobe\Photoshop Elements\10.0\Locale\<locale>\Workflow Panels\actions
    Put your .atn file in this folder.

  • Check list for creating a cost element?

    Hi,
    Who can provide a check list for creating a cost element?
    Thank you.
    Kind regards,
    Linda

    Hi,
    Cost Elements are broadly of two categories - Primary and Secondary cost elements.
    In case of primary cost element a GL Account should have been created and in case of secondary cost no corresponding GL account should exist. Secondary Cost Elements are used only in Controlling Module. The transaction codes are:
    KA01 - Create Primary Cost Element.
    KA06 - Create Secondary Cost Element.
    KA02 - Change Cost Element
    KA03 - Display Cost Element
    KA04 - Delete Cost Element
    KA05 - Display Changes
    Once transaction data is posted Cost Element cannot be deleted.
    Another point in Cost Elements is defining the Cost Element category. Cost Element category determines which Cost Element category can be used for which Business Purpose. For example cost element category 1 is used for primary costs and 11 is used for revenues.
    In the default account assignment tab, we can define a cost center / internal order and always the postings for that cost element will be posted to that cost object.
    Thanks
    Murali.

  • Competence Requirment API -  Do we have different API's for BG / Org / Job / Position ?

    Do we have different API's for BG / Org / Job / Position ? If yes please let me know
    Regards,
    Naga
    <mod. action: removed personal email id>
    Message was edited by: Nicolas.Gasparotto

    Hi Theo,
    we've looked at the data you sent me and found that we already ran into this issue even before the first productive release.
    The good news is that the problem should be solved already with the first release SAP NetWeaver CE 7.1 EhP1 SP1 Patch 0.
    The bad news is that if you initally created the process and modeled the mapping with the Beta release (which contained this bug), false model information was written into the project files. So the problem is not solved by re-compiling the project with a newer NWDS.
    Can you please check whether this model was created initially with the Beta version? If this is the case, I'm afraid you'll have to re-model the process with the productive release from scratch.
    If you are sure that you modeled this from scratch with the official (SP1) release, please open an OSS ticket for this.
    But I can put your mind at ease on one point: your use-case does not fall under a product limitation. This should work with the productive release, and if it doesn't, it's a bug that needs to be fixed.
    Best regards,
    Oliver

  • Use condition for assigning query to data provider with Javascript

    Hi gurus,
    I want to assign a query dynamically to a data provider when the user activated a Tab Panel in a Web Template (BI7).
    I can do that easily with the standard function SET_DATA_PROVIDER_PARAMETERS but this action is do each time of the activation of the Tab Panel.
    So I try to make a javascript for assign the query to the data provider only one time.
    My problem is I havenu2019t found a solution to get the default query assigning to the data provider.
    Itu2019s an example of what I try to do with javascipt :
    function Load_Query()
    var r=GET_DATA_PROVIDER PARAMETER ("QUERYVIEW_DATA_PROVIDER")
    if (r <>empty)
        executeJS_SET_DATA_PROVIDER_PARAMETERS_R()
    Thank you for help,
    Franck

    Hi Janice,
    You can check the Option Display Variable values only once.
    Thie you will the variables being displayed only once eventhough they are used in Multiple Data provider.
    If you want som variable to be data provider specific, then , you can create a new variable and add it int eh query.
    For example in your case let us say COMP1 is the variable for company code used in DP1 and DP2.
    If you want a different values to be selected for company code in DP1 and DP2 just replce the variable in DP2 with a new variabel COMP2.
    Hope this helps.
    Regards.
    Shafi.

Maybe you are looking for

  • Mail synch

    When I read and/or dispose of an email on one device it continues to appear as unread in others,.  Devices in question are iMac, MacBook Air, iPad mini and iPhone

  • URGENT: Changing status at Header level in Service Ticket in Webclient

    Hi All Please reply ASAP....... I am changing status for service ticket in webclient at Header level. But at item level system status is not changing. Is there any config in CRM where user status or system status is copied from header to item level B

  • How to use search index created by jhindexer

    Hi i have created a JavaHelp set using Docbook which works ok but the search doesnt work. I then discovered jhindexer and have sucessfully used it to create a directory called index containing the index (DOCs,DOCS.TAB etc) in the same directory as th

  • Transport Questions and Questionnaires from Dev to QAS or to PRD

    Question How do we transport questions and questionnaires from dev to QAS or to PRD. Do you type all them again or there is process no. What is best process others do Answer As you must be aware, Questionnaires are updated from a Recruiter start page

  • PAPI WS

    Hi, How the PAPI WS basically works and how do I configure the PAPI WS to initiate a instance of the BPM process. (OBPM 10g). Please help. Thanks Bibhu