Unable to connect the server, while open the rpt file in server from java.

Hi,
I have written one java class, that class deployed in solaris server. The BO server is avilable in another solaris server. i want to convert the rpt file to pdf format. for that i try to give the file path to the server for opening the rpt file, that time i got the follwoing error:
com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException:
Unable to connect to the server: uinbrdcsap02. --- Connection refused
(errno:239)---- Error code:-2147217387 Error code name:connectServer
        at
com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwR
eportSDKServerException(Unknown Source)
        at
com.crystaldecisions.proxy.remoteagent.TCPIPCommunicationAdapter.connect
(Unknown Source)
        at com.crystaldecisions.proxy.remoteagent.z.a(Unknown Source)
        at
com.crystaldecisions.sdk.occa.report.application.ReportAppSession.int(Un
known Source)
        at
com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initia
lize(Unknown Source)
*My java code is the following ..*
package com.ramco.report;
//Crystal Java Reporting Component (JRC) imports.     
import java.io.File;
import java.io.FileInputStream;
import java.io.ByteArrayInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ByteArrayOutputStream;
import java.sql.Connection;
import java.sql.CallableStatement;
import java.sql.Statement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.text.SimpleDateFormat;
import com.crystaldecisions.sdk.occa.report.exportoptions.ReportExportFormat;
import com.crystaldecisions.sdk.occa.report.exportoptions.ExportOptions;
import java.util.Calendar;
import java.util.Properties;
import org.apache.log4j.Logger;
import org.apache.log4j.SimpleLayout;
import org.apache.log4j.FileAppender;
import java.net.InetAddress;
import java.net.UnknownHostException;
// Class file starting.
public class StandardReconReport
     private Connection objConnection = null;
     private DBConnection dbconnection = null;
     private ByteArrayInputStream byteArrayInputStream =null;
     private FileOutputStream fileOutputStream = null;     
     private ByteArrayOutputStream byteArrayOutputStream = null;
     private CallableStatement callablestatement = null;
     private CallableStatement callablestatement1 = null;     
     private ResultSet resultset1 = null;
     private ResultSet resultset = null;
     private String Deal_No = null;
     private String Job_Date = null;     
     private String Reportservername = null;
     private SimpleLayout layout   = null;
     private FileAppender appender = null;
     private Logger logger            = null;
     private String     DateTimeFormat = null;
     private String Report_File_path =null;
     private String Pdf_File_Name = null;     
     private Properties properties = null;
     private String LogFilePath = null;
     private String FileName = null;
     private String FullLogFilePath = null;
     private Statement statement = null;
     private String Report_upload_path = null;
     private String StanReconDir = null;
     private String winandsol = null;
     private com.crystaldecisions.sdk.occa.report.application.ReportClientDocument  reportClientDoc = null;
     private int count_tmp=0;
     private String DATE_FORMAT = null;
     private String dateformat = null;
     private Calendar cal = null;
    private SimpleDateFormat sdf = null;
    private String reconfilename = null;    
     // Method for Generating Report.....
     private void stanReportGeneration()
          try
               properties = new Properties();
               properties.clear();
             properties.load(new FileInputStream("GeneralInfo.properties"));
             Reportservername = properties.getProperty("reportservername");
             reconfilename = properties.getProperty("reconfilename");
             layout = new SimpleLayout();
               LogFilePath = properties.getProperty("logfilepath");               
               dateformat = dateTime1(properties.getProperty("dateformat1"));
               StanReconDir = properties.getProperty("stanrecondir");
              winandsol = properties.getProperty("windowsandsolaris");        
              if (new File(LogFilePath).exists())
                   LogFilePath = LogFilePathdateformatwinandsol;
                   if (new File(LogFilePath).exists())
                   else
                        new File(LogFilePath).mkdirs();
              FileName = "STANRECONLOGFILE-";             
              FileName = FileNamedateformat".txt";             
              FullLogFilePath = LogFilePath+FileName;
              appender = new FileAppender(layout,FullLogFilePath,false);
             logger = Logger.getLogger("MyLogger");
             logger.addAppender(appender);
             DateTimeFormat = properties.getProperty("datetimeformat");       
             logger.info("The Start Recon Report Start Time: " +dateTime(DateTimeFormat));             
             logger.info("");            
             try
                  InetAddress address[] = InetAddress.getAllByName(Reportservername);                 
                 for (int i=0; i<address.length;i++)
                      logger.info("Report Server Name: " + address<i>.getHostName());
                      logger.info("Report Server Address: " + address<i>.getHostAddress());
                      logger.info("Report Server Canonical: " + address<i>.getCanonicalHostName());
             catch (UnknownHostException e)
                  logger.error("The host "Reportservername"is not avilable");
             Report_File_path = properties.getProperty("StandardReconReportpath");          
              logger.info("The Report File Name is : "+Report_File_path " - "dateTime(DateTimeFormat));
              //Report_File_path="rassdk://"+Report_File_path;
              try
                   //Getting the Database connection....
                   dbconnection = new DBConnection();
                  objConnection = dbconnection.getConnections();
                  statement = objConnection.createStatement();
                  String sqlQuery = "SELECT TRIM(PARAM_VALUE) FROM SYS_USER_PARAM WHERE COMPONENT = 'REPORT' AND LINE_NO = 1 AND PARAM_NAME = 'REPORT_DOWNLOADPATH' AND STATUS = 'A'";
                  resultset = statement.executeQuery(sqlQuery);
                  while(resultset.next())
                       Report_upload_path = resultset.getString(1);
                       logger.info("Report_upload_path from the DB: "+Report_upload_path);
              catch (SQLException ex)
                   ex.printStackTrace();
                   System.out.println(ex);
                   logger.error(ex);
              catch(Exception ex)
                   ex.printStackTrace();
                   System.out.println(ex);
                   logger.error(ex);
              finally
                   if(statement!=null)
                        statement.close();
                   if(resultset!=null)
                        resultset.close();
              if (new File(Report_upload_path).exists())
                   Report_upload_path = Report_upload_path+StanReconDir;
                   if (new File(Report_upload_path).exists())
                        System.out.println("Directory is avilable"+Report_upload_path);
                   else
                        new File(Report_upload_path).mkdirs();
              Report_upload_path = Report_upload_pathwinandsoldateformat+winandsol;              
              if (new File(Report_upload_path).exists())
              else
                   new File(Report_upload_path).mkdirs();
              logger.info("Report_upload_path : "Report_upload_path" : "+dateTime(DateTimeFormat));
              try
                   logger.info("Calling the REPORT_STAN_RECON_CON SP : "+dateTime(DateTimeFormat));
                  callablestatement = objConnection.prepareCall("{call REPORT_STAN_RECON_CON(?)}");
                  callablestatement.registerOutParameter(1, oracle.jdbc.driver.OracleTypes.CURSOR);
                    callablestatement.execute();
                    resultset=(ResultSet)callablestatement.getObject(1);
                    if(resultset!=null)
                         while(resultset.next())
                              count_tmp = count_tmp+1;
                              logger.info("");                              
                             Deal_No   = resultset.getString(1);
                              Job_Date = resultset.getString(2);
                              DATE_FORMAT = resultset.getString(3);
                              Job_Date = Job_Date.substring(0,10);
                              logger.info("*********** PDF Convertion Starting for a Deal No: " +Deal_No " :: "dateTime(DateTimeFormat));
                              Pdf_File_Name = Report_upload_pathreconfilenameDeal_No"-"DATE_FORMAT+".pdf";                              
                              Job_Date = Job_Date.replace('-', '/');
                              logger.info("The Deal_No is : "+Deal_No " - "dateTime(DateTimeFormat));
                              logger.info("The Job_Date is : "+Job_Date " - "dateTime(DateTimeFormat));
                              try
                                 reportClientDoc = new com.crystaldecisions.sdk.occa.report.application.ReportClientDocument();
                                   reportClientDoc.setReportAppServer(Reportservername);                                   
                                   logger.info("Report App server Name := "+ reportClientDoc.getReportAppServer());
                                   logger.info("Report_File_path  := "+ Report_File_path);                             
                                   reportClientDoc.preCreateServerAgent(true);                            
                                   reportClientDoc.open(Report_File_path,0);                         
                                   logger.info("After opening the RTF file for : "+Deal_No " Deal_No - "dateTime(DateTimeFormat));
                                             callablestatement1 = objConnection.prepareCall("{call REPORT_STANDARD_RECON(?,?,?,?)}");
                                   callablestatement1.setString(1, Job_Date);
                                   callablestatement1.setString(2, Deal_No);
                                   callablestatement1.setString(3,"");
                                   callablestatement1.registerOutParameter(4, oracle.jdbc.driver.OracleTypes.CURSOR);
                                   callablestatement1.execute();
                                   resultset1=(ResultSet)callablestatement1.getObject(4);
                                   String tableAlias = reportClientDoc.getDatabaseController().getDatabase().getTables().getTable(0).getAlias();
                                   reportClientDoc.refreshReportDocument();
                                   reportClientDoc.getDatabaseController().setDataSource(resultset1, tableAlias , "Result Set");
                                   reportClientDoc.refreshReportDocument();                         
                                   ExportOptions oExportOptions = new ExportOptions();
                                   oExportOptions.setExportFormatType(ReportExportFormat.RTF);
                                   byteArrayInputStream = (ByteArrayInputStream)reportClientDoc.getPrintOutputController().export(ReportExportFormat.PDF);
                                   logger.info("After exporting the report file to PDF file for the : "+Deal_No " Deal_No - "dateTime(DateTimeFormat));
                                   //Use the Java I/O libraries to write the exported content to the file system.
                                   byte byteArray[] = new byte[byteArrayInputStream.available()];     
                                   //Create a new file that will contain the exported result.
                                   logger.info("Successfully exported report to " + Report_File_path" - "dateTime(DateTimeFormat));
                                   logger.info("*********** PDF Convertion Ending for a Deal : "Deal_No" "+dateTime(DateTimeFormat));
                                   logger.info("");
                                   Deal_No   = null;
                                   Job_Date  = null;
                              catch (SQLException ex)
                                  ex.printStackTrace();
                                  System.out.println(ex);
                                  logger.error(ex);
                              catch (IOException ex)
                                  ex.printStackTrace();
                                  System.out.println(ex);
                                  logger.error(ex);
                              catch (Exception ex)
                                   ex.printStackTrace();
                                  System.out.println(ex);
                                  logger.error(ex);
                              finally
                                   if(byteArrayInputStream!=null)
                                        byteArrayInputStream.close();
                                   if(byteArrayOutputStream!=null)
                                        byteArrayOutputStream.close();
                                   if(fileOutputStream!=null)
                                        fileOutputStream.close();
                                   if(callablestatement1!=null)
                                        callablestatement1.close();
                                   if(resultset1!=null)
                                        resultset1.close();
                                   if(reportClientDoc!=null)
                                        reportClientDoc.close();
                    if(count_tmp==0)
                         logger.info("");
                         logger.info(" $$$$$$$$ There is NO DATA for generating the Report $$$$$$$: " +dateTime(DateTimeFormat));
              catch (SQLException ex)
                   ex.printStackTrace();
                   System.out.println(ex);
                   logger.error(ex);
              catch (Exception ex)
                    ex.printStackTrace();
                   System.out.println(ex);
                   logger.error(ex);
              finally
                   if(callablestatement!=null)
                        callablestatement.close();
                   if(resultset!=null)
                        resultset.close();
                   if(objConnection!=null)
                        objConnection.close();
                   if(callablestatement1!=null)
                        callablestatement1.close();
                   if(resultset1!=null)
                        resultset1.close();
          catch (IOException ex)
              ex.printStackTrace();
              System.out.println(ex);
              logger.error(ex);
          catch (Exception ex)
               ex.printStackTrace();
              System.out.println(ex);
              logger.error(ex);
          finally
              properties.clear();              
          logger.info("");
          logger.info("*******Standard Recon Report End Time*******: "+dateTime(DateTimeFormat));
     // Getting the current date and time..
     public String dateTime(String dateFormat)
          cal = Calendar.getInstance();
         sdf = new SimpleDateFormat(dateFormat);
         return sdf.format(cal.getTime());
     //Getting the Yesterday Date and time...
     public String dateTime1(String dateFormat)
          cal = Calendar.getInstance();
          cal.add(Calendar.DATE, -1);            
         sdf = new SimpleDateFormat(dateFormat);
         return sdf.format(cal.getTime());
     public static void main(String[] args) {
          StandardReconReport  SR = new StandardReconReport();
          SR.stanReportGeneration();
For the above code  i given the report parameter from  the property file.
reportservername=servername
datagenreportpath=rassdk\://C\:
MyEclipseWorkPlace
IDSREPORTGENERATION
REPORTFILES
STANDARD_RECON_REPORT.rpt
The code is working fin, while i try to connect the BO which is avilble in Windows server, but this is not working if the BO is avilble in solaris server.
Any bodies please help
Edited by: velmurugan.spn on Sep 12, 2009 6:38 AM

Hi,
Not able to find Report - Standard templates or Report - Custom templates view in Administration - BIP reports in Siebel 8.1.1.3?
We have applied 8.1.1.3 patch on 8.1.1.0
below are the steps followed
Reports are not generated after 8.1.1.3 patch installtion.
we have also followed to below steps mentioned for this issue in oracle support.
"In order to resolve this behavior it is necessary to ensure that the 8.1.1.3 FixPack has been applied to the Siebel Tools installation. This will provide an additional .zip file in the REPPATCH folder of the Siebel Tools installation. Once this has been done please then follow the configuration steps as documented :
change sysprefix to X_ before sif import and chage back to SBL_ after sif import.
1) Import the sif files from Siebel\8.1\Tools_1\REPPATCH\12-1VMBCSV.zip
2) Import the 4 SIF files in the following order:
S_XMLP_REP_TMPL_02112010.sif
SBL_XMLP_REPORT_SELECTION_FLG.sif
Report Template BC.sif
Report Template Registration Applet.sif
3)Apply the DDL for table S_XMLP_REP_TMPL and compile repository
Once the above steps have been completed the Selected Record flag will appear in the Report Template Registration views."
we still not able to generated able to generate reports even after following above steps.
Thanks
Sean

