Passing Call values to a linked Request created by IPK Workflow

I know how to transfer a Call values to a linked Request when creating it manually from a Call screen.
But (how) is it possible to specify Call fields which values should be submitted to a Request when it is created automatically by IPK Workflow Rules processing?
Cheers, Gytis

I found that these fields are copied to a linked request automatically:
But we really need to copy some other fields values as well.

Similar Messages

  • Passing Parameter Value  from Global link

    Hi All,
    I have one common Page. It will be accessed from many other Pages. So I added a link in Global button bar to access my common PG. While I click the link , I like to pass url of the current Page. I like to get suggestion for this....
    Thanks

    Mukul,
    managing a session value is feasible, but not a suggested solution in this scenario as the common link is going to be accessed from multiple pages and it is a global link on all the pages. This will require making changes to all those pages.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to call a rtf template from another rtf template by passing a value

    Hi Gurus,
    Its about calling a rtf template from another rtf template by passing a value.
    My requirement is like:
    I got a quote report from Siebel, based on the product PartNumber I need to pull product description or literature from another database database.
    My approach is something like; get a partnumber from quote report pass it to another rtf template which uses the partnumber and get the data from table using DataSource. When user pull a quote report from siebel this new rtf template should attach to the quote at the end.
    I've gone through all available blogs about sub-reports and white papers from Oracle they are not much helpful since I need step-by-step.
    http://www.adivaconsulting.com/adiva-blog/item/36-working-with-rtf-sub-templates.html
    bip-subtemplate-1-132933.pdf
    I'm using 10g obiee integrated with Siebel.
    Just started learning BIP.
    Thanks in advance.
    Edited by: 911927 on Apr 2, 2013 8:56 AM
    Edited by: 911927 on Apr 2, 2013 8:57 AM

    How to call a rtf template from another rtf template by passing a value try in main template create hyperlink of url with parameters for another template
    http://bipconsulting.blogspot.ru/2010/02/drill-down-to-detail-or-another-report.html
    When user pull a quote report from siebel this new rtf template should attach to the quote at the end.it'll be only another report
    IMHO you can not attach it to main. it'll be second independent report
    you can try subtemplate but it's not about rtf from rtf by click
    it's about call automatically rtf subtemplate from main rtf based on some conditions
    for example, main template contain some data and if some condition is true then call subtemplate and place it instead of its condition

  • Create Material master workflow

    Hi I need to create a workflow that firstly creates a material with the basic data views (in the background) using passed in data, and the next step will then trigger some tasks to create material views.  But I can't find a business object to do this.  I have found BUS1001 but the create method is now obsolete, and I am not sure how I am meant to populate the attributes of BUS1001006?

    I am not sure how I am meant to populate the attributes of BUS1001006
    No worries, you are on the right path. The BOR which you found is  the right one , now what you have to do is in order to pass the values when the material is created , you need to first give the START EVENTS in the workflow basic data and actiavte the binding. And before this you need to create a container element in the workflow I hope it is MATNR , for more information regarding the parameters check the event parameters of the BOR BUS1001006 and the event CREATED then you can get a idea  on what all the elements that are required to create in the WF, after declaring the container elements in the workflow. the simple thig you have to do is BINDING.
    Now create a material, by default the parameters are passed to the workflow that you designed.

  • Help Creating A Link In An IR Report Passing The Value From A Different Col

    Version 4.0.2.00.07
    Hello,
    I have an Interactive Report with a column that I need to create a link on but I need to pass the value of another column.
    This report shows the Features of a particular Release. There is a select list for the Release that is selected and executes the report.
    There is a column that indicates whether the Feature has a Commitment attached to it. If there is have that a link to another report that shows all the Commitments for that Feature by passing the FEATURE_ID which is also a column on the Feature report.
    Query:
    SELECT
          ,CASE WHEN ft.feature_id IN (SELECT cc.feature_id
                                       FROM customer_commitments cc
                                       WHERE ft.feature_id = cc.feature_id
                                      ) THEN 'Yes' ELSE 'No'
           END "Commitment Exists"
              ,ft.feature_id
    FROM ....If "Commitment Exists" has a 'Yes', the 'Yes' is a link that will pass the FEATURE_ID to another report that will show the Commitments for that Feature. If the "Commitment Exists" has a 'No' then no link.
    I was also wondering if the Commitment report could open in a seperate window and make it modal?
    I hope this is clear and someone could help me.
    Please let me know if it's not clear or more information is needed.
    Thanks,
    Joe

    To accomplish this I would build the link as part of the value. So if Yes the Yes itself would be a link, if No is simply text as today.
    It would look something like this:
    SELECT
          ,CASE WHEN ft.feature_id IN (SELECT cc.feature_id
                                       FROM customer_commitments cc
                                       WHERE ft.feature_id = cc.feature_id
           THEN
            '<a href="f?p=&APP_ID.:NEW_PAGE:&SESSION.::::Pn_FEATURE_ID:' || ft.feature_id || '">Yes</a>'
           ELSE
            'No'
           END "Commitment Exists"
              ,ft.feature_id
    FROM ....One problem with this approach is when you export the report (as a CSV for example). There are a few ways to handle this, one is to simply duplicate the column with clear text yes and no and set this column to be included on export and only visible on export. The other column, with the link, set it to no export.
    The other option is to add another condition on the REQUEST value.
    SELECT
          ,CASE WHEN ft.feature_id IN (SELECT cc.feature_id
                                       FROM customer_commitments cc
                                       WHERE ft.feature_id = cc.feature_id
           THEN
                  decode(:REQUEST, 'CSV', 'Yes'
                , '<a href="f?p=&APP_ID.:NEW_PAGE:&SESSION.::::Pn_FEATURE_ID:' || ft.feature_id || '">Yes</a>'
           ELSE
            'No'
           END "Commitment Exists"
              ,ft.feature_id
    FROM ....It seems that the link itself is getting replaced with a #. The link would look something like this:
    'f?p=&APP_ID.:NEW_PAGE:&SESSION.::::Pn_FEATURE_ID:' || ft.feature_id
    Hope this helps.
    Oh and of course, in order for the link to display you need to change the Display Type to "Standard Report Column" otherwise the HTML will be escaped.
    Thanks
    -Jorge

  • Passing variable having value as whole SOAP request to command while invoking ODI WS call

    When passing variable in place of soap request message (variable value is whole SOAP request message prepared using procedure) in ODI Invoke WebService command like -->
    OdiInvokeWebService "-URL=url...." "-PORT_TYPE=..." "-OPERATION=..." "-RESPONSE_MODE=NEW_FILE" "-RESPONSE_FILE_CHARSET=UTF8" "-RESPONSE_XML_ENCODING=UTF-8" "-RESPONSE_FILE=..." "-RESPONSE_FILE_FORMAT=SOAP" "-HTTP_USER=..." "-HTTP_PASS=..."
    #SOAPREQUESTMESSAGE
    Gives error :
    ODI-1226: Step OdiInvokeWebService 1 fails after 1 attempt(s).
    ODI-1241: Oracle Data Integrator tool execution fails.
    Caused By: com.sunopsis.wsinvocation.SnpsWSInvocationException: com.ctc.wstx.exc.WstxUnexpectedCharException: Unexpected character '#' (code 35) in prolog; expected '<'
    at [row,col {unknown-source}]: [1,1]
        at com.sunopsis.wsinvocation.client.impl.AbstractMessageImpl.loadFromXML(AbstractMessageImpl.java:333)
        at com.sunopsis.wsinvocation.client.impl.AbstractMessageImpl.loadFromString(AbstractMessageImpl.java:348)
        at com.sunopsis.wsinvocation.client.impl.AbstractMessageImpl.fromString(AbstractMessageImpl.java:403)
        at com.sunopsis.wsinvocation.client.impl.AbstractJWSDLParserImpl.fromXML(AbstractJWSDLParserImpl.java:272)
        at com.sunopsis.wsinvocation.client.impl.AbstractJWSDLParserImpl.getWebServiceRequestByOperation(AbstractJWSDLParserImpl.java:260)
        at com.sunopsis.dwg.tools.common.WebserviceUtils.getSOAPMessage(WebserviceUtils.java:94)
        at com.sunopsis.dwg.tools.common.WebserviceUtils.invoke(WebserviceUtils.java:138)
        at com.sunopsis.dwg.tools.InvokeWebService.actionExecute(InvokeWebService.java:327)
        at com.sunopsis.dwg.function.SnpsFunctionBase.execute(SnpsFunctionBase.java:276)
        at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execIntegratedFunction(SnpSessTaskSql.java:3437)
        at com.sunopsis.dwg.dbobj.SnpSessTaskSql.executeOdiCommand(SnpSessTaskSql.java:1509)
        at oracle.odi.runtime.agent.execution.cmd.OdiCommandExecutor.execute(OdiCommandExecutor.java:44)
        at oracle.odi.runtime.agent.execution.cmd.OdiCommandExecutor.execute(OdiCommandExecutor.java:1)
        at oracle.odi.runtime.agent.execution.TaskExecutionHandler.handleTask(TaskExecutionHandler.java:50)
        at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2913)
        at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2625)
        at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:558)
        at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:464)
        at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2093)
        at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:366)
        at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)
        at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:300)
        at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:292)
        at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:855)
        at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)
        at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
        at java.lang.Thread.run(Thread.java:662)
    Thanks in anticipation...

    the used variable 'SOAPREQUESTMESSAGE' is being created in a procedure using jython.
    1. Can we use this variable (SOAPREQUESTMESSAGE) value in the next step that is while invoking web service request (can it persist) ?
    2. If not then how can we use this variable value to invoke ws request in next step ?
    Would like to appreciate help.
    Pls reply.

  • How to Pass the Value of a Textfield as c:param to a Link using c:url?

    I must have done someting wrong.
    I tried to pass the value entered in a textfield:
    <html-el:text property="searchFirstName" />to a link this way:
    <c:url value="/admin/sortUsers.do" var="ascFirstName">
        <c:param name="searchFirstName" value="${searchFirstName}" />
    </c:url>and in my action class, I have
    String firstName = request.getParameter( "searchFirstName" );I tried to print out the firstName, I got a blank!
    Please advise what went wrong.

    Further to what I have posted, I did pass some fixed values in my link. They are picked up. Let me explain:
    <c:url value="/admin/sortUsers.do" var="ascFirstName">
        <c:param name="sortKey" value="firstName" />
        <c:param name="orderKey" value="ASC" />
        <c:param name="searchFirstName" value="${searchFirstName}" />
    </c:url>
    <A href=' <c:out value="${ascFirstName}" /> '></A>The fixed values "firstName" and "ASC" are picked up without problem. But the "${searchFirstName}" where searchFirstName is the property of a text field is not picked up. I got a blank when I write it out using System.out.println in my action class.

  • Passing IR Values to Form via Link Column

    I am fairly new to APEX and was wondering if there was a way to pass more than the 3 allotted values in the Link Column of an Interactive Report.
    My report is generated from a query that pulls from several tables. My link column navigates to a form that edits attributes from one of the queried tables. I want to display all the associated values from the same row in the report, but the link column seems to only allow 3 items to be passed to the next page. I can currently fetch all row values that belong to the table the form was created for, but I don't know how to get the others.

    Hi,
    Instead of passing a number of values through link which in turn passes through URL, you could use Automatic Row Fetch process on load of your
    form page to fetch the values of all form items.
    Moreover, you have limitation on the data passed through URL.
    For using the Automatic Row Fetch process you have to do following:
    1) On your form page create a hidden item to hold the primary key value you pass through your link on Interactive Report.
    2) Change the Source Type of each item on your form to Database Column.
    3) Change the Source value or expression to name of your database column whose value the item will hold.
    4) Create a Automatic Row Fetch process Process Point as On Load - After Header.
    Refer: http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/app_comp.htm#CEGCHJGJ
    See the Populating Forms section below.
    Hope it helps!
    Regards,
    Kiran

  • Linking reports passing prompt values to detail report ?

    Hi,
    I am building a linked report in webintelligence on SAP universe which has prompts coming from BI variables.In the master report i have created a hyperlink column so that if user can select the hyperlink for each row.now if i select the hyperlink it should take me to the detail report by passing the prompt values.i want to pass the values to the prompts build in BI varaible.
    eg: master report
    Country  Product  Rev  City
    now here i want to select city and open the detail report by passing city values. i need the formula for the hyperlink  city. City is just a prompt in master report it is not object in my report.
    Thanks,

    Hi Try this code
    ="<a href='http://l1280:8080/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?&sDocName=Account&sType=wid&iDocID=5311&lsSAccountType="+[Account Type]+"'>"+[Account Type]+"</a>"
    Regards
    Prashant

  • Can i pass the values by declaring the continer in sub seq and calling in main seq

    hi,
    In sub seq, i have created the contianer (under parameter) and the continer has array of numbers and array of strings.....
    My question is
    Similar to parameter can i call these container in main seq and can pass the values through these arrays?
    How to find no of elements of array of string or number which is delcared under contianer?
    Pls let me know
    thanks,
    chethan

    I made a small mistake in the previous example, the subsequence calls itself instead of calling it from the mainsequence, please use the attached example.
    Attachments:
    Sequence File 1.seq ‏5 KB

  • How to pass all values from one node element to created node element?

    Hi
    I have model node element under which there are 7 values, and I've created value node element and trying to pass the values from the model node Element to this value node element. But instead of passing all the values its listing only one value.
    How do we rectify this problem!!!
    Thanks in Advance
    Srikant

    Hi Anil
    I've created the node named: TableNode
    and the name of the node from which i want to get the data is : Li_Required_Node
    the Node Structure is
    Context
      |_ Zs_Quantity_Input
         |_Output
           |_Node_Required_Node
              |_Schddt
      |_TableNode
        |_CmpDate
    The Schddt has some 7 values
    The code Snippet is as follows:
    IPublicPricesComp.ITableNodeElement nodeElement;
    IPublicPricesComp.ILi_Required_NodeElement scheduleElement;
    int counter3Max = wdContext.ILi_Required_Node().size();
    for( int counter3= 0 ; counter3 < counter3Max ;counter3++ )
    nodeElement = wdContext.createTableNodeElement();
                             scheduleElement = wdContext.nodeZs_Quantity_Input().nodeOutput_Contract_Qty().nodeLi_Required_Node().getLi_Required_NodeElementAt(counter3);
    nodeElement.setCmpDate(scheduleElement.getSchddt());
    wdContext.nodeTableNode().addElement(nodeElement);               
    On writing the above code and then binding the node to a table column only one value getting displayed
    Where can be the error?
    Thanks in Advance
    Srikant

  • Passing multiple values for a single field in URL to call sap Transaction

    Hi All,
    I need to pass multiple values for a single field to SAP transaction .
    means if i have say a field "Date" which can contain more than one value, <b>but its not a range which has two fields</b> . How is it possible.
    Let me know pls.
    Regards,
    Sirisha.R.S.

    Hi Satyajit,
    I need to call a transaction with multiple values which gives me the report based on those values.
    So I need to pass multiple values for a single parameter.
    I hope u got it.
    Regards,
    Sirisha.R.S.

  • Need to call subreport by passing proper value

    Hi
    from my SQL query i am geeting below result.
    Cust_Num   SalesOrder_num
    1                  S001,S002,S003
    2                  S004,S005,S006   
    Report Output
    Customer             Sales Order
    1                            S001
    S002
                                  S003
    when i click S001 subreport should open with related sale order S001 details.
    please let me know how to do this
    Regards
    vitthal

    Hi vitthal,
    According to your description, you want to execute a click event on the Sales Order, then it will open up another report which show the detail information correspond to the Sales Order. In Reporting Service, as Visakh suggested, we can add an action to jump
    into another report with detail information to achieve your requirement. For more details, we can refer to the following steps (supposing there is field called Sales in the second report):
    Create a parameter named Sales in the second report.
    Add a filter as follows to the dataset:
    Expression: [Sales]             Operator: =              Value:[@Sales]
    Drag the related field to the design surface in the second report.
    In the main report, right-click the cell contains [Sales_Order] field to open the Text Box Properties dialog box, select Action in the left pane.
    Enable the Go to report action, and select the second report name in the drop-down list of Specify a report.
    Add a parameter as follows to run the report.
    Name: Sales                         Value: [Sales_Order]
    The following screenshot is for your reference:
    If you have any more questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • Passing the values from one pgm to another pgm (Calling pgm has no sel scr)

    Hi gurus,
    In my requirement i need to pass the values from one program to another program.
    I am using SUBMIT statement . But , the program which i am calling has no selection screen.
    So how can i pass the values?
    Please help me ASAP.
    Regards,
    Bhanu.R

    Export your internal tables or work areas to a memory id in ur program before u use submit.
    Then in second pgm you have to import from memory id given above.
    example.
    EXPORT gs_header FROM gs_header to memory id 'HEADER'.
    EXPORT gt_item FROM gt_item to memory id 'ITEM'.
    SUBMIT YFIIN_DISHC_MAILREPORT EXPORTING LIST TO MEMORY AND RETURN.
    In your second pgm you can write
    import gs_header TO gs_header from MEMORY id 'HEADER'.
    import gt_item TO gt_item from MEMORY id 'ITEM'.

  • Passing values to parameters in row created by createInsert method

    Hi,
    I am passing some values from one task flow to other as input parameters for the other.
    There(in second task flow) i am using a createInsert method to create a row.
    How can i pass the values of the input parameters received to the parameters of the createInsert row before reaching create page.
    Any suggestions will be really helpful.
    Thanks.

    User, which jdev version do you use?
    Instead of the createInsert you can use createWithParameters. Check Andrejus Baranovskis's Blog: CreateWithParams Operation for Oracle ADF BC 11g
    Timo

Maybe you are looking for

  • Oracle support contact

    Hi All, We have some problems with queries in Oracle 9.2.0.7 I would like to open a service request with Oracle support for 9.2.0.7 specific performance issue on a solaris environment. Please let me know the procedure.

  • Java DTD validation

    I am trying to validate an XML using a DTD which is already created, In the code below i would like to validate the XML. I have looked at a number of websites etc but i cannot work out how to put in the validation can someone please help. I am pullin

  • Re:Crystal Report

    Hi All, I have created a crystal report in that i have used 4 sub forms in the same form. In each form i have created a grand total field. I am having grand total in each sub forms and i have to display the grand totals in another sub form. Is it pos

  • Contribute publish produces 0 byte page

    Hello, We recently setup a website for a client in contribute. Everything was going fine they were editing and adding content at will. However they called me about some pages that had gone "blank" on them. I grabbed the file from the FTP server and o

  • GRU, HRC, ELB Transactions

    Hi gurus, When triyng to set Configure Automatic Posting  in MM (trx OBYC), i get this error message: Account 622610 already used in transaction GRU Message no. F4803 Diagnosis Accounts used in transaction BSX (posting to asset balance sheet account)