What is custom.pll

hi,
what is custom.pll in oracle apps

797525 wrote:
hi,
what is custom.pll in oracle appshttps://forums.oracle.com/forums/search.jspa?threadID=&q=custom.pll&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
Thanks,
Hussein

Similar Messages

  • India Localization+custom.pll

    Hi,
    We are applying India Localization to Oracle application is already running in global instance.
    What kind of back up we must take for custom.pll. There are many customizations done in global instance.
    Thanks
    Naveen,Sankuratri

    India localization ships a CUSTOM.pll, which has code for some of the functionality to work. You have to merge the code in your CUSTOM.pll with the CUSTOM.pll shipped by localization patches/ patchsets.
    Note: 335113.1 - Oracle India Localization Service Tax FAQ
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=335113.1

  • 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.

  • Custom.pll to set block to read only

    Hi all,
    I want to use custom.pll to make the item revisions
    form read-only for certain responsibilities in 11.5.9.
    What is the best property to set to accomplish this?
    Alterable_plus looks like a good candidate...
    Thanks,
    Scott

    Actually, it looks like alterable_plus works at the item level - is there a property I can set for the block?
    Thanks,
    Scott

  • 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.

  • Custom code for LOV generation in Custom.pll

    Hi All,
    I am using the custom in my custom application, I am using the following procedure in Custom.pll for LOV generation. When I use the same procedure standalone then it's working fine, But when I use it in Custom.pll then it's giving me the Error "No-Data-Found", please let me know what to do. I am assuming that it can't find the appropriate backend table, I am logging in through sysadmin/sysadmin, Also I have fully followed the procedure for Table registration and Synoym creation and assiging it to apps but even then it's giving me the above mentioned error.
    procedure event(event_name varchar2) is
    rg_id RECORDGROUP;
    query_string VARCHAR2(2000);
    crnt_item VARCHAR2(60) := name_in('SYSTEM.CURSOR_ITEM');
    crnt_type VARCHAR2(30) := GET_ITEM_PROPERTY(crnt_item, DATATYPE);
    -- Omit crnt_hint if not context sensitizing the LOVs.
    crnt_hint VARCHAR2(30) := SUBSTR(GET_ITEM_PROPERTY(crnt_item,
    HINT_TEXT),
    INSTR(GET_ITEM_PROPERTY(crnt_item,
    HINT_TEXT), ':') + 2);
    begin
    IF event_name = 'WHEN-NEW-BLOCK-INSTANCE' THEN
    IF (form_name = 'FRM_EXPATIENTMASTER' and block_name = 'REG_EXPATIENTMASTER' and item_name = 'DEFENCECODEFK')
    then
    crnt_item := SUBSTR(crnt_item, (INSTR(crnt_item, '.') + 1));
    query_string := 'SELECT DISTINCT reg_defencecategory.defencecodepk'
    || ' AS holder_value '
    || ' FROM hms.reg_defencecategory'
    || ' ORDER BY 1';
    IF NOT ID_NULL(FIND_GROUP('generic_lov_rg')) THEN
    DELETE_GROUP('generic_lov_rg');
    END IF;
    rg_id := CREATE_GROUP_FROM_QUERY('generic_lov_rg', query_string);
    SET_LOV_PROPERTY('generic_' || crnt_type || '_lov',
    GROUP_NAME, rg_id);
    IF FORM_SUCCESS THEN -- >From "IF" to "END IF" may be omitted
    -- if not context sensitizing the LOVs.
    SET_LOV_PROPERTY('generic_' || crnt_type || '_lov',
    TITLE, 'Available ' || crnt_hint || ' values');
    SET_LOV_COLUMN_PROPERTY('generic_' || crnt_type || '_lov',
    1, TITLE, crnt_item);
    END IF;
    LIST_VALUES;
    /* IF name_in('control.holder') IS NOT NULL THEN -- Holder is set to null in Lov_Btn WBP trigger
    COPY(name_in('control.holder'), crnt_item); -- Depends upon implicit conversions for non character
    -- datatype values (in this example, NUMBER and DATE). Create a 'holder' for/of each datatype
    -- required to avoid implicit conversions.
    END IF;*/
    end if;
    end if;
    exception
    when no_data_found then
    message('No Data Found, try Again');
    null;
    end event;

    Hi John,
    I got the same issue. Is yours being resolve yet?
    Can you share the solution.
    Thanks.

  • Calling Framework Pages from Apps (Custom Pll)

    Hi All,
    What a usefull forum I've been searching on metalink but didnt
    know this forum existed till now!
    Anyway I have written a few framework pages and would like to invoke them from an apps form I was thinking a menu option enabled by a custom pll is this possible? I would like to call the jsp and pass them parameters such as project_name, task_nam etc
    Thanks in advance
    Guy

    Yes you can. You can simply define a Form Function of JSP Type and have the WebHtml call pointing to your PG.xml file and with the necessary parameters required.

  • Error: custom.pll

    Hi all
    when we are trying to open some forms we are getting an error :custom.pll cannot find the current instace, whats actual problem?where can we find the this program to edit it to add new instance.
    thanks
    Praneeth

    You can turn CUSTOM.pll off in the forms via Help->Diagnostics->Custom Code->Off.
    Otherwise, on the applications filesystem, go to $AU_TOP/resource, open CUSTOM.pll in f60desm or ifbld60.exe (windows) and look for logic errors in the pl/sql. Do a compile/validate all from the forms designer/builder.
    You can recompile it with the following command or use adadmin to recompile all forms from product fnd.
    f60gen module_type=library module=$AU_TOP/resource/CUSTOM.pll output_file=$AU_TOP/resource/CUSTOM.plx userid=apps/apps compile_all=yes

  • Change in custom.pll

    Hi All,
    I am facing a problem when making a change in custom.pll and the form. I have made a change in the custom.pll and then re attached the library in the form. Now i FTP the form and pll and compile first the pll and the form and then move these plx and fmx into a specified folder and when i open the form in application my change is not reflected.
    Is this the right way i m doing. Also, I see that the package in custom.pll is never called in the form. Is this right. Do i need to call the package that is in library in form.
    Also if i do this then it will be no longer a vanilla form. It would be changed to a custom form???
    ( is it possible that the package is automatically called in the form that(package) is defined in pll, i ve never done such a thing, i am aware that we have to call the package in the form as well, but not much idea when working when EBS)
    Any help on this would be appricated.
    Regards,

    Hi,
    Open ur library and make ur changes. Save it and Compile it.
    Re-Attach ur library 2 ur form and compile ur form.
    put newly generated .plx and .fmx files at ur desired location.
    if ur changes still doesn't reflect then delete .plx and .fmx files from the location where ur r compiling these.
    I guess with .plx u need to put .pll at ur desired location.
    How would u call a package....?? (I don't know it)
    what I know is you can call a procedure, function or any stored subroutine
    You can also call packaged procedure and functions
    but how to call a package.
    hope it's helpful 2 u
    Thanks & Regards
    Manoj

  • Way of customizing oracle forums without custom.pll and form personalizatio

    HI,
    I know that form customization is done thru custom.pll and form personalization.what about customization of events which are not found in custom.pll.how can we take care of those events.

    You will have to modify the specific trigger inside the original fmb, and with every patch, redo your changes again. But i don't think thats supported by oracle (maybe you get a more detailed answer in the eBusiness-forums OA Framework )

  • Create Local Variable in Custom.pll

    Hi,
    I want to create and calling local variable in custom.pll. As i know, we can create local variable with personalization form. but i didn't find the way to create local variable in custom.pll.
    Is there any way to create local variable in custom.pll and calling that variable ?
    Thanks

    I think what you want is to create a GLOBAL variable, a LOCAL variable would be available to the Procedure/Function being executed.  But to create the local variable, you add it between the Function/Procedure declaration and the begin
    PROCEDURE abc(p_input    VARCHAR2);
      v_count       NUMBER := 0;
    BEGIN
    END;
    A GLOBAL reaches out past the execution of the proc defined in CUSTOM.pll.  You can simply type GLOBAL.<var_name> := <value>.
    BEGIN
      GLOBAL.xx_count := 0;
    END;
    Though I like the ability Personalizations give you of using Init Value vs. Value,  Init Value will assign a value if the variable does not exist ... and creates it.  Value just assigns a value.
    Some say you have do a COPY(value, NAME_IN('variable name')) instad of GLOBAL.<variable_name>, I have never had to use this.

  • WHEN-VALIDATE-ITEM in custom.pll

    Hi All,
    I have a requirement
    In PO form when item is selected, the price should be populated from a custom table.
    I tried populating price at WHEN-VALIDATE-ITEM of item, but it seems that custom.pll does not capture WHEN-VALIDATE-ITEM.
    Is there any way I can achieve my requirement.
    Thanks and Regards
    Prajesh

    If you do not have a quote, then it might a little harder.
    What kind of data is present in your custom table?
    Can you create/maintain quotes based on the data and then use the quotes for creating standard PO?
    Hope this helps
    Sandeep Gandhi
    Independent Consultant

  • Compiling custom.pll requires an outage?

    Hi,
    We need to compile the custom.pll in production. Does this require an outage to do that? What is the impact of compiling custom.pll without an outage?
    -Ritesh

    If this compile is done during non-business hours, and if some users are still connected to forms sessions. Would they have issues connecting to forms? Throw any kind of error? We are planning to compile the custom.pll today evening after business hours and bounce the services in the weekend. We are concerned that compiling custom.pll would cause an issue to existing users if they r connected?
    My question basically is - compiling a custom.pll without shutting down services does it effect any end users to experience errors?
    -Ritesh

  • Commit/save the data after copy in custom.pll

    Hi All,
    In custom.pll added code to populate data based on other fields. Its copying successfully, but not able to save the record to database.
    when user goes to field, form is asking for update, correction.
    Can some one please tell me how to commit data to database once it is copied?.
    what built in should be use to commit data after copying?.
    Thanks to all in advance...

    Hi Asif,
    Thanks for the reply, that didn't help me.
    fields which populated are into key flexfield segments, how to save the key flexfield, this is a TAB.
    I am not able to find any where on this. In form I have a block1 based on data in fields in this block1, key flexfield in a tab should be populated, here we are successful by copy built in function.
    Next is how to save keyflex data in TAB after populating.
    can someone help me please...

  • FRM-10043: Cannot open file.  While running CUSTOM.pll

    Hi DBA's
    I tried to run the CUSTOM.pll file it is giving the following error. I gave full permission and sourced the environment still i am getting the following error.
    [applmgr@aqherptestdb resource]$ f60gen CUSTOM.pll apps/apps
    Forms 6.0 (Form Compiler) Version 6.0.8.28.0 (Production)
    Forms 6.0 (Form Compiler): Release - Production
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.6.0 - Production
    PL/SQL Version 8.0.6.3.0 (Production)
    Oracle Procedure Builder V6.0.8.21.0 Build #0 - Production
    Oracle Virtual Graphics System Version 6.0.5.39.0 (Production)
    Oracle Multimedia Version 6.0.8.25.0 (Production)
    Oracle Tools Integration Version 6.0.8.17.0 (Production)
    Oracle Tools Common Area Version 6.0.5.32.0
    Oracle CORE Version 4.0.6.0.0 - Production
    FRM-10043: Cannot open file.
    Form not created
    [applmgr@aqherptestdb resource]$
    Best Regards,
    SG

    SG,
    What is the syntax you use? As applmgr user, source the application env file and issue:
    $ cd $AU_TOP/resource -- Or, cd to where CUSTOM.pll is located
    $ f60gen module=CUSTOM.pll userid=apps/apps output_file=CUSTOM.plx module_type=library \
    batch=no compile_all=specialNote: 427879.1 - How To Customize And Compile An Application Seeded Form (FMB) Or Library (PLL)?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=427879.1
    Note: 130686.1 - How to Generate Form, Library and Menu for Oracle Applications
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=130686.1
    Regards,
    Hussein

Maybe you are looking for

  • HP4050N printer install problems

    Unable to find driver to install HP4050 on a Windows XP 32-bit operating system using a parallel port cable. - Tried using Add Printer Wizard but that only seems to work for a plug and play printer (this one is older). Did not check off the "Automati

  • Sql not supported in view in physical layer

    hi, I wanna create a view (in physical layer) table type = Select (under General tab in Phyiscal Table property) I have checked the checkbox "Use database specific SQL". and chosen "Oracle 9i" in Database tree. the data structure in the table is in t

  • Disk utility permission - how to interpret - possibly security intrusionst

    Verifying permissions for "Macintosh HD"    whole disk (Apple_HFS : 0): calculated CRC32 $E103DFF6 : Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired. M

  • Parse errors with 70_sare_obfu0.cf

    I've installed various .cf rules into /etc/mail/spamassassin (correct owner:group & permissions). They all install fine into Spamassassin except 70sareobfu0.cf downloaded from here... http://www.rulesemporium.com/rules.htm#obfu ...which produces scre

  • AppleWorks File Structure incompatible with OS X Server?

    Hi all, Sorry I don't use AppleWorks applications that much mainly because with every update it seems to be less and less possible to use it... Call me old school but I find programs that don't have a Save as function a bit storage. Well here the pro