Creating a New Item In Seeded page

Hi,
I am having requirement to create a new field in seeded page.So Please can anyone help me in creating it.
My Requirement is----->
Creating a new field to be displayed In CONFORMATION PAGE of "Internet Expense Audit Manager Responsibility".
The Navigation is :
Internet Expense Audit Manager Responsibility---------->Conformation Page
The Field to be displayed is ProjectNumber.
So please can anyone help in doing this.

Hi,
Actually I am using ReviewCashVO . In it i can see ProjectNumber,Justification etc attributes.
In seeded Page,he had used Justification Field and it showing data.He had not used ProjectNumber.
so i created a new field and assigned projectnumber as instance attribute ,then its not displaying data.
But if i use Justification Instance Attribute for newly created field or item then its displaying data.
So please can u help me in doing personalization on seeded page.
My Aim is:
Internet Expense Audit Manager responsibility
In it
Conformation Page
In conformation page i need to add Project Number field.
Plz can u check it.

Similar Messages

  • Creating a new item in application Personalize Page

    Hi all,
    I've created a new item from the application's personalize page. There are a few questions I want to ask about this new item I've created.
    1. I know that the page has different regions as there is more than one controller class for that page(visually). If I use oapagecontext.getParameter("Item ID"), will that give me the item's value even if it is in a different controller?
    2. When I create a new item using the application's personalize page, does it automatically update the relevant xml in $FND_TOP/mds repository? Or does it only update it during run time?
    Cheers

    Hi there,
    it still seems unable to do what i want. The code I'm using right now is this
    I've created a new MessageTextInput item from the application and gave it the ID of xxActiveTo. I also made the view attribute of "ActiveTo" and attribute set of /oracle/apps/jtf/resource/attributesets/JtfRsResourceExtns/EndDateActive.
    **code **
    String temp = oapagecontext.getParameter("xxActiveTo");
    if (temp != "22-Aug-2006")
    setforwardurl (xxxxxx);
    When i see the field I enter 22-Aug-2006 and then press the button. However, it always forwards to the url as in setforwardurl.
    I know I'm getting the wrong value but I don't exactly know why
    Please help

  • How can i create a new item in the app "health"?

    how can i create a new item in the app "health"? I need a field for documentation of "Waist-to-height ratio", exactly for "circumference".
    It's a matter of common knowledge, that the Waist-to-height ratio (WHtR) has more significance then the Body-Mass-Index (BMI).

    If you mean you want to change a color of a calendar category or create a new one, you cannot do that, what is pre-loaded is what you get and cannot be edited.

  • Error message: Warning 20225. Adobe Acrobat 7.0 Setup was unable to create a new item: Adobe PDF Por

    Error message: Warning 20225. Adobe Acrobat 7.0 Setup was unable to create a new item: Adobe PDF Port-Printer. The Adobe PDF Printer may be unavailable. I'm using the original CD to set up

    And on what system? Acrobat 7 is not compatible with Windows 7, if that's what you are using. You need to upgrade then.
    Mylenium

  • FM to create a new item in Purchase Order

    Hi Experts,
    I am using BAPI_PO_CREATE to create PO's from frontend. Now I want to create a new item in same PO which i have created earlier, the way we can do in me21n. I think i cant do this through BAPI_PO_CREATE FM. Can anybody pls help me regarding this.
    Waiting for ur valuable guidance..
    Regards,
    Rajesh

    Hi,
    USE BAPI_PO_CHANGE.
    Ex code:
    CALL FUNCTION 'BAPI_PO_CHANGE'
        EXPORTING
          purchaseorder = ws_podetls-ebeln
          poheader      = ws_poheader
          poheaderx     = ws_poheaderx
        TABLES
          return        = ws_return
          poitem        = ws_poitem[]
          poitemx       = ws_poitemx[]
          potextitem    = ws_potextitem[].
      IF sy-subrc NE 0.
    No sy-subrc check is required
      ENDIF.                               " IF SY-SUBRC NE 0
      IF ws_return-type EQ wc_message_s OR
         ws_return-type EQ wc_message_w OR
         ws_return-type EQ wc_message_i.
    To commit the transation for succesfull records
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait = wc_x.
        PERFORM 0002_populate_istatus.
        IF sy-subrc NE 0.
    No sy-subrc check is required
        ENDIF.                             " IF SY-SUBRC NE 0
      ELSE.
        LOOP AT ws_return.
          IF ws_return-type EQ wc_message_e.
            MOVE:
               wc_color_red TO o_status-lights,
               ws_return-message TO o_status-message,
               ws_poheader-po_number TO o_status-ebeln.
        Reading the ws_poitem table for error messages.
            READ TABLE ws_poitem1 INDEX ws_return-row.
            IF sy-subrc EQ 0.
              MOVE:
                ws_poitem1-po_item TO o_status-ebelp.
            ENDIF.                         " IF SY-SUBRC = 0
            APPEND o_status.
            CLEAR o_status.
          ENDIF.                           " IF ws_return-type..
        ENDLOOP.                           " LOOP AT WS_RETURN
    To rollback the transation for error records
        CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
        IF sy-subrc NE 0.
    No sy-subrc check is required
        ENDIF.                             " IF SY-SUBRC NE 0
      ENDIF.                               " IF ws_return-type EQ 'S'
    Amresh.

  • Formatted Search to imput TaxGroup Automatically when create a new item

    I create a FMS to imput the taxgroup when create a new item. But when execute the FMS this show a list  of values. Whats a problem?
    declare @iva5 VARCHAR(10)
    declare @iva12 VARCHAR(10)
    declare @iva21 VARCHAR(10)
    set @iva5='D1'
    set @iva12='D2'
    set @iva21='D3'
    SELECT CASE
    WHEN T0.ITMSGRPCOD IN ('107','108','109','110','111','116') THEN @iva21
    WHEN T0.ITMSGRPCOD IN ('112','113','114','115') THEN @iva12
    WHEN T0.ITMSGRPCOD IN ('105','106') THEN @iva12
    ELSE @iva12 END
    FROM OITM T0

    You should refer to the actual item's item group value:
    declare @iva5 VARCHAR(10)
    declare @iva12 VARCHAR(10)
    declare @iva21 VARCHAR(10)
    set @iva5='D1'
    set @iva12='D2'
    set @iva21='D3'
    SELECT CASE
    WHEN $[OITM.ITMSGRPCOD] IN ('107','108','109','110','111','116') THEN @iva21
    WHEN $[OITM.ITMSGRPCOD] IN ('112','113','114','115') THEN @iva12
    WHEN $[OITM.ITMSGRPCOD] IN ('105','106') THEN @iva12
    ELSE @iva12 END

  • Create a new item in iProcurement Receive items Region

    HI,
    I am trying to create a new search Message Input LOV called Supplier Part Number in the 'Receive items: Select items' Internet Procurement page
    Scope Region: /oracle/apps/icx/por/rcv/webui/IcxPorRcvSrchPG.RcvItemQuery
    Document Name /oracle/apps/icx/por/rcv/webui/IcxPorRcvSrchPG
    Function POR:Receive Orders
    Site Include
    Organization HMPS
    Responsibility PS PO Internet Procurement
    I want to create a new Message Input LOV under Message Component Layout:
    (SearchMessageComponentLayout).
    When I go to create an item I need to enter an External LOV but I am not sure if there is one available and if there is one available where is it located.
    For example another item in this region called the Supplier Number has the following External LOV Region:
    /oracle/apps/icx/lov/webui/ShipmentNumberLovRN
    I know that Supplier Part number is standard because it appears in the search results table region on the same page.
    Any information at all would be highly appreciated.

    I fear if it is available....!
    Supplier Part Number unlike ShipmentNumber is a base attribute in iP.
    You might want to create a new lov region and a VO (selecting the distinct SPN values from ICX_CAT_ITEMS_B).
    Yes, the Search Results table has SPN, but its not an LOV there...!
    HTH.

  • Error after creating a new item in 'Case Worker'-- 'Agent Dashboard'-- 'Task Details' screen

    In 'Case Worker'-->'Agent Dashboard'--> 'Task Details' screen, I have created a item named 'YEARS' using 'Create Item' in 'Personalize Page' screen. It is not going to tasks page and giving error as "
    oracle.apps.fnd.framework.OAException: No entities found, entityMaps not defined for attachment item (YEARS)." How can I remove this field now..

    Please see the suggested solutions in the following docs.
    Entity Maps Not Defined For Attachment Error When Selecting A Deliverable (Doc ID 358385.1)
    Corrupt Personalization - No Entities Found Entitymaps Not Defined For Attachment Item (Doc ID 1085011.1)
    R12:Supplier Page Unexpected Error: 'No Entities Found EntityMaps not Defined for Attachment Item' (Doc ID 1361320.1
    Geography Hierarchy No Entities Found, EntityMaps Not Defined For Attachment Item (Doc ID 831088.1)
    Depot Repair Bulk Receiving Error: "No entities found, entityMaps not defined for attachment item" (Doc ID 1357977.1)
    Thanks,
    Hussein

  • How To Create The New VO in Standered Page?

    Hi Gurus,
    Pl z help me how to create the new Custom VO in slandered page,and how to attach that VO in custom RN in all are slandered page only.
    Regards,
    Srini

    Hi Sara,
    <i>1. Could you please tell me how to create the new webservice in XI?</i>
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5f3ee9d7-0901-0010-1096-f5b548ac1555
    <i>2. What tools we have to use to create it.?</i>
    /people/community.user/blog/2006/09/19/xi-webservice-studio--a-plain-jane-soap-tool
    http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=65a1d4ea-0f7a-41bd-8494-e916ebc4159c
    Altova is also a good option
    <i>3. How to send the SOAP request to XI?</i>
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d23cbe11-0d01-0010-5287-873a22024f79
    SAP Note 856597
    An Add-on
    /people/siva.maranani/blog/2005/03/01/testing-xi-exposed-web-services
    Regards,
    Prateek

  • How do I create a new paragraph Style in Pages for iPad?

    I opened an RTF document in iOS 6 Pages for iPad. How do I create new paragraph Syles?

    Style is a function of the template applied to the document (and/or the limited number built in to Pages). You can mofify the text or apply one of the built in styles, but I do not beleive within Pages in iOS you can create a new style.
    http://help.apple.com/pages/ipad/1.6.1/

  • Creating a new library for Webpart pages, or wiki pages

    We are using sp2013 in O365, on a site collection that is using the publishing feature.
    We want to create another library for content pages where we can create either Webpart pages or Enterprise Wiki pages.  I can create a new library and add the appropriate content types so that those types of pages are options when creating a new page. 
    But when I open the library and try to create a page based on the "(Enterprise Wiki Page) Basic Page" page layout (or any other page layout content type that I added to that library), the dialog comes up and shows it will save to the "/pages/"
    library (it is shown in the un-editable part of the "URL Name field"), and not in the new library where I initiated the creation request.  When I click save, I get a correlation ID error.
    Am I doing something wrong here?

    Hi ,
    I could reproduce this issue in my SharePoint 2013 Online when I created a new document library and add “Enterprise Wiki Page” content type into the library then create a page using this content type.
    It seems that publishing pages only can be created in the Pages library. And the SharePoint Publishing Infrastructure can only handle a single Pages library per Web site, it's a physical limitation of the software. If you want to create
    multiple Pages libraries, You could create sub webs to do it.
    Also, as there is a Correlation ID about this issue, you can use it to check more information about this issue. However, in SharePoint Online, we could not see the log files, they are controlled by Microsoft. I suggest you create a new thread on Office
    365, there are some backend engineers who can check the log. You will get better help with SharePoint Online.
    Office 365 forum:
    http://community.office365.com/en-us/f/default.aspx
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Why can't I create a new landscape document in Pages on the ipad?

    I can create a keynote landscape page on my iPad. I can create a landscape pages document on my Mac, email to myself, open on the iPad and it is there, yet I cannot create a new landscape document on my ipad, this is crazy?

    Sheila,
    I'm using Version 9.0p230. Windows OS.
    Yes, the COMMANDS pop up does not pop up!
    Yes, I rebooted but I had the same problem. I ended up entering a new name directly in the Character tag field from the Designer and was able to create it that way. Thanks

  • What Acrobat SDK Technology I need to build a plugin that creates a new item to the Right-Click context menu?

    I want to develop a plugin for Adobe Reader that will be invoked through a new item in the Right-Click menu.
    What is the right SDK Technology to build this new item? Javascript, Interapplication Communication or a C/C++ plugin?
    I would feel more comfortable with JS or C#, but I don't know if I must use the C++ API to be able to build such level of integration.
    Thank you very much.

    Plugins are written in C/C++ and especially something such as adding to the UI.
    To add this to Acrobat, no license or fee is required - you can do it today with just the SDK and Acrobat.
    However, to build a plugin for Reader, you will need to obtain a license from Adobe.  Details are in the SDK under "Reader Integration Key License Agreement" (RIKLA).

  • Add new Validation to Seeded Page

    Hi All,
    I have a seeded HR Page which uses a non-EO based VO. I want to add some validation to see if the new row being added already exists for the employee. I believe I would need a VVO and VAM to check this.
    Since there is no EO to add business logic to, I am thinking of adding it to the CO as I want the to throw an error if the record info already exists.
    1) create a VVO and VAM in custom package as xx.oracle.apps.per....schema.server
    2) extend the CO , in processFormRequest() , capture the parameters to pass to the VVO,
    where do I write the initQuery()/executeQuery() for this VO or call this VVO from ?
    what are the exact steps to help achieve this validation or a better way to do it.
    Thanks
    Shankar

    Write this code in processFormRequest()
    String procedure = "begin package.Procedure(param1 => :1, param2 => :2); end;";
    OADBTransactionImpl oadbtransactionimpl = (OADBTransactionImpl)rootAM.getOADBTransaction();
    OracleCallableStatement oraclecallablestatement = (OracleCallableStatement)oadbtransactionimpl.createCallableStatement(procedure, -1);
    oraclecallablestatement.set<Parameter>(1, param1);
    oraclecallablestatement.set<Parameter>(1, param2);
    oraclecallablestatement.execute();
    This code you can use , you can some help from developer guide.
    Thanks

  • Creating a new file from one page of a multi-page document

    Every quarter I produce report cards and save them with Adobe Reader.  The document itself is some 600 pages long, with each page being one student report card.  At times during the quarter I am asked to email a report card from that file to a parent.  Is there anyway for me to take one of those 600 pages and save it as a new file that I can attach to an email?    ...obviously I don't want to send the other 599!

    Reader cannot generally save a document, and no version can extract a single page from a document and save it. Adobe Acrobat can. Are you using Acrobat to create the 600 page PDF?

