Customize Customer Standard Form to Org Specific

Hi,
I have Customized Customer Standard Form to Org Specific. If any body needs helps please send me email to [email protected]
Thank You
sunny

Hi,
I am not able see classification tab in R12 Customer HTML screen,which(Classification tab) is present in 11.5.10.But there are some fields which are scattered in HTML screen,is there any setup to get the classification tab on HTML screen?or suggest me if there is any work around.
Thank You.

Similar Messages

  • Customize the standard form is WebDynpro ESS (ess~lea)

    Hi,
    I want to customize the standard form is WebDynpro ESS (ess~lea) Leave Request for Infotype2001 subtype 9990 in NW04. What are the steps and best practices?
    Regards
    Ali

    Hi
    Please see SPRO->Personnel Management->Employee Self-Service->Service-Specific Settings->Working Time->Layout of Web Application->Define Field Selection.
    Regards
    kk.

  • 11i Customer - Standard Form : display the bill_to adresses first

    Dear all,
    I'm using Oracle eBS standard Customer -> Standard form
    I would like a mean to display bill_to address first in this form because we have some big customers with many addresses ...
    Procedure:
    Choose AR - Admin responsibility
    Menu : Customers -> Standard (Form Name : ARXCUDCI)
    Query a customer by its number or any other criteria -> use the "Find" button
    A list of places are displayed in the window named "Match Results (Organization) ..."
    -> In this window I would like to have the bill_to address first (even the principal one if possible)
    I'm able to set up Forms Perso code but not to modify the standard screen
    Any help is welcome,
    Thanx,
    Xavier

    sorry I did not get you,
    I am doing it using forms personalization, but my lead is asking me to do using profile options, are there any?
    Do you have any idea how to disable a push button using forms personalization?
    For some resp, I have to take out the privilege to create new customer.
    Thanks,
    Midhun

  • Opening Customer Standard Form to the Address Level

    Hello All,
    I am trying to either use/create an oracle function in order to open the customer standard form to the address level from another form in 11.5.10. i know I can do something like this:
    FND_FUNCTION.EXECUTE( 'AR_ARXCUDCI_STD'
    , 'Y'
    , 'Y'
    , 'CUSTOMER_ID='||<VARIABLE THAT IS THE CUSTOMER ID>);
    But this opens the form to the main section of the form. What I want is to open the customer form to the address level which is one level down.
    I have tried messing with the function statement above by trying different parameters with no success.
    I would really appreciate if someone could tell me what parameters to enter in order to achieve this or if they know of a form in 11.5.10 that does this then I can find how they did it from that.

    sorry I did not get you,
    I am doing it using forms personalization, but my lead is asking me to do using profile options, are there any?
    Do you have any idea how to disable a push button using forms personalization?
    For some resp, I have to take out the privilege to create new customer.
    Thanks,
    Midhun

  • Customize customer search page

    Is there any way that we can customize customer search form with a DFF attribute on hz_parties?
    Any help would be greatly appreciated.
    Thanks,

    Hi Ravi,
    You can redirect from jsp to OAF and from OAF to Oracle form
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    String destination =
    "form:SYSADMIN:SYSTEM_ADMINISTRATOR:STANDARD:FND_FNDMNMNU";
    pageContext.forwardImmediatelyToForm(destination);
    URL should be in form form:responsibilityApplicationShortName:responsibilityKey:securityGroupKey:functionName:param1=
    value1 param2=value2 param3=value3
    Hope this will help.
    Regards,
    Reetesh Sharma
    Edited by: Reetesh Sharma on May 17, 2010 9:51 PM

  • Standard Form to Custom Report

    Dear Members,
    I am Using Oracle E-Business Suite R12 and Reports 10g to develop reports.
    There is a standard form in oracle in one the responsibilities which has a button and once this button is pressed it kicks off a report.
    This report is a standard oracle report, this report has to be modified and a custom report should be created.One this custom report is created; and when the button is pressed on the form it should kick off the custom report instead of the standard one.
    We do not want to change the form as it is a standard form.
    How can we achieve this, any ideas?
    Thanks
    Sandeep

    Backup the standard report and give your custom report the same name?
    For better answers, try the EBS forum. EBS is quite specific in how it handles customizations.

  • Calling custom form to standard form based on passing parameters by pers..

    Hi Everyone,
    I have a urgent requirement related to form personalization like Calling custom form to standard form based on passing some parameters and after click on save icon then custom form should be enable and open. how to achieve this functionality through personalization.
    In brief ......Responsibilty -> Enterprise Asset Management->work order form and in this form's tool menu attach a custom form which comes other responsibility(here no issue) issue is that which trigger and condition used and what should be Action attribute/option. How to disable or enable tool form on some specific navigating the form.
    and how pass the parameter through current using form fields.
    plz help me out........it's urgent.
    thanks,
    Abh....

    Abh,
    Forms Personalization is a feature of the Oracle Enterprise Business Suite (EBS) not a feature of Oracle Forms. Please post your question in the General EBS Discussion forum. If you have a general Forms question, by all means, ask it here! ;-)
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • How to call standard form from your custom forms

    Hi,
    I submits concurrent program(SRS) from custom form and then i would like to call view requests standard form rather navigating manually?
    Please can anyone tell me how to do above?
    Thanks
    ESL

    Hi Esl ;
    Please check [this search|http://forums.oracle.com/forums/search.jspa?forumID=475&threadID=&q=call+standard+form+from+custom+forms&objID=c84&dateRange=all&userID=&numResults=15&rankBy=10001]
    Please also check those and see helpful:
    Forms Customization
    Re: Enable Submit Button at User Level and Disable at Block Level
    Forms Personalization Document
    Re: Forms Personalization Document
    Regard
    Helios

  • Is there a way to make form org specific?

    Hello folks!
    Is there a way to make my custom form Organization specific.As in when first org users selects the org code from the find window ,the profile option should be set so that that all the info that they enter pertains only to that org.Its basically a way to set up the form so that it could be used across various orgs?
    If you can throw some light at this,I would appreciate it!
    Thanks much for your help!

    U can make the form org specific by fetching the organization id programmatically...U will need to override executeQuery method of your VO....Below will make things clear:
    Add the following where clause in your VO query:
    where ORG_ID=:1
    Override the execute query in VOIMPL,java as:
    public void executeQuery()
    OAApplicationModuleImpl oaapplicationmoduleimpl = (OAApplicationModuleImpl)getApplicationModule();
    OADBTransactionImpl oadbtransactionimpl = (OADBTransactionImpl)oaapplicationmoduleimpl.getOADBTransaction();
    if(isLoggingEnabled(1))
    writeDiagnostics(this, "oadbtransactionimpl.getBusinessGroupID():"+oadbtransactionimpl.getOrgId(), 1);
    setWhereClauseParams(null);
    setWhereClauseParam(0, String.valueOf(oadbtransactionimpl.getOrgId()));
    super.executeQuery();
    if(isLoggingEnabled(1))
    writeDiagnostics(this, "getRowCount:"+getRowCount(), 1);
    Edited by: 856716 on May 10, 2011 5:59 AM

  • Error while calling standard OAF page from custom Oracle Form

    Hi,
    I am calling standard OAF page from custom oracle form using the following code.
    FND_FUNCTION.EXECUTE(FUNCTION_NAME=>'FUN_TRX_ENTRY_OUT_VIEW_BATCH',
    OPEN_FLAG =>'Y',
    SESSION_FLAG =>'N' ,
    OTHER_PARAMS =>'&ViewBatchID = "' || NAME_IN('FUN_AGIS_LINE_D.BATCH_ID') ||
                        '&CallingFunction = "' || 'MANEXPINQ' ||'"');
    But I am getting this error.
    oracle.apps.fnd.framework.OAException: This request was not processed as the request URL %2FOA_HTML%2FOA.jsp%3Fpage%3D%2Foracle%2Fapps%2Ffun%2Ftransaction%2Fentry%2Fwebui%2FViewOutBatchPG%26OAPB%3DFUN_PRODUCT_BRAND%26OAHP%3DFUN_SSWA_MENU%26OASF%3DFUN_TRX_ENTRY_OUT_SEARCH%26_ti%3D1217029204%26language_code%3DUS%26%26ViewBatchID%20%3D%20%22203148%26CallingFunction%20%3D%20%22MANEXPINQ%22%26CallFromForm%3D%27Y%27%26oas%3DqZqg3tmdEdUNyw_HtskVow.. contained potentially illegal or un-encoded characters. Please try again by submitting a valid URL or contact your systems administrator for assistance.
    Please let me know any thing I missed out here.
    Any suggestion will highly appreciated.
    Thanks & Regards,
    Sunita

    I am using FND_FUNCTION.EXECUTE to call a OAF page from PLSQL in R12. I am getting following error"Error(9,23): PLS-00302: component 'EXECUTE' must be declared"

  • Calling a Standard Form (With the data retreived) from a custom form

    Hi All,
    We have a requirement to call a standard form (form function : QP_QPXPRLMS) from a custom form on a button click.
    we have passed Modifier List header id as parameter..
      FND_FUNCTION.EXECUTE(FUNCTION_NAME=>'QP_QPXPRMLS',
               OPEN_FLAG=>'Y',
               SESSION_FLAG => 'Y',
               OTHER_PARAMS=>'LIST_HEADER_ID_QF = '||:TEST_BLK.MODIFIER_HEADER_ID);     Then, the form opens fine but as in Entry mode.. we want the data to be queried automatically for the passed Header Id.
    I have seen multiple posts on the similar requirement, and followed all the suggestions possible but didnt work.
    1. Is there anything i am missing here. please suggest.
    2. How would we know what are the mandatory parameters to be passed to open another standard form (is there any doc to check that)
    Also, we are unable to open QPXPRLMS.fmb as it is huge and form is getting hanged, any inputs how to pen that?
    Thanks,
    Pavan

    pass parameter using this syntax:
    fnd_function.execute(FUNCTION_NAME=>'DEM_DEMXXEOR', 
                                  OPEN_FLAG=>'Y', 
                                 SESSION_FLAG=>'Y', 
                                 OTHER_PARAMS=>'ORDER_ID="'||param_to_pass1||
                                   '" CUSTOMER_NAME="'||param_to_pass2||'"');
              -- all the extra single and double quotes account for
              -- any spaces that might be in the passed values

  • Link Of a Standard Form to a Custom  Form --- Urgent !!

    We are in apps version 11.5.10.2. The Client has custom payslip form suited to their requirement. Now they want a little enhancement feature in the Custom Form.
    The custom pay slip form can be queried by employee number. From then you can get the appropriate payperiod where you can navigate to any of the pay periods and view the payslip for that period.
    Now they want to add a button to the custom form so that on the click of the button the element entries form for the respective pay period is opened. Now we have added a button and gave the reference to the standard form. We do not know exactly how to reference the exact period entries and for the same employee number. Currently it is poping a find window asking the employee number.
    Form gurus...please throw ur light on this ...awaiting ur replies and suggestions.

    do they want to see the element entry form (so Read Only), or do they want to kick off transactions into that element entry form?
    When Read Only, you can use also the Element History folder, or a custom subform, based on the element entries view.
    If not, you have to rework your original custom form, so that she is TaskFlow compatible, and then inheritance should take place by itself.

  • Invoice Layout configuration for a specific customer within a sales org.

    Hi,
    I have a situation where the invoice layout need to be configured for one particular customer within a sales org in a different style from rest of the customers.
    Could someone let me know how to do it please.
    Thanks.
    Best regards,
    Srikrishhna

    By u201Cinvoice layoutu201D, I assume you mean layout of the print output.  If so, then
    u2022     Set up a new output type as a copy of your standard output type.  Assign an access sequence containing customer. 
    u2022     Add the new type to your active output determination procedure and assign an appropriate requirements routine (if any). 
    u2022     Assign a layout set (smartform, sapscript, adobe, etc.) that meets your customeru2019s requirements. 
    u2022     Maintain the condition record.
    And away you go.
    Regards,
    zKen

  • Standard form :'Customer  invoice' and 'customer Invoice : Property Damage'

    Hi
    Can someone tell me what is the standard form for 'Customer  invoice' and 'customer Invoice : Property Damage'.? Is there any config involved.
    I'll reward points for any helpful answer.
    -Nash

    LB_BIL_INVOICE is the Standard SMARTFORM for Invoice  Document
    you need to do Output Type/Control configuration(TCode NACE)

  • How to call standard form in custom form

    sir,
    please help me .in calling standard form through custom form
    Edited by: user11996389 on May 15, 2012 10:00 PM

    Hi,
    As far as I understand, you have a standard form, S and a custom form, C. You want to call S from C.
    The API mentioned in my previous reply is the standard way to call one form from another in Oracle Apps. You may invoke this API from a trigger like WHEN-BUTTON-PRESSED. The API has a few mandatory parameters which you need to provide in order to successfully call the form. As mentioned, please refer to the Developer's Guide.
    If you have any doubts or face any problems/errors, post the details here. Forums members will be reluctant to help if you do not put in some efforts of your own.
    Regards,
    Sujoy

Maybe you are looking for

  • Ipod mini not updating in itunes on emac

    my mini wont update on my emac in itunes, we have the latest updates for both ipod and emac itunes etc..... first it says that the ipod is connected with another lib and if i want to have the ipod use my library (which is the only lib it has ever bee

  • Is the best practice to use database views or view objects?

    Hi everyone, If the option is available, is it preferable consolidate as much data as possible into a database view instead of doing this through view view objects? It seems the answer would be yes, but I would like to hear the pros and cons related

  • Data Model best Practices for Large Data Models

    We are currently rolling out Hyperion IR 11.1.x and are trying to establish best practces for BQYs and how to display these models to our end users. So far, we have created an OCE file that limits the selectable tables to only those that are within t

  • I want help to design my front end view

    I have decided frontend view of my software.. 1) first login form will appear. once it is authenticated i want to close that window and open the main frame. 2) that main frame contains menu bar and menu items. 3) below that menu bar i still have spac

  • Problem with Nike plus and running in non-Nike sneakers

    I love running with my Nike plus and my itouch, but I've been having trouble with my Nike plus logging incorrect mileage when I attach the foot sensor to my non-Nike running shoes (in one of those little velcro pouches secured to the shoelaces). For