Extending Requisition Lines BC4J Object

Hello. A customer has a requirement to add an attribute to the Requisition Approval notification. I searched Metalink and found Note 404524.1. It documented that I would need to create an extension with JDeveloper. I have downloaded the correct version of JDeveloper and have it working in my environment. Also, I have followed the tutorial provided in the OA Framework Documentation (Oracle Applications Framework ToolBox Tutorial > Extending OA Framework Applications). I understand what is needed to be done for an extension, but the OA Framework Documentation has not provided clear instructions on how to download existing BC4J package files from the E-Business Suite. If anyone provide an example, it would be appreciated. Thanks.

Search the forum. You will get detailed step by step explanation in many threads.
But in short, you need to get just those files which will enable you to compile the modified file. Except for page xml files, you can just copy other files. For page xml, use export command to make sure that you get any personalization also if it is on page.
--Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • ERecruiting - Extended Requisition Workflow created object not found

    Hello All,
    I am using Workflow WS16900010 (MSS - eRecruiting Scenario) for raising an extended requisition request.  While this workflow has executed to success, I am not able to identify the requisition object (NB) which has been created as a result of this workflow.  How does the recruiter fill in this requisition object and release it for the manager to be able to do candidate assessment. 
    Kindly help!
    Thanks,
    Uthra KJ

    Hi SDN users,
    Me too facing this issues,  by using WF16900009, WF16900010. The workflows as well as notifications are completed and the requisition notification status is displayed in the Status Overview iView. Unfortunatelly no NB (Requisition) object is created in table HRP5125, nor in the recruiter maintenance page for requisitioins.
    We're running both ERP HR and E-Recruiting on the same system.
    ERP2005 EA-HR 600 SP23 adn ERECRUIT 600 SP11.
    Pls help me as the issue urgent.
    Thanks & Regards,
    Sudheer Kumar P.

  • Requisition line description (lengthy) span multiple pages

    All,
    I have a requirement to print a Requisition that has multiple lines and multiple rolled up distributions (for the first six segments) in a fixed area of the template. Each line item description appended with an attachment text must print in a confined area. Further, the bottom part contains some fixed text and a table printing rolled up distributions. The distributions could run into multiple pages as the space to print in the confined area is just 4 lines. An average scenario is a requisition with three lines (each line's item description is about 2500 characters) and maybe eight distributions.
    Data relationship in the layout: One master (Requisition Header) and two details (one for lines and the other for distributions).
    Layout (Font for the most part is Arial size 7)
    Requisition Header information prints some fixed text and some dynamic text spanning 15 physical lines. The dynamic text in this section of the layout from header contains limited text that will fit in the layout.
    Requisition Lines information prints line details in a confined area spanning 24 physical lines.
    Part of the requisition header information print in a confined area spanning 25 physical lines.
    Requisition Distribution information prints in a confined area spanning 4 physical lines.
    At the bottom, three more physical lines of text from Requisition header information are expected.
    I have been trying to use RTF template and I have not been able to achieve the above requirement. Any help is greatly appreciated.
    Thanks in advance
    Gopal

    I don't know if this will be of any help or not but let me explain what I did to a form to get the text in some of the fields to continue on to the next page.
    On my first page I have a sub form I call MainPage and within that sub form I have several sub forms that each contain a title bar and some descriptive text and an expandable text field. The specs for the MainPage sub form is as follows,
    Object tab > Subform tab > Type: = Flow Content.
    Object tab > Subform tab > Allow Page Breaks within Content is checked.
    Object tab > Subform tab > After: = Continue Filling Parent.
    Object tab > Binding tab > Repeat Subform for Each Data Item is checked and Min Count is set to 1.
    Layout tab > Auto-fit for the Height is checked.
    The specs for one of the subforms inside the MainPage sub form are,
    Object tab > Subform tab > Type: = Position Content.
    Object tab > Subform tab > Allow Page Breaks within Content is checked.
    Object tab > Subform tab > After: = Continue Filling Parent.
    Object tab > Binding tab > Repeat Subform for Each Data Item is checked and Min Count is set to 1.
    Layout tab > Auto-fit for the Height is checked.
    The specs for the expandable text field are,
    Object tab > Field tab > Allow Multiple Lines and Allow Plain Text Only check boxes are both checked.
    Layout tab > Expand to fit check box for the Height is checked only.
    This set up works for me and I get a text field that continues onto the next page but I have noticed some strange things going on that make it work rather awkward. The scroll bars are odd and some times after adding a bunch of text and then I move out of the field a text overflow symbol shows up at the bottom of the continued field on the next page. When you come back and click on the field to add more text the scroll bar appears and you need to scroll to the end of the value that is allready in the field to continue typeing.

  • How to change category on open and closed PO and Requisition lines

    We realized a little late that our category definition needs change. But when we change the category definitions (including structure) how do we change the existing PO lines and Requisition lines to have the new categories? We checked for any APIs, but there are none. What other option do we have?

    changing the name of the home directory and the login name is not advisable. it can be done
    http://www.macworld.com/article/132693/2008/03/changeshortusername.html
    but a better way would be to make a new user account using system preferences->accounts. call it whatever you want. log into that and delete the old account. since you just got this computer you don't have any data on it yet, right?

  • Error while opening BC4J objects in Jdev 10G

    I downloaded the jdev 10.1.3.3 version , copied the entire JAVA_TOP files to myclasses on my local machine. In the project content property i gave the path to myprojects.
    In the include section i included only oracle\apps\ego since these are the only files i need to modify.
    Now when I right click on one of the EOs in jdev, i get an error message that there are java errors in the underlying EOImpl.java and the wizard will open read only.
    I did not modify any files. These are all oracle shipped files. This happens with a few other objects. I am able to open some of the BC4J objects but some of them give me this error mesage.
    When I build the project , i do not see any errors, I am even able to run a page.
    What is wrong here. is it some missing library or do i need to include additional files/folders .. Please help
    thanks,

    I deleted the class files from myprojects and tried opening the EO but that din't help. I created a new project after deleting all the class files, even now i get the same error.
    I wonder if reinstalling jdev will solve the issue? I have only xml files in the myprojects folder but i keep getting the same message that there exist errors in the .java file under the myprojects folder.
    I'm not sure what's going on. Is there some cache that jdev is looking at.

  • What is the diffrence between extends and creating new object?

    HI ALL,
    what is the diffrence between extends and creating new object?
    meaning
    class base{
    class derived extends base{
    class base{
    class derived {
    derived(){
    base var = new base();
    can u people tell me diffence from the above examples.
    THANKS.
    ANANDA

    When you create a new object you have to supply the class to which that
    object belongs. A class can extend from another class. If it does so
    explicitly you can define the 'parent' class from which the class extends.
    If you don't explicitly mention anything, the class will implicitly extend
    from the absolute base class named 'Object'.
    Your example is a bit convoluted: when you create a Derived object,
    its constructor creates another object, i.e. an object from the class from
    which the Derived class extends.
    Extending from a class and creating an object don't have much in common.
    kind regards,
    Jos

  • How to distinguish LOVs on different requisition lines? (in advanced table)

    Dear,
    I have a customer requirement in iProcurement 11.5.10 on the CheckoutLinesPG page to have an LOV that will provide data for one attribute on the PO Requisition Lines DFF, it allows the customer to select the so called Desk Location, or a delivery point, for possible multiple deliveries of a single distribution line for different requestors.
    So what I did I put the custom region there with LOV and the LOV part works fine.
    I have another requirement – if One Time Address is created(used,engaged) on that requisition line – my custom LOV on that line (and ONLY that line) should be disabled. And here I came into a problem because if I disable my LOV based on the AddOneTimeAddress event (or any event for that matter) – ALL requisition lines show LOV as disabled.
    The way the seeded application works – the OneTimeAddress page (it is the PAGE) accepts the requisition line id and passes it back to the calling CheckoutLinesPG page so that the calling page knows which requisition line the one time address is related to. But for me to create another custom page where custom LOV will be placed will be too much navigation for the customer.
    Is there a better approach to the problem?
    Thank you.
    Anatoliy

    There is something called Switchers which can help you. Read the dev guide.
    Just to give an Idea, there is a view Attribute associated to the switcher region. In the VO you would control the value of the view attribute based on some condition (Decode logic to identify if some data exists or anything of the sort). The value of the attribute (conditional) should be the same as the ID of the item put under the Switcher.
    When based on the VO condition, the switcher attribute valus is 'a' then the item with id 'a' under the switcher would be shown.
    Regards
    Sumit

  • Blocking a Requisition Line Item if A Purchase order exists

    Hi All,
    We are looking at a way to block a purchase requisition (not allow the end user to make changes) if a Purchase Order Exists for that purchase requisition line item. Is there a way of doing this without having to use a user exit?
    We do have release strategies on requisitions so we can control the filed status there but this is not really going to solve the 'problem'
    Your help will appreciated.
    Kind Regards,
    GA

    Hi,
    Thanks for your help. The end user are mostly changing the value, quantity and adding specification in the text fields. But the procurement department do not pick these changes up as the PO is already with the Vendor.
    Regards,
    GA

  • MM: Purchase requisition line Items - How many line items can we use

    Hi all,
    1. Purchase requisition Line items  (How many line items can we use?), is there any restrictions.
    2. While creating PO with only one tax code for the related PR to input Tax code (without selecting  line Items).
    Regards,
    Sudheer

    Hi
    There is no limitation for number of items in PR.
    Tax code is always applicable for individual item only.It cannot be selected form the whole PO.
    Regards
    Dev

  • Purchase Order / Requisition Line Item Approval

    Hi
    Just wondering if Purchase Order / Purchase Requisition LINE ITEM approval is an option for workflow?
    Would the better solution be to use SRM line item approval on a shopping cart and create the Purchase Order from this?

    Hi
    Just wondering if Purchase Order / Purchase Requisition LINE ITEM approval is an option for workflow?
    If the process involved the need to use different approvers for different line items, would the better solution be to use SRM line item approval on a shopping cart and create the Purchase Order from this?

  • Extending a line, keeping the angle | But as part of a form!

    http://helpx.adobe.com/illustrator/using/adjust-path-segments.html  SAYS:
    “Adjust the length or angle of straight segments
    1.          With the Direct Selection tool, select an anchor point on the segment you want to adjust.
    2.          Drag the anchor point to the desired position. Shift-drag to constrain the adjustment to multiples of 45°.”
    Question: How do I proceed if I’d like to extend a line on one side by its endpoint, while I want to keep its original angle instead of 45° degrees?
    And: assuming we’re not working with a standing-alone line, but as part of a construction, as you can see on the screenshot. The point should be move to the intersection on both lines (green and turquois).
    I thought, maybe working with functions in GRAPHER – but I hope there is an easier way directly in ILLUSTRATOR.
    Hints would be much appreciated.

    Emil, this looks perfect, thank you a lot! I can not wait to give it a try !
    May I ask a little detail while performing step nr. 3?:
    When it comes to repeat the same drag at the lower part of the lozenge, the whole form is being addressed and scaled from the origine as soon as I start moving the point (it behaves as if the other points would also be selected).
    I tryed the following combinations:
    - click on the lowest point down in order to set the origine. Then click/hold on the second point (the one supposed to be dragged), and then drag the point.
    - click on the lowest point down in order to set the origine. Then click/hold shift and then dragged the second point.
    - click on the lowest point down in order to set the origine. Then just click/dragging the second point.
    At all three tries, at least 3 sements of the lozenge were moved with the point, even once after deselecting the form. Do I omit any important detail?
    Merci

  • Requisition Lines DFF showing values as "multiple" in the iProc screen

    Hello,
    We have enabled Requisition Lines DFF on the iProc screen (OAF Page) and at the header section. This will allow us to enter a value which will be defaulted to all the lines. We are using Attribute1 through Attribute10. When Attribute 9 values are not same on the lines then the whole DFF section is displaying as "multiple" which is expected. We didn't want this to happen and we have disabled Attribute9 field from the DFF Registration screen so that iProc does not consider the values in that field while displaying the DFF section. But still the DFF section is showing as "multiple" instead of Text fields. Each Attribute value is same across all the lines except for Attribute9. Can somebody help to figure out a work around for this?
    Thanks,
    Sriram

    Hello there ,
    Can anyone help me here?
    KS

  • Purchase requisition line item reject

    I need to reject the requisition line item programatically.
    Can any body suggest BAPI or Fun mod for it.
    Please suggest me the solution.

    you have posted correct question in wrong forum. Post is in ABAP forum

  • Unable to fetch requisition lines data from package POR_CUSTOM_PKG.CUSTOM_VALIDATE_REQ_DIST

    Problem Description
    We need to validate the Distribution data and based on that we will throw Error with respective Line Number. But the line number is not in the parameter list of this procedure POR_CUSTOM_PKG.CUSTOM_VALIDATE_REQ_DIST. So we thought of deriving the Line Number by querying the table po_requisition_lines_all by passing the parent_req_line_id. But unfortunately the query is throwing no data found exception though the related line records are seen from the backend.
    Request your help to fetch the requisition line number from this procedure POR_CUSTOM_PKG.CUSTOM_VALIDATE_REQ_DIST
    Thanks & Regards,
    Munish Mittal

    Hi,
    This is just for the information that the issue is resolved for me by using the below code.
    begin
    select parent_req_line_id into l_line_id_1 from dual;
    select requisition_line_id, line_num into l_line_id, l_line_num
    from po_requisition_lines_all
    where requisition_line_id = l_line_id_1;
    exception when others then
    null;
      end;

  • Delete Requisition Lines, Freight Charges for po

    I was wondering if anyone knows how to delete individual requisition lines after approval.
    Also, We are using the Unit price in PO level as C+F. But that could affected in item average cost, So how we can handle the PO which has Friegth charges without affecting on the accuracy of Average price and while matching the Invoice with PO (In case if we put the frieght charges as another item).

    HI,
    Go to M/06.select the frieght condition type and tick the group condition indicator and Group condition routine as 1 Overall document .and then enter condition value at header level in PO.
    reward if helpful.
    Regards,
    Chetan.

Maybe you are looking for