Standard OA PAGE Extension

Hi All,
I am quite new to OA frame work. I got a requirement where in need to change the behaviour of check box of a stanard OA Page.
When ever the page is opened the check box is being checked, we want to make this unchecked.
We tried to do personilization but it does not work, now we want to do this change at what level ?,I feel Extending the Existing VO is the correct option.
But what are the steps in doing so, I mean what files i need to FTP and and where to make the changes.
Please let me know.
Thanks
Kumar.

Hello Kumar,
Please do the following steps:
1. Under your jdev myclasses directory, place the seeded CO in similar folder structure. In your case you need create the following folder structure under myclasses folder:
<<Jdev my classess>>/oracle/apps/pos/sbd/webui
2. Now create a custom CO( a new java file) in Jdev under the following path:
<<your custom company code>>/oracle/apps/pos/sbd/webui
For e.g. if I work for a company abc, my custom CO will be in the following package:
abc.oracle.apps.pos.sbd.webui.CustomCOName
3. You have to write similar code in your custom CO:
package abc.oracle.apps.pos.sbd.webui;
import oracle.apps.fnd.common.VersionInfo;
import oracle.apps.fnd.framework.webui.OAControllerImpl;
import oracle.apps.fnd.framework.webui.OAPageContext;
import oracle.apps.fnd.framework.webui.beans.OAWebBean;
import oracle.apps.pos.sbd.webui.SuppNwActCO;
public class ABCSuppNwActCO extends SuppNwActCO
public static final String RCS_ID = "$Header$";
public static final boolean RCS_ID_RECORDED =
VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
public void processRequest(OAPageContext pageContext, OAWebBean webBean)
super.processRequest(pageContext, webBean);
OAMessageCheckBoxBean checkBox = (OAMessageCheckBoxBean)webBean.findChildRecursive("<<chk box name>>");
     if(null != checkBox){
          checkBox.setChecked(true);
public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
super.processFormRequest(pageContext, webBean);
Please edit the package , class name and the check box bean details in the above code.
4. Once you complete this, compile the file and put the class file in /Instance/apps/apps_st/comn/java/classes/<<custom identified>>/oracle/apps/pos/sbd/webui
5. You have to do a personalization as mentioned in the link I gave in my previous update.

Similar Messages

  • Error while calling standards OAF page from Custom page

    Hi,
    Using personalization, from a custom page, I am trying to open a standard Iexpense page using the following inthe Destincation URI in messagestyledtext as
    OA.jsp?OAFunc=OIEMAINPAGE&startFrom=ActiveSubmitted&ReportHeaderId=380705855&OIERefreshAM=Y
    The original page has OA.jsp?OAFunc=OIEMAINPAGE&startFrom=ActiveSubmitted&ReportHeaderId={!ReportHeaderId}&OIERefreshAM=Y in the message styled text
    But when click on this from the custom page, the page opens with tabbed regions above and then gives error as below. Please let me know how to resovle this issue.
    Profiles 1) FND_VALIDATION_LEVEL and 2) FND_FUNCTION_VALIDATION_LEVEL are already set to None.
    Error is:
    Page Security cannot be asserted. The page has either expired or has been tampered. Please contact your System Administrator for help.
    Thanks,
    Srikanth

    Hi,
    R u still facing the issue?
    If So can you please tell me:
    Have u added your called function to the current user? That means by navigating to the responsibility you can access the same page directly, with out doing any transaction? If so then create your custom function with your required URL and attach to a menu ; then check if you are able to view that page from the menu navigation?If these thing is not working then I think you need to create a custom page that will extend the std region , that time hopefully it will work.
    Please post your result/thought!!
    Regards
    Apurba K Saha

  • 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 Web service from Standard OAF Page.

    Hi All,
    how to call a webservice page from Standard OAF Page and get back the response from that webservice.
    Can anyone please give me the process how to do it.Can anyone please provide code it will helpful to me.
    Not using any PL/SQL API's.only through web services how to do it?.
    Thanks in Advance.
    Regards,
    Ajay.

    look in the tutorial the web-client example or the dii interface example... and read all about jaxrpc ...
    bye
    J

  • Running a Standard OAF page in Jdeveloper

    Hi,
    I have configured Jeveloper and designed some of the sample OAF pages. Now i want to view the Standard Supplier Page into my jdeveloper so that i can learn how to modify the standard pages.
    Can you let me know the step by step procedure of how to get all these files from server and where to paste it
    Thanks in advance.
    Regards,
    Yadnesh

    Hi,
    You need to FTP all the files that are related to your page.
    What is your exact requirement ? You can make the changes to the page even without FTP all the files and it depends on your requirement.
    For example, if you want to extend a controller, then just move the standard controller and create a new java class extended from that controller. Later you can compile the same on unix box. So there is no need to FTP all the files.
    Yes, whatever class file you FTP, you need to put those at \jdevhome\jdev\myclasses.
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How do I shrink a photo in Iphoto to fit a standard 8X10 page? I read that I should right-click in the Customize Preview page, but nothing happens

    How do I shrink a photo in Iphoto to fit a standard 8X10 page?  I tried to follow Old Toad's advice to right-click the image on the Customize screen, but absolutely nothing happened.

    You must think I'm an idiot, Larry, because you have been incredibly precise about your instructions.  However, as I keep saying, when I get to the "customize" screen, and I right-click the preview image, absolutely nothing happens.  I don't know what is wrong, but I can understand why you would give up on me. I simply CANNOT get the option "fit to frame."  Thank you so much for trying.  I think I had better give up.

  • How to modify a standard OAF page in version R12

    Dear all,
    I have a requirement to modify a standard OAF page(can't implement by personalization),and my EBS version is R12,but i have not the source java code of the page,I try to decomplie the class file by a sofeware named 'YingSoft' , as the r12's jdk is 1.6,will have some errors.
    So,anybody know how to accomplish or have other decompile software?
    thanks,
    Ming Tao.

    Hi Ming,
    I use Java Decompiler (JD) in it works fine for me. Also, I guess you know it already, but just in case, there is a detailed explanation on how to extend standard OAF pages in the OA Framework Developer's guide and how to deploy the changes.
    Regards.

  • Ibooks author, how do I get the standard book pages background into my document. I have published one book so far which does not display with a book pages background or options for font size.

    ibooks author, how do I get the standard book pages background into my document. I have published one book so far which does not display with a book pages background or options for font size.

    No on the book title, no problem there.
    The issue is: my book pages appear as on white paper, no background that resembles a open book and also no option to change fonts. The book was created in iBooks author, there was a problem going with the "Publish" menu route so I was instructed my Apple to "export" the file and submit that. I think that's the problem after reading that iBooks author is a hybrid epub file.
    Thanks for getting back to me.

  • Standard Code Pages in Non-Unicode System

    Our System is Non-Unicode System , Single Code page configuration and Standard Code Page ISO8859-1(Latin-1) is Active.
    Is it only 1 standard code page ISO8859-1(Latin-1) WILL BE ACTIVE or also other code pages ISO8859-2,ISO8859-5,ISO8859-7,ISO8859-8,ISO8859-9 also be ACTIVE in the system , and it will call the code page if the installed Europe Language call for.
    Because we require additional Europe languages to be support in our current non-unicode system.
    Thanks & Regards,
    Gopal

    Hello,
    please be more specific which application. As I know there is also Latin-2 support for EBP (non-unicode) while for CCM from release 2 SAP added Latin-2 support.
    SRM is not translated much more from "big 5" languages, but there was effort to translate to Hungarian as I know.
    HTH
    Gordan

  • Performance Test on OAF Page Extensions

    Hi ,
    We have extend the seeded page controller&VO to achieve the business requirement.
    Could you please suggest/update me if we have any free ware to do the performance test on OAF page extension and customization's.
    Regards,
    Venkatesh Chandra.

    Hi Gaurav,
    I followed your instruction and all it does is display the pages as "tabs" horizontally on the page. What I actually want is a Side bar on the left hand region exactly like the instructions and example in the Framework developers guide. The set up for a sidebar (according to the developers guide) is much more involved as I posted in my first message above.
    An example of a side navbar in e-Business suite can be found under Functional Administrator responsibility > Personalization tab > Import/Export.
    I have looked at the menu definitions for this page/function, and I've also had a look in the Page XML but I cannot replicate it with my custom page. The setup used for that example page also does not conform to the OAF developers guide instructions.
    So again in the absence of any useable examples in eBusiness Suite I'm rather stuck with the OAF developer's guide so any tips would be gratefully accepted.
    Rgds
    Shankar

  • Extend a Standard Oracle Page

    Hi,
    Has anyone managed to extend a Standard Oracle Page. I have a requirement to extend Customers Online Page
    /oracle/apps/imc/ocong/party/organization/webui/ImcOrgOverview
    .. All I need to do is to add a new region in the page .
    I am able to achieve the result by modifying the exisitng page
    ImcOrgOverview and importing it . But I dont want to do that , as the solution wont last an upgrade .
    Any Suggestions?

    If your customer is on 11.5.10.2CU of OAFramework then they can extend an existing region or a new region in to a Oracle seeded page. You can use the personalization framework to add a new item 'flexibleLayout' and this will allow you to add a 'flexibleContent' under the flexibleLayout using personalization.
    When adding the 'flexibleContent' you need to set the extends property pointing the region which you want to extend.
    However you need to keep in mind that the region which you want to extend should work standalone otherwise you will run in to errors.
    You can find the relevant document on the framework personalization guide for CU2 and above in the create new item section.

  • Can I use a standard Portal page as Single Sign-On page?

    Hi all
    IHAC that would like to be able to maintain the login page. I have told them that it might be difficult as the login page is a jsp file and not a standard portal page. So now I'm wondering if it would be possible to create a standard portal page with a standard login portlet and use this as a login page. I have tried creating a page and updated WWSSO_LS_CONFIGURATION_INFO$ but no luck :-(
    Environment: OracleAS 10g R2 (10.1.2.0.2)
    Thanks in advance
    Claus

    Yes. that makes sense :-)
    I'm afraid that you will be unable to replace the current SSO JSP page with a portal page. The SSO JSP not only draws the login screen, it also generates the site2pstoretoken for you. This is necessary for the login process to complete.
    What about having a public page with a page link to a customized portal page with login portlet to replace the SSO page?

  • Oracle apps 11i - customization in Create Timecard link in Standard OTL page

    Hi everyone,
    I have got a requirement to add some functionalities in oracle 11i - Create Timecard link in standard OTL page .Mentioned below is the Requirement.
    When the engineer clicks the 'Save' button in the create timecard link in OTL page, it should save the time card and check the status of the timecard.If the specific timecard being saved is either "approved" or
    "submitted", a pop-up notification should warn the Engineer.
    Warning:
    "Warning – By clicking yes, all previously submitted versions of this timecard will be retracted. The Timecard will need to be resubmitted and reapproved. Are you sure you wish to continue? Yes, No"
    If engineer clicks YES, then an email notification should send to engineer and Manager ,notifying them that the timecard has been retracted and will need to be resubmitted.
    If the timecard has never been saved before or is currently pending or rejected let the engineer save the timecard without showing the warning and normal process should follow.
    Can anyone help me out here.I wanted to know the complexity of the issue.
    Which method should be adopted to do this.? Can anyone tell me which logic needs to be implemented here.
    Thanks,
    Sukanya

    Hi Kristofer,
    When the Employee pressed the Save button and if the status of timecard is Approved/Submitted , a popup should display.
    I have created a page with two buttons (Yes and No) with  warning  "By clicking yes, all previously submitted versions of this timecard will be retracted. The Timecard will need to be resubmitted and reapproved. Are you sure you wish to continue?"..
    If Employee pressed Yes...I need to save the timecard and normal process should follow..
    Here even if I called the PFR of the TimecardListCO(Standard) controller, It's not working.
    Is there a way to create the page dynamically with two buttons ?So that I can write the code in the extended controller itself rather than creating a new page.
    Which method should I follow to implement this?
    Kindly provide your suggestion...
    Thanks,
    Sukanya

  • Customize a standard OAF page

    i have one requirement in which i have to customize a standard OAF page.
    i have downloaded all .class files and im able to run standard page on local.
    But as per the requirement we need to develop the custom page similar to standard page
    and then add the additional functionalities to it . Is there any way so that we can use the existing VO's,VL's,AM's ?
    Thanks & regards
    Aniket

    thanks gyan
    but when im trying to create a new same VO im able to create it but what about java & xml files ?
    should i copy the code from xml and java files and paste into newly created java & xml files by changing the package names?
    Thanks
    Aniket

  • MS Front Page Extension Problem

    I am managing an old website that was built before using
    Dreamweaver.
    When I try to connect to the site through Dreamweaver II see
    a message on the site;
    Important information:
    By activating MS Frontpage Extensions you can no longer
    access your
    website with FTP. Please make sure that the MS Frontpage
    Extensions
    are disabled.
    If you still have problems after disabling the MS Frontpage
    Extensions please contact our support.
    Many thanks!
    I do not have the Front Page extension in my Dreamweaver
    Extension Manager.
    Is there something in the old code that causes this problem?
    Is it something that I can eliminate in a Dreamweaver edit of some
    kind?
    TIA, Dave Harding

    > By activating MS Frontpage Extensions you can no longer
    access your
    > website with FTP.
    This says about everything. Because the site was created with
    Microsoft
    FrontPage, and it uses FrontPage extensions, the host's FTP
    access has been
    disabled (FP does not use FTP, and in fact, connecting with
    FTP will break
    the FP extension's tight link with the files on the site). In
    order to
    maintain this site with DW now, you would have to ensure the
    following -
    1. All functions in the current site that utilize the FP
    Server Extensions
    have been replicated in your DW pages - this would include
    Form
    processing/emailing, guestbooks, etc.
    2. FP will never again be used to maintain the site
    3. You ask the host to enable FTP connection, and this has
    been done
    Otherwise, you are going to watch a train wreck happen.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "hardingdg" <[email protected]> wrote in
    message
    news:[email protected]...
    >I am managing an old website that was built before using
    Dreamweaver.
    >
    > When I try to connect to the site through Dreamweaver II
    see a message on
    > the
    > site;
    >
    > Important information:
    > ----------------------
    > By activating MS Frontpage Extensions you can no longer
    access your
    > website with FTP. Please make sure that the MS Frontpage
    Extensions
    > are disabled.
    > If you still have problems after disabling the MS
    Frontpage
    > Extensions please contact our support.
    > Many thanks!
    >
    > I do not have the Front Page extension in my Dreamweaver
    Extension
    > Manager.
    >
    > Is there something in the old code that causes this
    problem? Is it
    > something
    > that I can eliminate in a Dreamweaver edit of some kind?
    >
    > TIA, Dave Harding
    >

Maybe you are looking for

  • Display different level for same hierarchy value in BO 4.0

    Hi Expert, I have one question for Webi for BO 4.0 We have one hierarchy in BW side and we hope to display differet level in same report for different column For example, column A is for level 6. column B is for level 7. Do you know how to releaze th

  • Can I connect more than one bluetooth headset at a time?

    Just got a Panasonic Bluetooth enabled phone, paired fine with the device.  But each time I leave/come back to the house I have to set in settings which headset I want to use.

  • How to change the size of the thumbnails in Firefox 33?

    In Firefox 33, the thumbnails on the new tab are huge. i want to see 9 but i only see 3. How can I change the size of the thumbnails to restore the way they llok like in earlier Firefox versions?

  • PKCS#7... PKCS#12... X.509... JKS... Oh my God !!!

    Hi guys. I've developped a S/MIME application using BouncyCastle API's. Could anybody tell me what is the difference between PKCS#7, PKCS#12, X.509 and JKS standards ? What ones are adopted by S/MIME standard ? Thanks in advance.

  • Offset Path No Longer Works Ai 17.1.0 Windows)

    I've just noticed--and had it confirmed by two others--that Effect > Path > Offset Path produces no effect in Illustrator CC (17.1.0) in Win7x64 and Win8. Activating the Preview option in the Offset Path dialog shows no effect. Clicking OK to apply a