SAP PORTAL Time-Out Settings / BO iView Reports..?

We have created BO object-specific iView requests in SAP PORTAL based on Ingo's posting....
SAP BusinessObjects Enterprise & SAP Enterprise Portal - Part 3 of 4
Currently, just posting some small CR4E and Analysis for Office (*Design Studio will be added in a few months) report objects that are based on BW queries - and response time is a few seconds.
However, long-term as our BW grows - and the volume of data/periods expands we may see some reduction in the performance of these reports, and they make take a few-minutes to return data.
The SAP Portal team already have an issue with an ECC / T-Code report (*no Business Objects involved) which runs over 100 seconds - and hits a Portal time-out....and are wondering if we would hit the same issue if a CR4E within the Portal ran longer than 100 seconds...?
I think the answer is "NO", the Portal time-out would not apply in that scenario. My assumption is that in our solution-path, the Portal's 100 second time-out rule would ONLY apply to the process of the Portal invoking the iView request - and opening the frame for the CR4E content.
Once the frame is open - and the RPT / Prompt-Screen is loaded the Portal time-out is "happy".
After that iView -> BO frame is established....so, even if the CR4E & BW Query took more than 100 Seconds to return/display the data - the SAP Portal would not time-out - as all of that activity is actually taking place at the BOE Platform layer within the frame (and using the time-out settings at the BOE level).
Can anyone confirm that my assumptions are correct, or explain where the assumption is wrong..?
Thanks in advance...!

In our scenario, the SAP PORTAL has a 100 second time-out, but the Business Objects platform where the CR4E content is hosted has a 600 second time-out for "View on Demand" reporting.
When the SAP PORTAL opens the iView connection, it is opening the CR4E content in a frame on the Portal. Prompts are entered - and the RPT execution begins on the BOE platform.
There is a "spinning-wheel" displayed from the BOE platform, and if run in BO LaunchPad it could run for up to 600 seconds before a time-out occured.
When it is presented in SAP PORTAL via iView connection - does that "spinning-wheel" from BOE Platform provide enough of a "heartbeat" to let the PORTAL know not to drop the connection at 100 seconds....?
My reasoning is that SAP PORTAL should be opening the BOE content with the same rules that apply when the report is opening in the BO LaunchPad.
We are going to create a "SLOW" report in CR4E (*Lots of charts & sub-reports) to test/compare LaunchPad and Portal display of the same report.

