Disable Finally Closed option on PO

Hi,
Is there a way to disable the Finally Closed option on the PO?
Its not possible with Form personalization because the entire control field gets disabled.
Any ideas?
Thanks,
Ashwathy John

i will try to accomplish through custom.dll
Pl also suggest on this
We make Approval Group based on item category for PR or PO approval. The question is , i want to get approval group based on item or its category. Just pass item id and get which approval group is going to approval this item.
i got po_control_rules table it just contains categories range in description form, but didn't get any proper help.
Pl suggest solution
Regards,

Similar Messages

  • Disable the Finally Close option in 10.7

    Hello All
    If anybody working on 10.7,please sugesst me, how to disable the PO Finally Close option for a responsibility.Because it is 10.7, we can use personalization here.
    Solution required ASAP.
    Thanks in Advance.

    Use the custom library (custom.pll) .

  • We want to disable or eliminate "Finally Close" option in PO Control

    We want to disable or eliminate "Finally Close" option in PO Control. Pl suggest any solution
    Regards,

    i will try to accomplish through custom.dll
    Pl also suggest on this
    We make Approval Group based on item category for PR or PO approval. The question is , i want to get approval group based on item or its category. Just pass item id and get which approval group is going to approval this item.
    i got po_control_rules table it just contains categories range in description form, but didn't get any proper help.
    Pl suggest solution
    Regards,

  • How do I enable flash and java on firefox23 as I have the latest versions installed yet the plugin page shows "disabled" with no option to enable

    I have updated to Firefox 23 and it disabled my Java and Flash plugins. I then updated these to Flash 11.8.800.94 and Java to Version 7 Update 25. Now these are showing up on the plug in page but are showing "disabled" with no option to enable. How do I enable them to view content on the web.

    Thanks Philipp but i have already done that and the content started working...
    However, when i closed and restarted the browser it returned back to the same settings...
    I dont think that should happen, but anyway thank you for the solution. At least I can use it by resetting the values if need be
    Appreciate your help

  • Finally Closed setup control in Purchasing

    Hi All,
    Is there a way to disable users from "FINALLY CLOSING" PO's. If so what is the procedure to do that? Is that something done in workfloww????
    Any Ideas?
    Thanks,
    Prathima

    For some reason I couldn't edit my first message which I sent out accidentally before it was complete.
    Here's the full version:
     Greetings,
    I use a stepper motor with timing belt to enable linear motion in an axis. I can get real time absolute linear position information with the help of linear sensors and convert them to actual step data using math operations. I was trying to find a way to feed this data back to the VI that moves the motor and create a closed control loop using LabView (not MAX). Overshoot and multiple pull in's are not a problem as long as the final position is correct (or within a certain tolerance). I was wondering if it was possible to feed the actual step data (which I received and calculated from linear sensors) to Movement VI's in LabView as "desired position" value? Is this possible? If not, does someone have another suggestion?
    Thank you. 
    My setup is as follows: PCIe 6321 and BNC 2110 for position measurement
    PCI7332 and UMI  7772 for motor control

  • How do you cancel an invoice on a finally closed PO? - URGENT

    We attempted to void and cancel a check and Oracle allowed the void, but did not allow the invoice to be cancelled. Further investigation revealed that the associated PO had been finally closed. We were unable to enter a credit in the distribution because it wouldn't allow the invoice amount to be changes so that it would go on hold. Since the PO can't be reopened after being finally closed, how should this invoice be handled?

    The user finally got back to me on the proposed solution, but it doesn't completely solve her problem.
    The transaction is in limbo because we've voided the check now but it won't let us create the accounting to complete the void.
    Because of this – it's in limbo and continues to be "swept" each month into the next accounting period. We need to find a way to complete this void transaction so it won't keep showing up as a reconciliation item.

  • How can i unlock my ipod touch? It is just saying disabled with no option to reset password???

    How can i unlock my ipod touch if the screen keeps saying "ipod is disabled" with no option to enter my password???

    How do I unlock my disabled ipod touch?

  • How do I disable the TTY option on my i phone (Version 5.1.1.)

    How do I disable the TTY Option on my I phone 4 (Version 5.1.1.)

    The only time that setting should not appear is if there is a sim in your phone from a non-supported iPhone carrier. Then, TTY can be turned on by default. So, try this:
    Settings>General>Reset>Reset All Settings.
    That should get rid of the icon regardless.

  • How to disable save as option in forefox when we right click on the image?

    Hi Folks,
    Can somebody help to disable save as option when i right click on the image which is showing in the browser.

    Hi,
    '''sorry,it is impossible by code'''
    you can use addons.
    or
    you can disable while developing webpage using:
    <script language="javascript">
    document.onmousedown=disableclick;
    status="Right Click Disabled";
    Function disableclick(event)
    if(event.button==2)
    alert(status);
    return false;
    </script>
    Regards
    '''Deepak Krishnan'''

  • PO when Finally Closed not releasing funds

    In 11.5.9; if we final close a PO using standard "po_actions.close_po" procedure, the PO used to get Finally Closed and corresponding Funds get released.
    However, the same does not work in 11.5.10.
    I would be glad if anyone can help me in this regard. Please note that we are using encumbrance feature; hence it is a very critical issue.
    Thanks,
    M. Geethanath
    [email protected]

    In 11.5.10 PO Final Close process works well only when we invoke PO_ACTIONS.CLOSE_PO procedure by passing PO Header-ID, Line-ID and Line Location-ID.
    It is because of below code:
    PO_DOCUMENT_FUNDS_PVT.do_final_close(
    x_return_status => l_return_status
    , p_doc_type => p_doctyp
    , p_doc_subtype => p_docsubtyp
    , p_doc_level => PO_DOCUMENT_FUNDS_PVT.g_doc_level_SHIPMENT
    , p_doc_level_id => p_shipid
    , p_use_enc_gt_flag => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_use_gl_date => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_override_date => p_action_date
    , p_invoice_id => p_origin_doc_id
    , x_po_return_code => l_return_code
    , x_online_report_id => l_online_report_id
    If the above call was to decide on Document Level based on the values held by below variables, it would have been more appropriate.
    p_docid (PO Header ID)
    p_lineid (PO Line-ID)
    p_shipid (PO Line Location-ID)
    Example:
    IF p_shipid IS NOT NULL THEN
    PO_DOCUMENT_FUNDS_PVT.do_final_close(
    x_return_status => l_return_status
    , p_doc_type => p_doctyp
    , p_doc_subtype => p_docsubtyp
    , p_doc_level => PO_DOCUMENT_FUNDS_PVT.g_doc_level_SHIPMENT
    , p_doc_level_id => p_shipid
    , p_use_enc_gt_flag => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_use_gl_date => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_override_date => p_action_date
    , p_invoice_id => p_origin_doc_id
    , x_po_return_code => l_return_code
    , x_online_report_id => l_online_report_id
    ELSIF p_lineid IS NOT NULL THEN
    PO_DOCUMENT_FUNDS_PVT.do_final_close(
    x_return_status => l_return_status
    , p_doc_type => p_doctyp
    , p_doc_subtype => p_docsubtyp
    , p_doc_level => PO_DOCUMENT_FUNDS_PVT.g_doc_level_LINE
    , p_doc_level_id => p_lineid
    , p_use_enc_gt_flag => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_use_gl_date => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_override_date => p_action_date
    , p_invoice_id => p_origin_doc_id
    , x_po_return_code => l_return_code
    , x_online_report_id => l_online_report_id
    ELSIF p_docid IS NOT NULL THEN
    PO_DOCUMENT_FUNDS_PVT.do_final_close(
    x_return_status => l_return_status
    , p_doc_type => p_doctyp
    , p_doc_subtype => p_docsubtyp
    , p_doc_level => PO_DOCUMENT_FUNDS_PVT.g_doc_level_HEADER
    , p_doc_level_id => p_docid
    , p_use_enc_gt_flag => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_use_gl_date => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_override_date => p_action_date
    , p_invoice_id => p_origin_doc_id
    , x_po_return_code => l_return_code
    , x_online_report_id => l_online_report_id
    END IF;
    Anyways, it is not categorized as a Public API; so, no comments…
    Please find below sample procedure that can be re-used.
    PROCEDURE fclose_po (
    p_po_header_id NUMBER,
    p_po_line_id NUMBER DEFAULT NULL,
    p_reason VARCHAR2,
    p_close_date DATE
    IS
    CURSOR c_shipments
    IS
    SELECT po_header_id, po_line_id, line_location_id
    FROM po_line_locations_all
    WHERE po_header_id = p_po_header_id
    AND po_line_id = NVL (p_po_line_id, po_line_id);
    BEGIN
    FOR c1 IN c_shipments
    LOOP
    IF (NOT (po_actions.close_po (p_docid => p_po_header_id,
    p_doctyp => 'PO',
    p_docsubtyp => 'STANDARD',
    p_lineid => c1.po_line_id,
    p_shipid => c1.line_location_id,
    p_action => 'FINALLY CLOSE',
    p_reason => p_reason,
    p_calling_mode => 'PO',
    p_conc_flag => 'N',
    p_return_code => v_return_code,
    p_auto_close => 'N',
    p_action_date => p_close_date,
    p_origin_doc_id => NULL
    THEN
    l_status := 'ERROR';
    ELSE
    l_status := 'SUCCESS';
    END IF;
    END LOOP;
    END fclose_po;

  • PO when Finally Closed does not release funds

    In 11.5.9; if we final close a PO using standard "po_actions.close_po" procedure, the PO used to get Finally Closed and corresponding Funds get released.
    However, the same does not work in 11.5.10.
    I would be glad if anyone can help me in this regard. Please note that we are using encumbrance feature; hence it is a very critical issue.
    Thanks,
    M. Geethanath
    [email protected]

    In 11.5.9; if we final close a PO using standard "po_actions.close_po" procedure, the PO used to get Finally Closed and corresponding Funds get released.
    However, the same does not work in 11.5.10.
    I would be glad if anyone can help me in this regard. Please note that we are using encumbrance feature; hence it is a very critical issue.
    Thanks,
    M. Geethanath
    [email protected]

  • HOW TO DISABLE THE SAVEAS OPTION OF A BROWSER?

    Hi all,
    Nice to be back again folks.....
    Well I need to develop an Applet (perhaps even a swing) which when loaded by any browser would disable the SaveAs option of the browser's File menu.
    I tried using the Frame class of java.awt package, the code is:
    import java.awt.*;
    import java.applet.*;
    public class WinAppl extends Applet
    int mc;
    String str="NO OF MENUS: ";
    Font fnt=new Font("Arial",Font.BOLD,12);
    MenuBar mb;
    Frame frame=new Frame("SNODX");
    Window window;
    public void init()
    frame.setBackground(Color.red);
    frame.setForeground(Color.black);
    this.setFont(fnt);
    mb=frame.getMenuBar();
    if(mb!=null)
    mc=mb.getMenuCount();
    str+=mc;
    else
    str+="ZERO";
    public void paint(Graphics g)
    g.drawString(str,50,50);
    but when this applet is loaded ALL the menus of the browser disappear .i.e when this frame applet is loaded by the browser only the title bar of the browser and a red colored window appear, no menus. I dont want all the menus to be hidden, just the SaveAs option of Browser's File Menu to be disabled.
    Thanks in advance.
    True to my nature I am posting this question in some of the other Java forums as well. And as usual sorry for the multiple postings.
    snodx

    Applets usually have absolutely no control over the browser they are running in (with the exception of loading other web pages and other very high level stuff). You won't be able to write an applet that disables entries in the menu bar. And even if you could it wouldn't really help you because most browsers write everything they download to disc (to the cache) where it can be recovered by anybode.
    Last but not least: there are lots of tools for mirroring web sites that will allow users to download and save anything that is accessible for browsers.
    However, you may be able to disable the menu bar and perhaps even change entries in some browsers like ie by activeX controls or javascript. Still this is not a very friendly way for a website to behave...

  • Disable Refresh menu option on Page Title Bar

    Hi,
    We have a TLN node that opens an iview in a new window. Therefore nothing is displayed in the portal page. However the Page Title Bar menu still has all the options (Open in New Window, Refresh, Details etc.) and if a user selects Refresh, it throws a portal runtime error (iView not found: .default). How can I disable the menu options for this iview? I have tried setting the Show Refresh etc. parameters to No but it didn't work - I assume because the iview isn't being opened in the portal page.
    Many thanks
    Jane

    hi
    the iview you need to explore is page title bar i view in default framework page available in  portal standard user  directory in portal content.In this context i would like to suggest a solution why don,t you creat a default framework page just copy it in your folder  and open it and disable all checkboxes associated to page title bar and save after that go on to create a deskttop in portal display in system configuration and add your framework page and theme from themes in portal content and then add a rule to the main rule in super administrators  folder which will for role of the user will display onle that desktop.i have illustrated the concept of branding if you want to avoid codeing or command groups which is long approach.hope this helps youplease do not forget to give points
    with regards
    subrato kundu

  • Purchase order finally closed

    Hi Team ,
    Purchase order header status is " Finally closed " , we have one line and delivery is pending . Now is there any way to receive the item , because we can not open the finally closed PO .
    Thanks
    Kiran

    We want to inactivate Inventory Org but , PO receiving is reflecting in All Inventories value report .
    We can not deliver PO for finally closed PO . As a workaroung we can do Misc Transcaction , but report will show pending receiving .
    Thanks
    Kiran

  • Purchase Order is Finally Closed

    Hi to All,
    Question: If a PO is finally closed. And the receiving department incorreclty received the items. Is there a way to fix the receiving qty after the PO has been finally closed.
    thanks in advance for help on this matter.

    Refer to this thread. Bring it back to approved status and perform necessary transactions.
    How to Change a PO from Finally Closed back to Approved
    Thanks
    Nagamohan

Maybe you are looking for

  • Decimal places in form

    Dear Gurus. I need to display dinamic decimal places in my form. for example if I have a variable containing value: 1.500  - need to display it as 1.5 (omitting trailling zeroes) 1.520  - need to display it as 1.52, 1.000  - need to display it as 1 p

  • Field CABN-ATVIE is not brought through to the Class-Chars

    Hi, we're upgrading from SAP4.5 to ERP6. We're re-creating all the Classification in the new system. Field (CABN-ATVIE) is not populated in Class-Characteristic. In table CABN u2013 SAP4.5 field Hidden (CABN-ATVIE) and ERP6 field No Display (CABN-ATV

  • DEFUALT HEADSET NOT FUNCTIONING!

    Hi, i have a N73 ME and i think i have accidently switched of my headset or something,coz now when i`m listning to music i can`t skip tracks or stop or change the volume or anything.the headset is not working. can anyone help me, how to get this corr

  • Noise on export

    New development engine is really great, but there is an issue which did exist in LR3 and got much stronger in LR4 beta, Very often the image visible in Develop module looks much better noise wise than the one which is exported out. Take a look at the

  • Maps is very innacurate for australia

    Don't know about other people but my maps app, when i run it and type in the address i want to go to it maps it out and most of the time it tells me to go through a road thats been blocked off for 6 or 7 years or takes me through a park once.. is the