Maybe you are looking for

  • Wrong Apple ID: How do I change the Apple ID prompt when Updating All Apps?

    How can I change the (wrong) Apple ID from the password prompting dialogue when I am already signed in Apple Store with my own ID? More details of my problem: When I try the Apps' Update-All option in my iPod 4, the password dialogue prompts me with

  • Tax Departure Country in Consignment Issue

    Hi, I have read lots of thread regarding this issue but all of them ended with suggestion related to plants abroad which in our case will not resolve the issue. Let me again put the question and hopefully somebody will answer to this. We are doing an

  • ME21N & F-47

    Dear All, In Purchase Order i have material vendor and Custome Duty vendor (With Condition type) is different. For Down Payment reauest (F-47) , i have done some customisation to link PurchaseOrder No and Material Vandor Validation. i.e  In F-47 , En

  • Question with updating JTree Display

    Hello all, I have a question about how to change what a JTree is displaying. Currently I have classes called ElementTreeFrame, ElementTree, ElementTreeModel, and, of course, Element. The ElementTreeFrame is simply the frame where I store a ElementTre

  • Importing a field into an RTF file does not fill in Text To Display

    This problem comes and goes. When I import a field from the local XML file into an RTF template, sometimes the Text to Display is blank, and I see five small circles in the cell. Other times, the Text to Display properly shows the field name. Is ther