Similar Messages

  • Portal Time out

    Hi ,
    I want to set the portal time out , such that if a user is not doing any activity , the portal should log him out(like banking websites)
    Please let me know the steps to do the same
    I found out that it can be set from System Administration --> System Configuration --> UM Configuration --> Security Settings, but i could not find Lifetime of the SAP Logon Ticket option there
    Please help

    hii.
    The termination of the Portal and all Web Dynpro applications as a whole is defined by the Security Session timeout.
    This is an absolute timeout value, e.g. the default is about 27h, that always terminates the whole security session after the defined period of time independtly from any user interaction.
    The expiration of the HTTP sessions is handled automaticaly and does not need to be cared about.
    When the HTTP sessions are created they get the maximum of the application session timeout and the default HTTP session timeout. After the corresponding application session has been destroyed, the HTTP session gets a very small value to expire as soon as possible.
    Go through this SAP NOTE to make the suitable changes:-
    Note 842635
    Also refer to NOTE 842878 for Session Management Information.
    Also use this Links.
    how to set SAP idle session time out
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/ep/epSnippet-Portaluseridletimeoutforlogoff-custom+javascript
    Hope this helps,
    Rewards would be appreciated.
    Mayank Saxena.

  • Time Out Settings in OSB

    Hi All,
    I have a service which calls DB via DB adapter. For the webservice call, I have an option of read time out settings in the business service, so that it will get time out after the configured time period.
    But for the DB call I dont have this option in the business service and we are getting stuck thread exceptions when the legacy is taking more time to respond back. We have a requirement that all the services realted to DB call have to get time out when the legacy takes more time.
    Kindly help me in doing this.
    Thanks and Regards,
    Prabhu

    Hi Anuj,
    I did a sample stored procedure which will wait for number of seconds which we send as input and will send the success repose after the number of seconds.
    StoredProcedure:
    create or replace
    procedure sleep (seconds in number,response out varchar2) as testdata number;
    begin
    testdata := seconds;
    dbms_lock.sleep(testdata);
    response := 'SUCCESS';
    end;
    Business Service XML:
    <?xml version="1.0" encoding="UTF-8"?>
    <xml-fragment xmlns:ser="http://www.bea.com/wli/sb/services" xmlns:tran="http://www.bea.com/wli/sb/transports" xmlns:env="http://www.bea.com/wli/config/env" xmlns:jca="http://www.bea.com/wli/sb/transports/jca" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ser:coreEntry isProxy="false" isEnabled="true">
    <ser:binding type="SOAP" isSoap12="false" xsi:type="con:SoapBindingType" xmlns:con="http://www.bea.com/wli/sb/services/bindings/config">
    <con:wsdl ref="Sleep2/Sleep_dbBS"/>
    <con:binding>
    <con:name>Sleep_ptt-binding</con:name>
    <con:namespace>http://xmlns.oracle.com/pcbpel/adapter/db/Application1/Project2/Sleep</con:namespace>
    </con:binding>
    </ser:binding>
    <ser:monitoring isEnabled="false">
    <ser:aggregationInterval>10</ser:aggregationInterval>
    <ser:pipelineMonitoringLevel>Pipeline</ser:pipelineMonitoringLevel>
    </ser:monitoring>
    <ser:reporting>true</ser:reporting>
    <ser:sla-alerting isEnabled="true">
    <ser:alertLevel>normal</ser:alertLevel>
    </ser:sla-alerting>
    <ser:ws-policy>
    <ser:binding-mode>wsdl-policy-attachments</ser:binding-mode>
    </ser:ws-policy>
    </ser:coreEntry>
    <ser:endpointConfig>
    <tran:provider-id>jca</tran:provider-id>
    <tran:inbound>false</tran:inbound>
    <tran:URI>
    <env:value>jca://eis/DB/SleepConnection1</env:value>
    </tran:URI>
    <tran:outbound-properties>
    <tran:load-balancing-algorithm>round-robin</tran:load-balancing-algorithm>
    <tran:retry-count>0</tran:retry-count>
    <tran:retry-interval>30</tran:retry-interval>
    <tran:retry-application-errors>true</tran:retry-application-errors>
    </tran:outbound-properties>
    <tran:all-headers>false</tran:all-headers>
    <tran:provider-specific>
    <jca:jca-file ref="Sleep2/Sleep_db"/>
    <jca:adapter-name>Sleep</jca:adapter-name>
    <jca:adapter-type>DATABASE</jca:adapter-type>
    <jca:always-use-wsdl>true</jca:always-use-wsdl>
    <jca:connection-mode>managed</jca:connection-mode>
    <jca:outbound-properties>
    <jca:operation-properties>
    <jca:operation-name>Sleep</jca:operation-name>
    <jca:spec-properties>
    <jca:property>
    <jca:name>ProcedureName</jca:name>
    <jca:value>SLEEP</jca:value>
    </jca:property>
    <jca:property>
    <jca:name>QueryTimeout</jca:name>
    <jca:value>2</jca:value>
    </jca:property>
    <jca:property>
    <jca:name>GetActiveUnitOfWork</jca:name>
    <jca:value>false</jca:value>
    </jca:property>
    </jca:spec-properties>
    </jca:operation-properties>
    </jca:outbound-properties>
    </tran:provider-specific>
    </ser:endpointConfig>
    </xml-fragment>
    When I run this from the business service, if I give the input as 10, we are getting error only after 10 seconds not in the query time out seconds. But the thing is we are getting error. If we set the time as 11 seconds we are getting success response. But our requirement is the procedure has to time out in the specified seconds. Kindly correct me if I am wrong.
    Regards,
    Prabhu

  • How to change time out settings in Analytic Provider Service...

    ... or how to disable automatic disconnect between APS and essbase server (using XMLA interface).
    First a short summary:
    We would like to use a third party product to analyze data (DeltaMaster from Bissantz). This product uses the XMLA interface provided by Analytic Provider Service. Mostly the connection works, I can choose one of our cubes, sometimes a drill down is possible, but sometimes the following error occurs:
    "Microsoft.AnalysisServices.AdomdClient.AdomdErrorResponseException: (1042006): Network Error [10061] Unable To Connect To [entwgdw.hres.de:33769]. The client timed out waiting to connect to the Essbase Agent using TCP/IP. Check youer network connections. Also please make sure that Server and Port values are correct [...]"
    I have already talked to the Bissantz support concerning this issue and the recommended me to increase the APS time out settings and/or to disable the automatic disconnect between APS and essbase server after every query.
    The question is: Is this possible and if yes: How and where can I change these settings???
    Kind regards
    André

    You could look at updating the essbase.properties file in the APS installation directory.
    olap.server.netRetryCount=600
    olap.server.netConnectRetry=3
    olap.server.netDelay=200
    olap.server.netSocketTimeOut=200
    Update then restart APS
    Though this might not be the issue if on windows, it may be down to the amount of ports being used, have a read [here |http://timtows-hyperion-blog.blogspot.com/2007/12/essbase-api-error-fix-geeky.html ] for a possible fix.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • ESS/MSS on SAP Portal Blank screen instead of IViews.

    Hi,
    ESS/MSS roles are visiable on portal but when I assigned it to my own user I could not see the iViews we are getting blank screen please screen.
    Please help us.

    hi,
    you need to create user in the backend system and you need to map user in backend using SSO by either logon tickets or User mapping.
    if you have not created user then  to create user in backend follow following steps:
    Please follow this steps to setup ESS/MSS in Portal.
    Configuration Settings for ESS
    Create Infotype 0105 for all Employees
    Use
    To link a user in the portal to the employee in the backend, the employee master records must be extended. The portal user information is stored in the backend in the communication infotype 0105, subtypes 0001 (System User Name SAP System (SY-UNAME)) and 0010 (E-Mail).
    Prerequisites
    u2022 The users MANAGER and EMPLOYEE are mapped to the relevant portal users, ideally by SSO, so that they have the same name.
    u2022 You must have created personnel numbers in the SAP system for the relevant employees.
    u2022 The following roles are assigned to your ERP user which should be mapped to the employees: SAP_EMPLOYEE, SAP_EMPLOYEE_ERP, and SAP_EMPLOYEE_ERP05. The latter is a composite role for all country specific functions. You can select only the specific country role for your user and delete the other roles.
    Procedure
    1. Choose the following:
    SAP Easy Access Menu Human Resources u2192 Personnel Management u2192 Administration u2192 HR Master Data u2192 Maintain
    Transaction PA30
    2. Enter your employeeu2019s personnel number
    3. In the direct selection section, enter infotype 0105 and choose the Create button.
    4. In the subtypes for infotype u201CCommunicationu201D dialog box, select 0001 and then Enter.
    5. In the field ID/Number, enter the ID used to log in to the portal
    6. Save your entry.
    7. Return to the Maintain HR Master Data screen.
    8. Keep the infotype 0105 in the infotype field and choose Create.
    9. In the subtypes for infotype u201CCommunicationu201D dialog box, select 0010 and then Enter.
    10. In the ID/Number field, enter the email address and save your entries
    11. Repeat steps 2-10 for employee 91000067. ID/Number MANAGER.
    also Jco connection needs to be configured..
    Regards,
    Jigar Oza

  • Load Balancing Time Out Settings

    Hi, getting error below and I'm sure its to do with Time Out on Load Balancing, anyone confirm as don't want to mess around with IIS...
    The average of the most recent heartbeat intervals [499] for request [Ping] used by clients is less than or equal to [540].
    Make sure that your firewall configuration is set to work correctly with Exchange ActiveSync and direct push technology. Specifically, make sure that your firewall is configured so that requests to Exchange ActiveSync do not expire before they have the opportunity
    to be processed.
    For more information about how to configure firewall settings when using Exchange ActiveSync, see Microsoft Knowledge Base article 905013, "Enterprise Firewall Configuration for Exchange ActiveSync Direct Push Technology" (http://go.microsoft.com/fwlink/?linkid=3052&amp;kbid=905013).
    Currently timeout is set to 5mins on LB...
    Thanks!

    I'm talking about Health Check Time Values below;
    http://blogs.vmware.com/vsphere/2012/11/load-balancing-using-vcloud-networking-and-security-5-1-edge.html
    Parameter
    Description
    Interval
    Interval at which a server is pinged.
    Timeout
    Time within which a response from the server must be received.
    Health Threshold
    Number of consecutive successful health checks before a server is declared operational.
    Unhealth Threshold
    Number of consecutive unsuccessful health checks before a server is declared dead.

  • Getting Time Out Dump while Executing Report

    Hello ABAP Experts,
    I am trying to execute a report, but while debugging I am getting time out dump on 2nd SELECT statement.
    SELECT vbeln
              matnr
              werks
              lgort
              volum
              lgnum
         FROM lips
         INTO TABLE i_volume
         FOR ALL ENTRIES IN  i_likp
         WHERE vbeln EQ i_likp-vbeln
        AND lgort IN s_lgort
         AND werks IN s_werks.
    IF i_volume[] IS INITIAL.
         MESSAGE text-001 TYPE 'I'. 
         STOP.
       ENDIF.
       SORT i_volume BY vbeln.
    SELECT matnr
                  meinh
              umrez
              umren
         FROM marm
         INTO TABLE gt_marm
         FOR ALL ENTRIES IN i_volume
         WHERE matnr = i_volume-matnr
           AND meinh = 'ME' OR meinh = 'KG'.
       IF sy-subrc EQ 0.
         SORT gt_marm BY matnr.
         DELETE ADJACENT DUPLICATES FROM gt_marm COMPARING matnr.
       ENDIF.
    Can you please help me out there ?
    Thanks
    Swanand

    Hi Swanand,
    try
         WHERE matnr = i_volume-matnr
           AND ( meinh = 'ME' OR meinh = 'KG' ).
    you should also filter first materials to a temporary table with only distinct matnr entries and use it instead of i_volume.
    regards,
    Edgar

  • Portal time out with large jdbc query in JSP bean

    Hi,
    My JSP portlet always times out while waiting to complete two large JDBC queries. The error shown in my jserv.log file is:
    [28/03/2002 12:41:51:221 GMT+08:00] page/Fetching timed out for an Unknown Reason. Killing fetcher name=content-fetcher2 label=174 url=http://mephistopheles.au.oracle.com/servlet/agcharts time=120633
    [28/03/2002 12:43:10:595 GMT+08:00] page/UncaughtException in thread name=content-fetcher2, starting a new fetcher after exception
    java.lang.ThreadDeath
    Is there some particular settings I can modify to prevent the content fetcher from timing out? Cheers

    Thanks. The charts portlet now can be delayed up to the required ~10mins before returning data from the large query. This works in conjunction with changes in the directives/parameters for Jserv and httpd(Note:180548.1)
    Shankar,
    Normally, you can increase the time out in the portlet tag of the provider.xml file. The timeout is in seconds, you should also increase the provider timeout. This is done in the provider registration screen.
    <timeout>60</timeout>
    <timeoutMessage>My Portlet Timed Out</timeoutMessage>
    Please note that if you set the timeout too high and your portlet is really not coming up, you page will wait the 60, 90, 120, etc seconds for the portlet to timeout, so be careful will portlet and provider timeouts.
    Sue

  • Time out settings in a proxy

    Hi ,
    I am calling a Proxy from a Function module... now the requirement is: if proxy exceeds the set  execution time, we need to kill the process and send a message to the user.
    Can we set a time out in Proxy? If so, Please let me know the configuration settings for that?
    Can we set the time out programatically or dynamically to kill the proxy?
    Thanks & Regards,
    Pavan.

    Check this out ..This might solve ur issue
    kill RFC session

  • EndInstall() Call Returns Zero But SAP Still Times Out?

    Hi,
    I have an add on installer where the setup.exe file was created and compiled using InnoSetup. Since switching from 32 bit to 64 bit it has been a struggle since there is so little documented by SAP on this. I finally found out that we cannot call the EndInstall and EndUninstall functions directly in AddOnInstallAPI_x64.dll like we could in AddOnInstallAPI.dll for 32 bit add ons. I created a Visual Studio wrapper project that contains the calls to EndInstall and EndUninstall and I launch that compiled executable at the end of my setup.exe installation procedure. I have logging inside the wrapper which gives me the result of the EndInstall call and it is returning a 0 which means it was successful. Even still, SAP still sits until it times out and tells me the add on registration failed and it needs to be corrected. Oddly enough, if I run my wrapper executable manually right at the end of my installer, SAP does get the signal and says the add on was installed successfully.
    I need to get this resolved so I can do a required add on upgrade. Has anyone else experienced this?  Is there any way yet that we can call the 64-bit functions directly from the DLL file yet?  Why has SAP not addressed this yet?
    Thanks,
    David

    Hi Pedro,
    I've tried both EndInstall and EndInstallEx directly from the 64 bit DLL but neither worked. Here was my code in InnoSetup to call EndInstallEx.
    function SetAddOnFolder(Path: String): Integer;
    external 'SetAddOnFolder@{code:TargetDir}\extern\AddOnInstallAPI_x64.dll';
    function RestartNeeded(): Integer;
    external 'RestartNeeded@{code:TargetDir}\extern\AddOnInstallAPI_x64.dll';
    function EndInstallEx(Info: String; InstallSucess: Boolean): Integer;
    external 'EndInstallEx@AddOnInstallAPI_x64.dll';
    function GetCustomSetupExitCode: Integer;
    var
      nResult: Integer;
    begin
    nResult := EndInstallEx('', true);
    end;
    You think this should actually work?
    Thanks,
    David

  • Time out when run execute report on Webgui or transaction iView

    Dear All,
    We found the error as bellow when we execute report that load huge size of data so it would like many time to get it.
    500 Connection timed out
    Error: -5
    Version: 7000
    Component: ICM
    Date/Time: Thu Mar 6 19:33:49 2008 
    Module: icxxthr_mt.c
    Line: 2698
    Server: irpc16_QAS_50
    Error Tag: {-}
    Detail: Connection to partner timed out after 60s
    Anyone please tell us about the way to edit timeout of webgui or iView.
    Thank you very much,
    Anek.

    Dear Krishna
    It's helpful.
    Goto rz10 transcation
    Choose: Instance profile
    Select: extended maintaince
    Click: change
    Set value for parameter 'icm/keep_alive_timeout'
    If there is not parameter 'icm/keep_alive_timeout', create it.
    Save it.
    Restart SAP.
    Please tell me how to give point for you.
    Thank you for ur reply,
    Anek.

  • Remote connections in SAP support portal time out

    Hello, we are having a problem opening connections to our systems in the support portal and would appreciate any help and direction.  This is probably a problem with our SAPRouter or firewall configuration but have been unable to identify where that problem is, and we are working closely with our network folks to try to correct.  We are able to download OSS notes through SNOTE and all of the RFC's work correctly but we can't seem to keep a connection open to allow SAP support to login to our systems.  The connection appears to open for about three minutes but then gives the error "Host did not respond 1-9 times" then the connection shows cancelled after about 18min.  We have had a high priority incident open with SAP for the last couple of weeks but haven't got much response from them.  SAP has the IP addresses of our SAPRouter and VPN correct and the routestring is correct.
    SAPRouter = 216.253.195.169
    VPN = 216.253.195.170
    Routestring = /H/colo-sap-router.insummit.com/S/3299
    We are able to ping SAP(194.117.106.129) from the saprouter server successfully.  A few things I have read indicate that a simple test is that you should be able to telnet to SAP(ip above) on the configured port, 3299 but this we are not able to do and we've told this to SAP, we can telnet to port 21 but not 3299.
    SAPRouter is on a Windows 2008 server OS using VPN.  Attached is our saprouttab file.
    Also attached is a trace.out file, and dev_rout file.
    Here are the firewall ACLs:
    access-list Outside extended permit ip host 216.253.195.169 host 147.204.100.142
    access-list Outside extended permit ip host 147.204.2.5 host 216.253.195.169
    access-list Outside extended permit ip host 216.169.212.169 host 147.204.100.142
    access-list Outside extended permit ip host 194.117.106.129 any
    access-list Outside extended permit ip any host 194.117.106.129
    access-list Outside extended permit ip host 194.117.106.128 any
    access-list Outside extended permit ip host 216.253.195.169 194.117.106.128 255.255.255.252
    access-list Outside extended permit ip host 194.117.106.128 host 216.253.195.169
    access-list Outside extended permit ip 194.117.106.128 255.255.255.252 host 216.253.195.169
    access-list Outside extended permit ip host 194.117.106.129 host 216.253.195.169
    access-list Outside extended permit ip host 216.169.212.169 194.117.106.128 255.255.255.252
    Here are the routes:
    IPv4 Route Table
    ===========================================================================
    Active Routes:
    Network Destination        Netmask          Gateway      Interface  Metric
              0.0.0.0          0.0.0.0        10.5.0.1      10.5.0.222    266
            10.5.0.0    255.255.255.0        On-link        10.5.0.222    266
          10.5.0.222  255.255.255.255        On-link        10.5.0.222    266
          10.5.0.255  255.255.255.255        On-link        10.5.0.222    266
            127.0.0.0        255.0.0.0        On-link        127.0.0.1    306
            127.0.0.1  255.255.255.255        On-link        127.0.0.1    306
      127.255.255.255  255.255.255.255        On-link        127.0.0.1    306
      194.117.106.128  255.255.255.252  216.253.195.170  216.253.195.169    21
      216.253.195.168  255.255.255.248        On-link  216.253.195.169    276
      216.253.195.169  255.255.255.255        On-link  216.253.195.169    276
      216.253.195.175  255.255.255.255        On-link  216.253.195.169    276
            224.0.0.0        240.0.0.0        On-link        127.0.0.1    306
            224.0.0.0        240.0.0.0        On-link        10.5.0.222    266
            224.0.0.0        240.0.0.0        On-link  216.253.195.169    276
      255.255.255.255  255.255.255.255        On-link        127.0.0.1    306
      255.255.255.255  255.255.255.255        On-link        10.5.0.222    266
      255.255.255.255  255.255.255.255        On-link  216.253.195.169    276
    ===========================================================================
    Persistent Routes:
      Network Address          Netmask  Gateway Address  Metric
      194.117.106.128  255.255.255.252  216.253.195.170      1
              0.0.0.0          0.0.0.0        10.5.0.1  Default
    And here is the VPN tunnel info:
    6  IKE Peer: 194.39.131.167
        Type    : L2L            Role    : initiator
        Rekey  : no              State  : MM_ACTIVE
    show ipsec sa peer 194.39.131.167
    peer address: 194.39.131.167
        Crypto map tag: cryptomap1, seq num: 15, local addr: 216.253.195.170
          access-list encrypt_123_to_SAP extended permit ip host 216.253.195.169 194.117.106.128 255.255.255.252
          local ident (addr/mask/prot/port): (216.253.195.169/255.255.255.255/0/0)
          remote ident (addr/mask/prot/port): (194.117.106.128/255.255.255.252/0/0)
          current_peer: 194.39.131.167
          #pkts encaps: 459156, #pkts encrypt: 459156, #pkts digest: 459156
          #pkts decaps: 65825, #pkts decrypt: 65825, #pkts verify: 65825
          #pkts compressed: 0, #pkts decompressed: 0
          #pkts not compressed: 459156, #pkts comp failed: 0, #pkts decomp failed: 0
          #pre-frag successes: 0, #pre-frag failures: 0, #fragments created: 0
          #PMTUs sent: 0, #PMTUs rcvd: 0, #decapsulated frgs needing reassembly: 0
          #send errors: 0, #recv errors: 0
          local crypto endpt.: 216.253.195.170, remote crypto endpt.: 194.39.131.167
          path mtu 1500, ipsec overhead 58, media mtu 1500
          current outbound spi: 90CB4EA0
          current inbound spi : 769BBB0D
        inbound esp sas:
          spi: 0x769BBB0D (1989917453)
            transform: esp-3des esp-md5-hmac no compression
            in use settings ={L2L, Tunnel, }
            slot: 0, conn_id: 20480, crypto-map: cryptomap1
            sa timing: remaining key lifetime (kB/sec): (4373965/4063)
            IV size: 8 bytes
            replay detection support: Y
            Anti replay bitmap:
              0xFFFFFFFF 0xFFFFFFFF
        outbound esp sas:
          spi: 0x90CB4EA0 (2429243040)
            transform: esp-3des esp-md5-hmac no compression
            in use settings ={L2L, Tunnel, }
            slot: 0, conn_id: 20480, crypto-map: cryptomap1
            sa timing: remaining key lifetime (kB/sec): (4373954/4063)
            IV size: 8 bytes
            replay detection support: Y
            Anti replay bitmap:
              0x00000000 0x00000001
    Again, any help and suggestions is greatly appreciated.
    Thanks,
    Brent

    HI Brent ,
    I see your problem is critical !!!!
    But you  can have  a net viewer session with SAP .
    Its simple and effective way of analysing issue in run time .
    SAP SMP Netviewer Instructions DE - YouTube
    Netviewer
    Please check above Links
    Regards,
    Abhishek

  • 500 connection time out error in web report(portal)

    Hi Experts,
    Points to note about the 500 connection
    timeout error
    1. Error persists only in portal. query/
    report works fine in RSRT and Bex Analyser.
    2.As per previous discussions tried
    implementing SAP notes to change ICM parameter for max of 10 minutes.
    However, it is said by Basis team that they
    can change parameter only if all the report gives the same error.
    Since all the report works fine they are nt
    ready to change the parameter.
    4. Error: Time exceeds 600seconds
    5.This issue arised only after upgrading
    the system to 7.3. post - upgrade. this report was working fine before.
    6. Even in the portal, report works fine
    when we use ABAP web link.
    In the trace file there is a error message
    for this report "Could not find a command, masscommand or group command
    with alias <new task>. It is defined in group .
    <TaskCollectionGroup>. pls any one help me. This is for 7.31 NW portal
    Please suggest ur thoughts

    Thanks. I will check on this once I get reply from the corresponding team. However, need another advice.
    There are issues in portal where some buttons (delete, undo, copy/paste - IP funcitonalities) are not working. When we find java script in the background is not working properly. there is no sequence of call in the java script after upgrade. In trace, for some reports with this issue has same error like "could not find command..." . My question is .. is there any possibility that these java scripts corrupt occurs because of this KM components?

  • Time out error in oracle reports--very urgent

    Hi
    I have this oracle report on 9i which calls 14 other reports and runs them
    via a wrapper report which I run from a URL
    However I get this engine null crashed error or else Engine rwEng-0 is destroyed due to timeout error.
    From what I understand there is a timeout issue happening bcoz reports is taking a long time to run.Hence I increased the value of engineResponseTimeOut but it does not help either.Would you have any other idea to resolve this issue?
    Could someone plz tell me urgently how can this be resolved.This is on Oracle 9i.
    Thanks

    Hi Ravi kanth,
    You are using select * statement which is very time consuming and low performance. Dont use select * instead use select field1 field2.... into table itab  where field1 = s_field.  Use corresponding field names in the select statement.
    Follow the below rules.
    1) Dont use nested select statements
    2) If possible use for all entries in addition
    3) In the where addition make sure you give all the primary key
    4) Use Index for the selection criteria.
    5) You can also use inner joins
    6) You can try to put the data from the first select statement into an Itab and then in order to select the data from the second table use for all entries in.
    7) Use the runtime analysis SE30 and SQL Trace (ST05) to identify the performance and also to identify where the load is heavy, so that you can change the code accordingly
    <b>reward if useful</b>.
    Regards,
    sunil kairam.

  • Time Out Error in SSRS Report

    Dear Experts,
    Am new in to SSRS .Am getting error while creating SSRS report With use of Stored Procedure . The Error " COULD NOT CREATE FIELDS A LIST OF FIELDS FOR THE QUERY ". when i see in the detail section , its showing that "Timeout expired.  The
    timeout period elapsed prior to completion of the operation or the server is not responding."
    How to solve this. Any help appreciated
    Regards
    senthil

    Hi Senthil,
    First try to execute the Storeprocedure in SQL server management studio, its really taking time to execute or not.
    If yes, then please use the attached image to look for Timeout option where you can set the time.
    If no, then try to set the query type as Text and
    write as Exec Storeprocedure
    Second thing you must specify inside the Storeproedure as
    SET NOCOUNT ON
    Thanks
    Prasad
    Mark this as Answer if it helps you to proceed on further.

Maybe you are looking for

  • How do I delete songs in iTunes 7 from my iPod?

    I'm having a problem with the new version of iTunes - on my iPod I can't see what songs are on there or manage my music manually. I have the box checked to manage my music manually but I can't actually see any of the songs to delete the ones I no lon

  • Help on File - itab - table problem

    Good day! My problem is this. I am suppose to create an ABAP program that would get the 2 inputs from the user. The table name as well as a filename. My program should be able to transfer the contents from the file to the table in their respective fi

  • Distribute moving average or standard price via ALE/IDoc

    Dear experts, do you see any way to distribute the moving average price via ALE? It is inside the material master IDoc but it won't update in the receiving system. We need it for a decentral WM so that people can see the valuation of the material whe

  • SWITCH CASE PROBLEM?

    CODE function Position(object:MovieClip, location:top || left):void      switch(top:Boolean, bottom:Boolean)           case top = true:                object.y = 0;                break;           case bottom = true:                object.x = 0;     

  • Reg - Mobile Time & Travel

    hi All,   i'm trying to make the SAP Mobile Time & Travel for Laptop to work. i've done all the required configuration in WebAS and ECC5.0.   once i start my application, i get this error. Synchronization Password Not Set. Where do i set this passwor