Personalization: can I reference an item value (like :LINE.ORDERED_QUANTITY) on a different order line?

I am constructing a forms personalization for the "Sales Orders" form. I would like to be able to reference item values on order lines other than the current line.  Is this possible?
Thanks, Bill

Hi,
(1) From where you have defined the maximum quantity ?
(2) can you provide the personalization rules & functions you have set ?
Morever, regd. DFF, you review the following links.
http://docs.oracle.com/cd/A60725_05/html/comnls/us/fnd/ogenff04.htm
http://www.erpschools.com/articles/descriptive-flexfields
http://www.oracleerpappsguide.com/2011/02/descriptive-flex-field.html

Similar Messages

  • How can I reference the last value in a column?

    How can I reference the last value in a column? For example, today I want the value of A1 to appear in another cell. Tomorrow, I will add a row and want to reference A2, next day A3, and so forth.

    Now I got it:
    =OFFSET(A1,COUNT(A)-1,0)

  • In Jsp TagLib how can I get the Attribute value (like JavaBean) in jsp

    Dear Friends,
    TagLib how can I get the Attribute value (like JavaBean) in jsp .
    I do this thing.
    public void setPageContext(PageContext p) {
              pc = p;
    pc.setAttribute("id", new String("1") );
              pc.setAttribute("first_name",new String("Siddharth")); //,pc.SESSION_SCOPE);
              pc.setAttribute("last_name", new String("singh"));
    but in Jsp
    <td>
    <%=pageContext.getAttribute("first_name"); %>
    cause null is returing.
    Pls HELP me
    with regards
    Siddharth Singh

    First, there is no need to pass in the page context to the tag. It already is present. How you get to it depends on what type of tag:
    Using [url http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/jsp/tagext/SimpleTagSupport.html]SimpleTagSupport
    public class MyTag extends SimpleTagSupport
      public void doTag()
        PageContext pc = (PageContext)getJspContext();
        pc.setAttribute("first_name", "Siddharth");
        pc.setAttribute("last_name", "Singh");
        pc.setAttribute("id", "1");
    }Using [url http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/jsp/tagext/TagSupport.html]TagSupport or it's subclass [url http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/jsp/tagext/BodyTagSupport.html]BodyTagSupport the page context is aleady declared as an implicit object:
    public class MyTag extends TagSupport
      public void doStartTag()
        pageContext.setAttribute("first_name", "Siddharth");
        pageContext.setAttribute("last_name", "Singh");
        pageContext.setAttribute("id", "1");
    }In each case, this sort of thing should work:
    <mytags:MyTag />
    <%= pageContext.getAttribute("first_name") %>I

  • How can I cancel the item that did not ship on my pre-order.

    Hello,
    I ordered two devices on my pre-order, one item shipped and the other didn't.
    How do I cancel the item that did not ship on my pre-order?

        sirguynate805 We're glad that you received your iPhone 6 Plus! Check out this link for cool iPhone info http://vz.to/1e948q1 . Enjoy your new phone and let us know how we can help.
    SheritaH_VZW
    Follow us on Twitter
    @VZWSupport

  • Can we Default PRICE UNIT value in Line Item Tab?

    Hi Everyone,
    As the PRICE UNIT value of MATERIALS is 1 as default.
    Can anyone suggest me the way to change this default value say to 1000 so that when next time Material is pulled, new default value also pull automatically.
    Thanks in advance
    Rakesh

    Hi,
    Not for Price unit in RFx but we had a similar requirement in Master Agreements wherein we needed to default the ECC Integration fields within predetermined values. We had achieved this via scripting.
    For you purpose, you can use the following:
    Scripting Context: Document Lifecycle Event
    External ID:SAPINT_LineitemValidate
    Class: Rfx Line Item(783)
    Script: import com.frictionless.sap.integration.event.RfxLineItemEventHandler
    Herein you can specify the Pricing Unit = "1000";
    Hope this is of help to you.
    Thanks,
    Vikram Shukla

  • Can we change the net value in the conditons of the sales order?

    Hello:
    I have below scenario:
    Sales order:
    Material           A
    PR01 (Price condition)               98 USD
    ZADD (Discount condition)        to be calculated by SAP R3 system (?%)
    Net price                                    80 USD (expected)
    Due to the net value field can't be changed in the system, we have to maintain the discount rate, but we expect the R3 system can calculate the discount rate automatically.
    My questions are:
    1. How can I input the net price?(Should I have to maintain a value discount condition type?).
    2. How to attach or include the discount rate(which will be calculated by the SAP R3 system) in the sales order?
    Can anybody share the relevant solutions?
    Thanks,
    Don

    Hi,
    Maybe, my question is not clear.
    I know on how to maintain the conditions.
    I want to maintain a final price condition, and also the discount rate will be shown in the sales order.
    discount rate= ( List Price 98- Final price 80) / List Price 98
    Or
    I want to maintain a value discount condition,and also need  the discount rate will be shown in the sales order.
    discount rate = value of the value discount condition 18 / List price 98
    The discount rate will be shown in the sales order and the discount amount will be posted to the GL account.
    Thanks&Regards,
    Don

  • Reference Item value in URL

    I want to use a URL to branch from one application/page to a 2nd application/page and pass a value from an item on the 1st application/page to an item on the 2nd application/page - and within the URL also submit the 2nd application/page.
    The first application/page reflects an employee's detail, with a button to go to the 2nd app to view that employees asset detail.
    The 2nd application/page has two regions, one for a parameter field for Employee ID and a 'run' button; the second is an asset report using the parameter field as a filter for the report. The report runs on page load - when the button is pressed - a branch back to the same page happens to reload the page, this time with a filter to show the filtered report.
    On the 1st app, I am using a button and branch to page/url before processing.
    I am able to craft the URL to be able to pass a value to a page item in the 2nd application if I hard code the 'value' for the item:
    f?p=106:1:&SESSION.:RUNQUERY:::P1_EMPL_ID:12:
    This will go to page one in app 106, retain Session ID and put the value 12 into the page item (parameter field) P1_EMPL_ID.
    Question:
    1) How do I (or can I) reference an item value from app 1 in the URL instead of passing the actual value? v(P2_ID) instead of 12 ??
    2) Even when using a hard coded value like above, using 12... the parameter field gets the value, the page submit seems to run - but the report does NOT get refreshed until I press the button again. The button is - Submit as "RUNQUERY" - there is a branch back to page 1 on submit after processing when button pressed: RUNQUERY (Submit).
    So 2 questions:
    how do I reference an item value in a URL?
    am I referencing the submit part of the URL correctly?
    Thanks in advance...
    Rich

    Matt,
    The URL created when selecting the button on the first app/page is:
    http://xx.xx.xx.xx:8080/apex/f?p=106:1:3605812006071032:RUNQUERY:::P1_EMPL_ID,P1_UNASSIGNED:1%2C0
    The first app/pg button branches to this URL. I don't think the branch or REQUEST that this button makes has anything to do with the desitination app/pg REQUEST that that page is supposed to act on... That REQUEST value is also supposed to be in the URL (for me it is 'RUNQUERY').
    The desitination page is picking up the values for P1_EMPL_ID and P1_UNASSIGNED... and if I hit the button with the REQUEST value of RUNQUERY the report runs and is filtered by the values.
    I looked at the different branches there are on the destination page - and there are two that branch back to the same page.
    One is a Before Computation branch, that resets the fields back to defaults, clears cache for pg1 and is conditionally called by the 'RESET' button that resides next to the SUBMIT button... and then branches back to itself (pg 1).
    One is an After Processing branch that does no setting values or clearing cache - just branches back to itself (pg 1) and is called conditionally by the 'SUBMIT' button (RUNQUERY).
    Additional detail:
    1- When first logging into a session - and opening page 1 of the destination app - the values for the parameters are blank and the report result is 'no data found'.
    2- When first logging into a session and opening page of the 1st app, then hitting the button to branch using the URL to the destination page... the parameters are filled in, and the report result is 'no data found'
    3- In both cases - if you press the submit button (RUNQUERY) the report results show data. (either unfiltered due to no parameter values, or filtered with parameter values)
    4- if you press the submit button (RUNQUERY) on the destination page and remain in the same session, go back to the 1st app/pg, select a record... then the branch using the URL works, reflecting a filtered report. The session state for the Destiniation page is not reset - the values remain in state.
    So I don't think that an unexpected branch is happening. It seems like the RUNQUERY in the URL is not being passed or picked up and acted on.
    Rich
    Edited by: rdarlin2 on Oct 27, 2010 9:27 AM

  • How can I reference value of a field from a diffrent line in formatted search

    I want to use a formatted search for this
    I want to set a field value based on a value from a previous row. ( is this possible at all ?)
    I have a udf called Test at Line Level on AR Order
    The user enters a value for test on line 1
    he will have a lot more lines then after that. all I want is to copy the value in test ( on row 1) to row2 as the user edits say the Item code on that row.

    Hi,
    Unfortunately formatted search is for current line only , you can't reference the previous or next line .
    You can do achieve this with SDK but with FMS not possible .
    Regards

  • Reference an item in a TileList

    When a TileList component utilizes its itemRenderer property,
    i.e.;
    // myItemRenderer.mxml – is a VBox component
    tileListInstance.itemRenderer = new
    ClassFactory(myItemRenderer);
    …how can one reference an item (in the tileListInstance
    component) via ActionScript?
    Hopefully this failed attempt will highlight my goal.
    tileListInstance[2].alpha = .5;

    An itemRenderer should be handling 1 thing from a list of
    similar things. So let's suppose you have a collection of 20 items
    where each item in the list has information to display a video. If
    the list control is sufficently large it is possible to show all 20
    videos at once. But suppose it can show only 5 videos - 5 items -
    at once. There would only be 5 or 6 itemRenderers then. As you
    scroll through the list, those 5 or itemRenderers will be given new
    data - different items to display. So the itemRenderer must use the
    data it is given to show the video content.
    While a video is playing in an itemRenderer the code
    supporting the itemRenderer can take its direction from anything
    the video data, or the data for the record itself, has to offer.
    If you itemRenderer has a Timer that goes off after 15
    seconds, then the itemRenderer code can respond to that and change
    its color, for example. But keep in mind, the user could scroll
    that itemRenderer out of view where the list control will then
    repopulate that very same itemRenderer with new data. This is how
    itemRenderers were designed to work in Flex.
    To sum up: the itemRenderer can do whatever it wants as long
    as the data for the record it is given has the information.

  • Can you calculate multiple text boxes to achieve a total value?  If so how is that done?  I am trying to create a order form where multiple items can be purchased but i would like the values of each item to calculate so I can achieve a total value.

    Can you calculate multiple text boxes to achieve a total value?  If so how is that done?  I am trying to create a order form where multiple items can be purchased but i would like the values of each item to calculate so I can achieve a total value.

    Hi sashby51,
    I've moved your discussion to the PDF Forms forum--the folks who visit this forum regularly should be able to point you in the right direction.
    Best,
    Sara

  • Can't Set Item Value After Calling Stored Procedure

    In a forms6i program unit, I call a stored procedure. The stored procedure executes successfully. Then I set the value of a date item on a data block to sysdate.
    When I run the form and execute the program unit the stored procedure executes successfully, but then the program unit gives me a No Data Found error when I set the value of the date item on the block. The value of the date item never changes. However, if I comment out the call to the stored procedure, the date item changes to sysdate and there is no error message generated.
    Just to be sure, I moved the logic to set the date item value to a separate button on the form. Then I re-ran the program unit. The stored procedure executed successfully. Then I clicked the button to set the value of the date field on the block, which gave me the same no data found error.
    Then I commented out the call in the program unit and re-ran the test. The program unit executed. Then I clicked the button to set the date value in the block and it was set to sysdate with no errors.
    Why can I not set the date item after running a stored procedure?

    Seems like a MSDTC config issue
    See if this helps
    http://support.microsoft.com/kb/2027550/en-us
    http://zarez.net/?p=1469
    http://danieladeniji.wordpress.com/2013/03/06/microsoft-sql-server-linked-server-error-the-partner-transaction-manager-has-disabled-its-support-for-remotenetw/
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • How can I make invoice when down payment is bigger than item value ?

    Dear all,
    please, I need make invoice with bigger down payment than the item value.
    How can I make invoice when down payment clearing value is bigger than the item value ?
    When I do Release To Accounting, I have got a massage:
    "Total of down payment to be billed too high. See billing document item XXXXX"
    Please, how can I solve this problem?
    Thank you
    Peter

    Hello,
      I would like to underline that this is not a problem, but a standard, and in my opinion rightful behaviour of SAP: in a dowpayment process, when you create the invoice document, you should deduct only an amount less or equal to the invoice amount. And in the following invoices you will deduct the remaining downpayment amounts still open.
    Also under al legal and fiscal point of view, I guess how would you print the invoice? With a minus value?
    Best regards,
    Andrea

  • Can we see costing value for line item batch in Batch Information Cokcpit r

    Can we see costing value for line item batch in Batch Information Cokcpit report - BMBC?
    Business like to see standard cost/ item and extended cost which should be qty in inventory * standard cost.
    Help appreciated.
    Edited by: Tom_Eric on Jan 13, 2012 2:33 AM

    HI.
    YES it is passible.
    If the GL is activated line item display check box is active then we can able to see the data as per line items.
    T<Code. Fbl5n
    Thanks.
    Vasu
    Edited by: Vasu Enaguthi on Apr 7, 2010 8:46 AM

  • Can we catch the dynamic item value in Apex?

    Hi All,
    In my application i am using SELECT_LIST_FROM_QUERY_XL Function. The select list will be populated based on some product group id.
    Some times the list will be 2 or 5 based on prgr id. Now how to catch the dynamic list item name. Is it possible?
    Thanks,
    Anoo..

    Not directly. You can have two items and then dynamically switch between those two items. This can lead to other issues of cause. For example if the item value should be stored in the database, you have to decide which item to store and how to do that.
    The field type itself should not be changed. There are a lot of other things that depend on that. Possible ? Yes. Advisable? No. Check the page source text to see the difference between a select item and a normal text field. Then think if you want to set all this dynamically.
    Maybe a popup list would be better suited?
    One more point: In my experience adding too many dynamic stuff onto a page will not improve the user experience, but will decrease it. So you should carefully consider if this is something. Dynamic actions are great, but they are not always the best tool for the job.

  • By using personalization can we default the values as null in oaf

    Hi All,
    Can we change the default values to null....
    Actually i have from and to date fields....when ever page opens the vales are geting defaulting in that fields...
    I need to make this as null....by using personalization is it possible( if yes...need help) or i need to extend the co..
    Regards
    Harry

    Hi Harry,
    If the values are defaulting from the "initial value" property it can be set to null by removing those values from personalization, but I feel it will be defaulting from code if it is so, same can not be achieved by personalization.
    Regards,
    Reetesh Sharma

Maybe you are looking for