XML Publisher Report with PL/SQL

Hi
Like to know how to develop the XML Publisher Report with PL/SQL, i did the following
1. created a pkg like as below
CREATE OR REPLACE PACKAGE BODY APPS.TEST_XMLTAG_PKG AS
PROCEDURE main (errbuf OUT VARCHAR2,
retcode OUT NUMBER
) IS
BEGIN
DECLARE
ctx DBMS_XMLGEN.ctxHandle;
xml CLOB;
BEGIN
ctx := dbms_xmlgen.newcontext('select * from scott.emp');
dbms_xmlgen.setrowtag(ctx, 'MY-ROW-START-HERE');
xml := dbms_xmlgen.getxml(ctx);
dbms_output.put_line(xml);
Fnd_file.put_line (fnd_file.LOG, XML);
END;
END;
END TEST_XMLTAG_PKG;
this pkg produces the output with xml tag in the view log.
I have registered the conc program & xml rtf but it does not produce the output in PDF, , I am not able to get the xml tag when i click the Diagnostics --> View XML.
can you please let me know the next steps involved.
Regards
Yram

I think the problem is because there is no begin and end tag. save the xml from the logfile and open with xml editor or IE.. then you will see the problem.
add Begin and end tag...then you should be fine.. i.e
fnd_file.put_line(fnd_file.output,'<EMP_DATA>'); -- begin Tag
tx := dbms_xmlgen.newcontext('select * from scott.emp');
dbms_xmlgen.setrowtag(ctx, 'MY-ROW-START-HERE');
xml := dbms_xmlgen.getxml(ctx);
dbms_output.put_line(xml);
Fnd_file.put_line (fnd_file.LOG, XML);
fnd_file.put_line(fnd_file.output,'</EMP_DATA>'); -- End Tag
Hope this helps..>Good Luck
Ravi

