Need to Modify attribute REQ_LINES_FWK_RN in item type REQAPPRV

Hi Team
I have a requirement to modify/add info to a requisition approval email. The WF message refers only to attribute REQ_LINES_FWK_RN in the body tab. REQ_LINES_FWK_RN is of type document. Can somebody please direct me as to how I can make modifications to this attribute? Is this considered an embedded OA object? Has anyone faced this issue or something similar?
All help is greatly appreciated.
Regards
KH

Unfortunately in 11.5.10, the Requisition Notification content is generated using OA Framework regions and not PLSQL Document APIs.
In order to change the content, you have following options. Both the options require medium to advanced OA Framework skills.
Option 1
1. Customize the OA Framework regions provided by iProcurement product. You have to identify the FND Form Function that the Notification Attribute points to in OA.jsp?OAFunc=XXXXXXXX where XXXXXXX is the Form Function referring to the OA Framework Region such as /oracle/apps/icx/por/ReqLinesRN or something similar.
2. Download this region from MDS repository using XMLExporter tool. Identify the controller for this region.
3. Build your JDeveloper 9.0.3 project with the appropriate files and start to customize the region.
Option 2
1. Create a new OA Framework region yourself.
2. Customize the Workflow and use your message.
Thanks !

Similar Messages

  • Is it possible to have undefined attributes for an item type...see more in the messag

    I want to create an item called 'book' with attributes like title, date of publish, language, pages....and author, but i want that users can assign many authors (as much as users want)....is this possible?? How can I realize it??? Could I create author like a item type too?
    Thanks for all

    You can have any number of multi table mappings in an item descriptor.
    Take a look at the following example
    http://docs.oracle.com/cd/E23507_01/Platform.20073/RepositoryGuide/html/s1204repositoryexampleconetomanywitha01.html
    You can also open any repository in dyn/admin say userProfile.xml in ProfileAdaptorRepository and see the existing one to many (multi table) mappings.
    It just depends on how many multi properties you have in your requirements, create as many multi table relationships.
    ~Gurvinder

  • Modify Sales order line item Type

    Hey Guys,
    I was wondering if there is a way through the DI or UI that I can change the type of a line item in a sales order matrix. I can change it through the Business One client to sub total or text on a line item and add comments. Is it possible to do this through code via DI or UI?
    Any examples would be helpful.

    Something like this.
    ComboBox cb = (ComboBox)oMatrix.Columns.Item("COLUID").Cells.Item("row").Specific;
    cb.Select("ValueToSelect",BoSearchKey.psk_ByValue);
    Normal lines have "" (empty) value
    Textlines have "T" value
    Subtotals have "S" value

  • Attributes of the base item types

    Where can i find the attributes of the base item types in the 'Shared Objects' page group?
    For example the attribute 'Display Option' is an attribute of the item type 'text'. Where is this attribute located? I have sought through the providers tab... since 'Display Option' is an lov.
    I am using portal release 2.

    You have to set
    the parameter  p_process_control  to a none null value
    and the parameters p_Template_Id and p_Template_Name
    MfG
    Ingo

  • Procedure to Purge data from WF tables for Item Type POERROR

    Hi,
    I have executed concurrent program "Purge Obsolete Workflow Runtime Data" to purge old data for Item Type "REQAPPRV". After execution of the concurrent program i re-query to WF_ITEMS table to get the count of the records for "REQAPPRV" but all records did not get purged as "REQAPPRV" is present as PARENT_ITEM_KEY for Item Type "POERROR" in WF_ITEMS table.
    Now to purge records of "REQAPPRV" i need to first Purge records of "POERROR". Now the problem is END_DATE of those POERROR records is NULL at WF_ITEMS table that is why concurrent program "Purge Obsolete Workflow Runtime Data" does not able to purge them. How can i resolve this issue?? Please guide..
    Regards,
    Priyanka

    Hi,
    I have already gone thorugh MOS doc, cross checked the queries provided in document and found that status of PARENT_ITEM_TYPE [REQAPPRV] is "COMPLETE" and the status of Chilld ITEM_TYPE [POERROR] is "ACTIVE". I want to close or Purge the child ITEM_TYPE. Can you guide how can we achive that ??
    Regards,
    Priyanka

  • Need to modify Sales order Item additional tab B

    Hello all,
    I need to modify Sales order item additional tab B ...by removing the exisitng fields and should add some new fields ....does it have any impact on this screen could be used in any of the other transaction .......i  just wanted if we remove the fields and some new details will have some impact
    Regards,
    KK

    Additional data B is used to add your own fields also known as custom fields in sales order.
    Custom fields can be added to tables VBAK & VBAP (depending on header or item). Similarly you can remove fields if you don't require it anymore.
    In short, your requirement can be met but you have to take help of ABAP consultant since it requires maintenance of user exits and modification of screens.

  • ALTER TYPE MODIFY ATTRIBUTE cascade including table data

    Hi,
    does anybody know, why I get "ORA-00932: inconsistent datatypes: expected REF TYPE1_T got REF TYPE1_T"
    after ALTER TYPE MODIFY ATTRIBUTE cascade including table data when the altered type contains a nested table of type REFs.
    according to the documentation this should work? This works when the type contains a nested table of types!
    ORACLE Version: 9i EE 9.2.0.3.0 64 bit
    OS: HP-UX 11
    -- create type1
    CREATE OR REPLACE
    TYPE TYPE1_T AS OBJECT
    T1COL1 NUMBER,
    T1COL2 VARCHAR2(35),
    TYPE2REF REF TYPE2_T
    -- create coll of type1 refs
    CREATE OR REPLACE
    type TYPE1COLL_T IS TABLE OF REF TYPE1_T
    -- create type2
    CREATE OR REPLACE
    TYPE TYPE2_T AS OBJECT
    T2COL1 NUMBER,
    TYPE1COLL TYPE1COLL_T
    -- create table of type1_t
    CREATE TABLE TYPE1_OTB OF TYPE1_T
    -- create table of type2_t
    CREATE TABLE TYPE2_OTB OF TYPE2_T
    nested table type1coll store as type1coll_ntb
    -- populate type1_otb
    INSERT INTO type1_otb
    VALUES(1, 'ABCDEF',NULL);
    -- populate type2_otb
    INSERT INTO type2_otb
    VALUES(1,TYPE1COLL_T());
    select * from type1_otb;
    T1COL1 T1COL2
    TYPE2REF
    1 ABCDEF
    select * from type2_otb;
    T2COL1
    TYPE1COLL
    1
    TYPE1COLL_T()
    ALTER TYPE type1_t MODIFY ATTRIBUTE t1col2 varchar2(50) cascade including table data;
    Type altered.
    select * from type1_otb;
    T1COL1 T1COL2
    TYPE2REF
    1 ABCDEF
    select * from type2_otb;
    select * from type2_otb
    ERROR at line 1:
    ORA-00932: inconsistent datatypes: expected REF TYPE1_T got REF TYPE1_T

    Hi John,
    I am also facing the same problem after executing the command
    SQL> alter type product_object modify attribute (NAME VARCHAR2(80)) cascade;
    with the following error
    ORA-00932: inconsistent datatypes: expected REF WOLFOBJECTS.EMPLOYEE_OBJECT got
    WOLFOBJECTS.EMPLOYEE_OBJECT
    Could you please suggest any alternate or workaround for this issue?
    Thanks
    Sara

  • Any way to update attribute in all Items of an Item Type ?

    Is there any way an attribute in all items publish of a single item type?
    I want to change all File Items so that they open in a New Browser.
    Please note: This is not for all items that we will publish going forward, just for the current items. I dont want to go back in and update items one-at-a-time.
    Thanks

    Hi Mike,
    Go to Navigator>Shared Objects>Contents>Custom Types>Item Types. From there select the Item Type you want to change (probably file).
    From here click on the 'Attributes' tab and make sure that the Display Option is in the Selected Attributes box. Then look for Display Option under the Attribute Properties section and change 'Full Browser Window link' to 'New Browser Window Link'.
    I hope this helps. I haven't tested it but I think it should do the trick. If you want file items that you create in the future to behave differently then you will have to create another item type based on File but keep the Display Option set to 'Full Browser Window link'.
    Cheers,
    Steven

  • Sales AR Item Type Invoice Print Layout Design "Sub Total" per Page

    Dear Forum Team
    We need some advice on how to modify, fomulate(?) [Sub Total] for each page's 'amount' on the Sales AR Item Type Invoice.
    Currently the 'sub total amount' on each page is showing Grand Total instead of sub total.
    Thanks

    Hi,
    In you PLD, In repetitive area, you might have linked the fields like Item name, Item Description, and so on. In these fields one of the field will be Total for line items.  Am i right?
    If it is so, then in repetitive area footer, Create one Formula field and give formula PageSum("Field_025") (in your case)
    Ie., Field_201 = PageSum("Field_025")
    Field_025 - contains the Line Total of Row items.
    I hope this could help you.
    Raja.S

  • Oracle Text and Custom item type

    I have a custom item type defined that has custom attributes. With Oracle Text disabled, I can use a custom search to find these items either by their standard attributes (name,description, etc.) or their custom attributes. However, as soon as I enable Oracle Text (and allow the indexing process to complete), I can no longer locate these items in a search.
    I assume that I need to do something to tell Oracle Text to index these types of items, but could not find anything in documentation. Any assistance would be appreciated.
    Also, assuming we get around the above issue, if I have Oracle Text enabled, does this mean I will not be able to find these items after they are created until the next scheduled index update? Is there away around this besides killing Oracle Text?
    Rgds/Mark M.
    Portal 9.0.2.6

    The indexes need to be synchronised for the items to be searched and returned. Hence until the next scheduled index update, the item will not be returned. To explicitly udpate the indexes, run the procedure in the portal database connected as the schema owner.
    SQL> exec wwv_context.sync();

  • Customized content item / type

    Hi there,
    I would like to know what is the best way to store a content
    item in my project.
    I'm working on a portal which need to group the course
    information into categories. Each course should be a content
    item in this case. Each course has its own course
    information. What is the best way to store each course as
    content item which allow publisher to update the course info and
    can make use of the category feature from the Portal ?
    In 9iPortal, it allows us to store it as file, folder, text,
    PL/SQL, image etc. I believe it's not a good idea and doesn't
    fit my purpose. All these are static objects.
    Can I make use of the custom type ? If so, how can I generate
    page with the info stored in the attributes of the custom type ?
    Say, I have created a new custom type named course and then it
    has attributes like course title, course dates etc.
    I would like to allow my user to type in the course information
    and then we can generate dynamic pages from the information.
    I'd used other Portal product which allow developer to define the
    content type attribute easily and provide API to retrieve
    the content and category item. Then we can write jsp to retrieve
    the item. But I can't find the same thing from Oracle9iAS
    Portal.
    Can someone give me some clue ?
    Thanx
    Regards,
    Maggie

    Custom item types are a good solution.
    Custom types allow you to call procedures (either a stored
    procedure or a servlet via a URL) - the procedure can in turn
    generate a custom presentation for your item. Procedures can be
    passed any of the attributes of your item, including custom
    attributes.
    Folder styles can also be used to specify which attributes are
    displayed for an item.
    So try the style first. If you don't like what you are able to
    achieve with the style, use a procedure to render your custom
    item type any way you want.
    Regards,
    Jerry

  • SSAS Source - Column selection lost when modifying an existing "Add Item" step

    When developing a Power Query query on an SSAS source, I often need to edit an existing "add items" step in order to add a few columns that I had initially missed out. To do this, I point to the step previously created and click on the small gear
    icon to edit it.
    However, when doing so, the edit dialogue is not initialised with all the columns that I had previously selected. Which means that if I am not careful and do not scrupulously recheck every column that I need, the modification will destroy what I had created
    before.
    Inserting another step rather than modifying an existing one might be a workaround,  but I would rather keep the number of steps to the minimum. Also, if there is an edit button, one should be able to rely on it.
    Has anyone experienced the same issue?
    PQ Version: 2.18.3874.242 - Excel 2013 32bits.

    This is a known issue that will be resolved in an upcoming release.
    A work-around for now when using the UI builder to edit a selection is to expand dimensions that had an attribute added from it before dismissing the dialog.

  • Setup: Item: Item Types (Inventory)

    Hello,
    I am trying to modify/add User Item Types in the Inventory module (logged in as an Inventory user...there is no inventory super user responsibility setup) however none of the fields are modifiable nor am I able to define andy new User Item Types. I keep getting the error "FRM-40200 Field is protected against update"
    Setup: Item: Item Types
    I can't figure out what I am doing wrong. I believe the Inventory responsiblity OOTB should have the necessary permissions to configure the User Item Types.
    Please help.

    Hi,
    Could you please check below things in your setup..
    1) Is there any custom code involved in this form (Setup --> Item --> Item Types (define lookup Form) ?
    2) I strongly believe you need to check the Menu/Sub-menus/functions which are associated to the responsibility you are using.
    E.x : In Inventory super User we are using a Menu : INV_NAVIGATE, under this we have a Sub-Menu :
    INV_SETUP_ITEMS (Sub Menu)
    ======================================
    Prompt          : Item Types
    Function                     : QuickCodes: Item Type (FND_FNDLVMUL_ITEM_TYPE)
    Description     : Maintain Item Types
    Grant          : Yes
    User Function : "QuickCodes: Item Type"
    =======================================
    Function     : FND_FNDLVMUL_ITEM_TYPE
    Description     : QuickCodes: Item Type
    Paramter     : VIEW_APPLICATION="AU" LOOKUP_TYPE="ITEM_TYPE"
    You need to drill down little bit here..
    3) Check if any view_only Menu applied to this reponsibility.
    Regards,
    S.P DASH

  • Converting Item Types

    Portal 9.0.2.3
    We have created a new Custom Item Type for use on our Intranet site. This new Item type is essentially a Text Item with an extra procedure which provides a print friendly view of the item.
    Is there a quick way to convert our existing Text Items into this new Custom Text Item? What database table is Item Type information held in?
    Thanks,
    Steven.

    hi steven,
    go to the navigator - page groups - shared objects - item types - edit the Text item type - navigate to the procedures tab - add your procedure here.
    now for all (also existing) text items you have in your page groups this procedure is added.
    in the region properties of the item region you need to add the associated functions attribute to the list of displayed attributes.
    thats it - the output of the procedure appears next to each new created and existing text item.
    kind regards,
    christan

  • Need to modify a Header which is in phtml, I need to find the html page

    I don't know much about php, but I need to change a header and add a new link, it should be very easy to do in html, but when I opened the header, the code is all in php.
    How can I find the related html for the header to do these changes?
    Here is the code
    ?>
    <div class="header-container">
        <div class="header">
            <?php if ($this->getIsHomePage()):?>
            <h1 class="logo"><strong><?php echo $this->getLogoAlt() ?></strong><a href="<?php echo $this->getUrl('') ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo"><img src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" /></a></h1>
            <?php else:?>
            <a href="<?php echo $this->getUrl('') ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo"><strong><?php echo $this->getLogoAlt() ?></strong><img src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" /></a>
            <?php endif?>
            <p class="top-promo" title="<?php echo $this->__('Free Shipping on orders over 50$'); ?>"><?php echo $this->__('Free Shipping on orders over 50$'); ?></p>
            <?php echo $this->getChildHtml('topMenu') ?>
        </div>
        <div class="quick-access">
            <?php echo $this->getChildHtml('store_language') ?>
            <p class="welcome-msg"><?php echo $this->getWelcome()?></p>
            <?php echo $this->getChildHtml('topLinks') ?>
        </div>
        <?php echo $this->getChildHtml('topBar') ?>
        <?php echo $this->getChildHtml('topContainer'); ?>
    </div>
    I need to modify the div for quick-access, not the css just the html, I just need to add a new link to it. How can I find this page?
    Thanks

    Take a look at the iCab Mobile browser for the iPad. It allows document uploads if you configure it properly in the settings. iCab Mobile also works with DropBox.
    You may have to download the documents to the iPad and upload from there, but it might be worth a look here.
    https://itunes.apple.com/us/app/icab-mobile-web-browser/id308111628?mt=8
    This is copied from their website.
    How can I upload any file (not only photos) under iOS 6?
    Unlike the web engine of iOS 5.x and older, the web engine of iOS 6 has now basic upload support as well. But it only supports uploading photos and videos from the photo album. And this will only work under iOS 6.
    The upload capability of iCab Mobile works under all iOS releases and supports uploading photos videos and all other file types. It can even scale down photos before uploading to save bandwidth.
    But iCab's own custom upload capability has the disadvantage, that because of several iOS restrictions, it can not work on all web pages. Therefore under iOS 6, iCab Mobile provides a switch in the settings where the user can choose, if iCab should use the upload capability from the iOS (only photos, works with some more web pages) or the capabilities of iCab (photos and all other files, can't work on all web pages).
    So if you need to upload other files than just photos, make sure that you set the option "Upload files via" in the settings to "iCab Mobile".
    This is a link to the FAQ on the site.
    http://www.icab-mobile.de/faq.html

