Problem when executing workitem ?

Hi Gurus,
when i execute the workitem in the inbox. it shows the message as below.
" erron ian asynchrounous method start:Maximum number of sessions reached "
What is this mean. How can i solve this problem.

Hi Akash ,
Can u tel me how u solve the above issue , i am also getting the same exception
Error in asynchronous method start: Maximum number of session
thanks ,
sandeep .

Similar Messages

  • Expdp problem when executing from pl/sql transportable tablespaces

    Hello
    i have a very strange problem for which your assistance is really appreciated. i am applying the transportable tablespaces approach and i have a problem when executing expdp from commandline in comparison to the procedure generated to make the exact same thing.
    more precisely when running:
    expdp etl/etl dumpfile=TBSP090609_DMP.dmp logfile=TBSP090609_DMP.log directory=EXPDP transport_tablespaces=TBSP090609 transport_full_check=y
    the dmp file produced is over 200MB.
    when runng the below pl/sql code the volume produced is around 50MB. any idea what i am missing?
    job_handle :=
    dbms_datapump.OPEN (operation => 'EXPORT',
    job_mode => 'TRANSPORTABLE',
    job_name => 'export_tablespace',
    VERSION => 'COMPATIBLE'
    dbms_datapump.add_file (handle => job_handle,
    filename => dump_file_name,
    DIRECTORY => export_dir_name
    dbms_datapump.set_parameter (handle => job_handle,
    NAME => 'TTS_FULL_CHECK',
    VALUE => 1
    dbms_datapump.metadata_filter (handle => job_handle,
    NAME => 'TABLESPACE_LIST',
    VALUE => '('''
    || tablespace_name
    || ''')'
    dbms_datapump.start_job (job_handle);

    thanx you for your response. the problem was eventually managed to be resolved as follows:
    job_handle :=
    dbms_datapump.OPEN (operation => 'EXPORT',
    job_mode => 'TRANSPORTABLE',
    job_name => 'export_tablespace',
    VERSION => 'COMPATIBLE'
    dbms_datapump.add_file (handle => job_handle,
    filename => dump_file_name,
    DIRECTORY => export_dir_name
    dbms_datapump.set_parameter (handle => job_handle,
    NAME => 'TTS_FULL_CHECK',
    VALUE => 1
    dbms_datapump.metadata_filter (handle => job_handle,
    NAME => 'TABLESPACE_EXPR',
    VALUE => 'IN('''
    || tablespace_name
    || ''')');
    dbms_datapump.start_job (job_handle);

  • Menu bar problem when executing reports

    We have a problem when executing the reports either from se38 or through transaction.
    The standard menu bar is not appearing and in its place we are getting ?????????????  ?????????????????
    also the icons that are appearing in app tool bar are not showing anything.
    Whats the reason for this?

    hi,
    It is not for one single report iam talking about,any report that is executed from se38 or transaction .
    In selection screen of report we are getting ???????????????
    ?????????????? in menu bar instead of normal options like program edit goto utilities.................
    does any one know the reason for this?
    This issue we are facing today only.
    Edited by: Gautham chakraverthi on Oct 31, 2008 3:06 PM

  • Problem in executing workitem

    Hi,
    I have a worktitem which is used to post a document.
    Even after posting the document successfully the workitem is not disappearing from the users' inbox.
    When the workitem is opened again it gives an error.
    Though the workitem can be completed manually and is being done like that now, I am not able to find why is it happening so.
    The following errors are generated.
    1) Work item XXXX: Object XXXX
    method SWW_WW_EXECUTE_S cannot be executed
    2) Object does not exist
    3) Problems occurred when generating a mail
    4) Error '9' when calling service 'SO_OBJECT_SEND'
    I am seeing these errors in the detailed technical workflow log.
    Please help.
    Thanks
    Abhishek

    Hi Aditya,
    the workitem is remaining in "In process" state if we check in the workflow log and the document has been successfully posted.
    I am not able to figure out why the workitem's state is not changing to completed.
    Actually this task is in one of the 3 branches of a fork. 1st branch is completed and the second one is in "Ready" state. This task is in the 3rd branch.
    2 out of 3 are necessary branches in the fork.
    Can this be in any way the possible reason??
    Abhishek

  • Performance Problem when executing the report for the first time.

    Hi,
    We have a Zreport...to improve the performance i created Index on few Data Base table..before my changes it used to take more than 15 minutes after the changes it taking less than 1 min for the same variant and for other variants also.
    But when executing the first in morning its taking the same time more than 15 min.Please let me know how to increase the performance when executing first time also,
    Thanks,
    Kiran.

    Hi all,
    Appreciate your valuable replies...
    @ Thomas: i do accept with your solution running a background job..but user is not accepting for it..thanks for your reply.
    @Siegfried Boes  : for testing purpose Im running this manytimes..but for user they may
    require when ever they need to know open oders.the volume of the data is barongs 300-350 at
    max.
    @Brad Bohn  : After creating the index the repose time reduced to half ...i hope  i have
    created a right index.
    Observation here...I executed the report in production system more than 5 times it took the
    same time, my changes are still in quality..so i think may be for selecting the right index
    its taking this much time.and for the next time is taking right index n doing it so it taking
    less.
    Do you accept it?.if so Please let me know how to explicitly say the select statement to
    use my index.
    Thanks,
    kiran.

  • Problem When executing chart in the Web

    Hi all,
    I am getting the following error when executing a chart in the Web.
    Diagnosis
    Internal error when communictaing with the IGS (charts).
    System response Internal error text: "Error opening an RFC connection."
    Procedure
    Procedure for System Administration
      Notification Number RSWWW 005 
    Thanks.

    Hi,
    this looks like your IGS has crashed and somehow needs to be restarted. I also assume that the IGS patchlevel is old in comparison to the newest version in the Service Marketplace.
    Please update the IGS (which includes a restart) or ask your basis team to upgrade the IGS.
    FYI: Note <a href="http://service.sap.com/sap/support/notes/931900">931900</a> describes how to discover the IGS patchlevel even when it is not running.
    Regards
    Matthias

  • Weird problem when executing an update statement

    Please help me out with this issue. This a very weird problem i'm facing while executing the following update statement.
    update tblo.S_TABLE c
    SET (ACCNT_NAME, ACCNT_LOC)
    =
    (select NAME, LOC from S_TABLE1 p
    where p.ROW_ID = c.ACCNT_ID)
    where ROW_ID = 'XXXXX'
    The statement executes perfectly fine in "SQL Plus" but when i try from my application or any SQL Tool that uses ODBC, it fails with the following error
    <eb1>ORA-00923: FROM keyword not found where expected
    State:S1000,Native:923,Origin:[Oracle][ODBC][Ora]</eb1>
    ODBC Driver Used: 9.2.0.2.0

    Yes this could most probably be resolved by upgrading the driver. I'hv tried MS Oracle ODBC driver but that is even more problematic!
    The applications works fine in another environment which uses a Merant ODBC driver. Thanks for your time and advice.

  • Drill down problem when execute CR Viewer from Sap Web Application Server

    Hello,
    We are using Sap  Was 7.01.
    The report viewer jar files deployed to the j2ee engine , and I am using j2ee servlet application to execute the report.
    Everything works OK, but when I am trying to drill down to the next sub report the screen become blank.
    I checked with httpwatch and it seems that there is no response from the server , after DD.
    The web.xml file look like this:
    <web-app>
         <display-name>WEB APP</display-name>
         <description>WEB APP description</description>
         <context-param>
           <param-name>crystal_image_uri</param-name>
           <param-value>./CrystalReports/crystalreportviewers</param-value>
          </context-param>
          <context-param>
           <param-name>crystal_image_use_relative</param-name>
           <param-value>server</param-value>
          </context-param>
          <context-param>
           <param-name>crystal_servlet_uri</param-name>
           <param-value>/CrystalReportViewerHandlers</param-value>
          </context-param>
         <servlet>
                <servlet-name>CrystalReportViewerServlet</servlet-name>
                <servlet-class>com.crystaldecisions.report.web.viewer.CrystalReportViewerServlet</servlet-class>
        </servlet>
         <servlet>
              <servlet-name>reportviewerClient.jsp</servlet-name>
              <jsp-file>/reportviewerClient.jsp</jsp-file>
         </servlet>
         <servlet>
              <servlet-name>ReportViewerSrvlt1</servlet-name>
              <servlet-class>com.illumiti.demo.ReportViewerSrvlt1</servlet-class>
         </servlet>
        <servlet-mapping>
              <servlet-name>CrystalReportViewerServlet</servlet-name>
              <url-pattern>/CrystalReportViewerHandler</url-pattern>
         </servlet-mapping>
         <servlet-mapping>
              <servlet-name>ReportViewerSrvlt1</servlet-name>
              <url-pattern>/jRun</url-pattern>
         </servlet-mapping>
    </web-app>
    There are no javascript errors and I can see that the following JS files exist on the browser cache:
    allInOne.js
    allStrings_en.js
    crv.js
    Also the dynamic rendering of the graphic objects working,  for exampale:
    http://sapdevpor.themigroup.net:52000/ReportViewerNwds/CrystalReportViewerHandler?dynamicimage=crystal1258027361240644774257355486184.png
    sapdevpor is the Sap application server.
    Need help with this asap.
    Thanks
    Nir

    Hello,
    to which directory have you unzipped the Files? I would suggest C:\temp because there are problems with long filenames. Have you tried to reboot and then disconnect Drive M:?
    Regards
    Gregor

  • Problem when executing the same subVI in parallel.

    Hey!
    I have created a subVI that I am using in two applications that executes in parallel. For some reason the applications is using the same instance of the subVI, which creates conflicts when the applications are trying to use the same subVI at the same time. Is it possible to solve this problem?
    /Jakob

    Open the SubVI and go to File>>VI Properties. Select Execution and check "Make VI reentrant". This should solve your problem. You should read more about reentant VIs and how they work in the site. They have different kind of uses.
    Try to take over the world!

  • Error when executing workitem in UWL.

    Hi all,
    we are getting a workitem in the inbox  with text
    "Error when generating idoc from MC doc " .
    when I am trying to execute a workitem in UWL its giving error that "workitem is reserved for a different agent ".
    Regards,
    Naval Bhatt

    hi.....
              it might be because someone might have designed a workflow in such a way and would have delegated there business object so that some application is trigerring his/her workflow which is producing such a message.
    example:
                  some one migght have created a workflow for purchase order change and would have delegated their business object. So whoever changes any purchase order then this workflow gets triggered........
    solution:
                  if you could find the business object related with this workitem then you can remove the delegation.
    --regards,
      alex b justin

  • Problem when execute report Conversion Tool XI 3.0 on a client

    Hi everyone,
    When I use Report Conversion Tool on a client (not on Webi Server Windows 2003) I have an error (a red cross appears) before the conversion.
    I believe that RCT can not open the document to migrate.
    All it's OK when I use RCT since the Webi Server.
    Any help will be appreciated.
    Thanks

    Hi,
    Thank you for your prompt response.
    I have install all the client tool (even SDK, Query Web Service) except Assitant migration source de données, Gestionnaires Vues d'entreprise et Gestionnaire de traduction.
    I think I have a problem of rights on my Windows 2003 Server because in the log of conversion (C:Documents and SettingsUtilisateurLocal SettingsTempconversionUSER146731693logsD30860242.xml)
    the following lines are written :
    Note that I do the conversion with the Administrator login.

  • Report layout problem when executing in Background

    Hi,
    I am executing one custom report in background with layout 'Z_65_400' . After execution, the report is generating spool number .
    But when I trying to see the output from the spool, here layout is coming differntly and with name 'X_65_255'.
    These are the latest packs in my system .
    SAP_BASIS     620     0064     SAPKB62064     SAP Basis Component
    SAP_ABA     620     0064     SAPKA62064     Cross-Application Component
    SAP_APPL     470     0030     SAPKH47030     Logistics and Accounting
    Could you please give the solution ASAP.
    Thanks and Regards
    NTR

    Hi
       Check you setting in SPAD Where is assign to the printer make Sure .
    Regards
    Nilesh

  • Font problem when executing a swing program

    Hi! I'm learning to write a simple swing program. The program compiled successfully. When I excuted it, everything worked fine except that I got the following error message:
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    It's somewhat annoying. Do you have any solution?
    Thank you,
    Liheng

    Thank you. I tried to run Font2DTest. But it didn't work, "Exception in thread "main" java.util.zip.ZipException: No such file or directory"
    I'll keep trying.......
    In JDK under the directory demo/jfc/Font2DTest, there
    is a demo program that shows all available fonts on
    your system. You can find the available font names.
    Then in the font.properties file in jre/lib, search
    for the font name in your error message and replace it
    with an available name from Font2DTest.
    Are you using Unix? What OS, Solaris, Linux?

  • Error when executing add-on in client's computer

    Dear All experts/gurus,
    I need your help. I have problem when executing/open an add-on (installed in server and can be executed using server computer without creating ard file) I've created in my client's computers. although it is automatically installed but when execute, the error comes which message is "wrong digital signature". I create ard file for every clients that want to execute/use add-on and succeed. It is okay that I can create ard file for 1-3 computers but if it 10-20 computers, it is wasting time. how to solve this problem, where all computers in clients site can execute the add-on without must create ard file in every computers ?
    I appreciate your answer. tks in advance.

    Take a look at the "Package and Deployment" section in the SDK help file.  This will guide you through how to install / launch your add-ons.
    If you are using the standard SAP method documented there, you only need 1 ard file per release version of your add-on.  You do not need to have a separate ard file on every client pc.  The ard file includes in it a checksum (MD5) of your add-on executable.  The ard file itself is only used during the "registration" process for an add-on.  During registration, the checksum containined in the ard file and your add-on installer itself are both written to the Common database.
    The error message "wrong digital signature" when the SAP add-on manager attempts to execute an add-on indicates that the executable version installed on that client does not match the one that was registered earlier.  Most common causes are:-
    a) You have manually copied a different executable onto the client pc
    b) When creating the ard file, you selected a different add-on executable from the one you included in your installer.
    When creating the ard file using the AddonRegDataGen program, make sure that you point the "Add-on EXE full path" to the version of the add-on executable that you are including in your installer.  You will have to create a new ard file if you change the executable in the future, for example if you release a new version of your add-on.
    John.

  • ABAP Dump when executing DTP

    Dear gurus:
           I just faced an annoying problem when executing DTP in t-code RSA1. It appears an  ABAP dump here. The ABAP dump is briefly shown below. And I found that it seems to be an authorization problem, because when I use a new account which has SAP_ALL authorization, then it works. So it may lack of some authorizations, but it's hard to figure it out. T-code su53 cannot check it properly. Need your help and thanks a lot.
    Runtime Errors         MESSAGE_TYPE_X
    Date and Time          2007.06.20 11:17:30
    Short text
         The current application triggered a termination with a short dump.
    What happened?
         The current application program detected a situation which really
         should not occur. Therefore, a termination with a short dump was
         triggered on purpose by the key word MESSAGE (type X).
    Error analysis
         Short text of error message:
         Invalid program status
         Long text of error message:
         Technical information about the message:
         Message class....... "RSBK"
         Number.............. 299
         Variable 1.......... " "
         Variable 2.......... " "
         Variable 3.......... " "
         Variable 4.......... " "

    Hai Wei,
    This dump is due missing of OCX files while installing SAP GUI Front end just find out the exact files and copy and paste them in the Front end files files then ur prob will be solved.......
    If in case any issues let me know.
    Regards
    Madhavi

Maybe you are looking for

  • Statspack Problem(Please Help)

    Hi, I got the below error from Statspack report run. It runs after every one hour and the database version is 9.2.0.8. Please help how to resolve it. ERROR: Database/Instance does not exist in STATS$DATABASE_INSTANCE ERROR: Begin Snapshot Id specifie

  • Configuring BPEL PM with Oracle XE database

    Hi, I have been using my BPEL PM with default olite db quite a days ago and it was running fine. Now I have changed the dehydration to Oracle XE database and chnaged the corresponding data-source.xml files. I can access the default domain from BPEL c

  • Safari cover flow gone

    How do I get it back?

  • Need Help On Field Symbol

    Hi Expert, I am working on the Standard routine. In which I have one standard field symbol table.Standard program some time assig it and some time doesn't.and i am getting DUMP. Is there any way to check beofre using  field Symbol whether it is assig

  • Another Style Editor

    Hi, when I click in HS5.5 with the right mouse button on a css-file, an menu item called "Edit StyleSheet" appears. The command opens TopStyle. Is it possible to replace topstyle with another editor? Thank you Simon