Dynamically updating a form

Anyone know what I'm doing wrong? I have dynamic multiple
rows being spit out into a form that I want to be able to go
through the form, make my changes and use 1 submit button. Then I
need to update those results in the database according to their id.
I have the following code below, it doesn't throw errors but it
won't update the database. Any help would be appreciated.
The Form
<cfform method="post" action="enterresults2.cfm">
<cfset howmany = 0>
<cfoutput query="qmembers">
<cfset howmany = howmany + 1>
<table style="border: 1px solid black;">
<tr>
<td style="border: 1px solid ##FA5A03;" valign="top"
align="left">#firstname# #lastname# - #id#</td>
<td style="border: 1px solid ##FA5A03;" valign="top"
align="left"><cfif startweight NEQ "">Start Weight:
#startweight#<cfelse> </cfif></td>
<td style="border: 1px solid ##FA5A03;" valign="top"
align="left"><cfif startbmi NEQ "">Start BMI:
#startbmi#<cfelse> </cfif></td>
</tr>
<tr>
<td valign="top" colspan="3">
<cfif qchallenge.lengthofchallenge GTE 1>Week 1:
<input type="text" name="week1_#howmany#" size="2"
value="#week1#"></cfif>
<cfif qchallenge.lengthofchallenge GTE 2>Week 2:
<input type="text" name="week2_#howmany#" size="2"
value="#week2#"></cfif>
<cfif qchallenge.lengthofchallenge GTE 3>Week 3:
<input type="text" name="week3_#howmany#" size="2"
value="#week3#"></cfif>
<cfif qchallenge.lengthofchallenge GTE 4>Week 4:
<input type="text" name="week4_#howmany#" size="2"
value="#week4#"></cfif>
<br><br>
<cfif qchallenge.lengthofchallenge GTE 5>Week 5:
<input type="text" name="week5_#howmany#" size="2"
value="#week5#"></cfif>
<cfif qchallenge.lengthofchallenge GTE 6>Week 6:
<input type="text" name="week6_#howmany#" size="2"
value="#week6#"></cfif>
<cfif qchallenge.lengthofchallenge GTE 7>Week 7:
<input type="text" name="week7_#howmany#" size="2"
value="#week7#"></cfif>
<cfif qchallenge.lengthofchallenge GTE 8>Week 8:
<input type="text" name="week8_#howmany#" size="2"
value="#week8#"></cfif>
<br><br>
<cfif qchallenge.lengthofchallenge GTE 9>Week 9:
<input type="text" name="week9_#howmany#" size="2"
value="#week9#"></cfif>
<cfif qchallenge.lengthofchallenge GTE 10>Week 10:
<input type="text" name="week10_#howmany#" size="2"
value="#week10#"></cfif>
<cfif qchallenge.lengthofchallenge GTE 11>Week 11:
<input type="text" name="week11_#howmany#" size="2"
value="#week11#"></cfif>
<cfif qchallenge.lengthofchallenge GTE 12>Week 12:
<input type="text" name="week12_#howmany#" size="2"
value="#week12#"></cfif>
<input type="hidden" name="firstname_#howmany#"
value="#firstname#">
<input type="hidden" name="lastname_#howmany#"
value="#lastname#">
<input type="hidden" name="id_#howmany#" value="#id#">
</td>
</tr>
</table>
</cfoutput>
<cfoutput>#howmany#</cfoutput>
<input type="hidden"
value="<cfoutput>#howmany#</cfoutput>"
name="rowcount">
<input type="submit" value="Update Weights">
</cfform>
The Update Page
<cfloop from="1" to="#form.rowcount#" index="i">
<cfquery name="updatemembers"
datasource="#Application.ds#">
UPDATE teammembers
SET firstname = '#FORM['firstname_' & i]#',
<cfif parameterexists(week1)>week1 = '#FORM['week1_'
& i]#',</cfif>
<cfif parameterexists(week2)>week2 = '#FORM['week2_'
& i]#',</cfif>
<cfif parameterexists(week3)>week3 = '#FORM['week3_'
& i]#',</cfif>
<cfif parameterexists(week4)>week4 = '#FORM['week4_'
& i]#',</cfif>
<cfif parameterexists(week5)>week5 = '#FORM['week5_'
& i]#',</cfif>
<cfif parameterexists(week6)>week6 = '#FORM['week6_'
& i]#',</cfif>
<cfif parameterexists(week7)>week7 = '#FORM['week7_'
& i]#',</cfif>
<cfif parameterexists(week8)>week8 = '#FORM['week8_'
& i]#',</cfif>
<cfif parameterexists(week9)>week9 = '#FORM['week9_'
& i]#',</cfif>
<cfif parameterexists(week10)>week10 = '#FORM['week10_'
& i]#',</cfif>
<cfif parameterexists(week11)>week11 = '#FORM['week11_'
& i]#',</cfif>
<cfif parameterexists(week12)>week12 = '#FORM['week12_'
& i]#',</cfif>
lastname = '#FORM['lastname_' & i]#'
WHERE id = #FORM['id_' & i]#
</cfquery>
</cfloop>

