No SAP Business One Application was found

Hi,
I have created the add-on. When i try to start the add-on it is displaying  following message.
"No SAP Business One Application was found". and i am not able to start the add-on.
I have used the connection as given below. I have also declared the connection in the command line.
In the development enveiroment it is working fine. So i have generated the ard file. When i try to start the ard file it is displaying the following message  "No SAP Business One Application was found".
Please let me know how can solve this problem.
Private Sub SetApplication()
        Dim SboGuiApi As SAPbouiCOM.SboGuiApi
        Dim sConnectionString As String
        SboGuiApi = New SAPbouiCOM.SboGuiApi
              Try
            sConnectionString = System.Convert.ToString(Environment.GetCommandLineArgs().GetValue(1))
        Catch ex As Exception
            System.Windows.Forms.MessageBox.Show("AddOn must start in SAP Business One")
            System.Environment.Exit(0)
            Throw ex
        End Try
        Try
            SboGuiApi.Connect(sConnectionString)
        Catch ex As Exception
            System.Windows.Forms.MessageBox.Show("No SAP Business One Application was found")
            System.Environment.Exit(0)
        End Try
        SboGuiApi.AddonIdentifier = "5645523035446576656C6F706D656E743A453038373933323333343581F0D8D8C45495472FC628EF425AD5AC2AEDC411"
        SBO_Application = SboGuiApi.GetApplication(-1)
    End Sub

Dear Suresh,
You set Project->Properties->Debug->Configuration->in the drop down list selected all configurations. And in the Start option ->Command line "0030002C0030002C00530041005000420044005F00440061007400650076002C0050004C006F006D0056004900490056".
and
Your coding as below:
  Dim SboGuiApi As SAPbouiCOM.SboGuiApi
  Dim sConnectionString As String
  Dim StrConn
  Try
    SboGuiApi = New SAPbouiCOM.SboGuiApi
    sConnectionString =System.Convert.ToString(Environment.GetCommandLineArgs().GetValue(1))       
    SboGuiApi.Connect(System.Convert.ToString(sConnectionString))
    SBO_Application = SboGuiApi.GetApplication()
  Catch
    System.Windows.Forms.MessageBox.Show("No SAP Business One application not found")                  
    System.Environment.Exit(0)
  End Try
OR...................................................................................................................................................
You set Project->Properties->Debug->Configuration->in the drop down list selected all configurations. And in the Start option ->Command line "".
AND----
Your coding as below:
  Dim SboGuiApi As SAPbouiCOM.SboGuiApi
  Dim sConnectionString As String
  Dim StrConn
  Try
    SboGuiApi = New SAPbouiCOM.SboGuiApi
    sConnectionString ="0030002C0030002C00530041005000420044005F00440061007400650076002C0050004C006F006D0056004900490056"      
    SboGuiApi.Connect(System.Convert.ToString(sConnectionString))
    SBO_Application = SboGuiApi.GetApplication()
  Catch
    System.Windows.Forms.MessageBox.Show("No SAP Business One application not found")                  
    System.Environment.Exit(0)
  End Try