Similar Messages

  • Can we avoid the message  while opening downloaded excel file.

    Hi,
    I have an interesting issue.
    In my scenario I am downloading characteristics value from COID.
    Through background job we are getting that report in our Out look mail box. Report format is XLS.
    While opening the attached XLS file we are getting one message.
    The message is as follows
    The file is not in a recognizable format
    •     If you know the file is from another program which is incompatible with Microsoft excel click cancel, then open this file in its original application. If you want to open the file later in Microsoft excel. Save it in a format that is compatible, such as text format.
    •     If you suspect the file is damaged, click help for more information about solving the problem.
    •     If you still want to see what text is contained in the file, click OK. Then click finish in the text import wizard
    if we ok it the file is opening properly
    So My question is Can we avoid this message ?
    Edited by: amit kulkarni on Apr 10, 2008 9:01 AM

    Hi,
    can you check with your ABAPer on this or post this thread to ABAP Developement forum
    Regards,
    Sankaran

  • Getting the 500 Internal server,while opening the work item in Portal Inbox

    Hi All,
    When a transaction is submitted by an employee. It routes to the manager approval through work item. In the Portal Inbox of the Manager he could find the task to approve. When he clicks on Task we are getting an Error as 500 Internal Server error.
    Regard's
    Ramakrishna

    em [UWL] not mapped to a portal user#
    #1.5 #00144F9F641A025800035AA50000484900048B6F3A366658#1279209741116#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_42##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "System ID Workflow Batch"is not a unique id of a user!#
    #1.5 #00144F9F641A025800035ABE0000484900048B6F3A370CFF#1279209741159#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_42##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Clark Dennison"is not a unique id of a user!#
    #1.5 #00144F9F641A025800035AE70000484900048B6F3A38252A#1279209741231#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_42##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Sargam Vaidya"is not a unique id of a user!#
    #1.5 #00144F9F641A025800035B100000484900048B6F3A3962B0#1279209741312#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_42##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Madan Kummaraguntla"is not a unique id of a user!#
    #1.5 #00144F9F641A025800035B390000484900048B6F3A3A815F#1279209741386#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_42##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Atul Bakliwal"is not a unique id of a user!#
    #1.5 #00144F9F641A007E0009760E0000484900048B6F3B3E4D86#1279209758412#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_11##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Clark Dennison"is not a unique id of a user!#
    #1.5 #00144F9F641A007E000976270000484900048B6F3B3EE9DD#1279209758452#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_11##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "DJ1:280:WF-BATCH"is not a unique id of a user!#
    #1.5 #00144F9F641A007E000976400000484900048B6F3B3F8461#1279209758491#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_11##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "System ID Workflow Batch"is not a unique id of a user!#
    #1.5 #00144F9F641A007E000976890000484900048B6F3B41A234#1279209758630#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_11##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Sargam Vaidya"is not a unique id of a user!#
    #1.5 #00144F9F641A007E000976B20000484900048B6F3B42ACF3#1279209758698#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_11##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Madan Kummaraguntla"is not a unique id of a user!#
    #1.5 #00144F9F641A00610008AFE60000484900048B6F3B520FFE#1279209759707#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#ADENNISON#240056##n/a##405d52b4902911dfbfdd0000348b572a#SAPEngine_Application_Thread[impl:3]_32##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Clark Dennison"is not a unique id of a user!#
    #1.5 #00144F9F641A0071000971E40000484900048B6F3BC3D899#1279209767164#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_29##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Clark Dennison"is not a unique id of a user!#
    #1.5 #00144F9F641A0071000971FD0000484900048B6F3BC4761B#1279209767204#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_29##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "DJ1:280:WF-BATCH"is not a unique id of a user!#
    #1.5 #00144F9F641A0071000972160000484900048B6F3BC51383#1279209767244#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_29##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "System ID Workflow Batch"is not a unique id of a user!#
    #1.5 #00144F9F641A00710009725F0000484900048B6F3BC6FDA2#1279209767370#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_29##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Sargam Vaidya"is not a unique id of a user!#
    #1.5 #00144F9F641A0071000972880000484900048B6F3BC80963#1279209767438#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_29##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Madan Kummaraguntla"is not a unique id of a user!#
    #1.5 #00144F9F641A00660008FDBF0000484900048B6F3C844189#1279209779773#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_7##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Clark Dennison"is not a unique id of a user!#
    #1.5 #00144F9F641A00660008FDD80000484900048B6F3C84ED8C#1279209779817#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_7##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "DJ1:280:WF-BATCH"is not a unique id of a user!#
    #1.5 #00144F9F641A00660008FDF10000484900048B6F3C85BC7A#1279209779870#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_7##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "System ID Workflow Batch"is not a unique id of a user!#
    #1.5 #00144F9F641A00660008FE3A0000484900048B6F3C87E3A0#1279209780011#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_7##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Sargam Vaidya"is not a unique id of a user!#
    #1.5 #00144F9F641A00660008FE630000484900048B6F3C890155#1279209780085#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_7##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Madan Kummaraguntla"is not a unique id of a user!#
    #1.5 #00144F9F641A007A000950190000484900048B6F3CA22142#1279209781731#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#ADENNISON#240056##n/a##405d52b4902911dfbfdd0000348b572a#SAPEngine_Application_Thread[impl:3]_35##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Clark Dennison"is not a unique id of a user!#
    #1.5 #00144F9F641A0062000929970000484900048B6F3E6BC900#1279209811724#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_28##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Clark Dennison"is not a unique id of a user!#
    #1.5 #00144F9F641A006C00095D360000484900048B6F40B4F8E4#1279209850075#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_4##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Clark Dennison"is not a unique id of a user!#
    #1.5 #00144F9F641A006C00095D4F0000484900048B6F40B59F4D#1279209850117#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_4##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "DJ1:280:WF-BATCH"is not a unique id of a user!#
    #1.5 #00144F9F641A006C00095D680000484900048B6F40B64558#1279209850160#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_4##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "System ID Workflow Batch"is not a unique id of a user!#
    #1.5 #00144F9F641A006C00095DB10000484900048B6F40B843BD#1279209850291#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_4##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Sargam Vaidya"is not a unique id of a user!#
    #1.5 #00144F9F641A006C00095DDA0000484900048B6F40B95C0F#1279209850362#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_4##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Madan Kummaraguntla"is not a unique id of a user!#
    #1.5 #00144F9F641A00730009269D0000484900048B6F413A0D77#1279209858796#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_15##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Clark Dennison"is not a unique id of a user!#
    #1.5 #00144F9F641A0073000926B60000484900048B6F413AB25C#1279209858839#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_15##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "DJ1:280:WF-BATCH"is not a unique id of a user!#
    #1.5 #00144F9F641A0073000926CF0000484900048B6F413B58F1#1279209858881#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_15##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "System ID Workflow Batch"is not a unique id of a user!#
    #1.5 #00144F9F641A0073000927180000484900048B6F413D5A06#1279209859013#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#SVAIDYA#240097##n/a##2b55c25d902a11df87420000348b572a#SAPEngine_Application_Thread[impl:3]_15##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.retriever.AbstractRetriever#Plain###com.sap.security.api.NoSuchUserException: The given id "Sargam Vaidya"is not a unique id of a user!#

  • BYMONTHDAY is causing the error while opening the ics file in outlook when event is exported from SharePoint Calendar

    Hi All,
              I am trying to parse the SharePoint recurrence data to get the RRULE for the ics file the RRULE parsed works fine for Yearly and Daily but it causes error when opening the ics file for the Monthly and
    weekly recurrence recurrence. I have opened the ics file in the notepad and observed that the BYDAY and BYMONTHDAY causes the problem. If I remove the tag the file opens fine but with wrong recurrence pattern.
    Any help will be appreciated.
    Regards
    Ajeet
    Ajeet

    Ajeet,
    I see that this is an extremely old post, but I thought I would refresh it with a bit more info.
    I wish I had found this post a few days ago.  I realized the same thing as well.  I don't quite understand the reasoning behind requiring the by day date must be the same as  the event date.  Another thing with rrecurrence is that if
    you pick a day of the week for a recurrence (i.e. Friday), then the start date must also occur on a Friday (I am just casting it as the first Friday of the month).
    I have come into this same issue with the BYMONTHDAY.  I am currently working on trying to configure an .ICS file to allow for multiple monthly recurrences, but it appears Outlook does not support multiple days within an event (determined by trying
    to create an even in Outlook and picking the recurrence option).  It seems that you are only allowed to have an event on (for example) every Friday of each month, or the (x) day of each month.  You cannot set any other occurrences of any other day
    within the same ICS file.  Hopefully someone else will find this information useful.
    Cheers,
    Tracy

  • SSO Issues while opening a ppt file document only from Solution Manager

    Hi Experts,
    Version - Solman 3.1
    Issue
    =====
    While trying to open a Powerpoint(ppt) file document, from the service provided by Solution Manager thru a weblink:
    1.A SSO authentication request of the server pops up requesting to authenticate Windows userid/password
    2.After entering the windows password the first time..authentication is requested again..At times on the second chance of authentication, the request is successfull and the powerpoint document opens.. But we have faced issues wherein the issues had persisted for 5-6 chances and only then the ppt document opens.
    3.Point to be noted is that even if the SSO authentication of the windows password is cancelled even the first chance the document opens..
    4.Issue is only with powerpoint document and not with word document..
    Going by point 3.. there is no relevance of the windows authentication to popup since authenticating or not authenticating doesn't matter.
    Issue unknown is why is that whenever only a ppt document from Solman is being opened does the SSO Windows authentication window of Solman server opens.. Is there any settings to be considered..
    Regards,
    Nagendran

    Since I am new to the field requesting the kind quick help by java experts here to help me change the code so that I would be able to search a web apge saved on disk and search and highlight a word in that page ....
    Thanks in advance........
    Looking forward for your kind suggestions......1) Did you write that code? If yes, proceed to 2). If no, I charge 150 euros/hr. Let me know when you want me to start.
    2) Post the code for a program that opens a text file with the following in it:
    hello world
    and prints the contents out using System.out.println().
    3) Modify the program in 2) to determine if the file contains the word "yes". Post the code.
    4) An html file is no different than the text file in 2).

  • Facing the Error while opening the PDF Document generated by Adobe Forms

    Hi,
    I have created an Custom Adobe Form and calling this form through a Custom Program and generating the PDF and could able to download on to my desktop but when i am tyring to open it i m facing the below Error.
    "There was an error opening this document. The file is damaged and could not be repaired" .
    Please help me in this regard ASAP.
    Please do find the attached error screen shot.
    Thanks
    Sushil

    Hi Naveen ,
    Have done as per the link but still not opening
    same error.
    I have created a print program and from there want to generate pdf. But it is not working.
    please find the below code : In this i am passing some tables to function module and output is formoutput of type fpformoutput.
    Where do i need to do any changes if required.
    data: lst_opparam     type sfpoutputparams.
       data: lst_docparam    type sfpdocparams.
       data: lfd_fname type funcname.
       data: lrf_cx_root     type ref to cx_root.
       clear: lst_opparam, lst_docparam.
       lst_opparam-getpdf   = 'X'.
       lst_opparam-preview = 'X'.
    *  lst_opparam-nodialog   = 'X'.
       call function 'FP_JOB_OPEN'
         changing
           ie_outputparams       = lst_opparam
      exceptions
        cancel                = 1
        usage_error           = 2
        system_error          = 3
        internal_error        = 4
        others                = 5
       if sy-subrc <> 0.
    * Implement suitable error handling here
       endif.
       try.
           call function 'FP_FUNCTION_MODULE_NAME'
             exporting
               i_name     = 'ZAFGLERC001'
             importing
               e_funcname = lfd_fname.
    *   E_INTERFACE_TYPE           =
    *   EV_FUNCNAME_INBOUND        =
         catch cx_root into lrf_cx_root.
       endtry.
       lst_docparam-langu = 'EN'.
       lst_docparam-country = 'IN'.
    call function lfd_fname      "   '/1BCDWB/SM00000213'
      exporting
        /1bcdwb/docparams        = lst_docparam
        appl                     = 'EREC_ONBRD'
        wa_ztbglerc049           = wa_ztbglerc049
        wa_ztbglerc050           = wa_ztbglerc050
        it_51                    = it_51
        wa_41                    = wa_41
        it_42                    = it_42
        wa_43                    = wa_43
        it_44                    = it_44
        it_45                    = it_45
        it_46                    = it_46
        it_47                    = it_47
        it_48                    = it_48
      importing
        /1bcdwb/formoutput       = formoutput
      exceptions
        usage_error              = 1
        system_error             = 2
        internal_error           = 3
        others                   = 4
    if sy-subrc <> 0.
    * Implement suitable error handling here
    endif.
       call function 'FP_JOB_CLOSE'
    * IMPORTING
    *   E_RESULT             =
    exceptions
      usage_error          = 1
      system_error         = 2
      internal_error       = 3
      others               = 4
       if sy-subrc <> 0.
    * Implement suitable error handling here
       endif.

  • I have created the controlfile while opening the following error is got

    SQL> ALTER DATABASE OPEN RESETLOGS;
    ALTER DATABASE OPEN RESETLOGS
    ERROR at line 1:
    ORA-01194: file 11 needs more recovery to be consistent
    ORA-01110: data file 11: '/oracle/u01/testdb/oradata/testdb/dati_pms01'
    SQL> recover database using BACKUP CONTROLFILE until cancel;
    ORA-00279: change 37911539 generated at 12/22/2006 12:29:28 needed for thread 1
    ORA-00289: suggestion : /oracle/u01/app/oracle/product/9.2.0/dbs/arch1_117.dbf
    ORA-00280: change 37911539 for thread 1 is in sequence #117
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    AUTO
    ORA-00308: cannot open archived log
    '/oracle/u01/app/oracle/product/9.2.0/dbs/arch1_117.dbf'
    ORA-27037: unable to obtain file status
    Linux Error: 2: No such file or directory
    Additional information: 3
    ORA-00308: cannot open archived log
    '/oracle/u01/app/oracle/product/9.2.0/dbs/arch1_117.dbf'
    ORA-27037: unable to obtain file status
    Linux Error: 2: No such file or directory
    Additional information: 3
    ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01194: file 11 needs more recovery to be consistent
    ORA-01110: data file 11: '/oracle/u01/testdb/oradata/testdb/dati_pms01'

    RESTORE ARCHIVE LOGS THEN USE
    sql>recover AUTOMATIC database using BACKUP CONTROLFILE until cancel;
    THEN OPEN WITH RESETLOGS

  • Erroe while opening the "Finanacial Reporting Studio"

    Hi there. Iam getting the error while opening the "Financial Reporting Studio'. The Error is "Runtime Error '429'. ActiveX component can't create object"
    Is there any clue to get rid of these. But I can open SQR reporting Studio and Interactive Reporting Studio. I did not istall the "hyperion Financial Managemnet System 9" on my system....... is it the problem or is there any other issue..
    thanks and regards
    Sri.
    (My current OS is Windows Server 2003 SP2,
    and Hyperion system 9
    Reporting and Analysis 9.3.1 )

    Hi,
    Go to the hyperion configuration utility and choose financial reporting and configure it, then it should be alright.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Problem while opening the PDF

    Hi All,
    Iam having an issue while opening the PDF-Attachment in which iam sending it as attachment to the mail.While opening the PDF iam getting the error that "Aodbe Reader could not open the document because it is either not a supported file type or because the file has been damaged(for example,it was sent as an email attachment and was'nt correctly decoded)".
    The function-module "SO_NEW_DOCUMENT_ATT_SEND_API1" is getting use to send the attachment.
    First iam converting the internal table data into PDF and then am sending the mail with PDF-attchment.
    Thanks,
    Asmitha.

    Even i had a smilar problem. The reason is perhaps the data in internal table doesnt get converted into PDF corectly. In my case i had to convert into PDF and download on local machine. Attching below code for it.Maybe u can get pointers to your problem.
      REPORT sy-repid
           NO STANDARD PAGE HEADING
           LINE-COUNT 74
           LINE-SIZE  200
           MESSAGE-ID zz.
      PARAMETERS : pcfile LIKE rlgrap-filename LOWER CASE.
      DATA :textlines LIKE tline OCCURS 100 WITH HEADER LINE.
      DATA otf LIKE itcoo OCCURS 1000 WITH HEADER LINE.
      DATA it_lines LIKE tline OCCURS 100 WITH HEADER LINE.
      DATA options LIKE itcpo.
      DATA header LIKE thead.
      DATA result LIKE itcpp.
      DATA: bin_filesize TYPE i.
      DATA: filesize TYPE i,
      convcount TYPE i,
      cancel(1).
      AT SELECTION-SCREEN ON VALUE-REQUEST FOR pcfile.
        CALL FUNCTION 'WS_FILENAME_GET'
          EXPORTING
            mask     = ',*.*,*.*.'
          IMPORTING
            filename = pcfile
          EXCEPTIONS
            OTHERS   = 1.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      START-OF-SELECTION.
        DATA : BEGIN OF itab OCCURS 0,
                matnr TYPE mara-matnr,
                END OF itab.
        SELECT matnr FROM mara UP TO 10 ROWS INTO TABLE itab.
        LOOP AT itab.
          textlines-tdformat = '*'.
          textlines-tdline = itab-matnr.       APPEND textlines.
        ENDLOOP.
        options-tdgetotf = 'X'.
        options-tdnoprev = 'X'.
        CALL FUNCTION 'PRINT_TEXT'
          EXPORTING
            dialog                   = ' '
            header                   = header
            OPTIONS                  = options
          IMPORTING
            RESULT                   = RESULT
          tables
            lines                    = textlines
            otfdata                  = otf
          EXCEPTIONS
            canceled                 = 1
            device                   = 2
            form                     = 3
            OPTIONS                  = 4
            unclosed                 = 5
            unknown                  = 6
            format                   = 7
            textformat               = 8
            communication            = 9
            bad_pageformat_for_print = 10
            OTHERS                   = 11.
        IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CALL FUNCTION 'CONVERT_OTF'
          EXPORTING
            format                = 'PDF'
          IMPORTING
            bin_filesize          = filesize
          TABLES
            otf                   = otf
            lines                 = it_lines
          EXCEPTIONS
            err_conv_not_possible = 1
            err_bad_otf           = 2.
        DATA : g_file TYPE string.
        g_file = pcfile.
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            bin_filesize            = bin_filesize
            filename                = g_file
            filetype                = 'BIN'
          TABLES
            data_tab                = it_lines
          EXCEPTIONS
            file_write_error        = 1
            no_batch                = 2
            gui_refuse_filetransfer = 3
            invalid_type            = 4
            no_authority            = 5
            unknown_error           = 6.
    Regards,
    Mansi

  • "The server is unavailable this is offline copy of the server workbook" error while opening the sharepoint library file

    Hi Techys,
    can you give me the suugestions for below error in sharepoint 2010.
    Error: "The server is unavailable this is offline copy of the server workbook" error while opening the sharepoint library file.
    User having the contribute permission.
    as a admin i can open the document without any error.
    user wants to open the document via online and VPN connection.
    while the user seeing the document info the below error is indicationg .
    Offline Copy, Work book is readonly Mode.
    The server is unavailable this is offline copy of the server workbook" error while opening the sharepoint library file which was upto date.
    Many Thanks,
    Madhu

    Make sure that the user is able to access workstream from the site collection through VPN. If the user is able to access already, try to download the file locally and see if the data is getting loaded and upload again.
    --Cheers

  • I want to Connect my Mac Mini as a Slave to a Mac pro Server while at the same time using the Mac mini's thunderbolt ports peripherals ( ie monitor, Sound Card, Hard drives) Creating a poor man's new mac Pro. Can this be Done?

    I want to Connect my Mac Mini as a Slave to a Mac pro Server while at the same time using the Mac mini's thunderbolt ports peripherals ( ie monitor, Sound Card, Hard drives) Creating a poor man's new mac Pro. Can this be Done?

    Well, I really would love the new unreleased mac pro however , I'm not sure of the expected cost , Everyone speculates from $3,000 to $8,000, in which I may have to wait a while to purchase.
    To the point .... I want fully functional thunderbolt ports to be on the current mac pro's .... wonder if anyone had workarounds yet?...  or could I chain the the current mac pro to a mac mini to make that happen?

  • An error occured while opening the connection: Object reference not set to

    After I uninstalled Oracle Developer Tools for Visual Studio .NET 10.1.0.4 and installed Oracle Developer Tools for Visual Studio .NET with Oracle10g Release 2 ODAC 10.2.0.2.21 I got the error message below when I want to connect to my 10g database using Oracle Explorer.
    Error:
    An error occured while opening the connection: Object reference not set to an instance of an object
    I use OracleConnection to open also cannot be done. But I use Oracle SQL Developer I can connect to orcl that I cannot connect using ODAC 10.2.0.2.21 in my laptop.
    Please help me.
    Ming Man

    Sorry my mistake, I double checked, the one I uninstalled is ODAC 10.2.0.2.20 and not ODAC 10.1.0.4.
    But I have that error.
    Ming Man

  • Error while opening the report or sheet in the desktop

    While opening the reports it gives error as " Failed to Connect Database".
    In Some reports it gives error as "Unable to Load EUL item".
    Then we check the Menu bar, Tool ----> Options --->EUL.
    We found, it is giving Default EUL as blank.
    Now it is not allowed to open any sheet as well as not allowed to create new report.
    Can any one tell how to resolve this problem?

    Hi,
    I am having the same issue. I am not able to import Crystal Report.
    the error is "No matching records found  'Queries' (OUQR) (ODBC -2028)  [Message 131-183]"
    I have previewed the report using Preview external crystal report option and is running perfect.
    please guide ASAP.
    Regards
    Sonil

  • Error while opening the application help

    Hello,
    We are trying to open the application help from the R/3. It is giving
    us the follwoing error.
    This is linked to the knowledge warehouse server 6.20.
    Error:
    SAP Internet Knowledge Server
    The IKS cannot display the page you asked for.
    Please contact the administrator if this problem persists.
    Additional infomation:
    RFC Error: System exception raised, connection closed (SIW_IKS_VAR_GET)
    RfcRc: <3>, ErrorInfo:
    The confuguration looks fine as per the note # 381266.
    The help is working fine previously.
    Thanks in advance.
    Best regards,
    Madhav.

    Hi Arun,
    Error due to incorrect installation of life cycle designer.
    check the below links for solution.. ( same issue ).
    Error Message "Error while Opening the Document"
    Error - Adobe Live Cycle designer
    Regards
    Srinivas

  • Error while opening the projects in cProjects

    Hi,
        I am encountering a problem while opening the already created projects in cProjects. The error type is
    The following error text was processed in the system DVR : Type conflict when calling a function module.
    The error occurred on the application server and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: IF_DPR_OBL_PROXY~LOAD_OBJECT_LINKS of program CL_DPR_OLR3_EASYDMS===========CP
    Method: IF_CGPL_ASSIGNMENT_PERSISTENCY~FETCH of program CL_DPR_OBL_PERSISTENCY========CP
    Method: LOAD of program CL_CGPL_ASSIGNMENTS===========CP
    Method: LOAD of program CL_CGPL_PROJECTS==============CP
    Method: LOAD of program CL_CGPL_ENTITIES==============CP
    Method: LOAD_PROJECTS of program CL_DPR_APPL_OBJECT_MANAGER====CP
    Method: LOAD_OBJECTS_OF_OBJECT_TYPE of program CL_DPR_BAPI_SERVICES==========CP
    I request you all to help me out solve this issue if you know.
    Regards
    Nachimuthu Ramesh

    Hi Vivek,
       Thanks for responding to my question. I made changes as per your suggestion and now I am not getting the error message whatever I forwarded. But I am getting another error message 'You require authorization to display Project`. Pls help me out to solve this issue.
                   Thanking you
    Regards,
    N.Ramesh