Similar Messages

  • Invoking XML Publisher Report from PL/SQL

    Hi,
    I have a PL/SQL procecedure which invokes the Concurrent Request for the XML Publisher Report. This one finishes with a warning and I get 'Unable to publish output' when I try to view the output. Exact Error: "Unable to find the published output for this request "
    But if I run the same report using Concurrent program, the Report executes with no error. Also the desired output is coming. I am not sure where I am doing wrong in code.
    My code which invokes the XML Publisher Report (from PL/SQL package)is something like this:
    declare
    x boolean;
    l_no_of_copies varchar2(45);
    l_printername varchar2(45);
    l_print_style varchar2(45);
    l_result boolean;
    y number;
    begin
    x := fnd_request.add_layout (template_appl_name => 'XXTMG', template_code => 'XXT_5001_BOL_T', template_language => 'EN', template_territory => 'US', output_format => 'XML');
    l_no_of_copies := fnd_profile.VALUE ('XXTMG_SH_BOL_REPORT_NO_OF_COPIES');
    l_printername := fnd_profile.VALUE ('XXTMG_SH_BOL_REPORT_PRINTER');
    l_print_style := NULL; --For setting the Printer Options
    l_result := fnd_request.set_print_options (l_printername, l_print_style, l_no_of_copies, TRUE, 'N');
    l_result := fnd_request.add_printer (l_printername, 0);
    y := fnd_request.submit_request ('XXTMG', 'XXT_5001_BOL', '', TO_CHAR (SYSDATE, 'YYYY/MM/DD HH24:MI:SS'), FALSE, 'CH-120079') ;
    end;
    Please let me know where I might be going wrong
    Thanks

    Hi Sumit,
    You can try with this code:
    exec dbms_application_info.set_client_info(org_id)
    exec fnd_global.APPS_INITIALIZE(user_id,resp_id,appl_id);
    declare
    x boolean;
    l_no_of_copies varchar2(45);
    l_printername varchar2(45);
    l_print_style varchar2(45);
    l_result boolean;
    y number;
    begin
    x := fnd_request.add_layout ('XXTMG' --template_appl_name 
              ,'XXT_5001_BOL_T' --template_code
              ,'en' --template_language 
         ,'US' --template_territory
         ,'XML' --output_format
    if (x=TRUE) then
    y := fnd_request.submit_request (
                        'XXTMG'           --application 
                        ,'XXT_5001_BOL'      --program
                        ,SYSDATE          --start_time
                        ,FALSE               --sub_request
                        ,'CH-120079'          --argument1 (Program's Parameter)
    if y>0 then
              dbms_output.put_line('Request ID '||y);
    end if;
    end if; --if (x=TRUE) then
    end;
    Make sure that program has only one input parameter. If program has other parameters then you can pass those parameters like argument1, argument2... etc.
    Now you can see this submited request in your application using your user id. If you able to see your request in concurrent request then you can add printer parameters in this programs.
    You don't need to pass all 100 parameters.
    I am executing many programs/reports using this code.
    Thanks
    Ravi
    [email protected]
    Message was edited by:
    Ravi Tripathi

  • 11i EBS XML Publisher Report with Multiple Data Source

    I need to create XML Publisher report in 11i EBS pulling data from another 10.7 EBS Instance as well as 11i EBS in single report.
    I am not allowed to create extract or use db links.
    My problem is how to create Data Source Connection using Java Concurrent Program.
    The approach I am trying is
    1. create Java concurrent program to establish connection to 10.7 instance.
    2. Will write the SQL queries in Data Tempalete with 2 Data Source 1 for 11i EBS and 2 for 10.7 EBS
    3. Template will show the data from both query in 1 report..
    Is there any other way to proceed using datasource API...
    thanks

    option1:
    The query should be same @ detail level, only the template has to be different for summary and details.
    @runtime, user can choose to see the detail/summary
    Disadvantage, if the data is huge,
    advantage , only one report.
    option2:
    create two separate reports summary and details
    and create diff data and diff layout and keep it as different report
    Advantage, query will perform based on the user run report, summary/detail, so that you can write efficient query.
    Dis advantage , two reports query/template to be maintained.

  • XML publisher report with a template file missing

    I get the following error
    Active template file not found in the template definition <TEMPLATE_NAME> for date <EFFDT>. (235,2515)
    PSXP_RPTDEFNMANAGER.TemplateDefn.OnExecute Name:GetActiveTemplateFile PCPC:15872 Statement:346
    but in
    Reporting Tools > XML Publisher > Report Definition > Template tab
    I did have the setting Effective date, what cause the problem?

    Have a look at following post and run the sql in this post to see if your template definition is missing.
    http://peoplesoft.wikidot.com/xml-publisher-template-file-missing
    You could also run Application Engine PSXPCLEAN to clean orphan rows.
    Are you running the report online or through PeopleCode?
    In last case make sure the effdt is set correct in PeopleCode.
    Also have a look if your server time settings are correct.
    Hakan

  • XML Publisher report with multi sheet excel report

    HI Guys,
    I need help from you all to develop the report in xml publisher where the output should have multiple sheets in excel file can you pls guide me how to do this

    plz see http://docs.oracle.com/cd/E28271_01/bi.1111/e22254/create_excel_tmpl.htm#ext_multsheets

  • Excel Output problem with XML Publisher Report

    Hi Experts,
    I am working on XML Publisher report with EBS 11i and database 9i. My XML Report output type is EXCEL, i have below issue with the output.
    I have column 'quantity' with xml tag <?QUANTITY?>.
    In the XML file it's showing the value '028' for quantity, but when i open the output in EXCEL, it's showing up '28', removing leading zero. I want to show the data in EXCEL also '028'. Could somebody help me how to print the XML Tag value as it is in EXCEL output.
    Thanks in advance.

    Hi, try using this in your template.
    <fo:bidi-override direction="ltr" unicode-bidi="bidi-override"><?QUANTITY?></fo:bidi-override>

  • Problem with data size in XML Publisher report

    Hi Experts,
    I am working on EBS11i and database 9i. I working on XML Publisher reports, i have one XML Publisher report with generating output in EXCEL format. If i submit the report, if the data is huge (like 2.3 million records), it's ending up with warning, but if data is less, it's completing normal. Could somebody help me why it's behaving like this, is it because the report is XML Report, the xml file it's generating not have enough memory in server side if the data is huge.
    Could somebody help me how to solve this issue.
    Note: I need output in EXCEL format only.

    Pl identify the version of XMLP you are using.
    Pl post the complete warning message from the concurrent log file. Are there any additional error messages in the Output Post Processor log file ? Have you specified enough temp space using the XML Publisher Administrator responsibility ?
    How to Determine the Version of Oracle XML Publisher for Oracle E-Business Suite 11i and Release 12 (Doc ID 362496.1)
    Troubleshooting Oracle XML Publisher For The Oracle E-Business Suite (Doc ID 364547.1)
    How to set the Temp Directory for BI Publisher ? (Doc ID 1166024.1)
    Output Post Processor (OPP) Log Contains Error "java.lang.OutOfMemoryError: Java heap space" (Doc ID 1268217.1)
    HTH
    Srini

  • OAF page with XML Publisher report

    Hi All,
    I am trying to create a OAF page with an XML Publisher report. I am not able to create a 'defaultSingleColumn' region which extends '/oracle/apps/xdo/oa/common/webui/DocumentViewerRn.MainRegion', getting a Confirm message and Validation error and they are:
    Confirm message:
    Component "/oracle/apps/xdo/12.0.0/mds/oa/common/webui/DocumentViewerRn.MainRegion" cannot be referenced from
    "/xx/oracle/apps/xxbsk/payslip/webui/PaySlipViewPG.region1" because it violates scope restrictions.
    Are you sure you want to use component "/oracle/apps/xdo/12.0.0/mds/oa/common/webui/DocumentViewerRn.MainRegion"?
    Validation Error:
    The value "oracle/apps/xdo/12.0.0/mds/oa/common/webui/DocumentViewerRn.MainRegion"
    set on the "Extends" property for component
    "/xx/oracle/apps/xxbsk/payslip/webui/PaySlipViewPG" contains multiple naming separators.
    I am trying to develop this page for R12.1.3 and using correct version of JDev (Patch 9879989).
    I am following the below link for embedding the XML PO into my page:
    http://oracle-hack.blogspot.co.uk/2012/04/launching-xml-publisher-from-oa.html
    Could you please help why I am getting error while extending region.
    Thank you,
    Ramu

    Hi. Could you please tell me how did you make it work. I read and try the same document at ttp://oracle-hack.blogspot.co.uk/2012/04/launching-xml-publisher-from-oa.html
    But I got null point exception at one of xdo package which is Oracles own class. I think something is wrong or forgotten in this document.
    Berkay

  • Can we use xml Publisher reporting for sql* Plus in EBS

    Hello All,
    The current report is designed in Sql* Plus Executable report and the output is in txt format, Now the requirement is to have the output in Excel format.
    So is it possible to use the xml reporting and make the output as Excel from the word template we design from MSword as we do for rdf(I have done few reports created in rdf to xml publisher reports in EBS and stand alone as well.).
    Do the same procedure will suit for Sql*Plus reports tooo or Is there any work around to achieve this.
    Thanks and Regards
    Balaji.

    Hi
    Thanks for the reply..
    I tried to do the follwoing
    1. changed the output to xml in the conc. prog.
    2. ran the same report but i am getting the follwoing error in the output file
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    Invalid at the top level of the document. Error processing resource
    Other reports which are using the Oracle Reports(rdf) as source, i am able to generated the xml as expected....
    So my question is whether we can use sql* reports executable and generate xml in the conc.prog.
    if any one has used the sql*reports for xml publisher reporting... please let me know, so that if its possible i will check my sql needs some validation or tuning...
    thanks in advance
    Balaji.

  • R12 XML Publisher reports shows output but with warning

    R12 XML Publisher reports shows correct output in both PDF and EXCEL but with warning, this is making the business uneasy, can any one help me with this.
    Please advise?

    Hi santark
    Please check [this search|http://forums.oracle.com/forums/search.jspa?threadID=&q=%22OPP+Response+Timeout+to%22&objID=c84&dateRange=all&userID=&numResults=15] this topic discussed before
    Regard
    Helios

  • XML Publisher Report:how to disappear the column if no data found

    Hi,
    I have a XMl publisher report requirement , the format is tabular lets say with the structure of 4 columns and 10 rows.requirement is to if suppose there is no data for row number 6 the row itself should not appear over the report and the immediate next row should come in place.
    please help me if any one of u has implemented the same.
    Ankit

    Ankit,
    This is almost hard to work although NOT impossible to achieve on the template.
    A little big of PL/SQL genius where all the columns are selected into variables may be used to achieve this, although you will have to manage them accordingly.
    I don't any other way round it.
    Rgds

  • XML Publisher errors with pdf template workd perfectly with rtf template

    Hi there,
    I hope you are well.
    I am having a problem with pdf templates in XML publisher. I have a report which outputs XML, this works very well with an rtf template. However I am trying to create a pdf xml publisher template (using the concurrent process which generates the same xml data source) and use this as the basis for the xml publisher report. The process is failing with the error ‘No output file exists for request xxxx’
    I am currently working with a very simplified example, the concurrent program generates 5 fields in the xml output including ASSIGNMENT_NUMBER and NI_NUMBER.
    Text fields with the same names are inserted into the pdf corresponding to all fields.
    Any advice on this would be very greatly appreciated.
    Many Thanks
    Kev

    Hi there,
    I have enabled debug mode and run the report as a 2 step process.
    The debug file is attached. Although it says pdf file created successfully no pdf is created and the output file is 0 bytes in size.
    Any help would be greatly appreciated.
    Kev
    XML Publisher: Version : 11.5.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOREPPB module: XML Report Publisher
    Current system time is 13-MAY-2010 11:22:25
    Oracle XML Publisher 5.6.3
    Request ID: 2429757
    All Parameters: ReportRequestID=2429756:TemplateApplication=801:ReportTemplate=RCBC_Payslip_def2_temp2o:TemplateLocale=en:DebugFlag=Y:ReportTemplateType=PDF:OutputFormat=PDF
    Report Template: RCBC_Payslip_def2_temp2o
    Report Req ID: 2429756
    Template Application: PAY
    Template Locale: en
    Debug Flag: Y
    Output Format: PDF
    parseLocale
    Updating request description
    Updated description
    Output type: PDF
    Waiting for XML request
    lPhase: Completed
    lStatus: Warning
    lDevPhase: COMPLETE
    lDevStatus: WARNING
    lMessage: Normal completion
    lError: null
    lRetVal: Successful
    Retrieving XML request information
    Node Name:RC-ORADB-1
    Preparing parameters
    PDF output =/u13/RCDEV1/rcdev1comn/admin/out/RCDEV1_rc-oradb-1/o2429757.out
    inputfilename =/u13/RCDEV1/rcdev1comn/admin/out/RCDEV1_rc-oradb-1/o2429756.out
    Apps Short: PAY
    Templ Code: RCBC_Payslip_def2_temp2o
    Templ Lang: en
    Templ Terr: 00
    Process template
    [051310_112230737][][EXCEPTION] [DEBUG] ------- Preferences defined PreferenceStore -------
    [051310_112230738][][EXCEPTION] [DEBUG] ------- Environment variables stored in EnvironmentStore -------
    [051310_112230739][][EXCEPTION] [DEBUG] [IA_TOP]:[u13/RCDEV1/rcdev1appl/ia/11.5.0]
    [051310_112230739][][EXCEPTION] [DEBUG] [DISPLAY_LANGUAGE]:[US]
    [051310_112230739][][EXCEPTION] [DEBUG] [PA_TOP]:[u13/RCDEV1/rcdev1appl/pa/11.5.0]
    [051310_112230739][][EXCEPTION] [DEBUG] [CONTEXT_NAME]:[RCDEV1_rc-oradb-1]
    [051310_112230739][][EXCEPTION] [DEBUG] [PLATFORM]:[SUN_OS5]
    [051310_112230739][][EXCEPTION] [DEBUG] [FNDNAM]:[APPS]
    [051310_112230739][][EXCEPTION] [DEBUG] [CUE_TOP]:[u13/RCDEV1/rcdev1appl/cue/11.5.0]
    [051310_112230739][][EXCEPTION] [DEBUG] [CSI_TOP]:[u13/RCDEV1/rcdev1appl/csi/11.5.0]
    [051310_112230739][][EXCEPTION] [DEBUG] [EDR_TOP]:[u13/RCDEV1/rcdev1appl/edr/11.5.0]
    [051310_112230739][][EXCEPTION] [DEBUG] [QRM_TOP]:[u13/RCDEV1/rcdev1appl/qrm/11.5.0]
    [051310_112230740][][EXCEPTION] [DEBUG] [NLS_SORT]:[binary]
    [051310_112230740][][EXCEPTION] [DEBUG] [PO_TOP]:[u13/RCDEV1/rcdev1appl/po/11.5.0]
    [051310_112230740][][EXCEPTION] [DEBUG] [APPLUSR]:[usrxit]
    [051310_112230740][][EXCEPTION] [DEBUG] [FND_JDBC_PLSQL_RESET]:[false]
    [051310_112230740][][EXCEPTION] [DEBUG] [ASF_TOP]:[u13/RCDEV1/rcdev1appl/asf/11.5.0]
    [051310_112230740][][EXCEPTION] [DEBUG] [AFJCPARG]:[-client]
    [051310_112230740][][EXCEPTION] [DEBUG] [CUS_TOP]:[u13/RCDEV1/rcdev1appl/cus/11.5.0]
    [051310_112230740][][EXCEPTION] [DEBUG] [FORMS60_RTI_DIR]:[u13/RCDEV1/rcdev1comn/admin/log/RCDEV1_rc-oradb-1]
    [051310_112230740][][EXCEPTION] [DEBUG] [PSB_TOP]:[u13/RCDEV1/rcdev1appl/psb/11.5.0]
    [051310_112230740][][EXCEPTION] [DEBUG] [CHMOD]:[chmod]
    [051310_112230741][][EXCEPTION] [DEBUG] [ADJVAPRG]:[usr/jdk1.6.0_04/bin/java]
    [051310_112230741][][EXCEPTION] [DEBUG] [ORAPLSQLLOADPATH]:[u13/RCDEV1/rcdev1appl/au/11.5.0/graphs]
    [051310_112230741][][EXCEPTION] [DEBUG] [PCCFLAGS]:[include=$(PCCINC) ireclen=161 sqlcheck=none dbms=v6]
    [051310_112230741][][EXCEPTION] [DEBUG] [GMF_TOP]:[u13/RCDEV1/rcdev1appl/gmf/11.5.0]
    [051310_112230741][][EXCEPTION] [DEBUG] [APPS_JDBC_URL]:[jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=rc-oradb-1.redclev.net)(PORT=1528)))(CONNECT_DATA=(SID=RCDEV1)))]
    [051310_112230741][][EXCEPTION] [DEBUG] [BEN_TOP]:[u13/RCDEV1/rcdev1appl/ben/11.5.0]
    [051310_112230741][][EXCEPTION] [DEBUG] [IEO_TOP]:[u13/RCDEV1/rcdev1appl/ieo/11.5.0]
    [051310_112230741][][EXCEPTION] [DEBUG] [APPLMSG]:[mesg]
    [051310_112230741][][EXCEPTION] [DEBUG] [AST_TOP]:[u13/RCDEV1/rcdev1appl/ast/11.5.0]
    [051310_112230741][][EXCEPTION] [DEBUG] [ORACLE_HOME]:[u13/RCDEV1/rcdev1ora/8.0.6]
    [051310_112230742][][EXCEPTION] [DEBUG] [FPT_TOP]:[u13/RCDEV1/rcdev1appl/fpt/11.5.0]
    [051310_112230742][][EXCEPTION] [DEBUG] [OTA_TOP]:[u13/RCDEV1/rcdev1appl/ota/11.5.0]
    [051310_112230742][][EXCEPTION] [DEBUG] [PSP_TOP]:[u13/RCDEV1/rcdev1appl/psp/11.5.0]
    [051310_112230742][][EXCEPTION] [DEBUG] [OKE_TOP]:[u13/RCDEV1/rcdev1appl/oke/11.5.0]
    [051310_112230742][][EXCEPTION] [DEBUG] [IBU_TOP]:[u13/RCDEV1/rcdev1appl/ibu/11.5.0]
    [051310_112230742][][EXCEPTION] [DEBUG] [FORMS60_CATCHTERM]:[1]
    [051310_112230742][][EXCEPTION] [DEBUG] [DT_TOP]:[u13/RCDEV1/rcdev1appl/dt/11.5.0]
    [051310_112230742][][EXCEPTION] [DEBUG] [JL_TOP]:[u13/RCDEV1/rcdev1appl/jl/11.5.0]
    [051310_112230742][][EXCEPTION] [DEBUG] [LANG_CODE]:[US]
    [051310_112230742][][EXCEPTION] [DEBUG] [OPI_TOP]:[u13/RCDEV1/rcdev1appl/opi/11.5.0]
    [051310_112230743][][EXCEPTION] [DEBUG] [IAS_CONFIG_HOME]:[u13/RCDEV1/rcdev1ora/iAS]
    [051310_112230743][][EXCEPTION] [DEBUG] [PN_TOP]:[u13/RCDEV1/rcdev1appl/pn/11.5.0]
    [051310_112230743][][EXCEPTION] [DEBUG] [AZ_TOP]:[u13/RCDEV1/rcdev1appl/az/11.5.0]
    [051310_112230743][][EXCEPTION] [DEBUG] [APPLPTMP]:[usr/tmp/RCDEV1]
    [051310_112230743][][EXCEPTION] [DEBUG] [GSM_FLAG]:[ON]
    [051310_112230743][][EXCEPTION] [DEBUG] [FORMS60_PATH]:[u13/RCDEV1/rcdev1appl/au/11.5.0/resource:/u13/RCDEV1/rcdev1appl/au/11.5.0/resource/stub]
    [051310_112230743][][EXCEPTION] [DEBUG] [OKS_TOP]:[u13/RCDEV1/rcdev1appl/oks/11.5.0]
    [051310_112230743][][EXCEPTION] [DEBUG] [PSA_TOP]:[u13/RCDEV1/rcdev1appl/psa/11.5.0]
    [051310_112230743][][EXCEPTION] [DEBUG] [FORMS60_TIMEOUT]:[5]
    [051310_112230743][][EXCEPTION] [DEBUG] [TK_PRINT_STATUS]:[echo %n is valid]
    [051310_112230744][][EXCEPTION] [DEBUG] [FA_TOP]:[u13/RCDEV1/rcdev1appl/fa/11.5.0]
    [051310_112230744][][EXCEPTION] [DEBUG] [ZFA_TOP]:[u13/RCDEV1/rcdev1appl/zfa/11.5.0]
    [051310_112230744][][EXCEPTION] [DEBUG] [OA_MEDIA]:[u13/RCDEV1/rcdev1comn/java/oracle/apps/media]
    [051310_112230744][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_INTERVAL]:[300]
    [051310_112230744][][EXCEPTION] [DEBUG] [EC_TOP]:[u13/RCDEV1/rcdev1appl/ec/11.5.0]
    [051310_112230744][][EXCEPTION] [DEBUG] [HXT_TOP]:[u13/RCDEV1/rcdev1appl/hxt/11.5.0]
    [051310_112230744][][EXCEPTION] [DEBUG] [OA_HTML]:[u13/RCDEV1/rcdev1comn/html]
    [051310_112230744][][EXCEPTION] [DEBUG] [GME_TOP]:[u13/RCDEV1/rcdev1appl/gme/11.5.0]
    [051310_112230744][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [051310_112230744][][EXCEPTION] [DEBUG] [AK_TOP]:[u13/RCDEV1/rcdev1appl/ak/11.5.0]
    [051310_112230744][][EXCEPTION] [DEBUG] [RESP_ID]:[50236]
    [051310_112230745][][EXCEPTION] [DEBUG] [ME_TOP]:[u13/RCDEV1/rcdev1appl/me/11.5.0]
    [051310_112230745][][EXCEPTION] [DEBUG] [JTF_TOP]:[u13/RCDEV1/rcdev1appl/jtf/11.5.0]
    [051310_112230745][][EXCEPTION] [DEBUG] [COMMON_TOP]:[u13/RCDEV1/rcdev1comn]
    [051310_112230745][][EXCEPTION] [DEBUG] [BIS_TOP]:[u13/RCDEV1/rcdev1appl/bis/11.5.0]
    [051310_112230745][][EXCEPTION] [DEBUG] [FORMS60_APPSLIBS]:[APPCORE FNDSQF APPDAYPK APPFLDR GLCORE HR_GEN HR_SPEC ARXCOVER]
    [051310_112230745][][EXCEPTION] [DEBUG] [MFG_TOP]:[u13/RCDEV1/rcdev1appl/mfg/11.5.0]
    [051310_112230745][][EXCEPTION] [DEBUG] [FND_TOP]:[u13/RCDEV1/rcdev1appl/fnd/11.5.0]
    [051310_112230745][][EXCEPTION] [DEBUG] [GMS_TOP]:[u13/RCDEV1/rcdev1appl/gms/11.5.0]
    [051310_112230745][][EXCEPTION] [DEBUG] [SSP_TOP]:[u13/RCDEV1/rcdev1appl/ssp/11.5.0]
    [051310_112230745][][EXCEPTION] [DEBUG] [LD_LIBRARY_PATH]:[u13/RCDEV1/rcdev1ora/8.0.6/network/jre11/lib/sparc/native_threads:/u13/RCDEV1/rcdev1appl/cz/11.5.0/bin:/u13/RCDEV1/rcdev1ora/8.0.6/lib:/usr/dt/lib:/usr/openwin/lib]
    [051310_112230746][][EXCEPTION] [DEBUG] [FORMS60_RESTRICT_ENTER_QUERY]:[TRUE]
    [051310_112230746][][EXCEPTION] [DEBUG] [CP]:[cp]
    [051310_112230746][][EXCEPTION] [DEBUG] [OKR_TOP]:[u13/RCDEV1/rcdev1appl/okr/11.5.0]
    [051310_112230746][][EXCEPTION] [DEBUG] [ADJREOPTS]:[-Xmx512M]
    [051310_112230746][][EXCEPTION] [DEBUG] [IBE_TOP]:[u13/RCDEV1/rcdev1appl/ibe/11.5.0]
    [051310_112230746][][EXCEPTION] [DEBUG] [OZP_TOP]:[u13/RCDEV1/rcdev1appl/ozp/11.5.0]
    [051310_112230746][][EXCEPTION] [DEBUG] [FORMS60_LOV_MINIMUM]:[1000]
    [051310_112230746][][EXCEPTION] [DEBUG] [TWO_TASK]:[RCDEV1]
    [051310_112230746][][EXCEPTION] [DEBUG] [GRAPHICS60_PATH]:[u13/RCDEV1/rcdev1appl/au/11.5.0/graphs]
    [051310_112230747][][EXCEPTION] [DEBUG] [CC]:[opt/SUNWspro/bin/cc]
    [051310_112230747][][EXCEPTION] [DEBUG] [FORMS60_OUTPUT]:[u13/RCDEV1/rcdev1comn/temp]
    [051310_112230747][][EXCEPTION] [DEBUG] [MYAPPSORA]:[u13/RCDEV1/rcdev1appl/APPSRCDEV1_rc-oradb-1.env]
    [051310_112230747][][EXCEPTION] [DEBUG] [IGI_TOP]:[u13/RCDEV1/rcdev1appl/igi/11.5.0]
    [051310_112230747][][EXCEPTION] [DEBUG] [GMD_TOP]:[u13/RCDEV1/rcdev1appl/gmd/11.5.0]
    [051310_112230747][][EXCEPTION] [DEBUG] [OA_DOC]:[u13/RCDEV1/rcdev1comn/doc]
    [051310_112230747][][EXCEPTION] [DEBUG] [IEM_TOP]:[u13/RCDEV1/rcdev1appl/iem/11.5.0]
    [051310_112230747][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_FREE_MEM]:[TRUE]
    [051310_112230747][][EXCEPTION] [DEBUG] [DOM_TOP]:[u13/RCDEV1/rcdev1appl/dom/11.5.0]
    [051310_112230747][][EXCEPTION] [DEBUG] [GL_TOP]:[u13/RCDEV1/rcdev1appl/gl/11.5.0]
    [051310_112230747][][EXCEPTION] [DEBUG] [OKC_TOP]:[u13/RCDEV1/rcdev1appl/okc/11.5.0]
    [051310_112230747][][EXCEPTION] [DEBUG] [PRP_TOP]:[u13/RCDEV1/rcdev1appl/prp/11.5.0]
    [051310_112230747][][EXCEPTION] [DEBUG] [ENI_TOP]:[u13/RCDEV1/rcdev1appl/eni/11.5.0]
    [051310_112230748][][EXCEPTION] [DEBUG] [CNTL_BREAK]:[ON]
    [051310_112230748][][EXCEPTION] [DEBUG] [CSF_TOP]:[u13/RCDEV1/rcdev1appl/csf/11.5.0]
    [051310_112230748][][EXCEPTION] [DEBUG] [XML_REPORTS_XENVIRONMENT]:[u13/RCDEV1/rcdev1ora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb]
    [051310_112230748][][EXCEPTION] [DEBUG] [FORMS60_OAM_FRD]:[OFF]
    [051310_112230748][][EXCEPTION] [DEBUG] [FND_JDBC_CONTEXT_CHECK]:[FALSE]
    [051310_112230748][][EXCEPTION] [DEBUG] [IGW_TOP]:[u13/RCDEV1/rcdev1appl/igw/11.5.0]
    [051310_112230748][][EXCEPTION] [DEBUG] [AX_TOP]:[u13/RCDEV1/rcdev1appl/ax/11.5.0]
    [051310_112230748][][EXCEPTION] [DEBUG] [XNS_TOP]:[u13/RCDEV1/rcdev1appl/xns/11.5.0]
    [051310_112230748][][EXCEPTION] [DEBUG] [PCCINC]:[. include=$(FND_TOP)/include include=$(ORACLE_HOME)/precomp/public]
    [051310_112230748][][EXCEPTION] [DEBUG] [APPLBIN]:[bin]
    [051310_112230748][][EXCEPTION] [DEBUG] [ORACLE_LOCALPREFERENCE]:[u13/RCDEV1/rcdev1ora/8.0.6/tools/admin]
    [051310_112230748][][EXCEPTION] [DEBUG] [DB_HOST]:[rc-oradb-1.redclev.net]
    [051310_112230748][][EXCEPTION] [DEBUG] [CUP_TOP]:[u13/RCDEV1/rcdev1appl/cup/11.5.0]
    [051310_112230748][][EXCEPTION] [DEBUG] [JTS_TOP]:[u13/RCDEV1/rcdev1appl/jts/11.5.0]
    [051310_112230749][][EXCEPTION] [DEBUG] [HOME]:[u01/appldev1]
    [051310_112230749][][EXCEPTION] [DEBUG] [APPLFENV]:[RCDEV1_rc-oradb-1.env]
    [051310_112230749][][EXCEPTION] [DEBUG] [APPLSAV]:[save]
    [051310_112230749][][EXCEPTION] [DEBUG] [BIC_TOP]:[u13/RCDEV1/rcdev1appl/bic/11.5.0]
    [051310_112230749][][EXCEPTION] [DEBUG] [FORMS60_LOV_WEIGHT]:[16]
    [051310_112230749][][EXCEPTION] [DEBUG] [FORMS60_BLOCKING_LONGLIST]:[FALSE]
    [051310_112230749][][EXCEPTION] [DEBUG] [IPD_TOP]:[u13/RCDEV1/rcdev1appl/ipd/11.5.0]
    [051310_112230749][][EXCEPTION] [DEBUG] [WIP_TOP]:[u13/RCDEV1/rcdev1appl/wip/11.5.0]
    [051310_112230749][][EXCEPTION] [DEBUG] [CE_TOP]:[u13/RCDEV1/rcdev1appl/ce/11.5.0]
    [051310_112230749][][EXCEPTION] [DEBUG] [ZSA_TOP]:[u13/RCDEV1/rcdev1appl/zsa/11.5.0]
    [051310_112230749][][EXCEPTION] [DEBUG] [APPLRGT]:[regress]
    [051310_112230749][][EXCEPTION] [DEBUG] [FRM_TOP]:[u13/RCDEV1/rcdev1appl/frm/11.5.0]
    [051310_112230749][][EXCEPTION] [DEBUG] [VEA_TOP]:[u13/RCDEV1/rcdev1appl/vea/11.5.0]
    [051310_112230750][][EXCEPTION] [DEBUG] [RHX_TOP]:[u13/RCDEV1/rcdev1appl/rhx/11.5.0]
    [051310_112230750][][EXCEPTION] [DEBUG] [APPL_CPLEX_LICDIR]:[u13/RCDEV1/rcdev1appl/admin/cplex]
    [051310_112230750][][EXCEPTION] [DEBUG] [OKB_TOP]:[u13/RCDEV1/rcdev1appl/okb/11.5.0]
    [051310_112230750][][EXCEPTION] [DEBUG] [APPLINC]:[include]
    [051310_112230750][][EXCEPTION] [DEBUG] [CUA_TOP]:[u13/RCDEV1/rcdev1appl/cua/11.5.0]
    [051310_112230750][][EXCEPTION] [DEBUG] [APPLRGF]:[u13/RCDEV1/rcdev1comn/rgf/RCDEV1_rc-oradb-1]
    [051310_112230750][][EXCEPTION] [DEBUG] [OAH_TOP]:[u13/RCDEV1/rcdev1comn]
    [051310_112230750][][EXCEPTION] [DEBUG] [CSE_TOP]:[u13/RCDEV1/rcdev1appl/cse/11.5.0]
    [051310_112230750][][EXCEPTION] [DEBUG] [ORACLE_TERM]:[vt220]
    [051310_112230750][][EXCEPTION] [DEBUG] [APPL_SERVER_ID]:[76E884AC9C460C4DE04400144F44F83A40176233932359814365370657522266]
    [051310_112230750][][EXCEPTION] [DEBUG] [RLA_TOP]:[u13/RCDEV1/rcdev1appl/rla/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [RG_TOP]:[u13/RCDEV1/rcdev1appl/rg/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [CS_TOP]:[u13/RCDEV1/rcdev1appl/cs/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [CFLAGS]:[-Xc -xstrconst -xcg92 $(INCLUDE_FLAGS) -O -DSUN_OS5 -DNLS_ASIA -DAFSTUBS]
    [051310_112230751][][EXCEPTION] [DEBUG] [HXC_TOP]:[u13/RCDEV1/rcdev1appl/hxc/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [RESP_APPL_ID]:[800]
    [051310_112230751][][EXCEPTION] [DEBUG] [INV_TOP]:[u13/RCDEV1/rcdev1appl/inv/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [INCLUDE_FLAGS]:[-I. -I$(FND_TOP)/include -I$(ORACLE_HOME)/precomp/public -I$(ORACLE_HOME)/rdbms/demo]
    [051310_112230751][][EXCEPTION] [DEBUG] [FORMS60_TRACE_PATH]:[u13/RCDEV1/rcdev1comn/admin/log/RCDEV1_rc-oradb-1]
    [051310_112230751][][EXCEPTION] [DEBUG] [AF_CLASSPATH]:[usr/jdk1.6.0_04/jre/lib/rt.jar:/usr/jdk1.6.0_04/lib/dt.jar:/usr/jdk1.6.0_04/lib/tools.jar:/usr/jdk1.6.0_04/jre/lib/charsets.jar:/u13/RCDEV1/rcdev1comn/java/appsborg2.zip:/u13/RCDEV1/rcdev1ora/8.0.6/forms60/java:/u13/RCDEV1/rcdev1comn/java]
    [051310_112230751][][EXCEPTION] [DEBUG] [APPLIMG]:[images]
    [051310_112230751][][EXCEPTION] [DEBUG] [IBC_TOP]:[u13/RCDEV1/rcdev1appl/ibc/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [CSS_TOP]:[u13/RCDEV1/rcdev1appl/css/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [ASP_TOP]:[u13/RCDEV1/rcdev1appl/asp/11.5.0]
    [051310_112230751][][EXCEPTION] [DEBUG] [FORMS60_MODULE_PATH]:[u13/RCDEV1/rcdev1appl/fnd/11.5.0/forms]
    [051310_112230751][][EXCEPTION] [DEBUG] [AF_JRE_TOP]:[usr/jdk1.6.0_04]
    [051310_112230752][][EXCEPTION] [DEBUG] [XNC_TOP]:[u13/RCDEV1/rcdev1appl/xnc/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [WSM_TOP]:[u13/RCDEV1/rcdev1appl/wsm/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [APPLREP]:[reports]
    [051310_112230752][][EXCEPTION] [DEBUG] [ENG_TOP]:[u13/RCDEV1/rcdev1appl/eng/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [PQP_TOP]:[u13/RCDEV1/rcdev1appl/pqp/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [CSD_TOP]:[u13/RCDEV1/rcdev1appl/csd/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [WPS_TOP]:[u13/RCDEV1/rcdev1appl/wps/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [APPLREG]:[regress]
    [051310_112230752][][EXCEPTION] [DEBUG] [GMP_TOP]:[u13/RCDEV1/rcdev1appl/gmp/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_SIZE]:[5]
    [051310_112230752][][EXCEPTION] [DEBUG] [FPA_TOP]:[u13/RCDEV1/rcdev1appl/fpa/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [OKO_TOP]:[u13/RCDEV1/rcdev1appl/oko/11.5.0]
    [051310_112230752][][EXCEPTION] [DEBUG] [CUN_TOP]:[u13/RCDEV1/rcdev1appl/cun/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [DDD_TOP]:[u13/RCDEV1/rcdev1appl/ddd/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [CSR_TOP]:[u13/RCDEV1/rcdev1appl/csr/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [PRINTER]:[noprint]
    [051310_112230753][][EXCEPTION] [DEBUG] [IGF_TOP]:[u13/RCDEV1/rcdev1appl/igf/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [GMA_TOP]:[u13/RCDEV1/rcdev1appl/gma/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [APPL_TOP]:[u13/RCDEV1/rcdev1appl]
    [051310_112230753][][EXCEPTION] [DEBUG] [BNE_TOP]:[u13/RCDEV1/rcdev1appl/bne/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [AMW_TOP]:[u13/RCDEV1/rcdev1appl/amw/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [MST_TOP]:[u13/RCDEV1/rcdev1appl/mst/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [PMI_TOP]:[u13/RCDEV1/rcdev1appl/pmi/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [ASO_TOP]:[u13/RCDEV1/rcdev1appl/aso/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [XNB_TOP]:[u13/RCDEV1/rcdev1appl/xnb/11.5.0]
    [051310_112230753][][EXCEPTION] [DEBUG] [FND_OLD_ORA_NET2_DESC]:[14,17]
    [051310_112230753][][EXCEPTION] [DEBUG] [IBP_TOP]:[u13/RCDEV1/rcdev1appl/ibp/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [NLS_TERRITORY]:[AMERICA]
    [051310_112230754][][EXCEPTION] [DEBUG] [CSC_TOP]:[u13/RCDEV1/rcdev1appl/csc/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [JG_TOP]:[u13/RCDEV1/rcdev1appl/jg/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [LUSRPRG]:[u13/RCDEV1/rcdev1appl/fnd/11.5.0/usrxit/prglib.o /u13/RCDEV1/rcdev1appl/fnd/11.5.0/usrxit/prgcat.o /u13/RCDEV1/rcdev1appl/fnd/11.5.0/usrxit/EXPROG.o]
    [051310_112230754][][EXCEPTION] [DEBUG] [POS_TOP]:[u13/RCDEV1/rcdev1appl/pos/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [AU_TOP]:[u13/RCDEV1/rcdev1appl/au/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [IEX_TOP]:[u13/RCDEV1/rcdev1appl/iex/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [SHT_TOP]:[u13/RCDEV1/rcdev1appl/sht/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [XNP_TOP]:[u13/RCDEV1/rcdev1appl/xnp/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [ORA_NET2_DESC]:[14,17]
    [051310_112230754][][EXCEPTION] [DEBUG] [AFJSMARG]:[-server]
    [051310_112230754][][EXCEPTION] [DEBUG] [REQUEST_ID]:[2429757]
    [051310_112230754][][EXCEPTION] [DEBUG] [REPORTS60_POST]:[&5556]
    [051310_112230754][][EXCEPTION] [DEBUG] [MWA_TOP]:[u13/RCDEV1/rcdev1appl/mwa/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [XTR_TOP]:[u13/RCDEV1/rcdev1appl/xtr/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [IBA_TOP]:[u13/RCDEV1/rcdev1appl/iba/11.5.0]
    [051310_112230754][][EXCEPTION] [DEBUG] [APPLOUT]:[out/RCDEV1_rc-oradb-1]
    [051310_112230755][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_SIZE]:[200]
    [051310_112230755][][EXCEPTION] [DEBUG] [RLM_TOP]:[u13/RCDEV1/rcdev1appl/rlm/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [IPA_TOP]:[u13/RCDEV1/rcdev1appl/ipa/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [TZ]:[GB]
    [051310_112230755][][EXCEPTION] [DEBUG] [AMV_TOP]:[u13/RCDEV1/rcdev1appl/amv/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [APPLLOG]:[log/RCDEV1_rc-oradb-1]
    [051310_112230755][][EXCEPTION] [DEBUG] [ASN_TOP]:[u13/RCDEV1/rcdev1appl/asn/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [AFCPDNR]:[disabled]
    [051310_112230755][][EXCEPTION] [DEBUG] [ITG_TOP]:[u13/RCDEV1/rcdev1appl/itg/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [GUEST_USER_PWD]:[GUEST/ORACLE]
    [051310_112230755][][EXCEPTION] [DEBUG] [XLE_TOP]:[u13/RCDEV1/rcdev1appl/xle/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [GWYUID]:[APPLSYSPUB/PUB]
    [051310_112230755][][EXCEPTION] [DEBUG] [PERL5LIB]:[u13/RCDEV1/rcdev1ora/iAS/Apache/perl/lib/5.00503:/u13/RCDEV1/rcdev1ora/iAS/Apache/perl/lib/site_perl/5.005:/u13/RCDEV1/rcdev1appl/au/11.5.0/perl]
    [051310_112230755][][EXCEPTION] [DEBUG] [IGS_TOP]:[u13/RCDEV1/rcdev1appl/igs/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [APPLDOC]:[docs]
    [051310_112230755][][EXCEPTION] [DEBUG] [MSD_TOP]:[u13/RCDEV1/rcdev1appl/msd/11.5.0]
    [051310_112230755][][EXCEPTION] [DEBUG] [FII_TOP]:[u13/RCDEV1/rcdev1appl/fii/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [APPLTMP]:[u13/RCDEV1/rcdev1comn/temp]
    [051310_112230756][][EXCEPTION] [DEBUG] [CCT_TOP]:[u13/RCDEV1/rcdev1appl/cct/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [CSP_TOP]:[u13/RCDEV1/rcdev1appl/csp/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [FTE_TOP]:[u13/RCDEV1/rcdev1appl/fte/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [JAVA_TOP]:[u13/RCDEV1/rcdev1comn/java]
    [051310_112230756][][EXCEPTION] [DEBUG] [FORMS60_MAPPING]:[http://rc-orapp-2.redclev.net:8007/OA_TEMP]
    [051310_112230756][][EXCEPTION] [DEBUG] [AFJVAPRG]:[usr/jdk1.6.0_04/bin/java]
    [051310_112230756][][EXCEPTION] [DEBUG] [PV_TOP]:[u13/RCDEV1/rcdev1appl/pv/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [FND_GSMSTARTED]:[1]
    [051310_112230756][][EXCEPTION] [DEBUG] [MSR_TOP]:[u13/RCDEV1/rcdev1appl/msr/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [FORMS60_FORCE_MENU_MNEMONICS]:[0]
    [051310_112230756][][EXCEPTION] [DEBUG] [TNS_ADMIN]:[u13/RCDEV1/rcdev1ora/8.0.6/network/admin/RCDEV1_rc-oradb-1]
    [051310_112230756][][EXCEPTION] [DEBUG] [DB_PORT]:[1528]
    [051310_112230756][][EXCEPTION] [DEBUG] [PJM_TOP]:[u13/RCDEV1/rcdev1appl/pjm/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [BIM_TOP]:[u13/RCDEV1/rcdev1appl/bim/11.5.0]
    [051310_112230756][][EXCEPTION] [DEBUG] [OAD_TOP]:[u13/RCDEV1/rcdev1comn]
    [051310_112230757][][EXCEPTION] [DEBUG] [SECURITY_GROUP_ID]:[0]
    [051310_112230757][][EXCEPTION] [DEBUG] [RM]:[rm -f]
    [051310_112230757][][EXCEPTION] [DEBUG] [JE_TOP]:[u13/RCDEV1/rcdev1appl/je/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [FND_JDBC_USABLE_CHECK]:[false]
    [051310_112230757][][EXCEPTION] [DEBUG] [APPLPLS]:[plsql]
    [051310_112230757][][EXCEPTION] [DEBUG] [OA_JRE_TOP]:[usr/jdk1.6.0_04]
    [051310_112230757][][EXCEPTION] [DEBUG] [AS_TOP]:[u13/RCDEV1/rcdev1appl/as/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [GCS_TOP]:[u13/RCDEV1/rcdev1appl/gcs/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [IMT_TOP]:[u13/RCDEV1/rcdev1appl/imt/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [OA_SECURE]:[u13/RCDEV1/rcdev1comn/secure]
    [051310_112230757][][EXCEPTION] [DEBUG] [NLS_DATE_FORMAT]:[DD-MON-RR]
    [051310_112230757][][EXCEPTION] [DEBUG] [AMF_TOP]:[u13/RCDEV1/rcdev1appl/amf/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [MSC_TOP]:[u13/RCDEV1/rcdev1appl/msc/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [OKL_TOP]:[u13/RCDEV1/rcdev1appl/okl/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [APPLMAIL]:[NONE]
    [051310_112230757][][EXCEPTION] [DEBUG] [LNS_TOP]:[u13/RCDEV1/rcdev1appl/lns/11.5.0]
    [051310_112230757][][EXCEPTION] [DEBUG] [APPLCSF]:[u13/RCDEV1/rcdev1comn/admin]
    [051310_112230758][][EXCEPTION] [DEBUG] [APPLORC]:[ar60run]
    [051310_112230758][][EXCEPTION] [DEBUG] [APPLORB]:[ar60runb]
    [051310_112230758][][EXCEPTION] [DEBUG] [IGC_TOP]:[u13/RCDEV1/rcdev1appl/igc/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [ONT_TOP]:[u13/RCDEV1/rcdev1appl/ont/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [AD_TOP]:[u13/RCDEV1/rcdev1appl/ad/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [EAA_TOP]:[u13/RCDEV1/rcdev1appl/eaa/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [ASL_TOP]:[u13/RCDEV1/rcdev1appl/asl/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [ORG_ID]:[82]
    [051310_112230758][][EXCEPTION] [DEBUG] [APPLSQL]:[sql]
    [051310_112230758][][EXCEPTION] [DEBUG] [ZPB_TOP]:[u13/RCDEV1/rcdev1appl/zpb/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [NLS_LANG]:[American_America.WE8ISO8859P1]
    [051310_112230758][][EXCEPTION] [DEBUG] [BIL_TOP]:[u13/RCDEV1/rcdev1appl/bil/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [CN_TOP]:[u13/RCDEV1/rcdev1appl/cn/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [GML_TOP]:[u13/RCDEV1/rcdev1appl/gml/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [AR_TOP]:[u13/RCDEV1/rcdev1appl/ar/11.5.0]
    [051310_112230758][][EXCEPTION] [DEBUG] [IEU_TOP]:[u13/RCDEV1/rcdev1appl/ieu/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [LUSRSRW]:[u13/RCDEV1/rcdev1appl/fnd/11.5.0/usrxit/xirusr.o]
    [051310_112230759][][EXCEPTION] [DEBUG] [XNM_TOP]:[u13/RCDEV1/rcdev1appl/xnm/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [FV_TOP]:[u13/RCDEV1/rcdev1appl/fv/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [ABM_TOP]:[u13/RCDEV1/rcdev1appl/abm/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [CLN_TOP]:[u13/RCDEV1/rcdev1appl/cln/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [FORMS60_SESSION]:[TRUE]
    [051310_112230759][][EXCEPTION] [DEBUG] [JTM_TOP]:[u13/RCDEV1/rcdev1appl/jtm/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [FORMS60_OVERRIDE_ENV]:[NLS_LANG,NLS_NUMERIC_CHARACTERS,NLS_SORT,NLS_DATE_LANGUAGE,NLS_DATE_FORMAT,FORMS60_USER_DATE_FORMAT,FORMS60_USER_DATETIME_FORMAT,FORMS60_OUTPUT_DATE_FORMAT,FORMS60_OUTPUT_DATETIME_FORMAT,FORMS60_ERROR_DATE_FORMAT,FORMS60_ERROR_DATETIME_FORMAT,FORMS60_TZFILE,FORMS60_DATETIME_SERVER_TZ,FORMS60_DATETIME_LOCAL_TZ,FORMS60_USER_CALENDAR]
    [051310_112230759][][EXCEPTION] [DEBUG] [FNDSM_SCRIPT]:[u13/RCDEV1/rcdev1comn/admin/scripts/RCDEV1_rc-oradb-1/gsmstart.sh]
    [051310_112230759][][EXCEPTION] [DEBUG] [APPS_JDBC_DRIVER_TYPE]:[THIN]
    [051310_112230759][][EXCEPTION] [DEBUG] [APPLGRAF]:[graphs]
    [051310_112230759][][EXCEPTION] [DEBUG] [CRP_TOP]:[u13/RCDEV1/rcdev1appl/crp/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [POA_TOP]:[u13/RCDEV1/rcdev1appl/poa/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [CHV_TOP]:[u13/RCDEV1/rcdev1appl/chv/11.5.0]
    [051310_112230759][][EXCEPTION] [DEBUG] [SPCCHANL]:[ ]
    [051310_112230759][][EXCEPTION] [DEBUG] [AMS_TOP]:[u13/RCDEV1/rcdev1appl/ams/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [AF_LD_LIBRARY_PATH]:[u13/RCDEV1/rcdev1ora/iAS/lib:/u13/RCDEV1/rcdev1ora/8.0.6/network/jre11/lib/sparc/native_threads:/u13/RCDEV1/rcdev1appl/cz/11.5.0/bin:/u13/RCDEV1/rcdev1ora/8.0.6/lib:/usr/dt/lib:/usr/openwin/lib]
    [051310_112230760][][EXCEPTION] [DEBUG] [IAS_ORACLE_HOME]:[u13/RCDEV1/rcdev1ora/iAS]
    [051310_112230760][][EXCEPTION] [DEBUG] [MCS]:[echo mcs]
    [051310_112230760][][EXCEPTION] [DEBUG] [WSH_TOP]:[u13/RCDEV1/rcdev1appl/wsh/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [REPORTS60_PRE]:[&5555]
    [051310_112230760][][EXCEPTION] [DEBUG] [PAY_TOP]:[u13/RCDEV1/rcdev1appl/pay/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [FORMS60_LOV_INITIAL]:[5000]
    [051310_112230760][][EXCEPTION] [DEBUG] [BOM_TOP]:[u13/RCDEV1/rcdev1appl/bom/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [FNDREVIVERPID]:[u13/RCDEV1/rcdev1appl/fnd/11.5.0/log/reviver.sh_RCDEV1_rc-oradb-1.pid]
    [051310_112230760][][EXCEPTION] [DEBUG] [DB_ID]:[rc-oradb-1_rcdev1]
    [051310_112230760][][EXCEPTION] [DEBUG] [FORMS60_DISABLE_UNPAD_LOV]:[FALSE]
    [051310_112230760][][EXCEPTION] [DEBUG] [ICX_TOP]:[u13/RCDEV1/rcdev1appl/icx/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [APPCPNAM]:[REQID]
    [051310_112230760][][EXCEPTION] [DEBUG] [APPLLIB]:[lib]
    [051310_112230760][][EXCEPTION] [DEBUG] [CUI_TOP]:[u13/RCDEV1/rcdev1appl/cui/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [HRI_TOP]:[u13/RCDEV1/rcdev1appl/hri/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [CSM_TOP]:[u13/RCDEV1/rcdev1appl/csm/11.5.0]
    [051310_112230760][][EXCEPTION] [DEBUG] [CONTEXT_FILE]:[u13/RCDEV1/rcdev1appl/admin/RCDEV1_rc-oradb-1.xml]
    [051310_112230760][][EXCEPTION] [DEBUG] [XXBTC_TOP]:[u13/RCDEV1/rcdev1appl/xxbtc/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [FND_MAX_JDBC_CONNECTIONS]:[500]
    [051310_112230761][][EXCEPTION] [DEBUG] [ECX_TOP]:[u13/RCDEV1/rcdev1appl/ecx/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [RCM_TOP]:[u13/RCDEV1/rcdev1appl/rcm/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [DBC_FILE_PATH]:[u13/RCDEV1/rcdev1appl/fnd/11.5.0/secure/rc-oradb-1_rcdev1.dbc]
    [051310_112230761][][EXCEPTION] [DEBUG] [FORMS60_NONBLOCKING_SLEEP]:[100]
    [051310_112230761][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [051310_112230761][][EXCEPTION] [DEBUG] [MSO_TOP]:[u13/RCDEV1/rcdev1appl/mso/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [IMC_TOP]:[u13/RCDEV1/rcdev1appl/imc/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [OKX_TOP]:[u13/RCDEV1/rcdev1appl/okx/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [FF_TOP]:[u13/RCDEV1/rcdev1appl/ff/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [XLA_TOP]:[u13/RCDEV1/rcdev1appl/xla/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [REPORTS60_NO_DUMMY_PRINTER]:[YES]
    [051310_112230761][][EXCEPTION] [DEBUG] [FUN_TOP]:[u13/RCDEV1/rcdev1appl/fun/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [PATH]:[u13/RCDEV1/rcdev1ora/iAS/Apache/perl/bin:/u13/RCDEV1/rcdev1ora/8.0.6/bin:/u13/RCDEV1/rcdev1appl/fnd/11.5.0/bin:/u13/RCDEV1/rcdev1appl/ad/11.5.0/bin:/usr/jdk1.6.0_04/bin:/u13/RCDEV1/rcdev1comn/util/unzip/unzip::/u13/RCDEV1/rcdev1ora/8.0.6/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/bin:/usr/ccs/bin:/bin]
    [051310_112230761][][EXCEPTION] [DEBUG] [PON_TOP]:[u13/RCDEV1/rcdev1appl/pon/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [FORMS60_REJECT_GO_DISABLED_ITEM]:[0]
    [051310_112230761][][EXCEPTION] [DEBUG] [AP_TOP]:[u13/RCDEV1/rcdev1appl/ap/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [IES_TOP]:[u13/RCDEV1/rcdev1appl/ies/11.5.0]
    [051310_112230761][][EXCEPTION] [DEBUG] [EAM_TOP]:[u13/RCDEV1/rcdev1appl/eam/11.5.0]
    [051310_112230762][][EXCEPTION] [DEBUG] [WMS_TOP]:[u13/RCDEV1/rcdev1appl/wms/11.5.0]
    [051310_112230762][][EXCEPTION] [DEBUG] [VEH_TOP]:[u13/RCDEV1/rcdev1appl/veh/11.5.0]
    [051310_112230762][][EXCEPTION] [DEBUG] [GR_TOP]:[u13/RCDEV1/rcdev1appl/gr/11.5.0]
    [051310_112230762][][EXCEPTION] [DEBUG] [EGO_TOP]:[u13/RCDEV1/rcdev1appl/ego/11.5.0]
    [051310_112230762][][EXCEPTION] [DEBUG] [OKI_TOP]:[u13/RCDEV1/rcdev1appl/oki/11.5.0]
    [051310_112230762][][EXCEPTION] [DEBUG] [IBY_TOP]:[u13/RCDEV1/rcdev1appl/iby/11.5.0]

  • Problem in XML Publisher Report submission from OAF Pages

    Hi,
    I am trying to submit Concurrent Program from OAF Page which is an XML Publisher Report.
    The request is Submitting and Completing successfully but when we open to view the out put we are able to view the HTML tags.
    We checked the same Concurrent program by submitting from the SRS window After completing if we click on view output the rtf file is getting opened correctly.
    I tested with normal rdf report it is working fine with standard Concurrent program used in OAF
    So my doubt is
    Does the Standard Concurrent program used in OAF supports the rtf reports.
    Please suggest if any modifications to be done in the Concurrent program
    Krishna

    Krishna
    Modified your code a little bit.Use this
        public int submitCPRequest(String shipmentId) {
        System.out.println("into submitCPRequest");
            OAPageContext pageContext;
            OAWebBean webBean;
        try {
    OAApplicationModule am =pageContext.getApplicationModule(webBean);
        OADBTransaction tx = (OADBTransaction)am.getOADBTransaction();
        java.sql.Connection pConncection = tx.getJdbcConnection();
        ConcurrentRequest cr = new ConcurrentRequest(pConncection);
        String applnName = new String("XXAPL"); //Application that contains the concurrent program
        System.out.println("ApplName"+ applnName);
        String cpName = new String("XXAPLPOSMPRD"); //Concurrent program name
        System.out.println("Concc Name"+ cpName);
        String cpDesc = new String(" APL PO Shipping Material Pickup Request"); // concurrent Program description
        // Pass the Arguments using vector
        // Here i have added my parameter headerId to the vector and passed the
        //vector to the concurrent program
        Vector cpArgs = new Vector();
        cpArgs.addElement(shipmentId);
        System.out.println("Args"+ cpArgs);
        // Calling the Concurrent Program
        int requestId = cr.submitRequest(applnName, cpName,cpDesc, null, false, cpArgs);
        cr.addLayout("XXAPL", "XXAPLPOSMPRT", "ENG", "US" , "RTF");
        System.out.println("Req Id"+ requestId);
        tx.commit();
        return requestId;
            catch (RequestSubmissionException e) {
            System.out.println("Into Exception");
            OAException oe = new OAException(e.getMessage());
            oe.setApplicationModule(this);
            throw oe;
            catch(Exception exception)
            throw OAException.wrapperException(exception);
        }Thanks
    AJ

  • How to invoke XML publisher report from APPS 11i forms

    I have a requirement in oracle application forms menu where I need to call the XML publisher report when user clicks the menu item.
    I am using following two API's
    fnd_request.add_layout
    fnd_request.submit_request
    But I am getting the error message
    java.sql.SQLException: No corresponding LOB data found :SELECT L.FILE_DATA FILE_DATA.......
    your help is truly appreciated.
    Thanks
    Siva

    I have registered the report using admin responsibility and ran the reprt form SRS and completed successfully. Eeven from the forms it is submitting the request but the request completed as warning with above message. I can see the out put by clicking the View XML button but it unable to publish output.
    Thanks guru your quick response.
    Thanks
    siva

  • VO Extension Error in modifying the query of XML Publisher Report Template

    Hi Friends,
    I have one requirement related to calling XML Publisher Reports Template from OAF Page.
    When clicking on the submit button the XML Publisher template is calling and displaying the data.
    Our requirement is to display some more columns in the XML Publisher Template and display the data.
    As according to OAF stndards,whenever we need to add new columns for display or SELECT purpose,
    we will do the VO Extension. So we modified the query by adding the new additional colums in the standard VO.
    I am able to retrieve the data from the SQL DEVELOPER. But when doing the VO Extension process and
    calling the template from the OAF page its throwing the following error.Please suggest me some alternatives
    to fix the issue.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT
    DECODE(ASO_QUOTES.RESOURCE_ID, null, sales.name, sales1.name) sales_rep_name,
    aso_quotes.quote_name,
    aso_quotes.contract_id,
    aso_quotes.quote_number||decode(aso_quotes.quote_version,NULL,'',' - ') || aso_quotes.quote_version quote_name_version,
    to_char(aso_quotes.quote_expiration_date, nvl(FND_PROFILE.VALUE('ICX_DATE_FORMAT_MASK'), 'DD-MON-RRRR')) quote_expiration_date,
    TO_NUMBER(TO_CHAR(aso_quotes.quote_expiration_date,'J')) - TO_NUMBER(TO_CHAR(Sysdate,'J')) duration,
    I_HEADER_CONTACT_PARTY.PARTY_NAME sold_to_contact_name,
    I_CUST_PARTIES.party_name customer_name,
    I_PHONE.PHONE_AREA_CODE || DECODE(I_PHONE.PHONE_AREA_CODE , NULL, '',' ' ) || I_PHONE.PHONE_NUMBER full_phone_number,
    I_INVOICE_REL_PARTY.PARTY_NAME invoice_to_contact_name,
    I_ACCTS_INV_PARTY.PARTY_NAME invoice_to_cust_party_name,
    I_INVOICE_LOCATIONS.ADDRESS1 invoice_to_address1,
    I_INVOICE_LOCATIONS.ADDRESS2 invoice_to_address2,
    I_INVOICE_LOCATIONS.ADDRESS3 invoice_to_address3,
    I_INVOICE_LOCATIONS.ADDRESS4 invoice_to_address4,
    decode(I_INVOICE_LOCATIONS.city, null,'',I_INVOICE_LOCATIONS.city || decode(I_INVOICE_LOCATIONS.county,null,'',',' || I_INVOICE_LOCATIONS.county)) invoice_to_city,
    I_INVOICE_LOCATIONS.state || decode(I_INVOICE_LOCATIONS.postal_code, null,'',' '||
    I_INVOICE_LOCATIONS.postal_code || decode(I_INVOICE_LOCATIONS.province,null,'',',' ||I_INVOICE_LOCATIONS.province )) invoice_to_county,
    I_INVOICE_LOCATIONS.country invoice_to_country,
    aso_quotes.currency_code Currency_Code,
    (select distinct ppf.email_address
    from per_people_f ppf,
    JTF_RS_SALESREPS jrs
    where jrs.resource_id = aso_quotes.resource_id
    and jrs.PERSON_ID = ppf.person_id
    and ppf.person_type_id = 3
    ) Sales_Rep_Email,
    aso_quotes.quote_header_id, oav.name||decode(oav.agreement_num,NULL,'',',')||oav.agreement_num||decode(oav.agreement_num,NULL,'',',')||oav.revision Agreement_name,
    oav.name||oav.agreement_num||oav.revision Agreement_check,
    to_char(oav.revision_date, nvl(FND_PROFILE.VALUE('ICX_DATE_FORMAT_MASK'), 'DD-MON-RRRR')) revision_date,
    (select payment_term_name
    FROM
    aso_payments_v
    WHERE
    quote_line_id is null and
    quote_header_id = aso_quotes.quote_header_id) payment_terms,
    to_char(sysdate, nvl(FND_PROFILE.VALUE('ICX_DATE_FORMAT_MASK'), 'DD-MON-RRRR')) curr_date,
    aso_quotes.total_list_price total_list_price,
    aso_quotes.total_adjusted_amount total_adjusted_amount,
    (aso_quotes.total_list_price + aso_quotes.total_adjusted_amount) total_net_price,
    aso_quotes.total_shipping_charge charges_total,
    aso_quotes.total_tax taxes_total,
    aso_quotes.total_quote_price total_quote_price,
    (select cust_po_number
    FROM
    aso_payments
    WHERE
    quote_line_id is null and
    quote_header_id = aso_quotes.quote_header_id ) cust_po_number,
    (select fct.name
    from fnd_currencies_tl fct
    where aso_quotes.currency_code = fct.currency_code
    and fct.language = userenv('lang')) Currency_Name,
    (select fcurr.symbol
    from fnd_currencies fcurr
    where aso_quotes.currency_code = fcurr.currency_code) Currency_Symbol,
    (Select meaning
    From oe_lookups
    Where lookup_type = 'FREIGHT_TERMS'
    And lookup_code = (select aship.freight_terms_code
    from aso_shipments aship
    where aship.quote_header_id = aso_quotes.quote_header_id
    and aship.quote_line_id is null)) Freight_Terms,
    (Select fl.meaning
    From fnd_lookup_values fl
    where fl.lookup_type = 'SHIP_METHOD'
    And fl.lookup_code = (select aship.ship_method_code
    from aso_shipments aship
    where aship.quote_header_id = aso_quotes.quote_header_id
    and aship.quote_line_id is null)
    And fl.language = userenv('LANG')) shipping_method ,
    aso_quotes.org_id ,
    aso_quotes.quote_number ,
    aso_quotes.Quote_version VersionNumber,
    I_ACCTS.ACCOUNT_NUMBER CustomerNumber,
    oav.agreement_num Agreement_Number,
    :action action,
    aso_quotes.minisite_id minisite_id,
    (select imt.msite_name from ibe_msites_tl imt where imt.msite_id = aso_quotes.minisite_id
    and imt.language = userenv('LANG')) msite_name,
    (select asl.meaning from oe_lookups asl, aso_shipments ash
    where asl.lookup_type = 'SHIPMENT_PRIORITY'
    and asl.lookup_code = ash.shipment_priority_code
    and ash.quote_header_id = aso_quotes.quote_header_id) shipment_priority_name
    ,(select OE_SYS_PARAMETERS.VALUE('INSTALLMENT_OPTIONS',aso_quotes.org_id) from dual) enable_pay_now
    from
    hz_CONTACT_POINTS I_PHONE ,
    HZ_RELATIONSHIPS I_HEADER_CONTACT_REL,
    HZ_PARTIES I_HEADER_CONTACT_PARTY,
    ASO_QUOTE_HEADERS ASO_QUOTES,
    HZ_RELATIONSHIPS I_INVOICE_REL,
    HZ_PARTIES I_INVOICE_REL_PARTY,
    HZ_PARTY_sites I_INVOICE_PARTY_SITES,
    HZ_LOCATIONS I_INVOICE_LOCATIONS,
    HZ_PARTIES I_CUST_PARTIES,
    HZ_CUST_ACCOUNTS I_ACCTS,
    HZ_CUST_ACCOUNTS I_ACCTS_INV,
    HZ_PARTIES I_ACCTS_INV_PARTY,
    JTF_RS_SALESREPS_MO_V SALES,
    JTF_RS_SALESREPS_MO_V SALES1,
    FND_TERRITORIES_VL I_TERRITORIES,
    oe_agreements_vl oav
    where
    ASO_QUOTES.PARTY_ID = I_HEADER_CONTACT_REL.PARTY_ID(+)
    AND I_HEADER_CONTACT_REL.SUBJECT_ID = I_HEADER_CONTACT_PARTY.PARTY_ID(+)
    AND I_HEADER_CONTACT_REL.SUBJECT_TYPE(+) = 'PERSON'
    AND I_HEADER_CONTACT_REL.SUBJECT_TABLE_NAME(+) = 'HZ_PARTIES'
    and i_header_contact_rel.object_id(+) = aso_quotes.cust_party_id
    AND ASO_QUOTES .INVOICE_TO_PARTY_SITE_ID = I_INVOICE_PARTY_SITES.PARTY_SITE_ID (+)
    AND I_INVOICE_PARTY_SITES.LOCATION_ID = I_INVOICE_LOCATIONS.LOCATION_ID(+)
    AND I_INVOICE_LOCATIONS.country = I_TERRITORIES.territory_code(+)
    AND ASO_QUOTES.INVOICE_TO_PARTY_ID = I_INVOICE_REL.PARTY_ID(+)
    AND I_INVOICE_REL.SUBJECT_ID = I_INVOICE_REL_PARTY.PARTY_ID(+)
    AND I_INVOICE_REL.SUBJECT_TYPE(+) = 'PERSON'
    AND I_INVOICE_REL.SUBJECT_TABLE_NAME(+) = 'HZ_PARTIES'
    AND i_invoice_rel.object_id (+) = aso_quotes.invoice_to_cust_party_id
    AND ASO_QUOTES.ORG_ID = SALES.ORG_ID(+)
    AND ASO_QUOTES.EMPLOYEE_PERSON_ID = SALES.PERSON_ID (+)
    AND ASO_QUOTES.ORG_ID = SALES1.ORG_ID (+)
    AND ASO_QUOTES.RESOURCE_ID = SALES1.RESOURCE_ID (+)
    AND ASO_QUOTES.CUST_ACCOUNT_ID =I_ACCTS.CUST_ACCOUNT_ID(+)
    AND ASO_QUOTES.CUST_PARTY_ID = I_CUST_PARTIES.PARTY_ID
    AND ASO_QUOTES.INVOICE_TO_CUST_ACCOUNT_ID = I_ACCTS_INV.CUST_ACCOUNT_ID(+)
    AND ASO_QUOTES.INVOICE_TO_CUST_PARTY_ID = I_ACCTS_INV_PARTY.PARTY_ID(+)
    AND aso_quotes.phone_id = i_phone.contact_point_Id(+)
    AND oav.agreement_id(+) = aso_quotes.contract_id
    AND aso_quotes.quote_header_id = 666584
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:912)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:886)
         at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(OAException.java:1009)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:211)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:153)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:762)
         at oracle.apps.aso.print.webui.MainCO.processRequest(MainCO.java:180)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:600)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:391)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1182)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2607)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1940)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at OA.jspService(_OA.java:221)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    ## Detail 0 ##
    java.sql.SQLException: Attempt to set a parameter name that does not occur in the SQL: 1
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectAtName(OraclePreparedStatement.java:11915)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.setObjectAtName(OraclePreparedStatementWrapper.java:815)
         at oracle.jbo.server.OracleSQLBuilderImpl.bindParamValue(OracleSQLBuilderImpl.java:3919)
         at oracle.jbo.server.BaseSQLBuilderImpl.bindParametersForStmt(BaseSQLBuilderImpl.java:3335)
         at oracle.jbo.server.ViewObjectImpl.bindParametersForCollection(ViewObjectImpl.java:13827)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:804)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:669)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3723)
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(Unknown Source)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4560)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:743)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:892)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:806)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:800)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3643)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(OAViewObjectImpl.java:439)
         at oracle.apps.aso.print.server.PrintQuoteAMImpl.queryQuote(PrintQuoteAMImpl.java:447)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:153)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:762)
         at oracle.apps.aso.print.webui.MainCO.processRequest(MainCO.java:180)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:600)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:391)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1182)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2607)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1940)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at OA.jspService(_OA.java:221)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    java.sql.SQLException: Attempt to set a parameter name that does not occur in the SQL: 1
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectAtName(OraclePreparedStatement.java:11915)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.setObjectAtName(OraclePreparedStatementWrapper.java:815)
         at oracle.jbo.server.OracleSQLBuilderImpl.bindParamValue(OracleSQLBuilderImpl.java:3919)
         at oracle.jbo.server.BaseSQLBuilderImpl.bindParametersForStmt(BaseSQLBuilderImpl.java:3335)
         at oracle.jbo.server.ViewObjectImpl.bindParametersForCollection(ViewObjectImpl.java:13827)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:804)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:669)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3723)
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(Unknown Source)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4560)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:743)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:892)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:806)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:800)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3643)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(OAViewObjectImpl.java:439)
         at oracle.apps.aso.print.server.PrintQuoteAMImpl.queryQuote(PrintQuoteAMImpl.java:447)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:153)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:762)
         at oracle.apps.aso.print.webui.MainCO.processRequest(MainCO.java:180)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:600)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:391)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1182)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2607)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1940)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at OA.jspService(_OA.java:221)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)

    "java.sql.SQLException: Attempt to set a parameter name that does not occur in the SQL"
    Try the suggestions in this? https://kr.forums.oracle.com/forums/thread.jspa?messageID=10253362
    Check the bindign styles and bind variables..

Maybe you are looking for

  • Agent Config issue

    Hi all, I have central repository server where agent and other services are running. Where as on one of there agent running (target server) there was an issue with time zone. Which was corrected by me. But now issue I have removed that target from OE

  • IPhone 3G, no light from LCD / backlight.

    My screen is not lighting up. I can see the icons and what I'm doing on the phone under light, but the screen is not producing any light. I tried replacing the LCD and I still have the same issue. Is there another component I should try to replace, o

  • Can I create a network using a DSL Gateway with iPad

    My brother and I purchased an iPad for our mum. She can see next doors Netgear WiFi but unfortunately they do not know the the security number to give mum access. So we were wondering if there is a way of creating a new network using an old wireless

  • HtmlLoader - is it possible to catch/redirect page content? like a Local cache?

    Here's the scenario, I have a kiosk app I'm working on, and am loading html pages within it using the HTMLLoader class. I'm curious if it is possibale to catch requests mainly for video and images from the html page, and redirect the request. Essenti

  • My phone wont even hard reset

    My phone stopped charging randomly and apparently it doesn't have enough battery power to even turn on....i know it's not broken because it keeps turning on every once in a while but quickly turns off for lack of battery power. Even the hard boots an