Removing Product Libraries (OEXOEHDR, OEXOELIB) links from CUSTOM.PLL

I’m unable to remove attached product libraries from CUSTOM.PLL. After removing (OEXOEHDR, OEXOELIB) in Oracle Forms Builder I’m recompiling and saving. If I reopen the same custom.pll, deleted libraries are still attached.
Any one encountered this problem? Please reply.
Thanks,
Kishore Reddy

I’m unable to remove attached product libraries from CUSTOM.PLL. After removing (OEXOEHDR, OEXOELIB) in Oracle Forms Builder I’m recompiling and saving. If I reopen the same custom.pll, deleted libraries are still attached.
Any one encountered this problem? Please reply.
Thanks,
Kishore Reddy

Similar Messages

  • How to close a custom form from CUSTOM.pll

    Dear Friends,
    We need your help on the following issue related to Oracle Apps Forms.
    We have a requirement to show a popup message (message should remain open and user should be able to continue working in the order entry form. User use this message as a reference while entering order details) when user enters a customer name or number in the order entry form . This is similar to the Stock Availability form which gets opened automatically when control enters into Order Entry Lines form, where the stock availability form remains open while entering line details.
    To fullfil the requirement, we have designed a custom form with a single text field in which the message text (some customer information) will be shown.
    We are using custom.pll to call this custom form (thru FND_FUNCTION.EXECUTE) when the control leaves customer number field. User could leave this custom form open and continue with entering order details. Till this point we could achieve what we want. i.e. we could show the popup message in the custom form after user enters a customer number.
    The problem is, after the custom form is opened, when we enter a new order for different customer, we need to close the custom form (which is opened for the previous customer) if the customer is not qualified.
    we could not achieve this. We tried using CLOSE_FORM, CLOSE_WINDOW, but did not help.
    Any body have any suggestions on achieving this... Basically, we need your help to know how we can close the custom form from CUSTOM.pll.
    Thanks,
    Uma

    I thing you haven't any (supported) option to close a form via custom.pll.
    For a long time, we have search a solution for the same problem without any result.

  • Capture event from custom.pll?

    Hi friends,
    I've been reading in Developers Guide about events capture (p.787) in custom.pll but I've not found anything about capture the event (or something similar) whe we close a descriptive flexfield window....
    Is there any way to know from custom.pll when a window is closed? The purpose is to make diferents actions when the focus return to the original form.
    Thanks.
    Jose.

    Does the WHEN-FORM-NAVIGATE event fire when closing one form and returning to another? However I am pretty sure that this fires when switching between forms without closing one of them as well.

  • Linking from Custom Store Banner to an article

    Hi,
    We have banners in our Custom Store and we'd like to link from the Banners to specific pages in certain folios.
    The DPS documentation says we should be able to use this kind of link structure:
    [URL Scheme]://v1/folio/[folio name]/[article name]
    So where our app's URL scheme is : com.xxxx.yyy
    and our folioname is: Financial Mail 17012014
    and our article name is: Article on page 6
    we've constructed a link like this:
    <a href='com.xxxx.yyy://v1/folio/Financial%20Mail%2017012014/Article%20on%20page%206'>URL scheme</a>
    Unfortunately we get this alert box: Error We're sorry. This article is currently not available for this device.
    We can successfully link to a custom slot in our app like this:
    <a href='com.xxxx.yyy://v1/slot/Store'>Store</a>
    so i'm guessing our problem lies in the second half of our link. and that our URL scheme is working fine.
    - the folio mentioned is downloaded on the device (iPad)
    - the app is not live - still a dev ipa installed on the device
    Any advice would be appreciated
    Thanks in advance,
    Vauneen

    We figured this one out.
    You must use the Article Name and not the Article Title.
    <a href='com.xxxx.yyy://v1/folio/Financial%20Mail%2017012014/FM1701Page006'>support</a>
    But it seems DPS doesnt handle deeplinking to articles in folios not present on the device very gracefully.
    we presumed DPS would offer either a explanation message or perhaps even an impression (charged to the client like the webhosted pages used for Social Sharing) but neither of these happen if the folio is absent. the user is taken to the Library landing page with no explanation.
    We thought we could tease buyers and promote certain content in our Store Banner, but this doesnt seem so likely now - at least not with a link.
    Perhaps in future this could be a feature?'
    V

  • Call logical link from custom view on BP_HEAD

    I added a custom view to BP_HEAD in which I display invoices from another system. By clicking on invoice number I need to open VF03 with that invoice. I am able to open the actual transaction VF03.
    However, I am not able to pass the invoice number and open specific invoice that i click on in my view. I think I need to use
    create_bor_based method. However, I am not sure how do I pass parameters to it.
    lv_obj_type = 'VBRK' ?
    lv_obj_key = Actual Invoice No?
    lv_ui_objtype?
    CALL METHOD cl_crm_ui_descriptor_obj_srv=>create_bor_based
          EXPORTING
            iv_bor_object_type  = lv_obj_type
            iv_bor_object_key   = lv_obj_key
            iv_logical_system   = lv_logical_system
            iv_ui_object_type   = lv_ui_objtype
            iv_ui_object_action = 'B'
    *       iv_component        =
          RECEIVING
            rr_result           =   lv_descriptor_object.
    Below is code taken from outbound plug for Invoice Number. This code opens up transaction VF03. Now I need to pass the Invoice Number to this transaction to open specific invoice:
    DATA: lo_nav       TYPE REF TO if_crm_ui_navigation_service.
      DATA: lo_link      TYPE REF TO if_bol_bo_property_access.
      DATA: lr_window            TYPE REF TO cl_bsp_wd_window.
    * get service for navigation
      lo_nav = cl_crm_ui_navigation_service=>get_instance( ).
      CHECK lo_nav IS BOUND.
    * navigate to destination
      lo_nav->navigate( iv_link_id = 'ZSDINVOICE' ).
      lo_nav->navigate( iv_link_id = 'ZSDINVOICE'
                               iv_data_collection = iv_data_collection ).
    *  lo_link ?=
    *              cl_crm_uiu_bt_param_create=>if_ui_link_parameter_class~create_parameter_object(
    *                                          iv_link_id   = 'ZSDINVOICE'
    *                                          iv_parameter = '0385500008' ).
      iv_data_collection->add( iv_entity = lo_link ).
      IF iv_data_collection IS BOUND.
        lr_window ?= me->view_manager->get_window_controller( ).
        lr_window->call_outbound_plug( iv_outbound_plug = 'VBELN' iv_data_collection = iv_data_collection ).
      ENDIF.

    Here you go Maks
    When you run the wizard thn you provide some class name and system will generate that class for you. You can edit the method IF_CRM_IC_ACTION_HANDLER~PREPARE_DATA_FLOW of the class to pass the parameter value.
    Sample code for the same is:
    me->set_container_data(
    iv_name = gc_BP
    iv_value = BP ).
    Now you need to have the access of the BP no. from this address. Where ever you are confirming the BP, in that view create a global attribute and in DO_PREPARE_OUTPUT method set the BP value to the global method and in the Z class method mentioned above you can reterive the value
    e.g. lv_partner_no = ZL_*_IMPL=>gv_partner_no.
    BP = lv_partner_no.
    Cheers
    Sufyan

  • Removal of Quit and Help link  from ESS Screen

    Hi ,
    How to Remove Quit and Help link ,which is appeared on the top of the page in all the ESS Iviews .?
    If we go for modifying int service files in SE80 ,say for example PZ28 ..there is no service file atall.
    How this serive is capturing the HTML template ?
    Regards,
    J

    Hello,
    I've done this previously.  You need to edit the templatelibrarybasis.html file that is on the ITS AGate instance.  It's on the AGate under c:\program files\sap\its\6.20\DEV\templates\system\dm\templatelibrarybasis.html.  Take out or comment out the help/edit references.
    This is modifying SAP code, so after each patch you will need to remodify the file.  Let me know if you have further questions.
    Thanks,
    Marty

  • How to remove a folder and some links from start-menu

    Hi!
    An application (Kaspersky Antivirus) is installed on quite
    some Win2K-SP-Workstations by the Kaspersky Administration
    Kit (with its own installer).
    With this installation an entry to the start-menu is made
    and this entry shall be removed by Zfd 3.2-SP3. I ran
    through some tests with an application-object (run as secure
    system user), which only intent was to remove this entry.
    First I tried by "Distribution Options - Application Files"
    to remove the folder "C:\Dokumente und Einstellungen\All
    Users\Startmen\Programme\Kaspersky Anti-Virus 6.0 for
    Windows Workstations". Then I tried a "Distribution Script"
    with "RD /S /Q "C:\Dokumente und Einstellungen\All
    Users\Startmen\Programme\Kaspersky Anti-Virus 6.0 for
    Windows Workstations"", which also failed.
    Do I miss something? Where could I check the results of
    those tries to get a better feeling on what is going wrong
    here?
    Thanks in advance.
    Karl

    When doing the job with an *.bat-file it works, when going
    with the distribution script it does not. Are all the
    windows/dos/batch commands available in the distribution
    script option?
    Karl
    >>> Rolf Lidvall<[email protected]> 25.03.2009 11:37 >>>
    >> Does that mean that, in case there are some files in
    >that
    >> folder, I have to delete those files first?
    >
    >Yes.
    >
    >> Can this whole
    >> procedere be done by one app-object with keeping the
    >order
    >> like delete files first and then the folder as last
    >thing?
    >
    >I think it's safest to do that with a script. I'd use the
    >distribution
    >script option.
    >
    >
    >Regards
    >Rolf Lidvall
    >Swedish Radio (Ltd)

  • Remove "email delivered by bc" link from campaigns?

    Is tehre a way to remove or prevent the footer text in email campaigns declaring that the email was delivered by my partner name?

    Hi,
    The powered by message with either reference your partner name of BC. 
    Unfortunately if cannot be removed completely.
    - http://kb.worldsecuresystems.com/877/cpsid_87797.html?bc-partner#main_What_is__Powered_By_ _and_where_is_it_used_
    -Sidney

  • How to remove (writeoff) old invoices or CM from Customer Aging Report

    Hi Experts,
    We want to clean up our aging report. How do we writeoff the outstanding invoices and credit memos that have not been applied?
    Thank you!
    Jane

    Hi,
    Use Internal Reconciliation function in Business Partner Module.
    Hope this helps
    TVSon

  • How do I remove "Customize my portal" link from portal

    Hi,
    I want to remove the "Customize my portal" link from our portal application. I don't want to deny users access to this feature.
    Any ideas how it can be done?
    Regards,
    Melvin

    Are you using a Windows or a Mac? What you're seeing (the backwards L shaped menu) is probably the Canon Quick Menu. If you have a Mac you can go into your applications, select Canon Utilities, then drag Canon Quick menu to the trash and empty trash can. On Windows you'd go to the control panel, select Programs and Features (or Uninstall Program/Add or Remove Program) and uninstall the Canon Quick Menu. Not required for all the normal functions of the printer. You can do the same thing for My Image Garden. Also not required.

  • How can i remove shared libraries and itunes

         how can i remove shared libraries and itunes account from my iphone to my little brothers itouch if we both share the same itunes?
    he keeps on getting all the apps that i download as well as pictures i was wondering if anyone knows how to fix this problem

    You could either remove the iCloud account altogether and have him create his own or go into settings->store-> and switch automatically download Apps off.  And go into icloud and turn off photostream.  Depends on what you prefer.

  • Need Help on Custom.pll

    hi all,
    Pl tell me how is it possible to disable the Save functionality in the Forms Using Custom.pll. My requirement is to see that the SAVE functionality should not happen when the user uses CTRL-S from the keyboard.
    I am able to disable the SAVE button from the Menu but I want to do the same for CTRL-S keyboard action.
    Is there any property that can be used at the forms level from custom.pll to disable the commit action.
    Thanks in advance.
    Thanks & Regards
    Sanjiv Chawan

    Why wouldn't you post in the proper forum, i.e the Forms forum

  • Apps 11i custom.pll

    Does anyone know whether Apps 11i support custom.pll?
    And If so what is the advanced features and features carried over from R11.0.3?
    Thanks!

    Oracle does not support your customizations, but they supported method of customizing is via custom.pll. How's that for an oxymoron. Basically if your custom form that you call from custom.pll is bombing, you're out of luck, however if it's a direct problem with custom.pll and it's built in features, they may give you some help. You can do quite a bit with custom.pll, but you have to be careful if you're modifying seeded forms behavior. It's nice for adding entried to the Tools, and Actions menu though for launching custom forms.

  • How do I remove my ex wife's phone from account, but allow her to remain verizon customer?

    Request assistance/ guidance please--
    How do I remove my ex wife's phone from my plan, but allow her to remain a verizon wireless customer without interruption in her phone service?
    She would like to remain with Verizon Wireless.
    thank you!
    Russ

        Great information Ann154. Thanks! This is correct RussM99, the Assumption of Liability is the option for transferring service to your ex wife without an interruption of her mobile service. Here is the link with all the information you will need to get started http://vz.to/1lOdad9 . Let us know if  you have any other questions or concerns.
    KinquanaH_VZw
    Follow us on Twitter @vzwsupport

  • How Do I Link to Custom Component States From Scrolling Content Buttons?

    Hi there, I'm in need of some help as i've got a deadline to meet within the next few weeks and im stuck!
    Basically what I've done is i've made a scrolling content lists, containing about 10 products in each one, my plan was to turn each product into a button so that users could click on that product, and take them to a new page containing more detailed information on that product; when they've finished looking at that product they can click a button to return them to the list they were on previously. However I can't just make a brand new state for each product as there is a limit to 20 states, and I will need around 50 of them.
    So, from what i've read I will need to create custom components. the only trouble with doing this is that I can't link to the custom component on a different main timeline state (I dont get the option to link to the states of the custom component).
    If i put the image of the detailed product into the scroll panel I am able to link to it, however, it's inside the scrolling content and it just scrolls around and stuff which isn't what I want; as it makes it look messy.
    - Basically I just need to link from the buttons in the scrolling list, to a more detailed page for that product. Then be able to return to the list using a button.
    If anybody has any input on how to achieve this, please help me out. Starting to panic now as this needs to be finished before september :s
    Btw i'm happy to share my .fxp file it that helps.
    Thanks alot, Hoping for some helpful replies on this topic
    - Tom

    Hi Tom,
    Adding this back here to share my wireframe with the community.
    Have put a quick .fxp together based on the 'product' section of your project.
    Take a look at how the product lists are linking into the product detail pages within their custom components. 
    Using this model you should be able to expand out to infinite product detail states.  If a particular product area has more than the maximum allowed states, just start a new custom component (part 2 for that product section).
    Let me know if you have any questions. Hope this sets you on a path to getting your project complete.  It's looking nice.
    Tanya

Maybe you are looking for

  • ..is not abstract and does not override abstract method..

    Hello, I've been creating a GUI from scratch, up to now, i have managed to successfully compile the code which forms the window, and a JMenu bar. I now need to add buttons, and for this i need to use an ActionListener, but when i put "implements Acti

  • Sales order item level deliveryblock based on the material's destin country

    Hi Experts I have a requirement to set delivery block to an order at the item level based on of country of destination and material. -Requirement is to block automatically order line when a material is not authorized (Regulatory affair) to be shipped

  • Closed Lid operation

    Hi, I was wondering, while having my macbook hooked up to an external monitor, is there anyway to prevent the computer from shutting down when the lid is closed? in windows there is the option "do nothing when lid is closed" is there such a thing in

  • Not getting generate option in Prd environment

    Hi experts, We are having an prod issue. THere were some changes move to prod for 1 object that lead to inconsistency in the data model . When trying UCWB then we are  getting data inconsistency problem. Usaully in dev when we have that issue we get

  • Adobe Reader Not responding on Mac

    I recently downloaded the Adobe Reader and the Adobe Digital Editions thing for school....everytime I try to use them they freeze up and do not respond...any suggestions for getting them to work?