Similar Messages

  • Error: No SAP Business one application is running

    Hi
    I got error "No SAP Business one application is running" when try to start our Add-on from SBO Client using remote desktop.
    Problem Description: Add-on has been installed on server successfully. I want to access remote desktop of the client machine, and when login remotly to the client machine and open SBO client and start our addon from addon manager then it gives the above error.
    If we dont access the client machine remotely and login to the client machine directly then addon connected well.
    suggest me what to do to resolve this error.
    Thanks...

    Hi
    I was just approached by someone else with such an issue...
    We use Windows Terminal Services Client to access training systems - without issues.
    Do you use sth like Citrix with load balancing?
    There such issues might happen, but I don't have a real good idea what the issue might be in your case.
    Maybe someone else has experienced the same problem - and resolved it?
    regards,
    Frank

  • SAP business one application messaging service

    Tried to get mailer working but I am not sure if it s because of SAP business one messaging service is stuck in a starting mode.

    Hi,
    Yes. Messaging service should started automatically.
    I think you need add your object name under Messaging service-->Right click-->Choose properties---Log on tab.. then this service starts automatically.
    Thanks & Regards,
    Nagarajan

  • Error while importing external Crystal report in SAP Business One

    Hi Experts,
    while importing External crystal report in SAP Business one i was unable to import the report and it is not displaying any error message or success Message but after completion if i click on the report i am getting an Error as
    No Matching Records Found 'Queries' (OUQR) (ODBC-2028) Message[131-183]

    Hi,
    Please refer SAP note:
    1532509 - Cannot import Crystal Report template into SAP Business One
    Thanks & Regards,
    Nagarajan

  • SAP Business One - Java Connector

    Hi All,
    <br/><br/>
    We have a SAP Business One Application installed on a laptop. The requirement is to be able to use the SAP Java API to update tables in the system. We are not allowed to connect directly to the database and was advised to use the API instead.
    <br/><br/>
    The downloaded API that we are using is "sapjco30P_6-10005324 32 bit.zip". I have included the dll file contained in this package in the WINDOWS/system32 folder. I am using Eclipse as IDE and already included the "sapjco3.jar" in the classpath.
    <br/><br/>
    First question: Am I using the right Java Connector for SAP Business One?
    <br/><br/>
    I got sample code on how to connect using JCO:
    <br/><br/>
    package sample;<br/><br/>
    import java.io.File;<br/>
    import java.io.FileOutputStream;<br/>
    import java.util.Properties;<br/>
    import java.util.concurrent.CountDownLatch;<br/><br/>
    import com.sap.conn.jco.AbapException;<br/>
    import com.sap.conn.jco.JCoContext;<br/>
    import com.sap.conn.jco.JCoDestination;<br/>
    import com.sap.conn.jco.JCoDestinationManager;<br/>
    import com.sap.conn.jco.JCoException;<br/>
    import com.sap.conn.jco.JCoField;<br/>
    import com.sap.conn.jco.JCoFunction;<br/>
    import com.sap.conn.jco.JCoFunctionTemplate;<br/>
    import com.sap.conn.jco.JCoStructure;<br/>
    import com.sap.conn.jco.JCoTable;<br/>
    import com.sap.conn.jco.ext.DestinationDataProvider;<br/><br/>
    public class StepByStepClient<br/>
    {<br/>
        static String ABAP_AS = "ABAP_AS_WITHOUT_POOL";<br/>
        static String ABAP_AS_POOLED = "ABAP_AS_WITH_POOL";<br/>
        static String ABAP_MS = "ABAP_MS_WITHOUT_POOL";<br/>
        static<br/>
        {<br/>
            Properties connectProperties = new Properties();<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_ASHOST, "localhost");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_SYSNR,  "06");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_CLIENT, "000");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_USER,   "manager"); //sapuser<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_PASSWD, "manager"); //sap1234<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_LANG,   "en");<br/>
            createDataFile(ABAP_AS, "jcoDestination", connectProperties);<br/><br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_POOL_CAPACITY, "3");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_PEAK_LIMIT,    "10");<br/>
            createDataFile(ABAP_AS_POOLED, "jcoDestination", connectProperties);<br/><br/>
            connectProperties.clear();<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_MSHOST, "localhost");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_R3NAME,  "SID");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_CLIENT, "000");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_USER,   "manager"); //sapuser<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_PASSWD, "manager"); //sap1234<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_GROUP, "GROUP");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_LANG,   "en");<br/>
            createDataFile(ABAP_MS, "jcoDestination", connectProperties);<br/>
        }<br/><br/>
        static void createDataFile(String name, String suffix, Properties properties)<br/>
        {<br/>
            File cfg = new File(name"."suffix);<br/>
            if(!cfg.exists())<br/>
            {<br/>
                try<br/>
                {<br/>
                    FileOutputStream fos = new FileOutputStream(cfg, false);<br/>
                    properties.store(fos, "for tests only !");<br/>
                    fos.close();<br/>
                }<br/>
                catch (Exception e)<br/>
                {<br/>
                    throw new RuntimeException("Unable to create the destination file " + cfg.getName(), e);<br/>
                }<br/>
            }<br/>
        }<br/><br/>
        public static void step1Connect() throws JCoException<br/>
        {<br/>
            JCoDestination destination = JCoDestinationManager.getDestination(ABAP_AS);<br/>
            System.out.println("Attributes:");<br/>
            System.out.println(destination.getAttributes());<br/>
            System.out.println();<br/><br/>
            destination = JCoDestinationManager.getDestination(ABAP_MS);<br/>
            System.out.println("Attributes:");<br/>
            System.out.println(destination.getAttributes());<br/>
            System.out.println();<br/>
        }<br/><br/>
        public static void main(String[] args) throws JCoException<br/>
        {<br/>
            step1Connect();<br/>
        }<br/>
    }<br/>
    <br/><br/>
    Each time I run the application I run into an error:
    <br/><br/>
    Attributes:<br/>
    Exception in thread "main" com.sap.conn.jco.JCoException: (102) JCO_ERROR_COMMUNICATION: Connect to SAP gateway failed<br/>
    Connection parameters: TYPE=A DEST=ABAP_AS_WITHOUT_POOL ASHOST=localhost SYSNR=06 PCS=1<br/><br/>
    LOCATION    CPIC (TCP/IP) on local host with Unicode<br/>
    ERROR       connection to partner '127.0.0.1:3306' broken<br/>
    TIME        Mon May 09 10:46:46 2011<br/>
    RELEASE     720<br/>
    COMPONENT   NI (network interface)<br/>
    VERSION     40<br/>
    RC          -6<br/>
    MODULE      gwxx.c<br/>
    LINE        646<br/>
    DETAIL      NiIRead: P=127.0.0.1:3306; L=0.0.0.0:50496<br/>
    SYSTEM CALL GwRead<br/>
    ERRNO       10054<br/>
    ERRNO TEXT  WSAECONNRESET: Connection reset by peer<br/>
    COUNTER     2<br/><br/>
         at com.sap.conn.jco.rt.MiddlewareJavaRfc.generateJCoException(MiddlewareJavaRfc.java:662)<br/>
         at com.sap.conn.jco.rt.MiddlewareJavaRfc$JavaRfcClient.connect(MiddlewareJavaRfc.java:1362)<br/>
         at com.sap.conn.jco.rt.ClientConnection.connect(ClientConnection.java:721)<br/>
         at com.sap.conn.jco.rt.PoolingFactory.init(PoolingFactory.java:103)<br/>
         at com.sap.conn.jco.rt.ConnectionManager.createFactory(ConnectionManager.java:293)<br/>
         at com.sap.conn.jco.rt.DefaultConnectionManager.createFactory(DefaultConnectionManager.java:46)<br/>
         at com.sap.conn.jco.rt.ConnectionManager.getFactory(ConnectionManager.java:262)<br/>
         at com.sap.conn.jco.rt.RfcDestination.initialize(RfcDestination.java:509)<br/>
         at com.sap.conn.jco.rt.RfcDestination.getAttributes(RfcDestination.java:347)<br/>
         at com.sap.conn.jco.rt.RfcDestination.getAttributes(RfcDestination.java:27)<br/>
         at sample.StepByStepClient.step1Connect(StepByStepClient.java:74)<br/>
         at sample.StepByStepClient.main(StepByStepClient.java:304)<br/>
    Caused by: RfcException: [null]<br/>
        message: Connect to SAP gateway failed<br/>
    Connection parameters: TYPE=A DEST=ABAP_AS_WITHOUT_POOL ASHOST=localhost SYSNR=06 PCS=1<br/>
    <br/><br/>
    Second question: What seems to be the problem with my sample application? Do I need to use a different Java Connector for SAP Business One or SAP Business One does not support Java Connector?
    <br/><br/>
    Please help.
    <br/><br/>
    Thank you all.
    Edited by: kevinroy on May 9, 2011 4:51 AM

    Hi,<br/>
    Thank you very much for the reply. I am now able to move forward with what I am doing.<br/>
    I used the following code in connecting but am encountering an error:<br/>
    public class ConnectSAP {
         // company interface
         public ICompany company;
         private SBOErrorMessage errMsg = null;
         public static void main(String[] args) {
              ConnectSAP company = new ConnectSAP();
              company.conn();
         //method make connection andinitialize company instance
         public int conn() {
              int rc = 0;
              try {
                   company = SBOCOMUtil.newCompany();
                   company.setServer("192.168.0.216"); //192.168.0.216
                   company.setCompanyDB("SBODemoUS");
                   company.setUserName("manager");
                   company.setPassword("manager");
                   company.setDbServerType(SBOCOMConstants.BoDataServerTypes_dst_MSSQL2005);
                   company.setUseTrusted(new Boolean(false));
                   company.setLanguage(SBOCOMConstants.BoSuppLangs_ln_English);
                   company.setDbUserName("username"); 
                   company.setDbPassword("password");
                   //company.setAddonIdentifier("...");     
                   //company.setLicenseServer("...");
                   rc = company.connect();
                   if (rc == 0) {
                        System.out.println("Connected!");
                   } else {
                        errMsg = company.getLastError();
                        System.out.println(
                             "I cannot connect to database server: "
                                  + errMsg.getErrorMessage()
                                  + " "
                                  + errMsg.getErrorCode());
              } catch (Exception e) {
                   e.printStackTrace();
                   return -1;
              return rc;
         public void freeConnection(){
              company.disconnect();
    }<br/>
    I am getting the error "Failed to Connect to SBOCommon -111".<br/>
    Error is still the same even if I set UseTrusted to true and comment the DbUserName and DbPassword.<br/>
    Do I need to specify the license? Or login to SAP before connecting?<br/>
    Thank you.

  • SAP Business One elearing Curriculum

    Dear All,
    I was browsing into the eLearning section in order to find some help on SAP Business One. I found some flash tutorials regarding Print Layout Designer and User Defined Values. I know that there are other flash tutorials on the Sales Module, Purchasing Module and Item Master Data however I can't find them in the e-learning section.
    Is there a way how I can retrieve these tutorials,
    Many Thanks in Advance.

    Hi Mamjak,
    The eLearning materials are posted on the channel partner portal (s-user login).
    In the section 'Education', 'SAP Business One' I would recommend to access the rolebased eLearning.
    Product eLearning is inserted in the
    [Implementation consultant curriculum|http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000706498&_SCENARIO=01100035870000000183&_ADDINC=011000358700001192682007E& ]
    Some advanced topics are discussed in the
    [Advanced consultant module|http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000706515&_SCENARIO=01100035870000000183&_ADDINC=011000358700001192682007E&]
    Peter

  • SAP Business One and Moving Database Issue

    We are in the process of moving our PROD system to a new server. The server runs MS SQL 2005. We installed SAP Business One and by default the demo databases went to the C Drive (C:/Program Files/MS SQL Server/..../Data). The SQL Server that exists has data on D partition and logs on E partition. We therefore dettach the database, copy the files to the correct locations, and reattach.
    Now, however, the SAP Business One application no longer finds the Company or Demo databases. Is there any way to fix this?
    Cheers John

    you should post your question in the Business One section at SAP Business One Application

  • POS systems and SAP Business One

    Does anyone know of any Point-of-sale (POS) systems that can work together with our SAP Business one application in retail stores.
    Please can you advise us on our available POS options with SAP Business One for retail stores.
    Also would there be a need to buy additional SAP licences for users with this solution or can there be a savings there?

    hi usman,
    hi Dennis,
    try to check the ff, if it does fit your need.
    http://www.citixsys.com/
    http://www.alenu-it.com/index.php/solutions-a-services/sap/industries/b1-for-retail-pos
    rergards,
    Fidel

  • Sap business one sdk

    in sap business one sdk how DI API is connect.

    hi
    threre  r two method for  connection
    1. single sign one connection
    2 seprate connection
    In the single sign one  connection we connect to  UI api  nd DI api ,
        In the seprate connection we r connect  seprate  DI api nd UI api ,
      This is single sign one code. connect to di api
      private SAPbobsCOM.Company oCompany;
            private void SetApplication() {
                // // Use an SboGuiApi object to establish connection
                // // with the SAP Business One application and return an
                // // initialized appliction object
                SAPbouiCOM.SboGuiApi SboGuiApi = null;
                string sConnectionString = null;
                SboGuiApi = new SAPbouiCOM.SboGuiApi();
                // // by following the steps specified above, the following
                // // statment should be suficient for either development or run mode
                sConnectionString = System.Convert.ToString( Environment.GetCommandLineArgs().GetValue( 1 ) );
                // // connect to a running SBO Application
                SboGuiApi.Connect( sConnectionString );
                // // get an initialized application object
                SBO_Application = SboGuiApi.GetApplication( -1 );
            private int SetConnectionContext() {
                int setConnectionContextReturn = 0;
                string sCookie = null;
                string sConnectionContext = null;
                int lRetCode = 0;
                // // First initialize the Company object
                oCompany = new SAPbobsCOM.Company();
                // // Acquire the connection context cookie from the DI API.
                sCookie = oCompany.GetContextCookie();
                // // Retrieve the connection context string from the UI API using the
                // // acquired cookie.
                sConnectionContext = SBO_Application.Company.GetConnectionContext( sCookie );
                // // before setting the SBO Login Context make sure the company is not
                // // connected
                if ( oCompany.Connected == true ) {
                    oCompany.Disconnect();
                // // Set the connection context information to the DI API.
                setConnectionContextReturn = oCompany.SetSboLoginContext( sConnectionContext );
                return setConnectionContextReturn;
            private int ConnectToCompany() {
                int connectToCompanyReturn = 0;
                // // Establish the connection to the company database.
                connectToCompanyReturn = oCompany.Connect();
                return connectToCompanyReturn;
    .................this is code for cneect ui api nd di api..............
    ...........................................////////........................................this is code for connect for di api seprate.....................................................
    Dim oCompany As SAPBobsCOM.Company
    Dim lRetCode, lErrCode As Long
    Dim sErrMsg as String
    'Instanciate a Company object
    oCompany = New SAPBobsCOM.Company
    oCompany.Server      = "(local)"     
    oCompany.CompanyDB      = "SBODemo_US"
    oCompany.UserName      = "manager"
    oCompany.Password      = "manager"
    oCompany.Language      = ln_English
    ‘Sample: Use Windows Auth. to SQL Server
    oCompany.UseTrusted     = True
    ‘Set AddOn identifier (new in 2004)
    oCompany.AddOnIdentifier     = “Your Add-On Identifier”
    lRetCode = oCompany.connect
    'Check Return Code
    If lRetCode <> 0 Then
      oCompany.GetLastError lErrCode, sErrMsg
    End If
    .applay  any one code  for coonection tp di api....
    if u have any problem replay me ,
      nd if   u r satisfied than give me rewards point.

  • SAP Business One  8.8 Certification for Application associate

    Hi all,
    I wanted to know about SAP Business One 8.8. Certification for Application associate.
    1 )What would be the fee
    2)What are minimum requirements to get certification
    3)How much useful is this certificate compared SAP R/3 certification
    Regards
    Darshan Desai

    For all these questions go to
    https://websmp204.sap-ag.de/~form/handler?_APP=00200682500000002702&_EVENT=DISPLAY&_HIER_KEY=201100035870000001783&_HIER_KEY=301100035870000002834&_HIER_KEY=501100035870000019706&_HIER_KEY=601100035870000248281&_HIER_KEY=601100035870000248571&

  • Faulting application SAP Business One.exe, version 8.80.233.0

    Daily the following event id 1000, application error is logged in on my SAP server.
    Faulting application SAP Business One.exe, version 8.80.233.0, time stamp 0x4c9ba79d, faulting module ole32.dll, version 6.0.6002.18277, time stamp 0x4c28d53e, exception code 0xc0000005, fault offset 0x00047336, process id 0x6184, application start time 0x01cbe5257b807570.
    My server is unexpectedly restarts, i am not sure whether it is due to this error.
    Can anyone explain me why this error message is logged, and what is the exact reason for this.
    SAP version = SAP 8.8 with patch level 15
    SQL Server = MS SQL Server 2005
    OS = Windows Server 2008 Enterprise Edition

    You may check this: Re: CustomerLibrary - Error during AddOn installation
    Thanks,
    Gordon

  • Reg third party application can integrate with SAP Business one

    Dear All
    I have a typical requirement , i want to know how can it be done in SAP Business One.Our client have other application based product , he is doing all the transactions in that.He has another
    DB. that is SAP Business One. Now we want to syncronize the data between two databases. i.e if he enters a Sales order in other based that should be inserted to B1 and vice versa. Not only marketting documents but masters also and financial documents also. I hope it is possible using B1 integration Technology. Can you pls let me know how it can be done. any solution to be suggested is accepted.
    please do the needful.
    Regards
    M Auditya

    Hi,
    Actually i guess i could be possible but I'm not 100% sure on the level of integration. I recommend u to download the B1iSN and have a look at the doc.. Operation_Guide_Subsidiary_Integration_EN.pdf, And a lot depends on the database the 3rd party software is using.
    Hope it helps,
    Vasu Natari.

  • Crystal Reports Dynamic Parameters with SAP Business One

    Okay, I've got this very strange issue with dynamic parameters in Crystal Reports connected to SAP Business One.
    Let's start with the software versions:
    - Crystal Reports 12.3.0.601
    - SAP Business One 8.8 (8.80.231) SP: 00 PL: 13
    - Windows XP SP3
    (SBO Server on Windows 2003 and SQL 2005)
    What I'm about to describe is something I've tried in several reports and for which I created a very, very simple test report to see if it was reproducible in a very simple situation.
    - I connected to a Business One server through CR's SBO connection type. Logon is successful, tables are shown.
    - I pick OCRD and plac CardCode and CardName in the details section on the report. Previewing the report shows data.
    - I create a dynamic parameter on CardCode and in the Select Expert I select the CardCode field and define that that should be equal to the parameter.
    - I preview the report again. Now it asks me in such a parameter screen for logon credentials. It shows the server and database it tries to connect to and in the username it shows the SQL Server username I used to connect to the SQL Server in the first place. However, the password for that user is not accepted. I also tried to login with the Windows administrator user and with the SBO manager user, but no success with any attempt.
    I also tried to add a static parameter and add all database values to the list. Same screen, different result:
    Crystal Reports 2008 wrote:
    Logon Failed.
    Error in File UNKNOWN.RPT:
    Unable to connect: incorrect log on parameters. (rptcontrollers.dll)
    (On a side note: the report is saved as report1.rpt)
    Anyone else got similar issues and found a solution?

    Hi,
    When you have fixed your crystal installation following the note posted earlier, please take a look at the [how to guide|http://service.sap.com/sapidb/011000358700000882232009E.pdf] and also at the [e-learning|http://service.sap.com/sapidb/011000358700001370262010E] about SAP Business One 8.8 and Crystal Reports.
    There are so called "tokens" which you need to use instead of dynamic parameters.
    Dynamic paramters don't work in SAP Business One 8.8, if they are not defined as a static paramter with token.
    Best regards,
    Darius

  • SAP Business One Integration Services Authentication Failed

    Dear ,
    ALL SAP forum members,
    Iam Using SAP Business One 8.81 PL 06, Micorsoft SQL 2008 R2
    In SLD B1DI and  JDBC, the connections were tested successfully.
    Whenever I log into SBO, I am getting "SAP Business One Integration Services Authentication Failed" error message. I did extensive research on all possible SBO documents dating 1 year back especially in B1ic Troubleshooting Document (New and Old) and searched the length of the SBO forums, but I could not a solution.
    I uninstalled and reinstalled the B1f package many a time. The integration services we re also restarted many times and the connections were all tested successfully. Firewall, AntiVirus also checked.
    In the B1f, in the Monitoring Window, the login is "Ok" but the AuthCheck is "Failed". I checked Authent.Monitor->Authentic Info  and I found the following message under Action message "Wrong Usrname and Password".
    I debugged and i found again "/com.sap.b1i.vplatform.scenarios.authen/sap.Xcelsius/Authenticate_Check.bfd
    But could not understand much of it.
    But i could go no further. The experts are requested to suggest their solutions, If any, to me as Iam stuck in this phase for the last 3 week
    I hope some experts will guide me over this issue
    Thanks and regards
    Ashish Gupte

    Hi Konstantin Ryahovsky
    Thanks for your reply. My problem is solved.
    And frankly speaking i dont know how it was solved. I have not uninstall, install ,not even i had restarted the server also.
    only change i did in SLD >> Maintainance >>> cfg Runtime >>>> Put server IP address instead of server Name and restarted the services.
    Thanks & regards
    Ashish Gupte

  • SAP Business One 32 Bit Client freezing when printing?

    Hi Everyone,
    I am experiencing an issue with printing on a SAP Business One 32 Bit Client. The client is installed onto a Windows 7 (x64) Professional computer, and the business I work for uses the version of Business One shown below -
    The issue that is being experienced is as follows - assuming that an appropriate (printable) document is loaded, e.g.: a Delivery Note, then selecting File (menu) > Print:
    20 second delay to 'load' the printer selection dialog, then after clicking on OK (to print)
    30 second delay until 'paper is printed', during which time the SAP Business One User Interface freezes!
    I have identified that this issue only occurs with SAP, e.g.: printing of Word documents, PDFs, emails, etc responds in the expected amount of time (and none of the a fore mentioned programs experiences any freezing with their User Interfaces).
    In order to remedy this I first downloaded and installed the newest printer driver for the printer, however when no improvement was noticed I made the decision to uninstall and then re-install Business One. In doing so I followed the method outlined below -
    Even after performing all of the above I have seen no improvement in printing or program responsiveness. If you have experienced this issue, and you know a fix can you please contribute to this forum thread?
    Any help will be greatly appreciated.
    Kind Regards,
    David

    Hi,
    It is an application error. Refer SAP note 1955101 - CR_Printing Crystal reports and layouts is slow
    Thanks & Regards,
    Nagarajan

Maybe you are looking for

  • Used space on ipod but no songs...

    Ok. So I recently got this new ipod video, 30gb, and nothing but problems since I got it. I had to restore it completely and I had some problems putting it back to life. Ive finally done it, and now when I connect it to the computer, all the songs ar

  • Online in-depth PS Course (not free)

    Hello, I have been using PS for about a year now and am becoming quite proficient. I have found lots of tutorial videos online that have helped immensely. However, I would like to formalize my learning because I am sure there are fundamentals that I

  • Application that allows to paste images copied from the web..

    hey guys. im looking for an application that allows to paste images copied from the web.. ive tried a few but they only paste the next... anyone help? cheers.

  • PS Elements 13 won't start whatsoever - Windows 7

    Hi! Just bought, downloaded & installed Photoshop Elements 13 64 bit to my Windows 7 64 bit machine. Install was reported to've been completed successfully. Serial Nr. entered etc. Restared computer after  install. Now, when clicking on the program i

  • FCP 7 BUG REPORT: "close gap" screws up marker locations

    First off, it's wonderful to finally have automatically moving markers. Thanks. the bug: If you "close gap" between two clips (ctrl-G), the markers past that point will ONLY update their locations correctly if the play head is positioned at the start