Extended CO not working

Hi ,
I have extended CashAndOtherListCO which is the controller class associated with Receipt Based Tab of I- Expense Responsibility.
But the respective log statement are not getting printed when i am enabling Diagnostics.
Kindly provide inputs regarding the same .
I am Using Below Code :
package xx.oracle.apps.ap.oie.webui;
import java.io.Serializable;
import oracle.apps.fnd.framework.webui.OAPageContext;
import oracle.apps.fnd.framework.webui.beans.OAImageBean;
import oracle.apps.fnd.framework.webui.beans.OAWebBean;
import oracle.apps.fnd.framework.webui.beans.table.OATableBean;
import oracle.apps.ap.oie.entry.server.* ;
import oracle.apps.ap.oie.webui.CashAndOtherListCO;
import oracle.apps.fnd.framework.* ;
import oracle.apps.fnd.framework.server.* ;
public class xxdpsExtendCashAndOtherListCO extends CashAndOtherListCO
public xxdpsExtendCashAndOtherListCO()
public void processRequest(OAPageContext pageContext, OAWebBean webBean)
if(pageContext.isLoggingEnabled(2))
pageContext.writeDiagnostics(this, "start processFormRequest1", 2);
OAApplicationModule am = pageContext.getApplicationModule(webBean);
throw new OAException ("processFormRequest2 ");
public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
String strClassName = xxdpsExtendCashAndOtherListCO.class.getName();
if(oapagecontext.isLoggingEnabled(2))
oapagecontext.writeDiagnostics(this, "start processFormRequest3", 2);
Serializable aserializable[] = {
"RECEIPT_BASED"
OAApplicationModule oaapplicationmodule = oapagecontext.getRootApplicationModule();
int i = 0;
int j = 0;
boolean flag = false;
try
{        String str1="";
String str2="";
if("addRows".equals(oapagecontext.getParameter("event")))
if(oapagecontext.isLoggingEnabled(2))
oapagecontext.writeDiagnostics(this, "start processFormRequest xyz1", 2);
} else
if("update".equals(oapagecontext.getParameter("event")))
str1 = oapagecontext.getParameter(EVENT_PARAM);
str2 = oapagecontext.getParameter(SOURCE_PARAM);
oapagecontext.writeDiagnostics(strClassName,
"str1 Value:" + str1, OAFwkConstants.STATEMENT);
oapagecontext.writeDiagnostics(strClassName,
"str2 Value:" + str2, OAFwkConstants.STATEMENT);
throw new OAException ("event1 "+ str1+ "source2 "+str2);
catch(OAException oaexception1)
Any inputs would be highly appreciated.
Regards
Kumar

I have removed super intensionally , to check whether its printing any thing when i am enabling Diagnostics.
The Instance copy is working as it is if i am attaching the extended CO at Site Level also.
Regards
Kumar

Similar Messages

  • Content aware move and extend tool not working in PSE12

    Photoshop Elements 12 content aware move and extend tool not working with Yosemite upgrade.

    Have you deleted the preferences and the saved application states?
    A Reminder for Mac Folks upgrading to Yosemite | Barbara's Sort-of-Tech Blog

  • Just installed new Time Capsule now my airport express range extender will not work any suggestions

    Just replaced my Time capsule that died with a new one now my airport express range extender won't work.  Any sugesstions?

    Thank you William, I reconfigured the Airport Express and it works perfectly.  Sorry I did not get back to you sooner but I came down with a bad cold.
    Thank You, and Merry Christmas and a Happy New Year.
    raiderron

  • Extended Notification not working for Dialog Task with agent assignment

    Hi Friends,
    I have an issue where I have a user decision step and a sub workflow contains a dialog task with agent assignment.
    Extended notification is configured properly and is working properly for user decision step but its not working for the dialog task created as an activity.
    Batch jobs are configured to run report SWN_SELSEN.
    I was checking SDN and found this discussion handy :
    http://help.sap.com/saphelp_nw73ehp1/helpdata/en/4f/3bed495cc018c8e10000000a42189e/content.htm
    One thing that wonders me is that notifications show up in SOST 4-5 seconds before the user decision step starts execution.
    See screenshot from SOST and WF log.
    SOST log :
    2 questions here: Why is notification not being sent for Dialog task?
                              Why is user decision notification being sent that early even before the User decision task starts execution?
    Please provide your valuable inputs.
    Regards,
    Sandip

    An activity step with agents is supported by the extended notifications if it is a decision task or not, I have used it many times and it works well just no approval/rejection links if it's not a decision task.
    From your screenshot you can see that a mail has been created and is found in SOST, usually this cases are problems with the mail server or connection to it, check the mail settings in the SMTP node in transaction SCOT, also check with mail server team if there is a block to/from the SAP server.

  • Apple tv patch 6.1.1 extended desktop not working

    My apple tv just upgraded to patch 6.1.1(6698.99.19)  from 6.1(6698.99.19)
    I have an Ipad Mini2 which I normally use to view movies on my tv.
    I will select the apple tv, (with air play) and play the movie using Moliplayer on the Ipad mini2.
    I was able to play from a mac pro I have in my office if I wanted to.
    This used to work great as the apple remote controlled the movie and you could set the ipad mini2 down on the desktop.
    After the patch, the above does not work. What happens, is the movie is not played.. however an audio icon pops up on the apple-tv
    and you can hear the movie audio. 
    So after this patch, you can only view the movie with mirrored desktop selected after this latest update.
    Both the apple mini2 and the mac pro produce the same result.
    Additional steps..
    I have taken the apple tv and used Itunes to re-install the software with a USB cable. Unfortunately .the same result.
    I assume I have a bug I am reporting that can be logged.
    Additionally. is it possible to put back the older version of the software so the apple TV will work as before?
    Thanks

    I have the exact same problem aswell. Did the update from 6.1 to 6.1.1 on my Apple TV 3rd gen. When using my iPhone 5 showing pictures och videos from my camera roll it works just fine over Airplay. So the problem is not the transmission. When playing a video from my Synology NAS using VLC for iOS nothing happens on my Apple TV like it did before the update!  Annoying
    Thanks

  • Router.attach(String, Class ? extends ServerResource ) not working properly

    I am having getting router.attach() to work properly
    Server server = new Server(Protocol.HTTP, 8182, new TestServerApplication());
    server.start()
    Here's the code that's in the client
    ClientResource clientResource = new ClientResource(
    "http://localhost:8182/contacts/123");
    The following code does NOT work
    router.attach("/contacts/123", ContactServerResource.class);
    Exception in thread "main" Not Found (404) - Not Found
    The following code does NOT work
    router.attach("/contacts/123", ContactServerResource.class, Router.MODE_BEST_MATCH);
    Exception in thread "main" Not Found (404) - Not Found
    * using attachDefault results in the call being handled properly
    // success!
    router.attachDefault(ContactServerResource.class);
    I also tried something different rather than using a Server.
    Component component = new Component();
    // Add a new HTTP server listening on port 8182.
    component.getServers().add(Protocol.HTTP, 8182);
    // Attach the sample application.
    component.getDefaultHost().attach("/contacts/123",
    new TestServerApplication());
    component.start();
    In this case router.attach("/contacts/123", ContactServerResource.class) is still called and it still fails to work. You have to attachDefault() to get it to work
    I can't think of anything else to try. Anybody have any ideas? thank you
    java

    Try running your query directly into the database and make sure it actually returns a row. This may get you started with the debugging process. Are you doing any stacktraces or System.out.println(theException); in your catch blocks? This may also help if there is an excpetion. You may need to consult your server logs (unless you have some sort of console running) in order to see the results of any prints.

  • Photoshop CS6 extended do not working

    My name is Sara  Lopez Martin, from Madrid. I have an educational license CS6 Production Suite.
    All suite programs work fine except Photoshop  which does not work.
    Open but not save formats, does not work in 3D.
    I uninstalled the entire Suite and I have reinstalled and everything works except photoshop.
    My computer is an i7, Nvidia Quadro 4000, 24 gb of RAM. OS Windows 7 Professional 64 bit.
    Can anyone help me?
    Thank you.

    Thanks for your interest and support. I can not pay rent for the CC software.
    I'll keep looking for the problem.
    Today I updated the CS6 suite but the problem persists.

  • After installation photoshop cs5 extended is not working properly

    don't know what the problem is?

    don't know what the problem is?
    And neither do we. Sorry, you need to provide much more information - operating system, system specs, what is not working.
    Mylenium

  • Reader Extended PDF not working for some users

    I've created a document in Adobe X Pro and saved it as a Reader Extended PDF with Enabled Commenting & Markup. Most users are having no problem adding comments (by attaching a file) but I have a few users having issues (one with Adobe Reader 9 for Mac and one with Adobe Reader X for Windows). They are seeing the bar at the top telling them they cannot save data in the form, and they do not have access to any of the commenting or markup features.
    Thoughts?

    Which web browsers are they using to download the PDF file?  If you send them the Extended PDF file via email are they able to connect to the Shared Review?

  • Airplay display issues: "extend desktop" not working properly. Secondary display continues to mirror.

    Whenever I turn my airplay display on and set it to "extend desktop," my secondary display (TV) continues mirroring my mac book pro (hereinafter MBP). It doesn't fully mirror my MBP, but my secondary display registers every time I switch between my desktop 1 and my full screen apps. Moreover, When I do switch to a fullscreen app on my MBP, I get a blank (blue-ish) screen on my TV.
    Any solutions!?!
    Additionally, "extended desktop" for my Airplay display worked properly when Mavericks was first released.

    Try this:
    Click on the Apple TV Icon on the top toolbar
    Then, select "Mirror Built in Display" instead of extend desktop
    In the same menu under "Match Desktop size to:" select "Apple TV" (or keep it on "built in display if that works"
    This solved a similar problem for me. 

  • Extended Rights not working in Reader X - resetting form

    Hi,
    To make the problem clear i will put it in steps
    1. I have a form created in LiveCycle Designer.
    2. I save it in two ways: as a static and dynamic file pdf. (to test both options)
    3. I reopen it in Adobe Acrobat
    4. Save it as a copy with extended rights -> enabling other  functions.
    5. Reopen it in Reader - fill it with data and save it as two files - one as a copy of original document and 2nd as the same file. (to test both options)
    6. I reopen it in Reader and the data is not there - the form is empty.
    7. Funny thing is when i open it in Photoshop the data is there. When i open it in Ilustrator it is not.
    The form is simple, just 3 text fields, one required, one optional and one recommended.
    Please help, I've been fighting this for a day now. I have created more advanced forms in the past and did not have issues like this one.
    Thanks!

    Additional info regarding this issue:
    I am testing it on my PC. We have the creative cloud license so all is updated and complete. I was testing it in different ways, saving all the versions (static, dynamic, with and without extended rights) and the problem sticks. I have noticed that the file with extended rights weight a bit more than original file. Details below:
    1. straight from livecycle: 832KB
    2. opened in Acrobat, saved as copy 832KB
    3. opened in Acrobat, saved with extended rights 844KB
    4. opened in Reader, saved with filled data 864KB
    5. opened the same file with Reader, it is empty so i save it as a copy - 864KB
    6. opened it in Reader & Acrobat - it's empty; opened it in Photoshop - all data is there...???

  • CS5 extended suddenly not working

    Message is Activation limit reached for Adobe PS CS5 extended.  I have been using this for probably 2 years now and suddenly this happens.  Says this is the 3rd computer but this is the same computer I have been using it for.    So what shall I do? 
    Beverly Hanson
    [ serial number removed by forum host - do NOT post serial numbers in public! ]

    Contact support to reset activations. Something invalidated your second activation which could be a simpel technical glitch or some setting you changed on your system.
    Mylenium

  • Extended Controller not working

    Hi
    I have extended the controller and tried to call a pl/sql package and tried to insert data into a custom table. I have attached the controller through personalization at site level. and moved the .class file to $JAVA_TOP. The page is not showing any error. I added a field on a page and try to save the data to a custom field.
    When i try to save the page it is showing me a message that Successfully saved!. but data is not getting populated in Custom table.
    CO code:
    package oracle.apps.ar.creditmgt.application.webui;
    import java.sql.Connection;
    import java.sql.Types;
    import oracle.apps.ar.creditmgt.application.webui.OCMAddFinDataCO;
    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.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.webui.beans.layout.OAQueryBean;
    import oracle.jbo.Row;
    import oracle.jbo.domain.Number;
    import oracle.jdbc.driver.OracleCallableStatement;
    import oracle.sql.CHAR;
    public class MANOCMAddFinDataCO extends OCMAddFinDataCO {
    public MANOCMAddFinDataCO() {
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    super.processRequest(oapagecontext, oawebbean);
    OAViewObject oaviewobject3 = (OAViewObject)oapagecontext.getApplicationModule(oawebbean).findViewObject("CaseFoldersVO");
    if(oaviewobject3 != null)
    Row row5 = oaviewobject3.first();
    if(row5 != null)
    Number pCaseFolderId = (Number)row5.getAttribute("CaseFolderId");
    oapagecontext.putTransactionValue("CasefolderID", pCaseFolderId);
    OAViewObject oaviewobject = (OAViewObject)oapagecontext.getApplicationModule(oawebbean).findViewObject("creditAppFinancialDataVO");
    if(oaviewobject != null)
    Row row1 = oaviewobject.first();
    if(row1 != null) {
    Number pFinDataId = (Number)row1.getAttribute("FinancialDataId");
    oapagecontext.putTransactionValue("FinDataID", pFinDataId);
    public void processFormData(OAPageContext oapagecontext, OAWebBean oawebbean)
    super.processFormData(oapagecontext, oawebbean);
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAQueryBean queryBean = (OAQueryBean)webBean.findChildRecursive("OCMBtnLayOutRN");
    // String apply = queryBean.getGoButtonName();
    if (pageContext.getParameter("Apply") != null)
    Integer pcaseFolderId = (Integer) pageContext.getTransactionValue("CasefolderID");
    Integer pfinDataId = (Integer) pageContext.getTransactionValue("FinDataID");
    String pSubDebt = pageContext.getParameter("SubordinatedDebt");
    Connection conn = pageContext.getApplicationModule(webBean).getOADBTransaction().getJdbcConnection();
    try
    OracleCallableStatement cs = (OracleCallableStatement)conn.prepareCall("begin OCM_FIN_DATA_PKG.Insert_Fin_Data(:1, :2, :3,:4); end;");
    cs.setInt(1, pfinDataId);
    cs.setInt(2, pcaseFolderId);
    cs.setString(3, pSubDebt);
    cs.registerOutParameter(4,Types.CHAR);
    cs.execute();
    CHAR outP = cs.getCHAR(4);
    cs.close();
    if( outP.equals('S'))
    throw new OAException("Success");
    else{
    throw new OAException("Failed to Insert");
    catch (Exception exception)
    throw new OAException("Error in Connection");
    Package:
    CREATE OR REPLACE
    PACKAGE BODY OCM_FIN_DATA_PKG
    AS
    PROCEDURE Insert_Fin_Data
    p_finacial_id NUMBER,
    p_casefolder_id NUMBER,
    p_SubDebt NUMBER,
    x_status OUT VARCHAR2)
    IS
    BEGIN
    FND_FILE.PUT_LINE ( FND_FILE.LOG,'Before Insert: '||p_finacial_id||'; Casefolder id:'||p_casefolder_id||'; Subordinate Debt:'||p_SubDebt ) ;
    INSERT
    INTO MAN_OCM_FIN_DATA
    Financial_data_id,
    Casefolder_Id,
    Subordinated_Debt
    VALUES
    p_finacial_id,
    p_casefolder_id,
    p_SubDebt
    commit;
    x_status := 'S' ;
    FND_FILE.PUT_LINE
    FND_FILE.LOG,'Inserted Successfully '
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    x_status := 'E' ;
    NULL;
    FND_FILE.PUT_LINE
    FND_FILE.LOG,'No data for p_finacial_id = '||p_finacial_id||'; Casefolder id:'||p_casefolder_id||'; Subordinate Debt:'||p_SubDebt
    WHEN OTHERS THEN
    x_status := 'E' ;
    FND_FILE.PUT_LINE
    FND_FILE.LOG,'Error related to p_SubDebt - '||p_finacial_id||'; Casefolder id:'||p_casefolder_id||'; Subordinate Debt:'||p_SubDebt||'ERR'||SQLERRM
    END Insert_Fin_Data;
    END MAN_OCM_FIN_DATA_PKG;
    show errors;
    Please tell me if there is any error in what i did. Please tell me why the data is not being populated in custom table!.
    I tried to run an anonymous block and it was successful!.
    DECLARE
    x_sts VARCHAR2(1);
    a NUMBER := 11111;
    b NUMBER := 22222;
    c NUMBER := 33333;
    BEGIN
    MAN_OCM_FIN_DATA_PKG.insert_fin_data(p_finacial_id => a, p_casefolder_id => b , p_SubDebt => c, x_status => x_sts );
    dbms_output.put_line('Status:'||x_sts);
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line(SQLERRM);
    END;.
    Please advice on how to go ahead. I am not able to debug as i didnt download the seeded pages into my jdevloper.
    Please help on this,
    Thanks,
    Prakash

    Prakash
    As you said you are able to see the log for processRequest that means your extended controller is being called.That's good.
    I am not able to see the log for the processFormRequest. The data is not being populated in the db tableHave you written some logs there if yes and still you are not able to see them.Do one them move called to super after your code and then check.
    Means your extended controller pfr method would be something like this
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAQueryBean queryBean = (OAQueryBean)webBean.findChildRecursive("OCMBtnLayOutRN");
    // String apply = queryBean.getGoButtonName();
    if (pageContext.getParameter("Apply") != null)
    Integer pcaseFolderId = (Integer) pageContext.getTransactionValue("CasefolderID");
    Integer pfinDataId = (Integer) pageContext.getTransactionValue("FinDataID");
    String pSubDebt = pageContext.getParameter("SubordinatedDebt");
    Connection conn = pageContext.getApplicationModule(webBean).getOADBTransaction().getJdbcConnection();
    try
    OracleCallableStatement cs = (OracleCallableStatement)conn.prepareCall("begin OCM_FIN_DATA_PKG.Insert_Fin_Data(:1, :2, :3,:4); end;");
    cs.setInt(1, pfinDataId);
    cs.setInt(2, pcaseFolderId);
    cs.setString(3, pSubDebt);
    cs.registerOutParameter(4,Types.CHAR);
    cs.execute();
    CHAR outP = cs.getCHAR(4);
    cs.close();
    if( outP.equals('S'))
    throw new OAException("Success");
    else{
    throw new OAException("Failed to Insert");
    catch (Exception exception)
    throw new OAException("Error in Connection");
    super.processFormRequest(pageContext, webBean);
    }Thanks
    AJ

  • Auto extend is not working

    Dear All ,
    PSAPSR3 is auto extended as well as we have more space in file system level,even though PSAPSR3 is not autoextended.
    let me know how can i resolve my problem.
    PSAPSR3     249,520.00     10,190.38     96     YES     250,000.00     10,670.38     96     25     157,305     229,300     ONLINE     PERMANENT
    used % 96 and total used also 96%
    Kindly suggets.
    Edited by: satheesh0812 on Jan 7, 2011 5:04 PM
    Edited by: satheesh0812 on Jan 7, 2011 5:05 PM

    Hi,
    a datafile can do a maximum autoextend up to 32 G.
    The standard installation sets the upper limit to 10000M.
    Obviously you have 25 datafiles that can grow up to 10000M and the actual size is already 249520M.
    So no real potential to grow any more (just 480M left).
    So either
    a) add three new datafiles of size 2000M that can also grow up to 10000M
    or
    b) set your existing datafiles to an upper limit of i.e. 12000M (with brtools -> turn on and maintain autoextend for each datafile).
    Now lets check the maths
    a) would set the total size to 249520M + 6000M and the total autoextensible size to 250000+30000M
    and that would mean 93,5% real and ~85,5% autoextend utilization.
    Doing this would require potentially 30G freespace in your filesystem
    b) Would leave the total size untouched for now and set the autoextensible size to 25*12000M
    bumping down the autoextend utilisation to 75%. This would require potentially 50G freespace in your filesystem.
    Best regards
    Volker

  • Extended desktop not working, but mirror image does

    I am using two identical HP monitors.  I have a Y adapter to connect the monitors.  Which I'm guessing means the computer is only seeing one display since there is only one display output on the back. Can anyone tell me how to get my graphics card to see the second monitor?

    Video Card:
    Radeon HD 5770
    VRAM Type:
    GDDR5 SDRAM
    Details:
    By default, an ATI Radeon HD 5770 with 1 GB of GDDR5 memory is installed in a double-wide, 16-lane PCI Express 2.0 graphics slot.  The card has two Mini DisplayPorts and one dual-link DVI port. By custom configuration it also can be equipped with an ATI Radeon HD 5870 which also has 1 GB of GDDR5 memory for an additional US$200 or two ATI Radeon HD 5770 video cards for an additional US$250. Also see: What are the default graphics cards provided with each Mac Pro? What Mac Pro compatible video cards are available for purchase later? Which video cards have which ports?
    Standard VRAM:
    1 GB
    Maximum VRAM:
    1 GB
    Details:
    Other graphics cards can be pre-installed at the time of purchase or can be installed later.
    Display Support:
    Up to 6 Displays*
    Resolution Support:
    2560x1600*
    Details:
    *Apple advertises that this system is capable of supporting up to six displays but notes that "connecting more than three displays requires installation of two ATI Radeon HD 5770 video cards". Apple also notes that there is "a maximum of two DVI-based displays per graphics card." By default, one ATI Radeon HD 5770 video card is installed and this default video card is capable of supporting three displays -- digital resolutions up to 2560x1600 and analog resolutions up to 2048x1536.
    2nd Display Support:
    Dual/Mirroring
    2nd Max. Resolution:
    2560x1600
    Details:
    The ATI Radeon HD 5770 is capable of supporting three 30-inch displays with a resolution of 2560x1600 in either dual display or mirrored mode.
    http://www.everymac.com/systems/apple/mac_pro/specs/mac-pro-quad-core-3.2-mid-20 10-nehalem-specs.html
    Video (Monitor):
    3
    Details:
    Two Mini DisplayPorts and one dual-link DVI port provided by the default ATI Radeon HD 5770 graphics card. Supports dual display and mirroring modes. This default card is capable of supporting as many as three displays and the Mini DisplayPorts are capable of multichannel audio.
    So, depends on what resolution Monitors you want to use, you need this for upto 1920*1200...
    http://store.apple.com/us/product/MB570Z/B/mini-displayport-to-dvi-adapter
    Or this one for greater resolutions than 1920*1200...
    http://store.apple.com/us/product/MB571Z/A/mini-displayport-to-dual-link-dvi-ada pter

Maybe you are looking for

  • Database export stops with the following warnings.

    Hello, I am doing a Database Export/Import Activity. My DB is MS SQL server 2000 and SAP R/3 (4.6C SR2 , 4.6D kernel). When i try to do a DB export with option split STR and EXT files, my export stops abruptly without giving any erorrs but with a who

  • Can I use my Photoshop CS5 for Windows on my new iMac computer

    I have a genuine Photoshop CS5 I bought for my old, not used,Windows7 64bit computer. Can aI get a transfer of my CS5 onto my new iMac computer.

  • Move/copy a pict, in another folder with history

    Hello All, i did found a way to do this so it can be seen as a wish list item, i would like to be able to move a pic from a folder to another with history on it, let me explain. suppose i work on a shoot serie of car into nature, and find a delicious

  • I forgot the answers of my security questions

    Hello All, I forgot the answers for my security questions, any one knows how to change them. Thanks

  • Task notification script & smart folks

    Has anybody smarter than me done anything cool with the Task Notification Script at /Library/Application Support/Apple/Remote Desktop/Notify I have it sending me notification of success and failure. It would be nice if it included info on: • reasons