Maybe you are looking for

  • Change to SCORM 1.2 Menu in Captivate 8 HTML5 Course Uploads

    I'm working on creating a structure in our Learning Environment that will work on a Samsung SM-T530NU Tablet and one of my concerns are the size of the left hand menu as shown below. We user Meridian as our LMS Provider. My first thought is Meridian

  • Disappearing canvas

    I have three canvases on my form :- Canvas A is a content canvas Canvas B is a tab canvas Canvas C is a stacked canvas When i move focus from canvas C to canvas B, canvas C disappears. What could be causing this disappearance? Please assist. Edited b

  • Keeping track of multiple tables

    I'm creating multiple tables by resuing the same JTable object and merely changing and the tablemodel associated with it. The number of tables I have are based on the number of data tables I have. Right now I have an Mouselistener attached to my tabl

  • Problems with Datasocker Error Codes

    I am using Datasocket as a means of communicating test status's between 4 systems on a network. The basics are working fine - each system publishes its status onto the LAN while subscribing to the status's of the other 3. So far so good. However I am

  • Maximum number of dhcp reservations

    I am using an airport extreme (3rd gen, latest firmware). I added 26 DHCP reservations. Now I want to add some more. Problem is: The ´+´ button is gray, only the ´-´ button is black. using the EDIT button changes an existing entry and overwrites it.