Maybe you are looking for

  • Help to understand this errors  on my iMac please

    Lafaiete_Neiva Mar 15, 2014 11:33 AM Hello , I need to ask help about this logs Im bean get all the times on the console , you can see some on this post , and I really want your opinion about this logs , its is a error , crash on a more serious probl

  • Why does get-attachment 1aspx appear on pictures imported from Iphoto

    Pictures imported from Iphoto  into Imovie not as clear as originals. There is a note with each picture ...get-attachment 1aspx. Could this be the reason? What does this message mean?

  • UOM in Material Master

    Hi, Is it true that i cant change the UOM of material (base unit) even if there exist PO and PR for that material ( even though these are not open)? There are no scheduling aggrement too. The stock of material is 0 for this period as well as previous

  • Need a good Wifi Spectrum Analyzer

    I am looking for an APP that is a good Spectrum analyzer.  I have a iPhone5, (will be updating to 6 + soon) I do a lot of work troubleshooting wifi networks, and on my Android, and I though my older iphone 3gs) I had a good Spectrum analyzer for 802.

  • Reinstalling Classic on G5

    I have a 1.6 G5 that after I installed Tiger the Classic folder was missing. I restalled from Software reinstall disk 2 that came with the G5, after installation there still is no Classic folder. I have tried many times, what gives? is there another