Getting errors in dbms output

Hi All,
I've written a function to calculate the value for QTD, Previous QTD, YTD and Previous YTD, by giving the parameters of Date, Table name, FilterCol(Date Column in the table), Column name to calculate...
--------------------------The function code is below:-----------
DECLARE
V_REPORT_DATE VARCHAR2(20):='&V_RPRT_DATE';
V_FILTERCOL VARCHAR2(100):='&V_FLTRCOL';
V_COL_NAME VARCHAR2(100):=UPPER('&V_COL_NAM');
V_TAB_NAME VARCHAR2(100):=UPPER('&V_TBL_NAME');
V_START_DATE VARCHAR2(20);--:='&stdate';
V_LAST_DATE VARCHAR2(20);--:='&lastdate';
V_QUARTER_NUMBER VARCHAR2(1000);
V_STR VARCHAR2(1000);
V_QTY VARCHAR2(1000);
V_SUM NUMBER(14,3):=0;
V_TAB VARCHAR2(100);--:=
V_COL VARCHAR2(100);--:=;
V_COL2 VARCHAR2(100);
V_PRV_QDATE VARCHAR2(20);
V_PRV_QDATE2 VARCHAR2(20);
V_SUM3 NUMBER(14,3):=0;
V_CURRQTD VARCHAR2(1000);
V_PRVQTD VARCHAR2(1000);
V_SUM1 NUMBER(14,3):=0;
V_YTD1 VARCHAR2(20);
V_YTD2 VARCHAR2(20);
V_YTD VARCHAR2(1000);
V_SUM2 NUMBER(14,3):=0;
V_PRVYTD VARCHAR2(20);
V_PRVYTDSTR VARCHAR2(20);
V_PRVYTDEND VARCHAR2(20);
V_PRV_YTD VARCHAR2(1000);
V_CUMM VARCHAR2(1000);
BEGIN
---------------GETTTING QUARTER NO.------------------------------
V_QTY:='SELECT TO_NUMBER(TO_CHAR(TO_DATE('''||'19/12/2012'||''', ''DD/MM/YYYY''), ''Q'')) FROM DUAL';
DBMS_OUTPUT.PUT_LINE(V_QTY);
EXECUTE IMMEDIATE V_QTY INTO V_QUARTER_NUMBER ;
DBMS_OUTPUT.PUT_LINE('QT NUM'||V_QUARTER_NUMBER);
----------------CURRENT QUARTER VALUE----------------------------
SELECT MIN (t), MAX (LAST_DAY (t)) INTO V_START_DATE,V_LAST_DATE
FROM ( SELECT ADD_MONTHS (TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'), 'YYYY'), LEVEL - 1) t,
TO_CHAR (ADD_MONTHS (TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'), 'YYYY'), LEVEL - 1), 'Q')QTD
FROM DUAL
CONNECT BY LEVEL <= 12) A
WHERE A.QTD = V_QUARTER_NUMBER;
DBMS_OUTPUT.PUT_LINE(V_START_DATE||'****'||V_LAST_DATE);
V_CURRQTD:='SELECT SUM('||V_COL_NAME||') FROM '||V_TAB_NAME|| ' WHERE '||V_FILTERCOL||' BETWEEN TO_DATE('''||V_START_DATE||''',''DD/MM/YYYY'') ' || ' AND TO_DATE('''||V_LAST_DATE||''',''DD/MM/YYYY'')';
--WHERE  trans_date betwen V_START_DATE1 AND V_LAST_DATE1';
DBMS_OUTPUT.PUT_LINE(V_CURRQTD);
EXECUTE IMMEDIATE V_CURRQTD INTO V_SUM;
DBMS_OUTPUT.PUT_LINE(V_SUM);
--RETURN V_SUM;
----------------END OF CURRENT QUARTER--------------------------
-----------------------PREVIOUS QUARTER---------------------------
SELECT MIN (t), MAX (LAST_DAY (t)) INTO V_PRV_QDATE,V_PRV_QDATE2
FROM ( SELECT ADD_MONTHS (TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'), 'YYYY'), LEVEL - 1) t,
TO_CHAR (ADD_MONTHS (TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'), 'YYYY'), LEVEL - 1), 'Q')QTD
FROM DUAL
CONNECT BY LEVEL <= 12) A
WHERE A.QTD = V_QUARTER_NUMBER-1;
DBMS_OUTPUT.PUT_LINE(V_PRV_QDATE||'****'||V_PRV_QDATE2);
V_PRVQTD:='SELECT SUM('||V_COL_NAME||') FROM '||V_TAB_NAME|| ' WHERE '||V_FILTERCOL||' BETWEEN TO_DATE('''||V_PRV_QDATE||''',''DD/MM/YYYY'') ' || ' AND TO_DATE('''||V_PRV_QDATE2||''',''DD/MM/YYYY'')';
DBMS_OUTPUT.PUT_LINE(V_PRVQTD);
EXECUTE IMMEDIATE V_PRVQTD INTO V_SUM1;
DBMS_OUTPUT.PUT_LINE(V_SUM1);
-----------------------END OF PREVIOUS QUARTER---------------------------
-----------------------CURRENT YTD------------------------------
SELECT TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'),'YEAR')INTO V_YTD1 FROM Dual;
SELECT LAST_DAY(ADD_MONTHS(TO_DATE(V_YTD1,'DD/MM/YYYY'),12 -
TO_NUMBER(TO_CHAR(SYSDATE,'mm')))) INTO V_YTD2 FROM DUAL;
V_YTD:='SELECT SUM('||V_COL_NAME||') FROM '||V_TAB_NAME|| ' WHERE '||V_FILTERCOL||' BETWEEN TO_DATE('''||V_YTD1||''',''DD/MM/YYYY'') ' || ' AND TO_DATE('''||V_YTD2||''',''DD/MM/YYYY'')';
DBMS_OUTPUT.PUT_LINE(V_YTD);
EXECUTE IMMEDIATE V_YTD INTO V_SUM2;
DBMS_OUTPUT.PUT_LINE(V_SUM2);
---------------------------END OF CURRENT YTD------------
-------------PREVIOUS YTD-------------------
SELECT ADD_MONTHS(TO_DATE('19/12/2012','DD/MM/YYYY'),-12) INTO V_PRVYTD FROM DUAL;
SELECT TRUNC(TO_DATE(V_PRVYTD,'DD/MM/YYYY'),'YEAR') INTO V_PRVYTDSTR FROM DUAL;
SELECT LAST_DAY(ADD_MONTHS(TO_DATE(V_PRVYTD,'DD/MM/YYYY'),12 -
TO_NUMBER(TO_CHAR(SYSDATE,'mm')))) INTO V_PRVYTDEND FROM DUAL;
V_PRV_YTD:='SELECT SUM('||V_COL_NAME||') FROM '||V_TAB_NAME|| ' WHERE '||V_FILTERCOL||' BETWEEN TO_DATE('''||V_PRVYTDSTR||''',''DD/MM/YYYY'') ' || ' AND TO_DATE('''||V_PRVYTDEND||''',''DD/MM/YYYY'')';
DBMS_OUTPUT.PUT_LINE(V_PRV_YTD);
EXECUTE IMMEDIATE V_PRV_YTD INTO V_SUM3;
DBMS_OUTPUT.PUT_LINE(V_SUM3);
END;
I am getting the dbms output:
SELECT TO_NUMBER(TO_CHAR(TO_DATE('19-DEC-2012', 'DD/MM/YYYY'), 'Q')) FROM DUAL
QT NUM4
01-OCT-12****31-DEC-12
SELECT SUM(ACTUAL_YIELD) FROM DWH_PRODUCTION WHERE WO_RELEASE_DATE BETWEEN TO_DATE('01-OCT-12','DD-MON-YYYY') AND TO_DATE('31-DEC-12','DD-MON-YYYY')
01-JUL-12****30-SEP-12
SELECT SUM(ACTUAL_YIELD) FROM DWH_PRODUCTION WHERE WO_RELEASE_DATE BETWEEN TO_DATE('01-JUL-12','DD/MM/YYYY') AND TO_DATE('30-SEP-12','DD/MM/YYYY')
For calculating the QTD and Previous QTD, it's showing only the query in dbms output not the sum----I've chkd the error and realize its converting the date format like DD-MON-YYYY instead of i've defined the date format as DD/MM/YYYY, so values aren't comin.
Note:- All the queries in function are giving the correct values as expected, if I fire them outside the function code, and giving correct values as data is there.....
-----For YTD and PYTD----------showing error i.e.
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at "SPARC.DBMS_OUTPUT", line 116
ORA-06512: at "SPARC.DBMS_OUTPUT", line 65
ORA-06512: at line 81
I've given the string varchar2 type and 1000:
Help appreciated, Plz help me out.....
One more favor I ask i.e.----Can any1 help me to write dbms output to show all the values in one line i.e values of SUM, SUM1, SUM2, SUM3
Thnx in Advance

Your code is against the basics of PL/SQL..
Why are you sing DYNAMIC SQL?
And all these values (QTD,YTD..) - Cant you find it in plain SQL..?
Plase provide sample data (CEATE TABLE and INSERT statements) and expected output..
Provide the logic to arrive at expected output..
And your DB version..
And use {noformat}{noformat} tags to format the code and data you post..
What you are doing is *COMPLETELY WRONG*
Read FAQ: {message:id=9360002}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Error in 'Screen output w/o coonection to user' function BAPI_APOATP_CHECK

    Hi Experts,
    I am trying to create a new condition record for pick/pack time (Transportation and Shipment Scheduling) in APO, by creating a entirely new condition table & keeping highest access sequence no.
    But after creating this & moving it to staging system, we are getting error of "Screen output w/o coonection to user" in creating Sales order in R/3 & check for ATP.
    RFC connections are working fine.
    Could you please help,  I consulted with BASIS about system vs dialog users, but that's not issue according to them, as the client set-up is quite old, it won't be necessary.
    Could you please help me in this?
    Thanks a lot !
    Anurag Patki.

    Hi Tiago,
    Thanks a lot for the help.
    BASIS team changed the user to dialog user.
    Could you please suggest as what might went wrong for system to behave like this? And has this any co-relation with the changes I made & transported to staging system. As the changes made were cross-client. Was this the issue?
    I appreciate your support on this.
    Anurag Patki.

  • I am in mavericks disk utility recovery mode as my mac book will not boot up & stays only on the grey apple screen. When I verify the disk I get open error5 :input /output error on Syst stuck on 1 minute pouring out over 50 error messages & still counting

    I am in Mavericks disk utility recovery mode as my mac book pro will not boot up &amp; stays on the Apple grey screen . When I verify disk permissions I get
    Open error 5:"input/ output error" on syst with over 50 of this messages &amp; still counting . Disk Utility says 1 minute
    But this has been going on for over 10 mins .
    I can not verify disk or repair disk .
    I have tried to reinstall mavericks operating system but it says my hard drive is locked which is very strange .
    Does anyone know what is going on here ?
    My system looks like it has been totally corrupted . Thanks Andrew

    Could be. The "lock" isn't actually looking for a password.
    WARNING: This will completely erase the ENTIRE hard drive.
    What you would need to do is boot to recovery > disk utility > select the MAIN drive on the left side > partition > change partition layout from CURRENT to 1 PARTITION > ensure on the right side it says Format : Mac OSX Extended (Journaled) then push APPLY.
    Then if it will allow us, close the windows until you see the 4 options popup again and select "Reinstall Mac OS X" select the Mac HD and you should be good to go!

  • Getting error while taking MAX DB trans log backup.

    Hi,
    I am getting error while taking trans log backup of Maxdb database for archived log through data protector as below,
    [Critical] From: OB2BAR_SAPDBBAR@ttcmaxdb "MAX" Time: 08/19/10 02:10:41
    Unable to back up archive logs: no autolog medium found in media list
    But i am able to take complete data and incremental backup through data protector.
    I have already enabled the autolog for MAX DB database and it is writing that log file directly to HP-UX file system. Now i want to take backup of this archived log backup through data protector i.e. through trans log backup. So that the archived log which is on the file system after trans log backup completed will delete the archived logs in filesystem.  So that i don;t have to manually delete the archived logs from file system.
    Thanks,
    Subba

    Hi Lars,
    Thanks for the reply...
    Now i am able to take archive log backup but the problem is i can take only one archive file backup. Not multiple arhive log files generated by autolog at filesystem i.e /sapdb/MAX/saparch.
    I have enabled autolog and it is putting auto log file at unix directory i.e. /sapdb/MAX/saparch
    And then i am using the DataProtector 6.11 with trans log backup to backup the archived files in /sapdb/MAX/saparch. When i start the trans backup session through data protector it uses the archive stage command as "archive_stage BACKDP-Archive LOGBackup NOVERIFY REMOVE" If /sapdb/MAX/saparch has only one archive file it will backup and remove the file successfully. But if /sapdb/MAX/saparch has multiple archive files it gives an error as below,
      Preparing backup.
                Setting environment variable 'BI_CALLER' to value 'DBMSRV'.
                Setting environment variable 'BI_REQUEST' to value 'OLD'.
                Setting environment variable 'BI_BACKUP' to value 'ARCHIVE'.
                Constructed Backint for MaxDB call '/opt/omni/lbin/sapdb_backint -u MAX -f backup -t file -p SAPDB.13576.1283767878.par -i /var/opt/omni/tmp/MAX.
    bsi_in -c'.
                Created temporary file '/var/opt/omni/tmp/MAX.bsi_out' as output for Backint for MaxDB.
                Created temporary file '/var/opt/omni/tmp/MAX.bsi_err' as error output for Backint for MaxDB.
                Writing '/sapdb/data/wrk/MAX/dbm.ebf' to the input file.
                Writing '/sapdb/data/wrk/MAX/dbm.knl' to the input file.
            Prepare passed successfully.
            Starting Backint for MaxDB.
                Starting Backint for MaxDB process '/opt/omni/lbin/sapdb_backint -u MAX -f backup -t file -p SAPDB.13576.1283767878.par -i /var/opt/omni/tmp/MAX.
    bsi_in -c >>/var/opt/omni/tmp/MAX.bsi_out 2>>/var/opt/omni/tmp/MAX.bsi_err'.
                Process was started successfully.
            Backint for MaxDB has been started successfully.
            Waiting for the end of Backint for MaxDB.
                2010-09-06 03:15:21 The backup tool is running.
                2010-09-06 03:15:24 The backup tool process has finished work with return code 0.
            Ended the waiting.
            Checking output of Backint for MaxDB.
            Have found all BID's as expected.
        Have saved the Backup History files successfully.
        Cleaning up.
            Removing data transfer pipes.
                Removing data transfer pipe /var/opt/omni/tmp/MAX.BACKDP-Archive.1 ... Done.
            Removed data transfer pipes successfully.
            Copying output of Backint for MaxDB to this file.
    Begin of output of Backint for MaxDB (/var/opt/omni/tmp/MAX.bsi_out)----
                #SAVED 1009067:1 /sapdb/data/wrk/MAX/dbm.ebf
                #SAVED 1009067:1 /sapdb/data/wrk/MAX/dbm.knl
    End of output of Backint for MaxDB (/var/opt/omni/tmp/MAX.bsi_out)----
            Removed Backint for MaxDB's temporary output file '/var/opt/omni/tmp/MAX.bsi_out'.
            Copying error output of Backint for MaxDB to this file.
    Begin of error output of Backint for MaxDB (/var/opt/omni/tmp/MAX.bsi_err)----
    End of error output of Backint for MaxDB (/var/opt/omni/tmp/MAX.bsi_err)----
            Removed Backint for MaxDB's temporary error output file '/var/opt/omni/tmp/MAX.bsi_err'.
            Removed the Backint for MaxDB input file '/var/opt/omni/tmp/MAX.bsi_in'.
        Have finished clean up successfully.
    The backup of stage file '/export/sapdb/arch/MAX_LOG.040' was successful.
    2010-09-06 03:15:24
    Backing up stage file '/export/sapdb/arch/MAX_LOG.041'.
        Creating pipes for data transfer.
            Creating pipe '/var/opt/omni/tmp/MAX.BACKDP-Archive.1' ... Done.
        All data transfer pipes have been created.
        Preparing backup tool.
            Setting environment variable 'BI_CALLER' to value 'DBMSRV'.
            Setting environment variable 'BI_REQUEST' to value 'OLD'.
            Setting environment variable 'BI_BACKUP' to value 'ARCHIVE'.
            Constructed Backint for MaxDB call '/opt/omni/lbin/sapdb_backint -u MAX -f backup -t file -p SAPDB.13576.1283767878.par -i /var/opt/omni/tmp/MAX.bsi_
    in -c'.
            Created temporary file '/var/opt/omni/tmp/MAX.bsi_out' as output for Backint for MaxDB.
            Created temporary file '/var/opt/omni/tmp/MAX.bsi_err' as error output for Backint for MaxDB.
            Writing '/var/opt/omni/tmp/MAX.BACKDP-Archive.1 #PIPE' to the input file.
        Prepare passed successfully.
        Constructed pipe2file call 'pipe2file -d file2pipe -f /export/sapdb/arch/MAX_LOG.041 -p /var/opt/omni/tmp/MAX.BACKDP-Archive.1 -nowait'.
        Starting pipe2file for stage file '/export/sapdb/arch/MAX_LOG.041'.
            Starting pipe2file process 'pipe2file -d file2pipe -f /export/sapdb/arch/MAX_LOG.041 -p /var/opt/omni/tmp/MAX.BACKDP-Archive.1 -nowait >>/var/tmp/tem
    p1283767880-0 2>>/var/tmp/temp1283767880-1'.
            Process was started successfully.
        Pipe2file has been started successfully.
        Starting Backint for MaxDB.
            Starting Backint for MaxDB process '/opt/omni/lbin/sapdb_backint -u MAX -f backup -t file -p SAPDB.13576.1283767878.par -i /var/opt/omni/tmp/MAX.bsi_
    in -c >>/var/opt/omni/tmp/MAX.bsi_out 2>>/var/opt/omni/tmp/MAX.bsi_err'.
            Process was started successfully.
        Backint for MaxDB has been started successfully.
        Waiting for end of the backup operation.
            2010-09-06 03:15:25 The backup tool process has finished work with return code 2.
            2010-09-06 03:15:25 The backup tool is not running.
            2010-09-06 03:15:25 Pipe2file is running.
            2010-09-06 03:15:25 Pipe2file is running.
            2010-09-06 03:15:30 Pipe2file is running.
            2010-09-06 03:15:40 Pipe2file is running.
            2010-09-06 03:15:55 Pipe2file is running.
            2010-09-06 03:16:15 Pipe2file is running.
            Killing not reacting pipe2file process.
            Pipe2file killed successfully.
            2010-09-06 03:16:26 The pipe2file process has finished work with return code -1.
        The backup operation has ended.
        Filling reply buffer.
            Have encountered error -24920:
                The backup tool failed with 2 as sum of exit codes and pipe2file was killed.
            Constructed the following reply:
                ERR
                -24920,ERR_BACKUPOP: backup operation was unsuccessful
                The backup tool failed with 2 as sum of exit codes and pipe2file was killed.
        Reply buffer filled.
        Cleaning up.
            Removing data transfer pipes.
                Removing data transfer pipe /var/opt/omni/tmp/MAX.BACKDP-Archive.1 ... Done.
            Removed data transfer pipes successfully.
            Copying output of Backint for MaxDB to this file.
    Begin of output of Backint for MaxDB (/var/opt/omni/tmp/MAX.bsi_out)----
    End of output of Backint for MaxDB (/var/opt/omni/tmp/MAX.bsi_out)----
            Removed Backint for MaxDB's temporary output file '/var/opt/omni/tmp/MAX.bsi_out'.
            Copying error output of Backint for MaxDB to this file.
    Begin of error output of Backint for MaxDB (/var/opt/omni/tmp/MAX.bsi_err)----
    End of error output of Backint for MaxDB (/var/opt/omni/tmp/MAX.bsi_err)----
            Removed Backint for MaxDB's temporary error output file '/var/opt/omni/tmp/MAX.bsi_err'.
            Removed the Backint for MaxDB input file '/var/opt/omni/tmp/MAX.bsi_in'.
            Copying pipe2file output to this file.
    Begin of pipe2file output (/var/tmp/temp1283767880-0)----
    End of pipe2file output (/var/tmp/temp1283767880-0)----
            Removed pipe2file output '/var/tmp/temp1283767880-0'.
            Copying pipe2file error output to this file.
    Begin of pipe2file error output (/var/tmp/temp1283767880-1)----
    End of pipe2file error output (/var/tmp/temp1283767880-1)----
            Removed pipe2file error output '/var/tmp/temp1283767880-1'.
        Have finished clean up successfully.
    The backup of stage file '/export/sapdb/arch/MAX_LOG.041' was unsuccessful.
    2010-09-06 03:16:26
    Cleaning up.
        Have encountered error -24919:
            Can not remove file '/var/tmp/temp1283767880-0'.
            (System error 2; No such file or directory)
        Could not remove temporary output file of pipe2file ('/var/tmp/temp1283767880-0' ).
        Have encountered error -24919:
            Can not remove file '/var/tmp/temp1283767880-1'.
            (System error 2; No such file or directory)
        Could not remove temporary output file of pipe2file ('/var/tmp/temp1283767880-1' ).
    Have finished clean up successfully.
    Thanks,
    Subba

  • Java Stored Proc - Oracle DBMS Output

    The title pretty much says it all. I have a Java Stored Procedure and I need to direct output preferably to DBMS output from within the Java code. (This is a proof of concept and the managers want to see out put from it so they "know" it's working.)
    System.out.println seems to disappear (though why that is the case I have no idea) in spite of the fact that the samples all show the use of System.err to generate error messages.
    I'm not married to the idea of DBMS output, but it's an easy place to have the output for debugging purposes.
    Comments suggestions and ideas most welcome.
    Regards,
    P

    This might get you going in the right direction:
    DBMS_JAVA
    Gives you the ability to modify the behavior of the Aurora Java Virtual Machine (JVM) in Oracle. You can enable output (meaning that System.out.println will act like DBMS_OUTPUT.PUT_LINE), set compiler and debugger options, and more.
    You can try this link and look for SET_OUTPUT
    http://www.unix.org.ua/orelly/oracle/guide8i/ch09_07.htm
    Good Luck!

  • Getting error while editing content source of search service application

    Hi,
    when i edit the content source of SharePoint Search Service Application and click on OK Button then i get the following error.
    Error it gives : An item with the same key has already been added.
    and when i check it in ULS log it gives this.
    Application error when access /_admin/search/editcontentsource.aspx, Error=An
    item with the same key has already been added.  Server stack trace:    
     at System.ServiceModel.Channels.ServiceChannel.ThrowIfFaultUnderstood(Message reply, MessageFault fault, String action, MessageVersion version,
    FaultConverter faultConverter)   
     at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc)   
     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs,
    TimeSpan timeout)   
     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)   
     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown
    at [0]:    
     at Microsoft.Office.Server.Search.Internal.UI.SearchCentralAdminPageBase.ErrorHandler(Object sender, EventArgs e)   
     at Microsoft.Office.Server.Search.Internal.UI.SearchCentralAdminPageBase.OnError(EventArgs e)   
     at System.Web.UI.Page.HandleError(Exception e)   
     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)   
     at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)   
     at System.Web.UI.Page.ProcessRequest()   
     at System.Web.UI.Page.ProcessRequest(HttpContext context)   
     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()   
     at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    System.ServiceModel.FaultException`1[[System.ServiceModel.ExceptionDetail, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]:
    An item with the same key has already been added.   Server stack trace:    
     at System.ServiceModel.Channels.ServiceChannel.ThrowIfFaultUnderstood(Message reply, MessageFault fault, String action, MessageVersion version,
    FaultConverter faultConverter)   
     at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc)   
     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs,
    TimeSpan timeout)   
     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)   
     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown
    at [0]:    
     at Microsoft.Office.Server.Search.Internal.UI.SearchCentralAdminPageBase.ErrorHandler(Object sender, EventArgs e)   
     at Microsoft.Office.Server.Search.Internal.UI.SearchCentralAdminPageBase.OnError(EventArgs e)   
     at System.Web.UI.Page.HandleError(Exception e)   
     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)   
     at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)   
     at System.Web.UI.Page.ProcessRequest()   
     at System.Web.UI.Page.ProcessRequest(HttpContext context)   
     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()   
     at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    Getting Error Message for Exception System.ServiceModel.FaultException`1[System.ServiceModel.ExceptionDetail]: An
    item with the same key has already been added. (Fault Detail is equal to An ExceptionDetail, likely created by IncludeExceptionDetailInFaults=true, whose value is: System.ArgumentException: An
    item with the same key has already been added.  
     at Microsoft.Office.Server.Search.Administration.SearchApi.WriteAndReturnVersion(CodeToRun`1 remoteCode, VoidCodeToRun localCode, Int32 versionIn)   
     at SyncInvokeEditContentSource(Object , Object[] , Object[] )   
     at System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke(Object instance, Object[] inputs, Object[]& outputs)   
     at System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin(MessageRpc& rpc)   
     at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5(MessageRpc& rpc)   
     at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage31(MessageRpc&
    rpc)   
     at System.ServiceModel.Dispatcher.MessageRpc.Process(Boolean isOperationContextSet)).
    Can anyone please help me, how can i resolved this issue.i am stuck :(
    Thanks in advance
    Muhammad Luqman

    Also tried with this code, but no succeed.
    Add-PSSnapin "Microsoft.SharePoint.PowerShell"
    $searchapp = Get-SPEnterpriseSearchServiceApplication "Search Service Application"
    $StartAddresses = "http://insite"
    $cs = Get-SPEnterpriseSearchCrawlContentSource -SearchApplication $searchapp -identity "Local SharePoint sites"
    $cs | Set-SPEnterpriseSearchCrawlContentSource –StartAddresses $StartAddresses
    I have now only single content source and all others are removed now but still getting same error.
    Muhammad Luqman

  • BI Publisher - PO_DISPATCH Error generating report output

    Hi everyone,
    Sorry for my bad english... having said that...
    I need to modify the Purchase Order print. First, I wanted to see the standard version to get an idea of how much different it was. Well, I don't know because it doesn't work.
    Error:
    Error generating report output: (235,2309)
    Error occurred during the process of generating the output file from template file, XML data file, and translation XLIFF file.
    I know there are several topics on the web, but all of them are about new or custom reports, this is a standard one. When I preview the report on the report definition it works fine, so I assume there's a problem with the XML file generated. When I preview the report specifying an alternative XML I get the same error. The XML file I choose was the one generated by PeopleSoft when trying to view the printable version of the PO online.
    So, I start cutting portions of the XML File. I started leaving only de Header Data and it works OK, when I add the Lines it failed. I add the Line Fields one by one to detect what was the problem... And finally it failed when I add AMT_LINE_MAX. Why? No idea, is it because its value is '0,000' instead of '0.000'? I don't think that should be the problem since there are other numeric fields on the header, all with ',' as a decimal separator...
    Am I missing some configuration?
    Thanks in advance.
    Regards,
    Veronica.

    Have a look at the following doc:
    "Error generating report output. (235,2309)" When Running the "PO XMLP Dispatch" XML Publisher Report (PO_DISPATCH) for a Purchase Order with a Ship To Location with Special Characters in the Address [ID 1299876.1]
    https://support.oracle.com/epmos/faces/DocContentDisplay?id=1299876.1
    Stating this happens for example when there is a location with special characters.

  • Getting Error while running Sample Tutorial...

    Hi,
    I am working on samples---tutorials---Select All.
    I created "Movies" tables in our test database.I modified oc4j-ra.xml. When i modified partner link to point to my own database i can see "SelectAllServices.wsdl" got changed. I mean it added "1" to all "movies" string. I manually modified wsddl and deployed.
    But when i run the process i am getting error like
    <2006-02-13 11:28:30,888> <ERROR> <default.collaxa.cube.ws> <Database Adapter::O
    utbound> <oracle.tip.adapter.db.DBInteraction executeOutboundRead> unable to exe
    cute the NamedQuery: SelectAll.Movies.SelectAllServiceSelect
    06/02/13 11:28:30 java.lang.NullPointerException
    06/02/13 11:28:30 at oracle.tip.adapter.db.exceptions.DBResourceException.
    isRetriable(DBResourceException.java:114)
    06/02/13 11:28:30 at oracle.tip.adapter.db.exceptions.DBResourceException.
    outboundReadException(DBResourceException.java:337)
    06/02/13 11:28:30 at oracle.tip.adapter.db.DBInteraction.executeOutboundRe
    ad(DBInteraction.java:274)
    06/02/13 11:28:30 at oracle.tip.adapter.db.DBInteraction.execute(DBInterac
    tion.java:141)
    06/02/13 11:28:30 at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.exec
    uteRequestResponseOperation(WSIFOperation_JCA.java:469)
    06/02/13 11:28:30 at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIF
    InvocationHandler.java:445)
    06/02/13 11:28:30 at com.collaxa.cube.ws.WSInvocationManager.invoke2(WSInv
    ocationManager.java:310)
    06/02/13 11:28:30 at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvo
    cationManager.java:184)
    06/02/13 11:28:30 at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invok
    e(BPELInvokeWMP.java:601)
    06/02/13 11:28:30 at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__execu
    teStatements(BPELInvokeWMP.java:316)
    06/02/13 11:28:30 at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perfo
    rm(BPELActivityWMP.java:185)
    06/02/13 11:28:30 at com.collaxa.cube.engine.CubeEngine.performActivity(Cu
    beEngine.java:3398)
    06/02/13 11:28:30 at com.collaxa.cube.engine.CubeEngine.handleWorkItem(Cub
    eEngine.java:1905)
    06/02/13 11:28:30 at com.collaxa.cube.engine.dispatch.message.instance.Per
    formMessageHandler.handleLocal(PerformMessageHandler.java:75)
    06/02/13 11:28:30 at com.collaxa.cube.engine.dispatch.DispatchHelper.handl
    eLocalMessage(DispatchHelper.java:100)
    06/02/13 11:28:30 at com.collaxa.cube.engine.dispatch.DispatchHelper.sendM
    emory(DispatchHelper.java:185)
    06/02/13 11:28:30 at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEng
    ine.java:5410)
    06/02/13 11:28:30 at com.collaxa.cube.engine.CubeEngine.createAndInvoke(Cu
    beEngine.java:1300)
    06/02/13 11:28:30 at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.creat
    eAndInvoke(CubeEngineBean.java:117)
    06/02/13 11:28:30 at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.syncC
    reateAndInvoke(CubeEngineBean.java:146)
    06/02/13 11:28:30 at ICubeEngineLocalBean_StatelessSessionBeanWrapper0.syn
    cCreateAndInvoke(ICubeEngineLocalBean_StatelessSessionBeanWrapper0.java:486)
    06/02/13 11:28:30 at com.collaxa.cube.engine.delivery.DeliveryHandler.init
    ialRequestAnyType(DeliveryHandler.java:493)
    06/02/13 11:28:30 at com.collaxa.cube.engine.delivery.DeliveryHandler.init
    ialRequest(DeliveryHandler.java:426)
    06/02/13 11:28:30 at com.collaxa.cube.engine.delivery.DeliveryHandler.requ
    est(DeliveryHandler.java:133)
    06/02/13 11:28:30 at com.collaxa.cube.ejb.impl.DeliveryBean.request(Delive
    ryBean.java:97)
    06/02/13 11:28:30 at IDeliveryBean_StatelessSessionBeanWrapper22.request(I
    DeliveryBean_StatelessSessionBeanWrapper22.java:288)
    06/02/13 11:28:30 at com.oracle.bpel.client.delivery.DeliveryService.reque
    st(DeliveryService.java:101)
    06/02/13 11:28:30 at com.oracle.bpel.client.delivery.DeliveryService.reque
    st(DeliveryService.java:65)
    06/02/13 11:28:30 at ngDoInitiate.jspService(_ngDoInitiate.java:253)
    06/02/13 11:28:30 at com.orionserver.http.OrionHttpJspPage.service(OrionHt
    tpJspPage.java:56)
    06/02/13 11:28:30 at oracle.jsp.runtimev2.JspPageTable.service(JspPageTabl
    e.java:347)
    06/02/13 11:28:30 at oracle.jsp.runtimev2.JspServlet.internalService(JspSe
    rvlet.java:509)
    06/02/13 11:28:30 at oracle.jsp.runtimev2.JspServlet.service(JspServlet.ja
    va:413)
    06/02/13 11:28:30 at javax.servlet.http.HttpServlet.service(HttpServlet.ja
    va:853)
    06/02/13 11:28:30 at com.evermind.server.http.ServletRequestDispatcher.inv
    oke(ServletRequestDispatcher.java:810)
    06/02/13 11:28:30 at com.evermind.server.http.ServletRequestDispatcher.inc
    lude(ServletRequestDispatcher.java:121)
    06/02/13 11:28:30 at com.evermind.server.http.EvermindPageContext.include(
    EvermindPageContext.java:267)
    06/02/13 11:28:30 at displayProcess.jspService(_displayProcess.java:700)
    06/02/13 11:28:30 at com.orionserver.http.OrionHttpJspPage.service(OrionHt
    tpJspPage.java:56)
    06/02/13 11:28:30 at oracle.jsp.runtimev2.JspPageTable.service(JspPageTabl
    e.java:347)
    06/02/13 11:28:30 at oracle.jsp.runtimev2.JspServlet.internalService(JspSe
    rvlet.java:509)
    06/02/13 11:28:30 at oracle.jsp.runtimev2.JspServlet.service(JspServlet.ja
    va:413)
    06/02/13 11:28:30 at javax.servlet.http.HttpServlet.service(HttpServlet.ja
    va:853)
    06/02/13 11:28:30 at com.evermind.server.http.ServletRequestDispatcher.inv
    oke(ServletRequestDispatcher.java:810)
    06/02/13 11:28:30 at com.evermind.server.http.ServletRequestDispatcher.for
    wardInternal(ServletRequestDispatcher.java:322)
    06/02/13 11:28:30 at com.evermind.server.http.ServletRequestDispatcher.for
    ward(ServletRequestDispatcher.java:220)
    06/02/13 11:28:30 at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilte
    r.java:152)
    06/02/13 11:28:30 at com.evermind.server.http.ServletRequestDispatcher.inv
    oke(ServletRequestDispatcher.java:649)
    06/02/13 11:28:30 at com.evermind.server.http.ServletRequestDispatcher.for
    wardInternal(ServletRequestDispatcher.java:322)
    06/02/13 11:28:30 at com.evermind.server.http.HttpRequestHandler.processRe
    quest(HttpRequestHandler.java:798)
    06/02/13 11:28:30 at com.evermind.server.http.HttpRequestHandler.run(HttpR
    equestHandler.java:278)
    06/02/13 11:28:30 at com.evermind.server.http.HttpRequestHandler.run(HttpR
    equestHandler.java:120)
    06/02/13 11:28:30 at com.evermind.util.ReleasableResourcePooledExecutor$My
    Worker.run(ReleasableResourcePooledExecutor.java:192)
    06/02/13 11:28:30 at java.lang.Thread.run(Thread.java:534)
    <2006-02-13 11:28:30,920> <ERROR> <default.collaxa.cube.ws> <AdapterFramework::O
    utbound> file:/C:/OraBPELPM_1/integration/orabpel/domains/default/tmp/.bpel_Sele
    ctAll_1.2.jar/SelectAllService.wsdl [ SelectAllService_ptt::SelectAllServiceSele
    ct(SelectAllServiceSelect_inparameters,MoviesCollection) ] - Could not invoke op
    eration 'SelectAllServiceSelect' against the 'Database Adapter' due to:
    ORABPEL-11614
    DBReadInteractionSpec Execute Failed Exception.
    Query name: [SelectAllServiceSelect], Descriptor name: [SelectAll.Movies].
    See root exception for the specific exception. Caused by Exception [TOPLINK-4002
    ] (OracleAS TopLink - 10g (9.0.4.5) (Build 040930)): oracle.toplink.exceptions.D
    atabaseException
    Exception Description: java.sql.SQLException: ORA-00942: table or view does not
    exist
    Internal Exception: java.sql.SQLException: ORA-00942: table or view does not exi
    st
    Error Code: 942.
    <2006-02-13 11:28:30,920> <INFO> <default.collaxa.cube.ws> <AdapterFramework::Ou
    tbound> Change logging level for Logger 'default.collaxa.cube.ws' to DEBUG to se
    e full error stack.
    Please help me.
    Thanks

    Thanks for instant reply.
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions
    name="SelectAllService"
    targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/db/SelectAllService"
    xmlns:tns="http://xmlns.oracle.com/pcbpel/adapter/db/SelectAllService"
    xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:jca="http://xmlns.oracle.com/pcbpel/wsdl/jca/"
    xmlns:pc="http://xmlns.oracle.com/pcbpel/"
    xmlns:top="http://xmlns.oracle.com/pcbpel/adapter/db/top/SelectAll"
    xmlns="http://schemas.xmlsoap.org/wsdl/">
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://xmlns.oracle.com/pcbpel/adapter/db/top/SelectAll"
    schemaLocation="Movies_table.xsd"/>
    </schema>
    </types>
    <message name="MoviesCollection_msg">
    <part name="MoviesCollection" element="top:MoviesCollection"/>
    </message>
    <message name="SelectAllServiceSelect_inparameters">
    <part name="SelectAllServiceSelect_inparameters" element="top:SelectAllServiceSelectInputParameters"/>
    </message>
    <message name="Movies_msg">
    <part name="Movies" element="top:Movies"/>
    </message>
    <portType name="SelectAllService_ptt">
    <operation name="SelectAllServiceSelect">
    <input message="tns:SelectAllServiceSelect_inparameters"/>
    <output message="tns:MoviesCollection_msg"/>
    </operation>
    <operation name="queryByExample">
    <input message="tns:Movies_msg"/>
    <output message="tns:MoviesCollection_msg"/>
    </operation>
    </portType>
    <binding name="SelectAllService_binding" type="tns:SelectAllService_ptt">
    <jca:binding />
    <operation name="SelectAllServiceSelect">
    <jca:operation
    InteractionSpec="oracle.tip.adapter.db.DBReadInteractionSpec"
    DescriptorName="SelectAll.Movies"
    QueryName="SelectAllServiceSelect"
    MappingsMetaDataURL="toplink_mappings.xml" />
    </operation>
    <operation name="queryByExample">
    <jca:operation
    InteractionSpec="oracle.tip.adapter.db.DBReadInteractionSpec"
    DescriptorName="SelectAll.Movies"
    IsQueryByExample="true"
    MappingsMetaDataURL="toplink_mappings.xml" />
    <input/>
    </operation>
    </binding>
    <!-- Your runtime connection is declared in
    J2EE_HOME/application-deployments/default/DbAdapter/oc4j-ra.xml
    These 'mcf' properties here are from your design time connection and
    save you from having to edit that file and restart the application server
    if eis/DB/BPELSamples is missing.
    These 'mcf' properties are safe to remove.
    -->
    <service name="SelectAllService">
    <port name="SelectAllService_pt" binding="tns:SelectAllService_binding">
    <jca:address location="eis/DB/BPELSamples"
    UIConnectionName="TestDB"
    ManagedConnectionFactory="oracle.tip.adapter.db.DBManagedConnectionFactory"
    mcf.DriverClassName="oracle.jdbc.driver.OracleDriver"
    mcf.PlatformClassName="oracle.toplink.oraclespecific.Oracle9Platform"
    mcf.ConnectionString="jdbc:oracle:thin:@xxx.xx.xxx.com:1521:develop"
    mcf.UserName="scott"
    mcf.Password="22F7AFE6F6B9672475468EABDDFF8ABDD62D1A19DF561D1E"
    />
    </port>
    </service>
    <plt:partnerLinkType name="SelectAllService_plt" >
    <plt:role name="SelectAllService_role" >
    <plt:portType name="tns:SelectAllService_ptt" />
    </plt:role>
    </plt:partnerLinkType>
    </definitions>
    Thanks
    CMB
    CA USA

  • Getting error in installtion of R/3 4.7

    Hi,
    Please find the encl.and help me for installation Getting error when creating SAP license (post processing)
    TRACE
    receiving on port 21212
    TRACE
    sending on port 21213
    TRACE
    host name is pun6061
    TRACE
    effective user corresponds to real user
    TRACE
    Account PUN6061/Administrator has ADS path 'WinNT://PUN6061/Administrator'
    TRACE
    Administrator has SID S-1-5-21-3522466702-3853796064-2433960431-500
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    existence check for user Administrator returned true.
    TRACE
    inserted account (Administrator, S-1-5-21-3522466702-3853796064-2433960431-500, USER) into the accountcache.
    TRACE
    java has been started with the following command line: "C:\j2sdk1.4.2_14\bin\javaw.exe" -cp jar\instgui.jar;jar\inqmyxml.jar -Dsun.java2d.noddraw=true com.sap.ins.gui.Main -port 21212
    TRACE
    guiengine: waiting for connect on ports 21212 and 21213
    TRACE
    got notification...
    TRACE<i>
    got notification...
    TRACE
    protocol version is 2
    TRACE
    signaling connect answer...
    TRACE
    releasing notifyLock
    TRACE
    trying to aquire notifyLock...
    TRACE
    running...
    TRACE
    Opened iaccdlib.dll
    TRACE
    Opened iamodwas.dll
    TRACE
    The controller registered the module CIaWapsSystem
    TRACE
    The controller registered the module CIaWapsInstance
    TRACE
    The controller registered the module CIaWapsDBName
    TRACE
    The controller registered the module CIaWapsDBName
    TRACE
    The controller registered the module CIaWapsDBName
    TRACE
    Opened iamodora.dll
    TRACE
    The controller registered the module COraInputChecker
    TRACE
    Opened iamodos.dll
    TRACE
    The controller registered the module CIaOsPorts
    TRACE
    The controller registered the module COraInputChecker
    TRACE
    The controller registered the module COraInputChecker
    TRACE
    The controller registered the module CIaOsCheckJava
    TRACE
    The controller registered the module CIaOsCheckJava
    TRACE
    Deactivated some dialog sequences for component DatabaseExport|ind|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component PrepareDbExport|ind|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component DbExport_dirty|ind|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component DatabaseLoadForExport_dirty|ind|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component DatabaseLoad_Db_Hook|ind|ind|ora|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component CleanSAPSystem|ind|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component DbExport|ind|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component DatabaseLoadForExport|ind|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component DatabaseLoad_Db_Hook|ind|ind|ora|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component SAPComponent_Stop_Services|windows|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component SAPComponent_Stop_Services_Waps_Hook|windows|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component CreateSAPClusterGroup|windows|ind|ind|Cluster|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component SAPComponent_Ports_Waps_Hook|ind|ind|ind|waps|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component SAPComponent_Services|windows|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component SAPComponent_Services_Waps_Hook|windows|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component SAPComponent_MMC_Waps_Hook|windows|ind|ind|waps|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component SAPComponent_Program_Items|windows|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component SAPComponent_Permissions_Waps_Hook|windows|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component PrepareIMIG|ind|ind|ora|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component DatabaseLoad_dirty|ind|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component DatabaseLoad_Db_Hook|ind|ind|ora|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component SAPComponent_InQMy|ind|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component SAP_J2EE_ENGINE|ind|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component SAPComponent_Enable_Java|ind|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component SAP_J2EE_ENGINE|ind|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component INSTALL_SDM|ind|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component SAPComponent_Post|ind|ind|ind|ind|ind; available: 1; required: 0
    TRACE
    Deactivated some dialog sequences for component DEPLOY_VIA_SDM|ind|ind|ind|ind|ind; available: 1; required: 0
    PHASE 2008-10-16 16:21:16
    SAP Web Application Server
    PHASE 2008-10-16 16:21:16
    Request common parameters of SAP System
    PHASE 2008-10-16 16:21:16
    Create operating system accounts
    TRACE
    Opened iajsmod.dll
    TRACE
    Opened iamodutl.dll
    PHASE 2008-10-16 16:21:16
    Request operating system user information
    PHASE 2008-10-16 16:21:16
    Request operating system user information
    PHASE 2008-10-16 16:21:16
    Request operating system user information
    PHASE 2008-10-16 16:21:16
    Request operating system user information
    PHASE 2008-10-16 16:21:16
    Request operating system user information
    PHASE 2008-10-16 16:21:16
    Request operating system user information
    PHASE 2008-10-16 16:21:16
    Request operating system user information
    PHASE 2008-10-16 16:21:16
    Request operating system user information
    PHASE 2008-10-16 16:21:16
    Request operating system user information
    PHASE 2008-10-16 16:21:16
    Request operating system user information
    PHASE 2008-10-16 16:21:16
    Request operating system user information
    PHASE 2008-10-16 16:21:16
    Request operating system user information
    PHASE 2008-10-16 16:21:16
    Request operating system user information
    PHASE 2008-10-16 16:21:17
    Request operating system user information
    PHASE 2008-10-16 16:21:17
    Request operating system user information
    PHASE 2008-10-16 16:21:17
    Request operating system user information
    PHASE 2008-10-16 16:21:17
    Request operating system user information
    PHASE 2008-10-16 16:21:17
    Request operating system user information
    PHASE 2008-10-16 16:21:18
    Adapt filesystem
    PHASE 2008-10-16 16:21:18
    Prepare check/adapt SAP instance filesystem
    PHASE 2008-10-16 16:21:18
    Extract archives
    PHASE 2008-10-16 16:21:18
    Extract SAP System kernel archives
    PHASE 2008-10-16 16:21:18
    Create service ports
    PHASE 2008-10-16 16:21:18
    Generate instance profiles
    PHASE 2008-10-16 16:21:18
    Versionize default profile, instance profile and start profile
    PHASE 2008-10-16 16:21:19
    Database Load
    TRACE
    tInstEnv :
    TRACE
    tInstEnv : tWhat
    TRACE
    value : STD
    TRACE
    tInstEnv :
    TRACE
    tInstEnv : tWhat
    TRACE
    value : NEWDB
    PHASE 2008-10-16 16:21:19
    Prepare SAP System Instance
    PHASE 2008-10-16 16:21:19
    Create a temporary license for SAP System
    INFO 2008-10-16 16:21:19
    Copying file C:/SAPinst ORACLE SAPINST/keydb.xml to: C:/SAPinst ORACLE SAPINST/keydb.2.xml.
    INFO 2008-10-16 16:21:19
    Creating file C:\SAPinst ORACLE SAPINST\keydb.2.xml.
    TRACE[E]
    Unable to get value for environment variable dbms_type.
    TRACE[E]
    Unable to get value for environment variable dbs_ora_schema.
    TRACE[E]
    Unable to get value for environment variable dbs_ora_tnsname.
    TRACE[E]
    Unable to get value for environment variable NLS_LANG.
    TRACE[E]
    Unable to get value for environment variable ORACLE_HOME.
    TRACE[E]
    Unable to get value for environment variable ORACLE_SID.
    TRACE[E]
    Unable to get value for environment variable SAPDATA_HOME.
    TRACE[E]
    Unable to get value for environment variable SAPEXE.
    TRACE[E]
    Unable to get value for environment variable SAPSYSTEMNAME.
    TRACE[E]
    Unable to get value for environment variable HOME.
    TRACE
    Opened iamodapp.dll
    Transaction begin ********************************************************
    TRACE
    Processing Row[0] dbSid="MM2" Condition="true" Program="D:\usr\sap\MM2\SYS\exe\run/saplicense" ProgramArguments="-R3Setup MM2 "XV5O3OZ2" TRACE=2" SlicInitial=""XV5O3OZ2""
    TRACE<i>
    Copying file C:/SAPinst ORACLE SAPINST/saplicense.log to: C:/SAPinst ORACLE SAPINST/saplicense.2.log.
    TRACE<i>
    Creating file C:\SAPinst ORACLE SAPINST\saplicense.2.log.
    TRACE<i>
    Removing file C:/SAPinst ORACLE SAPINST/saplicense.log.
    INFO 2008-10-16 16:21:19
    Creating file C:\SAPinst ORACLE SAPINST\saplicense.log.
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    Account pun6061/mm2adm has ADS path 'WinNT://pun6061/mm2adm'
    TRACE
    mm2adm has SID S-1-5-21-3522466702-3853796064-2433960431-1014
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    existence check for user mm2adm returned true.
    TRACE
    inserted account (mm2adm, S-1-5-21-3522466702-3853796064-2433960431-1014, USER) into the accountcache.
    TRACE
    effective user corresponds to real user
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    Changing current processenvironment
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    Restoring current processenvironment
    INFO 2008-10-16 16:21:24
    Changed working directory to C:\SAPinst ORACLE SAPINST.
    INFO 2008-10-16 16:21:26
    See 'D:\usr\sap\MM2\SYS\exe\run/saplicense -R3Setup MM2 "XV5O3OZ2" TRACE=2' output in 'C:\SAPinst ORACLE SAPINST\saplicense.log'.
    TRACE
    ProgramReturnCode='-2' means error.
    ERROR 2008-10-16 16:21:26
    MOS-01012  PROBLEM: 'D:\usr\sap\MM2\SYS\exe\run/saplicense -R3Setup MM2 "XV5O3OZ2" TRACE=2' returned with '-2' which is not a defined as a success code.
    Transaction end **********************************************************
    TRACE
    JS Callback has thrown exception
    ERROR 2008-10-16 16:21:26
    FJS-00012  Error when executing script.
    TRACE
    got notification...
    TRACE
    releasing notifyLock
    TRACE[E]
    Unable to get value for environment variable dbms_type.
    TRACE[E]
    Unable to get value for environment variable dbs_ora_schema.
    TRACE[E]
    Unable to get value for environment variable dbs_ora_tnsname.
    TRACE[E]
    Unable to get value for environment variable NLS_LANG.
    TRACE[E]
    Unable to get value for environment variable ORACLE_HOME.
    TRACE[E]
    Unable to get value for environment variable ORACLE_SID.
    TRACE[E]
    Unable to get value for environment variable SAPDATA_HOME.
    TRACE[E]
    Unable to get value for environment variable SAPEXE.
    TRACE[E]
    Unable to get value for environment variable SAPSYSTEMNAME.
    TRACE[E]
    Unable to get value for environment variable HOME.
    Transaction begin ********************************************************
    TRACE
    Processing Row[0] dbSid="MM2" Condition="true" Program="D:\usr\sap\MM2\SYS\exe\run/saplicense" ProgramArguments="-R3Setup MM2 "XV5O3OZ2" TRACE=2" SlicInitial=""XV5O3OZ2""
    TRACE<i>
    Copying file C:/SAPinst ORACLE SAPINST/saplicense.log to: C:/SAPinst ORACLE SAPINST/saplicense.3.log.
    TRACE<i>
    Creating file C:\SAPinst ORACLE SAPINST\saplicense.3.log.
    TRACE<i>
    Removing file C:/SAPinst ORACLE SAPINST/saplicense.log.
    INFO 2008-10-16 16:21:31
    Creating file C:\SAPinst ORACLE SAPINST\saplicense.log.
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    effective user corresponds to real user
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    Changing current processenvironment
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    Restoring current processenvironment
    INFO 2008-10-16 16:21:31
    Changed working directory to C:\SAPinst ORACLE SAPINST.
    INFO 2008-10-16 16:21:34
    See 'D:\usr\sap\MM2\SYS\exe\run/saplicense -R3Setup MM2 "XV5O3OZ2" TRACE=2' output in 'C:\SAPinst ORACLE SAPINST\saplicense.log'.
    TRACE
    ProgramReturnCode='-2' means error.
    ERROR 2008-10-16 16:21:34
    MOS-01012  PROBLEM: 'D:\usr\sap\MM2\SYS\exe\run/saplicense -R3Setup MM2 "XV5O3OZ2" TRACE=2' returned with '-2' which is not a defined as a success code.
    Transaction end **********************************************************
    TRACE
    JS Callback has thrown exception
    ERROR 2008-10-16 16:21:34
    FJS-00012  Error when executing script.
    TRACE
    got notification...
    TRACE
    releasing notifyLock
    TRACE
    got notification...
    TRACE
    releasing notifyLock
    TRACE[E]
    Unable to get value for environment variable dbms_type.
    TRACE[E]
    Unable to get value for environment variable dbs_ora_schema.
    TRACE[E]
    Unable to get value for environment variable dbs_ora_tnsname.
    TRACE[E]
    Unable to get value for environment variable NLS_LANG.
    TRACE[E]
    Unable to get value for environment variable ORACLE_HOME.
    TRACE[E]
    Unable to get value for environment variable ORACLE_SID.
    TRACE[E]
    Unable to get value for environment variable SAPDATA_HOME.
    TRACE[E]
    Unable to get value for environment variable SAPEXE.
    TRACE[E]
    Unable to get value for environment variable SAPSYSTEMNAME.
    TRACE[E]
    Unable to get value for environment variable HOME.
    Transaction begin ********************************************************
    TRACE
    Processing Row[0] dbSid="MM2" Condition="true" Program="D:\usr\sap\MM2\SYS\exe\run/saplicense" ProgramArguments="-R3Setup MM2 "XV5O3OZ2" TRACE=2" SlicInitial=""XV5O3OZ2""
    TRACE<i>
    Copying file C:/SAPinst ORACLE SAPINST/saplicense.log to: C:/SAPinst ORACLE SAPINST/saplicense.4.log.
    TRACE<i>
    Creating file C:\SAPinst ORACLE SAPINST\saplicense.4.log.
    TRACE<i>
    Removing file C:/SAPinst ORACLE SAPINST/saplicense.log.
    INFO 2008-10-16 16:25:16
    Creating file C:\SAPinst ORACLE SAPINST\saplicense.log.
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    effective user corresponds to real user
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    Changing current processenvironment
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    Restoring current processenvironment
    INFO 2008-10-16 16:25:16
    Changed working directory to C:\SAPinst ORACLE SAPINST.
    INFO 2008-10-16 16:25:18
    See 'D:\usr\sap\MM2\SYS\exe\run/saplicense -R3Setup MM2 "XV5O3OZ2" TRACE=2' output in 'C:\SAPinst ORACLE SAPINST\saplicense.log'.
    TRACE
    ProgramReturnCode='-2' means error.
    ERROR 2008-10-16 16:25:18
    MOS-01012  PROBLEM: 'D:\usr\sap\MM2\SYS\exe\run/saplicense -R3Setup MM2 "XV5O3OZ2" TRACE=2' returned with '-2' which is not a defined as a success code.
    Transaction end **********************************************************
    TRACE
    JS Callback has thrown exception
    ERROR 2008-10-16 16:25:18
    FJS-00012  Error when executing script.
    TRACE
    got notification...
    TRACE
    releasing notifyLock
    TRACE[E]
    Unable to get value for environment variable dbms_type.
    TRACE[E]
    Unable to get value for environment variable dbs_ora_schema.
    TRACE[E]
    Unable to get value for environment variable dbs_ora_tnsname.
    TRACE[E]
    Unable to get value for environment variable NLS_LANG.
    TRACE[E]
    Unable to get value for environment variable ORACLE_HOME.
    TRACE[E]
    Unable to get value for environment variable ORACLE_SID.
    TRACE[E]
    Unable to get value for environment variable SAPDATA_HOME.
    TRACE[E]
    Unable to get value for environment variable SAPEXE.
    TRACE[E]
    Unable to get value for environment variable SAPSYSTEMNAME.
    TRACE[E]
    Unable to get value for environment variable HOME.
    Transaction begin ********************************************************
    TRACE
    Processing Row[0] dbSid="MM2" Condition="true" Program="D:\usr\sap\MM2\SYS\exe\run/saplicense" ProgramArguments="-R3Setup MM2 "XV5O3OZ2" TRACE=2" SlicInitial=""XV5O3OZ2""
    TRACE<i>
    Copying file C:/SAPinst ORACLE SAPINST/saplicense.log to: C:/SAPinst ORACLE SAPINST/saplicense.5.log.
    TRACE<i>
    Creating file C:\SAPinst ORACLE SAPINST\saplicense.5.log.
    TRACE<i>
    Removing file C:/SAPinst ORACLE SAPINST/saplicense.log.
    INFO 2008-10-16 16:34:39
    Creating file C:\SAPinst ORACLE SAPINST\saplicense.log.
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    effective user corresponds to real user
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    Changing current processenvironment
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    Restoring current processenvironment
    INFO 2008-10-16 16:34:39
    Changed working directory to C:\SAPinst ORACLE SAPINST.
    INFO 2008-10-16 16:34:41
    See 'D:\usr\sap\MM2\SYS\exe\run/saplicense -R3Setup MM2 "XV5O3OZ2" TRACE=2' output in 'C:\SAPinst ORACLE SAPINST\saplicense.log'.
    TRACE
    ProgramReturnCode='-2' means error.
    ERROR 2008-10-16 16:34:41
    MOS-01012  PROBLEM: 'D:\usr\sap\MM2\SYS\exe\run/saplicense -R3Setup MM2 "XV5O3OZ2" TRACE=2' returned with '-2' which is not a defined as a success code.
    Transaction end **********************************************************
    TRACE
    JS Callback has thrown exception
    ERROR 2008-10-16 16:34:41
    FJS-00012  Error when executing script.
    TRACE
    got notification...
    TRACE
    releasing notifyLock
    TRACE[E]
    Unable to get value for environment variable dbms_type.
    TRACE[E]
    Unable to get value for environment variable dbs_ora_schema.
    TRACE[E]
    Unable to get value for environment variable dbs_ora_tnsname.
    TRACE[E]
    Unable to get value for environment variable NLS_LANG.
    TRACE[E]
    Unable to get value for environment variable ORACLE_HOME.
    TRACE[E]
    Unable to get value for environment variable ORACLE_SID.
    TRACE[E]
    Unable to get value for environment variable SAPDATA_HOME.
    TRACE[E]
    Unable to get value for environment variable SAPEXE.
    TRACE[E]
    Unable to get value for environment variable SAPSYSTEMNAME.
    TRACE[E]
    Unable to get value for environment variable HOME.
    Transaction begin ********************************************************
    TRACE
    Processing Row[0] dbSid="MM2" Condition="true" Program="D:\usr\sap\MM2\SYS\exe\run/saplicense" ProgramArguments="-R3Setup MM2 "XV5O3OZ2" TRACE=2" SlicInitial=""XV5O3OZ2""
    TRACE<i>
    Copying file C:/SAPinst ORACLE SAPINST/saplicense.log to: C:/SAPinst ORACLE SAPINST/saplicense.6.log.
    TRACE<i>
    Creating file C:\SAPinst ORACLE SAPINST\saplicense.6.log.
    TRACE<i>
    Removing file C:/SAPinst ORACLE SAPINST/saplicense.log.
    INFO 2008-10-16 16:52:03
    Creating file C:\SAPinst ORACLE SAPINST\saplicense.log.
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    effective user corresponds to real user
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    Changing current processenvironment
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account Administrator exists with parameter domain="PUN6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    account mm2adm exists with parameter domain="pun6061"
    TRACE
    Restoring current processenvironment
    INFO 2008-10-16 16:52:03
    Changed working directory to C:\SAPinst ORACLE SAPINST.
    INFO 2008-10-16 16:52:05
    See 'D:\usr\sap\MM2\SYS\exe\run/saplicense -R3Setup MM2 "XV5O3OZ2" TRACE=2' output in 'C:\SAPinst ORACLE SAPINST\saplicense.log'.
    TRACE
    ProgramReturnCode='-2' means error.
    ERROR 2008-10-16 16:52:05
    MOS-01012  PROBLEM: 'D:\usr\sap\MM2\SYS\exe\run/saplicense -R3Setup MM2 "XV5O3OZ2" TRACE=2' returned with '-2' which is not a defined as a success code.
    Transaction end **********************************************************
    TRACE
    JS Callback has thrown exception
    ERROR 2008-10-16 16:52:05
    FJS-00012  Error when executing script.
    TRACE
    got notification...
    TRACE
    ACTION_OK received
    TRACE
    releasing notifyLock
    ERROR 2008-10-16 16:53:26
    FCO-00011  The step CreateSAPLicense with step key SAPSYSTEM|ind|ind|ind|ind|ind|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPInstancePrepare|ind|ind|ind|ind|ind|0|CreateSAPLicense|ind|ind|ind|ind|ind|0|CreateSAPLicense executed with status ERROR.
    ERROR 2008-10-16 16:53:26
    FCO-00034  An error occurred during the installation. 
    TRACE
    leaving doOpenChannels()...

    Hi,
    Please consider the content of the dev_slic file. You should find in it the cause of your problem.
    I had the same MOS-01012 error in the post-load actions, caused by the fact that the SAP schema owner was SAPR3 instead of SAPSID.
    In the dev_slic file I found that sapinst tried to create the MLICHECK table in PSAPDDICD tablespace, which didn't exist because of the choice for a new tablespace layout. To solve this, I created PSAPDDICD and PSAPDDICI tablespaces, then I retried with success.
    Hope this helps.
    Christophe

  • Getting error while Startting a BPM process programmatically

    Hi Experts,
    I am getting an error while trying to start the BPM process programmatically. What i have done till now is
    1. Created a WS in process composer
    2. Binded this ws with start of the process
    3. Created input parameters
    4. Testing it in WS Navigator
    I am following this doc /people/arafat.farooqui/blog/2009/08/13/introduction-to-sap-netweaver-bpm-part-4
    and I am getting error while testing in WS Navigator. I am getting error at the last step i.e. in result step and the error is
    Web Service returned an error. Fault Code: "(http://schemas.xmlsoap.org/soap/envelope/)Client" Fault String: "No operation found using soap keys [], [cn_comments]. InterfaceMapping Object class: com.sap.engine.services.webservices.espbase.mappings.InterfaceMapping mappings: (BindingType=Soap, SEIName=NewWSDLFile, BindingQName=(http://www.example.org/NewWSDLFile/)NewWSDLFileSOAP, PortTypeQName=(http://www.example.org/NewWSDLFile/)NewWSDLFile, SoapVersion=SOAP11, Galaxy_SDO=true, InterfaceMappingID=45ffb27c:1237f972cd8:-7d7e)."
    If possible can any one help me out.
    Thanks and regards
    Pranav

    Hi Arafat,
    Thanks for replying. Yes i have completed the output mapping. Input parameters i need for this service are :
    1. cn_comments
    ca_comments
    2. cn_planningGroup
    ca_account
    ca_serialnumber
    and few more attributes
    Now, what i did was i have created a complex type and added elements in it. But to my surprise i was not able to get these nodes and elements in output mapping. So, i changed the type of "parameter" from "new operation" to my complex type. By doing this i was able to get my nodes and elements in output mapping. Now i tested the entire thing in WS Navigator and i got that error.
    Please suggest how o proceed.
    Regards
    Pranav

  • Getting error while generating report from Siebel (Siebel/BI Publisher)

    Dear,
    I have completed the integration of siebel and BIP according to the oracle document, I successfully upload the sample template from siebel application to BIP server.
    But now I am facing two issues,
    I am getting error "Unauthorized access, Please contact the administrator."  when I open report on BIP which I have uploaded from siebel.
    When I try to generate report from siebel=>application=>Tables=>S_Contact I am getting the below error when click on table report from Report button.
    (httptransport.cpp (1635)) SBL-EAI-04117: HTTP Request error during 'Submitting Data SendHTTP request': 'Status code - 500'
    (httptransport.cpp (983)) SBL-EAI-04117: HTTP Request error during 'Submitting Data Send HTTP request': 'Status code - 500'
    (soapbinding.cpp (675)) SBL-EAI-04304: Unknown Part ':oracle.xdo.webservice.exception.InvalidParametersException'  for operation 'runReport' exists in SOAP message.
    (outdisp.cpp (247)) SBL-EAI-04308: Operation 'runReport' of Web Service 'http://xmlns.oracle.com/oxp/service/PublicReportService.PublicReportServiceService' at port 'PublicReportService' failed with the following explanation: "oracle.xdo.webservice.
    Invalid User Name and Password for BIP Server
    (xmlpadaptersvc.cpp (2287)) SBL-RPT-50529: Verify BI Publisher Server Userid and Password.
    Error in generating Report Output file /siebel8/sea81/siebsrvr/siebel8/sea81/siebsrvr/xmlp/reports/Rept11-3U7M403.PDF in the XMLP Engine
    (xmlpadaptersvc.cpp (2983)) SBL-RPT-50524: BI Publisher engine failed to generate report.
    Object manager error: ([0] BI Publisher engine failed to generate report.(SBL-RPT-50524) (0x95c55c))
    ( (0) err=2818155 sys=9815388) SBL-OMS-00107: Object manager error: ([0] BI Publisher engine failed to generate report.(SBL-RPT-50524) (0x95c55c))
    (bsvcmgr.cpp (1392) err=2818251 sys=0) SBL-OMS-00203: Error 9815388 invoking method "GenerateReport" for Business Service "XMLP Driver Service"
    (bsvcmgr.cpp (1236) err=2818251 sys=0) SBL-OMS-00203: Error 9815388 invoking method "GenerateReport" for Business Service "XMLP Driver Service"
    (smireq.cpp (425) err=2818251 sys=0) SBL-OMS-00203: Error 9815388 invoking method "GenerateReport" for Business Service "XMLP Driver Service"
    Please help to resolve this issue.
    Regards,
    Soahil

    This specifically means that the destinations have not been configured in the Crystal Job Server.  If you're running 4.x, this may be part of the "Adaptive Job Server" instead of or in addition to a Crystal Job Server.  If you're using 3.1 or earlier, you'll also have to set up the destination in the Destination Job Server.
    You'll have to log in to the CMC, go to Servers, right-click on the correct job server and go to "Destinations".  You'll then add something like "File" or "Unmanaged Disk" to the available destinations and save.  Stop the job server, start it again, and your error should go away.
    Please be aware that unless you're using specific credentials to schedule the report or you're saving to the server where BO is installed, you'll need to make sure that the BO services are running under a network "Services" account that has access to the folder you're scheduling the report to. By default during installation it's set to run under the "Local Services" account that doesn't have access to the network.
    -Dell

  • Getting Error - CREATE_CASH : ORA-01403: no data found

    When i use api AR_RECEIPT_API_PUB.CREATE_CASH in loop then i get error 'CREATE_CASH : ORA-01403: no data found' for second record.
    AR_RECEIPT_API_PUB.CREATE_CASH(p_api_version => 1.0
    ,p_init_msg_list => fnd_api.g_true
    ,p_commit => fnd_api.g_true
    ,p_receipt_number => i_receipt_number
    ,p_receipt_date => TRUNC(SYSDATE)
    ,p_gl_date => TRUNC(SYSDATE)
    ,p_amount => i_receipt_amount
    ,p_currency_code => g_currency_code
    ,p_receipt_method_id => i_receipt_method_id
    ,p_customer_id => i_customer_id
    ,p_cr_id => l_cr_id
    ,p_org_id => i_org_id
    ,x_return_status => l_return_status
    ,x_msg_count => l_msg_count
    ,x_msg_data => l_msg_data
    I run it for different org. First org it's running fine but for second it's fail -
    Here is output -
    Start, Org ID - 84
    l_receipt_number - 43164
    l_receipt_amount - 74.55
    g_currency_code - USD
    l_receipt_method_id - 4000
    l_customer_id - 7040
    l_cr_id -
    l_return_status -
    l_msg_count -
    l_msg_data -
    Status - S
    Start, Org ID - 81
    l_receipt_number - 43166
    l_receipt_amount - 30
    g_currency_code - USD
    l_receipt_method_id - 4000
    l_customer_id - 7047
    l_cr_id -
    l_return_status -
    l_msg_count -
    l_msg_data -
    Error count/msg - 2-
    Error msg - CREATE_CASH : ORA-01403: no data found
    Error msg - ORA-01403: no data found in Package AR_RECEIPT_API_PUB Procedure Create_cash
    PLease help it's urgent

    Here is code which i am using...
    IF l_ar_pay_rec > 0 THEN
    l_receipt_number := ar_cash_receipts_s.NEXTVAL;
    FOR r_ar_org_records IN cr_ar_org_records
    LOOP
    IF r_ar_org_records.org_id = 81 THEN
    l_resp_id := 50677;
    ELSE
    l_resp_id := 50681;
    END IF;
    MO_GLOBAL.INIT('AR');
    MO_GLOBAL.SET_POLICY_CONTEXT('S',r_ar_org_records.org_id);
    FND_GLOBAL.APPS_INITIALIZE(g_user_id,l_resp_id,l_appl_id,0);
    DBMS_OUTPUT.PUT_LINE('User,Resp,App,Org - '||g_user_id||','||l_resp_id||','||l_appl_id||','||r_ar_org_records.org_id);
    -- Derive Receipt Method ID
    BEGIN
    SELECT receipt_method_id
    INTO l_receipt_method_id
    FROM ar_receipt_methods
    WHERE name = g_receipt_method;
    EXCEPTION
    WHEN OTHERS THEN
    g_ar_error := 'Y';
    g_ar_error_msg := g_ar_error_msg||'Receipet Method Not Found, ';
    FND_FILE.PUT_LINE(FND_FILE.LOG,'Error While Derive Receipt Method ID');
    END;
    -- Derive Customer ID
    BEGIN
    SELECT customer_id
    ,SUM(AMOUNT_PAID)
    INTO l_customer_id
    ,l_receipt_amount
    FROM xxar_third_party_validation
    WHERE raf_code = i_raf
    AND receipt_date = i_date_paid
    AND org_id = r_ar_org_records.org_id
    AND customer_id is not null
    GROUP BY customer_id;
    EXCEPTION
    WHEN OTHERS THEN
    g_ar_error := 'Y';
    g_ar_error_msg := g_ar_error_msg||' Customer ID Not Found, ';
    FND_FILE.PUT_LINE(FND_FILE.LOG,'Error While Customer ID');
    END;
    fnd_msg_pub.initialize;
    l_return_status := NULL;
    l_msg_count := NULL;
    l_msg_data := NULL;
    l_cr_id := NULL;
    g_currency_code := 'USD';
    DBMS_OUTPUT.PUT_LINE('Start, Org ID - '||r_ar_org_records.org_id);
    -- Create Cash for Customer
    DBMS_OUTPUT.PUT_LINE('l_receipt_number - '||l_receipt_number);
    DBMS_OUTPUT.PUT_LINE('l_receipt_amount - '||l_receipt_amount);
    DBMS_OUTPUT.PUT_LINE('g_currency_code - '||g_currency_code);
    DBMS_OUTPUT.PUT_LINE('l_receipt_method_id - '||l_receipt_method_id);
    DBMS_OUTPUT.PUT_LINE('l_customer_id - '||l_customer_id);
    DBMS_OUTPUT.PUT_LINE('l_cr_id - '||l_cr_id);
    DBMS_OUTPUT.PUT_LINE('l_return_status - '||l_return_status);
    DBMS_OUTPUT.PUT_LINE('l_msg_count - '||l_msg_count);
    DBMS_OUTPUT.PUT_LINE('l_msg_data - '||l_msg_data);
    AR_RECEIPT_API_PUB.CREATE_CASH(p_api_version => 1.0
    ,p_init_msg_list => fnd_api.g_true
    ,p_receipt_number => l_receipt_number
    ,p_receipt_date => TRUNC(SYSDATE)
    ,p_gl_date => TRUNC(SYSDATE)
    ,p_amount => l_receipt_amount
    ,p_currency_code => g_currency_code
    ,p_receipt_method_id => l_receipt_method_id
    ,p_customer_id => l_customer_id
    ,p_cr_id => l_cr_id
    ,p_org_id => r_ar_org_records.org_id
    ,x_return_status => l_return_status
    ,x_msg_count => l_msg_count
    ,x_msg_data => l_msg_data
    DBMS_OUTPUT.PUT_LINE('Status - '||l_return_status);
    IF l_return_status <> 'S' THEN
    g_ar_error := 'Y';
    DBMS_OUTPUT.PUT_LINE('Error count/msg - '||l_msg_count||'-'||l_msg_data);
    IF l_msg_count = 1 THEN
    g_ar_error_msg := g_ar_error_msg||l_msg_data;
    DBMS_OUTPUT.PUT_LINE('Error msg - '||l_msg_data);
    ELSIF l_msg_count > 1 THEN
    LOOP
    l_msg_data := fnd_msg_pub.get (fnd_msg_pub.g_next
    ,fnd_api.g_false);
    IF l_msg_data IS NULL THEN
    EXIT;
    END IF;
    g_ar_error_msg := g_ar_error_msg||l_msg_data;
    DBMS_OUTPUT.PUT_LINE('Error msg - '||l_msg_data);
    END LOOP;
    END IF;
    xxar_log_error(r_ar_org_records.record_id,SUBSTR(g_ar_error_msg,1,120));
    ELSE
    DBMS_OUTPUT.PUT_LINE('Status - '||l_return_status);
    FOR r_ar_records IN cr_ar_records(r_ar_org_records.org_id)
    LOOP
    fnd_msg_pub.initialize;
    l_return_status := NULL;
    l_msg_count := NULL;
    l_msg_data := NULL;
    l_cr_id := NULL;
    l_receipt_amount := r_ar_records.amount_paid;
    l_trx_number := r_ar_records.transaction_number;
    g_currency_code := r_ar_records.currency_code;
    l_receipt_date := SYSDATE;
    l_gl_date := SYSDATE;
    -- Apply payments for the RAF and Date Paid
    AR_RECEIPT_API_PUB.APPLY(p_api_version => 1.0
    ,p_init_msg_list => fnd_api.g_true
    ,p_commit => fnd_api.g_false
    ,x_return_status => l_return_status
    ,x_msg_count => l_msg_count
    ,x_msg_data => l_msg_data
    ,p_receipt_number => l_receipt_number
    ,p_trx_number => l_trx_number
    ,p_amount_applied => l_receipt_amount
    ,p_org_id => r_ar_org_records.org_id
    IF l_return_status <> 'S' THEN
    g_ar_error := 'Y';
    IF l_msg_count = 1 THEN
    g_ar_error_msg := g_ar_error_msg||l_msg_data;
    ELSIF l_msg_count > 1 THEN
    LOOP
    l_msg_data := fnd_msg_pub.get (fnd_msg_pub.g_next
    ,fnd_api.g_false);
    IF l_msg_data IS NULL THEN
    EXIT;
    END IF;
    g_ar_error_msg := g_ar_error_msg||l_msg_data;
    END LOOP;
    END IF;
    xxar_log_error(r_ar_records.record_id,SUBSTR(g_ar_error_msg,1,240));
    ELSE
    DBMS_OUTPUT.PUT_LINE('Sucess 2 - ');
    NULL;
    /* -- Call Adjustment API for Contractual Allowance
    IF NVL(r_ar_records.contractual_allowance_amt,0) > 0 THEN
    xxar_third_party_rcpt_adj(r_ar_records.record_id
    ,r_ar_records.transaction_number
    ,r_ar_records.contractual_allowance_amt
    ,i_user_id
    END IF; */
    END IF;
    END LOOP;
    END IF;
    DBMS_OUTPUT.PUT_LINE('Error Flag AR - '||g_ar_error);
    IF g_ar_error = 'Y' THEN
    xxar_log_error(r_ar_org_records.record_id,SUBSTR(g_ar_error_msg,1,240));
    END IF;
    END LOOP;

  • Premier Elements 12 Cannot burn DVD Get error message of internal software failure

    Cannot butn DVD with Premier Elements 12 Get error message of internal software failure.

    Great news JMD103.
    There should be a big red pop-up, when one adds a Stop Marker to the end of the Timeline, saying "Do NOT do that!" That Stop Marker will almost always yield a failed Project output to DVD.
    Good luck, and happy editing,
    Hunt

  • When connect ipod nano 6th gen i get error message "you need to format the disk in drive G: before you can use it Do you want to format it?"

    when connect ipod nano 6th gen i get error message "you need to format the disk in drive G: before you can use it Do you want to format it?" Any suggestions please

    Hi Michael
    These are the answers
     to your questions
    What is the OS version, Windows Server 2008?   
    Microsoft Windows [Version 6.0.6001]  
    SP1
     On which disk you choose to install it, the C: drive? 
    I have Raid 5
    What
    is the output of the Checkdsk?   It find Nothing
    Could
    you please upload us a screen shot?  I have no 
    Screen shot
    Is
    the C: drive is a external drive?  NO
    Besides,
    have you manually assigned the drive letter? 
    NO
    Thanks

  • Getting errors when iam using  BAPI_PO_CREATE1 for Purchase Order creation

    Hi sap Gurus,
      I am getting Errors when iam using  BAPI_PO_CREATE1 for Purchase Order creation that Material (144) does not exist but it is alreardy maintained in MM01.
    I dont get how it is coming.and what are the mandatory fields in bapi BAPI_PO_CREATE1 in item level .that is too material only.
    pls let me know .
    thanks in advance.

    Hi,
    Check the sample code..
    report  zpo_test             .
    *DATA DECLARATION
    constants : c_x value 'X'.
    *Structures to hold PO header data
    data : header like bapimepoheader ,
    headerx like bapimepoheaderx .
    *Structures to hold PO account data
    data : account like bapimepoaccount occurs 0 with header line ,
    accountx like bapimepoaccountx occurs 0 with header line .
    *Internal Tables to hold PO ITEM DATA
    data : item like bapimepoitem occurs 0 with header line,
    itemx like bapimepoitemx occurs 0 with header line,
    *Internal table to hold messages from BAPI call
    return like bapiret2 occurs 0 with header line,
    *Internal table to hold messages from BAPI call
    pocontractlimits like bapiesucc occurs 0 with header line.
    data : w_header(40) value 'PO Header',
    purchaseorder like bapimepoheader-po_number,
    delivery_date like bapimeposchedule-delivery_date.
    data : ws_langu like sy-langu.
    *text-001 = 'PO Header' - define as text element
    selection-screen begin of block b1 with frame title text-001.
    parameters : company like header-comp_code default '122' ,
    doctyp like header-doc_type default 'NB' ,
    cdate like header-creat_date default sy-datum ,
    vendor like header-vendor default '2000000012' ,
    pur_org like header-purch_org default 'PU01' ,
    pur_grp like header-pur_group default '005' .
    *sociedad like HEADER-COMP_CODE default '122' ,
    *vendedor like HEADER-SALES_PERS default 'sale person'.
    selection-screen end of block b1.
    selection-screen begin of block b2 with frame title text-002.
    parameters : item_num like item-po_item default '00010',
    material like item-material default '12000000' ,
    tipo_imp like item-acctasscat default 'K' ,
    *pos_doc like ITEM-ITEM_CAT default 'F' ,
    shorttxt like item-short_text default 'PRUEBA BAPI' ,
    grup_art like item-matl_group default '817230000' ,
    plant like item-plant default '3001' ,
    mpe like item-trackingno default '9999' ,
    *contrato like ITEM-AGREEMENT default '4904000003' ,
    *quantity like ITEM-QUANTITY default 1 .
    po_unit like item-po_unit default 'EA'.
    selection-screen end of block b2.
    Par?mnetros de imputaci?n
    selection-screen begin of block b3 with frame title text-004.
    parameters : centro like account-costcenter default '1220813150',
    cuenta like account-gl_account default '6631400' ,
    num_pos like account-po_item default '10' ,
    serial like account-serial_no default '01' ,
    ind_imp like account-tax_code default 'I2' .
    selection-screen end of block b3.
    start-of-selection.
    *DATA POPULATION
      ws_langu = sy-langu. "Language variable
    *POPULATE HEADER DATA FOR PO
    *HEADER-COMP_CODE = sociedad .
      header-doc_type = doctyp .
      header-vendor = vendor .
      header-creat_date = cdate .
      header-created_by = 'TD17191' .
      header-purch_org = pur_org .
      header-pur_group = pur_grp .
      header-comp_code = company .
      header-langu = ws_langu .
    *HEADER-SALES_PERS = vendedor .
    *HEADER-CURRENCY = 'DOP' .
    *HEADER-ITEM_INTVL = 10 .
    *HEADER-PMNTTRMS = 'N30' .
    *HEADER-EXCH_RATE = 1 .
    *POPULATE HEADER FLAG.
      headerx-comp_code = c_x.
      headerx-doc_type = c_x.
      headerx-vendor = c_x.
      headerx-creat_date = c_x.
      headerx-created_by = c_x.
      headerx-purch_org = c_x.
      headerx-pur_group = c_x.
      headerx-langu = c_x.
    *HEADERX-sales_pers = c_x.
    *HEADERX-CURRENCY = c_x.
    *HEADER-ITEM_INTVL = c_x.
    *HEADER-PMNTTRMS = c_x.
    *HEADER-EXCH_RATE = c_x.
    *HEADER-EXCH_RATE = c_x.
    *POPULATE ITEM DATA.
      item-po_item = item_num.
      item-quantity = '1'.
    *ITEM-MATERIAL = material .
      item-short_text = 'prueba bapi_po_create1'.
    *ITEM-TAX_CODE = ''.
      item-acctasscat = 'K' .
    *ITEM-ITEM_CAT = 'D' .
      item-matl_group = '817230000' .
      item-plant = '3001' .
      item-trackingno = '99999'.
      item-preq_name = 'test'.
    *ITEM-AGREEMENT = '' .
    *ITEM-AGMT_ITEM = ''.
      item-quantity = '1' .
      item-po_unit = 'EA'.
    *ITEM-ORDERPR_UN = 'EA'.
      item-conv_num1 = '1'.
      item-conv_den1 = '1'.
      item-net_price = '1000000' .
      item-price_unit = '1'.
      item-gr_pr_time = '0'.
      item-prnt_price = 'X'.
      item-unlimited_dlv = 'X'.
      item-gr_ind = 'X' .
      item-ir_ind = 'X' .
      item-gr_basediv = 'X'.
    *ITEM-PCKG_NO = '' .
      append item. clear item.
    *POPULATE ITEM FLAG TABLE
      itemx-po_item = item_num.
      itemx-po_itemx = c_x.
    *ITEMX-MATERIAL = C_X.
      itemx-short_text = c_x.
      itemx-quantity = c_x.
    *ITEMX-TAX_CODE = C_X.
      itemx-acctasscat = c_x.
    *ITEMX-ITEM_CAT = c_x.
      itemx-matl_group = c_x.
      itemx-plant = c_x.
      itemx-trackingno = c_x.
      itemx-preq_name = c_x.
    *ITEMX-AGREEMENT = C_X.
    *ITEMX-AGMT_ITEM = c_x.
      itemx-stge_loc = c_x.
      itemx-quantity = c_x.
      itemx-po_unit = c_x.
    *ITEMX-ORDERPR_UN = C_X.
      itemx-conv_num1 = c_x.
      itemx-conv_den1 = c_x.
      itemx-net_price = c_x.
      itemx-price_unit = c_x.
      itemx-gr_pr_time = c_x.
      itemx-prnt_price = c_x.
      itemx-unlimited_dlv = c_x.
      itemx-gr_ind = c_x .
      itemx-ir_ind = c_x .
      itemx-gr_basediv = c_x .
      append itemx. clear itemx.
    *POPULATE ACCOUNT DATA.
      account-po_item = item_num.
      account-serial_no = serial .
      account-creat_date = sy-datum .
      account-costcenter = centro .
      account-gl_account = cuenta .
      account-gr_rcpt = 'tester'.
      append account. clear account.
    *POPULATE ACCOUNT FLAG TABLE.
      accountx-po_item = item_num .
      accountx-po_itemx = c_x .
      accountx-serial_no = serial .
      accountx-serial_nox = c_x .
      accountx-creat_date = c_x .
      accountx-costcenter = c_x .
      accountx-gl_account = c_x .
      account-gr_rcpt = c_x.
      append accountx. clear accountx.
    *BAPI CALL
      call function 'DIALOG_SET_NO_DIALOG'.
      call function 'BAPI_PO_CREATE1'
        exporting
          poheader         = header
          poheaderx        = headerx
        importing
          exppurchaseorder = purchaseorder
        tables
          return           = return
          poitem           = item
          poitemx          = itemx
          poaccount        = account
          poaccountx       = accountx.
    *Confirm the document creation by calling database COMMIT
      call function 'BAPI_TRANSACTION_COMMIT'
      exporting
      wait = 'X'
    IMPORTING
    RETURN =
    end-of-selection.
    *Output the messages returned from BAPI call
      loop at return.
        write / return-message.
      endloop.
    Regards
    Sudheer

Maybe you are looking for

  • Lock table overflow - Delta (fetch)

    Hi, I have an InfoCube which contains large amount of data. Before starting to extract data from this InfoCube, I want to set datamart status as fetched to start extractions with new coming requests. However, when I choose the processing mode of DTP

  • How can I change my password to the Forum?

    I have a hard time remembering my password because it was generated. Is there any way I can reset it to something I can remember?

  • Jus bought an iphone off the street n it needs to be enabled

    hi i just bought a iphone dont know what kind and it needs to be enabled can u help? it only lets me get to the emergancy calls

  • Quicktime X beach balling delay when opening any file

    Hi all - lately my Quicktime X gives me a delay of 10-15 seconds and a beachball before playing any file.  Quicktime 7 plays without a hitch instantly. This is true of files on all locations on my Mac. The file opens instantly, I see the first frame,

  • Problem in redirect( JSF) onTomcat

    Hi All, I am trying to run a JSF application on Tomcat 5.0.25 , which is already working fine on Websphere. The application uses frames and I am redirecting to a JSF page from a Servlet : Code: response.sendRedirect(url); return; I am getting a java.