brianism wrote:
> it doesn't throw errors but it won't update the database
Silly question, but did you first verify the loop is even
executing? ie Print a message to the screen inside the loop so you
can tell it is executing.

Similar Messages

  • Dynamic Update Tabular form

    I have a tabular form on Table 1 (an empty table)
    I want to populate Table_1/tabular form with Table 2 values
    Table_1 & Table_2 are linked by pk/fk relationship (Main_Route)
    Basically, There will be a select list for Main_routes on the Table_1/tabular form. Once I hit the Apply changes button, I want it to get the values for street, ward, & section from Table_2.
    How do I achieve this? Is there some kind of trigger I can use, page process, or item-level sql?
    Table_1
    ID (number) (pk)
    Main_Route (varchar 2(30))
    Street (varchar 2(30))
    Ward (varchar 2(30))
    Section (varchar 2(30))
    Table_2
    Main_Route (varchar 2(30)) (pk)
    Street (varchar 2(30))
    Ward (varchar 2(30))
    Section (varchar 2(30))

    Hi,
    Go to SQL Workshop, SQL Commands and then run this:
    CREATE OR REPLACE TRIGGER  "TABLE1_BI"
    BEFORE
    INSERT OR UPDATE ON "TABLE1"
    FOR EACH ROW
    BEGIN
      DECLARE
        vSTREET VARCHAR2(30);
        vWARD VARCHAR2(30);
        vSECTION VARCHAR2(30);
      BEGIN
        IF :NEW.MAIN_ROUTE IS NOT NULL THEN
          SELECT STREET, WARD, SECTION
          INTO vSTREET, vWARD, vSECTION
          FROM TABLE2
          WHERE MAIN_ROUTE = :NEW.MAIN_ROUTE;
          :NEW.STREET := vSTREET;
          :NEW.WARD := vWARD;
          :NEW.SECTION := vSECTION;
        ELSE
          :NEW.STREET := NULL;
          :NEW.WARD := NULL;
          :NEW.SECTION := NULL;
        END IF;
      END;
    END;followed by:
    ALTER TRIGGER "TABLE1_BI" ENABLEThis should run on TABLE1 for any insert or update. As long as ROUTE_MAIN has a value, then the related information is retrieved from TABLE2 and used to update the record on TABLE1. If ROUTE_MAIN is empty, then the other fields are emptied as well.
    Andy

  • Dynamically Update Form Fields

    I have a form with a dropdown where I can select an employee id. After it's selected I want to go to the database, get the corresponding information, and update the form fields. What is the best way to accomplish this?
    Thanks,
    Mark

    What kind of form you have a tabular form or a normal form?
    what version of apex you are using?
    if its a tabular form then you have to use ajax to fetch the values from database.
    if its a normal form then in apex 4.0 and above you can use dynamic actions for fetching the values.
    in older version you have to write a fetch process (before/after header) where you can fetch
    the associated values and assign them to respective items
    Thanks
    Tauceef

  • Error Message when trying to update a form

    Hello,
    I receive the following error message when I try to update a form:
    Error: The preference path does not exist: ORACLE.WEBVIEW.PARAMETERS.1129327645 (WWC-51000)
    The preference path does not exist: ORACLE.WEBVIEW.PARAMETERS.1129327645 (WWC-51000)
    Insufficient privileges (WWV-12600)
    When I click on the Update button on my form, I call a dynamic page which calls a procedure to update the database and display a confirmation message to the user.
    The parameter I am having a problem with is the v_ins_1.
    This links does not work: http://XXX:####/servlet/page?v_prt_stck_1=CLIENT+PAPER&v_prt_stck_2=&v_prt_stck_3=&v_prt_stck_4=&v_env_stck=&v_ins_1=SS-002+Dollar+Cost+Averaging+%28PMID+%3D+40215%29&v_ins_2=&v_in s_3=&v_ins_4=&v_ins_5=&v_ins_6=&v_del_opt=&submit=Update&p_plan_id=01234&p_cust_id=INV&p_lot_type=MAIN&_pageid=59&_dad=portal30&_schema=PORTAL30&_mode=3&_type=site&_fsiteid=34&_fid =2543&_fnavbarid=1&_fnavbarsiteid=34&_fedit%3D0%26_fmode=2&_fdisplaymode=1&_fcalledfrom=1&_fdisplayurl=
    This link works: http://XXX:####/servlet/page?v_prt_stck_1=CLIENT+PAPER&v_prt_stck_2=&v_prt_stck_3=&v_prt_stck_4=&v_env_stck=&v_ins_1=*Custom+Inventory&v_ins_2=&v_ins_3=&v_ins_4=&v_ins_5=&v_ins_6=& v_del_opt=&submit=Update&p_plan_id=01234&p_cust_id=INV&p_lot_type=MAIN&_pageid=59&_dad=portal30&_schema=PORTAL30&_mode=3&_type=site&_fsiteid=34&_fid=2543&_fnavbarid=1&_fnavbarsitei d=34&_fedit%3D0%26_fmode=2&_fdisplaymode=1&_fcalledfrom=1&_fdisplayurl=
    Any suggestions?

    Also got a message "Acrobat failed to set up a workflow folder in the specified shared folder or hosted service"..?

  • Dynamically Updating Content Server Portlets

    [urlHi, I am currently having difficulty dynamically updating content server portlets.  I have a portlet of the following form:[/url]
    ArticleName Author Title Date mystory author1 title1 04/05/01
    story2 author2 title2 06/07/04
    story author3 title3 01/02/03
    So I have this table where each one of the line items is an article in the content server. So, for example the first line item is an article "mystory" by "author1", with title "title1" and date "04/05/01" additionally there is an article text field, but this isn't displayed unless I click on the article name.
    I can set up the basics of this portlet, but when I try to add any real functionality I run into one of two problems.
    First Problem: Passing Information
    I cannot find a way to pass information between content portlets. For instance, if the user would like to "re-sort" this table based on "date", I would like to have the user click on the "date" column heading and then reload the page. To do so, I would have to pass the section name back to the page so that it could resort based on this data. I have not found anyway to effectively pass information to a content server portlet. I am building these pages through use of the presentation template framework (so I can have access to the content items) but that seems to change the way portlets are handled.
    I got around this limitation with a regular portlet by creating an intermediary page which captures passed information and stores it to the session state. Once the information was in the session state, it is accessible to the portlet on the first page. However, this only works because remote portlets do not change their session id once loaded. Content Server portlets, on the other hand, change their session id after every reload of the browser or page change. I can send information from a content server portlet to an intermediary page, but I cannot send it back to the portlet because the session id has changed so I have no idea of knowing where to send the information. I can write it to a session state, but by the time I return to the portal page, the content server has changed its session id so it does not know where to look any longer.
    I suppose it would be possible to create an application state variable and append it with some static token (if there is some static variable per portal session) but I would rather not have to deal with application variables if at all possible.
    Second Problem: Dynamically Updating PCS Tags
    Even if I were able to the pass information back to my content server portlet, I run into another issue. The easiest way to sort content server items is using the filter command in the pcs:foreach tag. So, if I wanted to sort by author name, I could do something like the following <pcs:foreach var="item" expr="filter(folderByName('content'), filtered.name == '"name")" or something like that (the syntax may be incorrect, I just wrote this off the top of my head). However, it appears that the way the presentation templates are compiled goes in the order of PCS tags THEN JSP. So I would have no way of dynamically changing the variable on which I sort. For example, if I clicked on "Date" above in my table, I would like to be able to dynamically change my code so that I sort on date, and not name. I cannot find a solution to this problem.
    My workaround is to use the pcs tags to write out all the possible sortings to java array objects. This gives me access to the data on a JSP level and based on whatever the user will chose, I could then display that array. While this works, it is extremely ghetto and inefficient. Any help or suggestions would be fantastic.
    Thanks a lot,
    Jason Grauel

    You can use just about any javascript you want in any Content Server presentation template including ones that are used for portlets.
    However, you should be careful to name javascript functions and global variables uniquely so that they do not conflict with any other javascript on the page. To do this, you can append the item id to function and variable names, for example,
    function doSomething<pcs:value expr="pcs_id"></pcs:value>() {
    return true;
    Randy

  • Report not updating after Form saved in Workspace in Hyperion Planning

    Whenever a form is changed in workspace and saved, it updates the form. I then go to the report to print, the report isn't showing the updated information. I have to go to Essbase to calcall for the report to be updated. How can I get my reports to update as soon as the form is saved. Thx

    A few things I would suggest you do to determine where the problem lies.
    1) Create an Essbase pull sheet in Excel that mimics the form and verify you see the data in Essbase -- you should see it just after your form is saved.
    2) Compare the dimensions on your report with those on the Form. I would guess your report has an upper level member that is not dynamically calculated -- if this is true then if you really want the report to show the exact data as the form then update the report appropriately.
    Good Luck,
    -John

  • Add Subform dynamically,in Interactive form in WebDynpro

    HI,
    I an using NW2004s SP9  and have an Interactive form designed by Adobe Designer 7.1 from within the NetWeaver Developer Studio, with the following hierarchy of elements:
    -form1(root)
    --Button
    --tmpForm (subform - Repeat subform for each data entry )
    ---ST (Text)
    The Webdynpro application displays the Interactive PDF form with Reader Rights enabled by the Adobe Document Services.
    On click of button, the following javascript is executed on client side:
    var df = _tmpForm.addInstance(1);
    df.ST.rawValue = "HI"  ;
    xfa.host.messageBox( "Instances" +  tmpForm.all.length ) ;
    On clicking the button, i get the number of the instances of the subform and the size increases on each click, but no element is added "visibly" to the pdf.
    But when i try to do the same by saving the XDP file as Dynamic PDF form for Acrobat 8.0, and open it using Adobe Acrobat PRO 8.0, it works fine.
    My question is,I s it not possible to add subforms dynamically in PDF's generated by Adobe Document Services with Reader Rights enabled?
    Or, is there something that i am missing?
    Please guide.
    Thanks.
    Regards,
    Siddhartha

    HI Dezpo,
    Thanks a lot for replying.
    I had checked the updated <b>SAP Note 834573</b> -Interactive Forms based on Adobe software: Acrobat/Reader version, which states that:
    For SAP Interactive Forms by Adobe, you require the following:
    Adobe Acrobat as of Version 7.0.9
    Adobe Reader as of Version 7.0.9
    <b>Important:</b>
    Note that you can only have limited use of Reader 8.0 for forms that, at runtime, are integrated in a WebDynpro application through the xACF technology (Active Components Framework). In this runtime environment, Reader 8.0 currently only supports static interactive forms. If you are using <b>dynamic interactive PDF forms</b>, we recommend that you use <b>Reader 7.0.9.</b> In the application, you can use parameters, or you can call methods, to determine whether you want to create a static or dynamic PDF form.
    I tried with the reader versions - 7.0.7,  7.0.9 and 8.01, but it doesn't work for either of them.
    Regards,
    Siddhartha Jain

  • Populate List/Menu in Update Record form

    I am creating an update record form that contains a list/menu
    (with values General, 2002, 2004, 2006)
    How do I populate this menu so that it pulls current value
    from database, and not just the top default value each time?

    Swn-Y-Mor wrote:
    > I am creating an update record form that contains a
    list/menu (with values
    > General, 2002, 2004, 2006)
    >
    > How do I populate this menu so that it pulls current
    value from database, and
    > not just the top default value each time?
    Select the menu object in the form. Then click the Dynamic
    button in the
    Property Inspector. In the dialog box that opens, click the
    lightning
    bolt next to Select value equal to. Finally, choose the data
    field from
    the correct recordset.
    David Powers
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "Foundation PHP 5 for Flash" (friends of ED)
    http://foundationphp.com/

  • Error While updating Process form data Using Scheduler

    Hi All,
    I am trying to update Process form data (ex : lastname) using a scheduled task Code. I am getting Error while updating Field.
    Code :
    HashMap<String, String> map = new HashMap<String, String>();
    map.put("UD_EBS_PF_LASTNAME", "lastname");
    formintf.setProcessFormData(instancekey, map);  //I AM GETTING AT THIS LINE
    Saying
    Thor.API.Exceptions.tcAPIException: The following required fields have not been given values:EBS IT Resource : The following required fields have not been given values:EBS IT Resource
        at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
        at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
        at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
        at Thor.API.Operations.tcFormInstanceOperationsIntfEJB_h6wb8n_tcFormInstanceOperationsIntfRemoteImpl_1036_WLStub.setProcessFormDatax(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
        at $Proxy2.setProcessFormDatax(Unknown Source)
        at Thor.API.Operations.tcFormInstanceOperationsIntfDelegate.setProcessFormData(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at Thor.API.Base.SecurityInvocationHandler$1.run(SecurityInvocationHandler.java:68)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
        at weblogic.security.Security.runAs(Security.java:41)
        at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(weblogicLoginSession.java:52)
        at Thor.API.Base.SecurityInvocationHandler.invoke(SecurityInvocationHandler.java:79)
        at $Proxy3.setProcessFormData(Unknown Source)
        at com.wyndham.tasks.AssignRandomPasswordToAllUsersSchedulerTest.execute(AssignRandomPasswordToAllUsersSchedulerTest.java:182)
        at com.wyndham.tasks.AssignRandomPasswordToAllUsersSchedulerTest.main(AssignRandomPasswordToAllUsersSchedulerTest.java:63)
    Caused by: Thor.API.Exceptions.tcAPIException: The following required fields have not been given values:EBS IT Resource : The following required fields have not been given values:EBS IT Resource
        at com.thortech.xl.ejb.beansimpl.tcFormInstanceOperationsBean.setProcessFormData(tcFormInstanceOperationsBean.java:761)
        at com.thortech.xl.ejb.beansimpl.tcFormInstanceOperationsBean.setProcessFormData(tcFormInstanceOperationsBean.java:426)
        at Thor.API.Operations.tcFormInstanceOperationsIntfEJB.setProcessFormDatax(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    Is that possible there was the field ZDATE in your form interface/ context and now it is not? I guess some source has changed so the field in the form (binding to the not existing field) cannot be processed. Otto

  • Dynamic generation of form to show table entries

    Dear experts,
    I am aware of how to dynamically program for form generation when the layout static and is already defined in transaction SFP.
    However I have a requirement wherein the form layout is not available . But the form should get generated dynamically and display values from a table in a simple field - value format. ( Just the way SE16 displays table content , the only difference being output should be in a PDF)
    Any pointers how I can progress on this.
    Appreciated your inputs.
    Thank you.
    With regards,
    Sahir.

    How does default checked checkboxes work for checkboxes of type String[]?
    The following code works, but it is for form property of type String, instead of String[]:
    <form-property name="prop" type="java.lang.String" />
    form.set("prop", "true");
    <html:checkbox property="prop" value="true"> // checked by defaultThis is what I tried for type String[], modelling it off the ideas of the above code, but it does not work:
    <form-property name="prop" type="java.lang.String[]" />
    String[] propArray = {"1", "4"};
    form.set("prop", propArray[]);
    <html:checkbox property="prop" value="1">  //should be checked by default, but is not
    <html:checkbox property="prop" value="2">
    <html:checkbox property="prop" value="3"> 
    <html:checkbox property="prop" value="4"> //should be checked by default, but is notWhy does it work for String but not String[]? How do I make it so that they are checked by default for type String[]?

  • How to display or generate PDF417 barcode dynamically in PDF form? I am using Acrobat XI Professional and there is a Bar Code Field in the same through which I generated the same. But I want to generate the same dynamically.

    How to display or generate PDF417 barcode dynamically in PDF form? I am using Acrobat XI Professional and there is a Bar Code Field in the same through which I generated the same. But I want to generate the same dynamically.

    What do you mean by dynamically? When yo set up a 2D bar code field you specify which field name/value pairs you want to include, along with other parameters. But be aware that they won't work with Reader unless you Reader-enable the document with LiveCycle Reader Extensions and include the bar code usage right. It will work with Acrobat Standard/Pro.

  • Can I update multiple forms with the same dropdown at the same time

    I have 20+ forms that have a common dropdown.  Each form has between 1 and 15 instances of this dropdown.  The values in the dropdown are updated on a frequent basis.
    Currently I have an identical Document JavaScript named 'UpdateDropdowns' in each form.
    function update_dropdowns()
        var aList = ["  ", "A", "B", "C"];
        //Add any other dropdown choices in the var aList in the format shown
        getField("TradeNameDropdown1").setItems(aList);
        getField("TradeNameDropdown2").setItems(aList);
        // Add any other dropdowns added to the form in the format shown
        // Open Log Console (Ctrl-J), enter update_dropdowns()  (Ctrl-Enter)
    There are over 30 choices in my present iteration of var aList, but for brevity I've only listed the 3 examples to illustrate my JavaScript.
    Currently when I have to update the dropdown, I follow these steps
    Open form
    Open UpdateDropdowns Document JavaScript
    Add the additional value(s)
    Highlight and copy the updated var aList
    Close the Document JavaScript
    Update the form in the Log Console
    Repeat process for all forms (pasting in the new var aList to ensure conformity)
    Is there a way to update all of my forms at once without having to go through this form by form process?

    That sounds fantastic try67.  I have the most recent version of Acrobat Pro.
    I'm unfamiliar with the process.  Will 'Help' be able to walk me through it?
    I'm not in the office anymore, so not in front of the program.

  • How can i dynamically update a table in my program?

    Hi there!
    I would like to know if anyone can assist me with advice on how to dynamically update
    a table within my program, with new values from the database?
    Thanking You all.

    Add rows to its model.
    Kind regards,
    Levi

  • Dynamic update of safety stock in SAP R/3 systems (ECC 5.0 version)

    Hi Friends,
    Forgive my newness to SAP. Let me explain the problem i am facing in SAP. I want to identify the parameters to dynamically update the finished goods safety stock for each depot by SKU wise.
    Current process :- Safety stock is calculated manually and updated by using Transaction code MS02 in the system.
    It would be highly useful if i know the flow in SAP system and how the current process can be changed?
    If more info is required i'm ready to give.
    Thanks in advance

    Hi Mario Adler,
    Thanks a ton for ur answer.
    Will it update safety stock for finished goods in each depot by SKU wise? Raw material safety stock isn't my concern.
    project description :  Manufacturer of chemical goods , 70+ products,350 skus
    Distribution : factory to depot (bulk volume)
                          Mother go-down to depot(Stock transfer)
                         No of depots :33,factory:3,mother go-down -1
    Sales forecasting is done in excel for every month and updated to SAP via  BAPI. After that DRP,MRP and other runs takes place.
    What are all the areas i need to touch in to get the parameters to update the safety stock?
    Regards
    Arasu
    Edited by: Arasu_IIM on Apr 26, 2011 12:52 PM

  • How to dynamically update columns in a where clause to a SQL query in OSB?

    Hi Gurus,
    I have a requirement where in we need to dynamically update a where clause to a SQL query in OSB(11.1.1.6.0).
    For example:
    If the JCA sql string is "select * from emp where emp_id = 100 and emp_status ='Permanent'" now i want to change this where clause and the new query has to be like "select * from emp where emp_name like 'S%' and emp_dept like 'IT' ". basically we need to change the where clause dynamically.
    We can also use "fn-bea:execute-sql()" in a xquery but I don't want to use this function as creates a new connection.
    I have done some home work and found out --> as per the DOC "http://docs.oracle.com/cd/E23943_01/dev.1111/e15866/jca.htm#OSBDV943" section: "25.5.2 JCA Transport Configuration for Proxy and Business Services", when a business service is created by using JCA, we can see Interaction Spec Properties under JCA Transport Tab. This will have a property "SqlString' and we can over ride it. But I am unable to figure out how to over ride the value. I have tried by using Transport Headers activity but no luck. Please guide me how to achieve this?
    Thanks in advance
    Surya

    I solved my problem.
    In my header renderer, I simply added a line to set the text to the object value "label.setText( (String) value );" (where label is an instance of a JLabel.
    Thank you to who took some time to think about it.
    Marc

Maybe you are looking for

  • Creating Custom WCF in sharePoint 2013

    Hello,  I read the following article to create Custom wcf "http://www.robertseso.com/2013/05/adding-custom-wcf-services-to.html". I have followed the steps . when I open the .svc  from browser I got the following error :            "sharepoint  provi

  • Hierarchy authorization based on 0CCA_O01

    Hello experts, I have loaded single values & intervals for costcenters authorizations into 0CCA_O01. I have no heirarchy authorizations available. Now user still wants to select costcenters in query by hierarchy nodes, but he should only see nodes an

  • Calling Area Pages

    Hi,          I have developed a WD4A application with 4 views. In the last view i have 2 URL elements that should be link back to the orginal Area Page ( for eg. Home Page ) while running in the Protal. Is there any way we can pass the URL of the Hom

  • Wireless Mac-Adress Filtering via Radius Bypassed

    Hello i have two Mac-adress based filtered WLAN configured plus one Guest SSID. The mac-adress filtering is linked to a radius server faut mac verification When i enable Fast-SSID change (globally for controller) i can switch from guest ssid to mac-f

  • Cant find this topic

    frontrow In Itunes, I have started importing movies, and using iflicks to get metadata into the movies and all is well. However, am I wrong to assume that the Genres that show in Itunes, dont show when viewing in Frontrow? I have also tried creating