WIH 00013 - Session Closed after try to run a report

Hi all
My system is BOXI R2 SP3  and client W2K SP4 and IE 6 SP1.
When try to lauch a report, the report never end, and after 20 minutes I cancel the report and show WIH 00013 error.
I try to launch the report using another web browser and work fine (firefox 3.x, ie 7, flock) only fail in IE 6 SP1.
Try java version 1.4, 1.5 and 1.6 with same result, never end
Anyone now if it´s a normal issue, fix methods, etc...
Thanks

Hi,
It´s very strange,
Only with IE 6.0 sp1 and a folder (only one folder) the reports never end.
I don´t now why, but I schedule an instance of the report and it´s works find.
Thank you very match Mauricio.

Similar Messages

  • Invalid session WIH 00013 error

    Using XI 3.1 SP3 with Tomcat and Oracle CMS
    We are getting an Invalid Session WIH 00013 error when trying to refresh a WEBI report. This is the only report this is happening with. Any resolution / workaround?
    Thanks in advance!

    Here is my wireportserver trace log:
    cefactory.cpp:158:class CORBA_Object *__thiscall CDZServerFactory::newService(const unsigned short *,const unsigned short *): TraceLog message 1
    2012/01/22 04:49:00.431|>=|E|X|13484|14096| |||||||||||||||Uncaught Exception in SilentScope: CDZServerFactory::newService: 0.015
    cefactory.cpp:158:class CORBA_Object *__thiscall CDZServerFactory::newService(const unsigned short *,const unsigned short *): TraceLog message 2
    2012/01/22 04:49:02.431|>=|E|X|13484| 916| |||||||||||||||Uncaught Exception in SilentScope: CDZServerFactory::newService: 0
    SessionRegistry.cpp:647:unsigned long __thiscall SessionRegistry::remove(const class bo_utf8string &,bool): TraceLog message 3
    2012/01/22 04:49:19.791|>>|E| |13484|14092| |||||||||||||||**ERROR:RepositoryProxy_SessionRegistry:the session has not been found in the refCount map [SessionRegistry.cpp;647]
    Thoughts?
    -phil

  • WIH 00013 time out error while viewing a BO Web intelligence report

    Hi,
    I have a BO web intelligence report. While viewing the report i get WIH 00013 time out error. I have another report with everything same as this one except for one filter condition. That is working fine but former is giving me an error.
    I tried changing the timeout values to 120 minutes from 90 minutes in connection server setting but didn't work.
    Also when i run the same report by scheduling it in CMC and format as PDF, then it works fine. This error only comes when i try to view the report directly from infoview.
    Please let me know if there is any other way to resolve.
    Thanks!
    Edited by: Satya Suma on Mar 9, 2011 1:31 PM
    Edited by: Satya Suma on Mar 9, 2011 2:00 PM

    Hi Suma,
    These links may be helpful to you:
    WIH00013 - Invalid Session
    WIH 00013: Invalid session
    All the Best,
    Madhu....

  • To pass new session variable value to stored proc before running a report.

    Hi,
    Below is summary of the report requirement -
    Database level design
    1. Created a view and a global temporary table (GTT)
    2. Created an Oracle package procedure to accept from and to business dates on basis of which it will fetch, process and populate the GTT.
    Repository level design
    1. Created a business model containing the view and the GTT (mentioned above)
    2. Created two SESSION variables "from_dt" and "to_dt" to be initialized by their respective init blocks. Each of the variable is initialized with a DATE column value (of type DATETIME) from a database lookup table. I have also set the option "Enable that variable to be set by any user" for both variables.
    Query for these variables :
    from_dt = select from_date from <table>
    to_dt = select add_months(from_date,12) from <table>
    Presentation level design
    1. Using a text box, i display the default/initialized values of these variables like this -
    Current business date:@{biServer.variables['NQ_SESSION.from_dt']} Future business dt:@{biServer.variables['NQ_SESSION.to_dt']}
    Dates get displayed in YYYY-MM-DD 00:00:00 format
    The text msg displays these default dates and allows the user to specift different date range for which i create prompts as shown below.
    2. Using any random two columns of date type from the business model, i create two date dashboard prompts with labels "From Dt" and "To Dt".
    i select Calender Controls for both; setting Default To = Report Defaults.
    The Set Variable is set to Presentation variables - such that pv_from_dt maps to "From Dt" and pv_to_dt maps to "To Dt".
    3. i create the report using the business model created above. In the report "Advanced Tab" => "Prefix" field i specify the following -
    SET VARIABLE from_dt='@{pv_from_dt}',to_dt='@{pv_to_dt}';
    Note : The logic here is to display the default dates and allow user to specify different date values which will be stored in presentation variables.
    If the user does specify different "from dt" and "to dt" values, then using the presentation variables, i want to "write" back these new values to the corresponding session variables mentioned above.
    If the user does not specify different date range, then the default/initialized dates must be considered.
    I also display the default and new date values in the report title.
    Back to Repository level design
    To execute the stored procedure that will load the GTT before running the report I need to pass two date parameters to the stored procedure on basis of which it will fetch data, process and populate the GTT.
    In the Connection Pool --> Connection Script Tab --> Execute before query, I wrote the below query using the repository variables FROM_DT and TO_DT to execute the procedure -
    DECLARE
    v_from_dt date;
    v_to_dt date;
    BEGIN
    v_from_dt := VALUEOF(From_Dt);
    v_to_dt := VALUEOF(To_Dt);
    package_name1.package_body(v_from_dt,v_to_dt);
    END;
    Now when i try to run the report i get the following error :
    [nQSError: 10058] A general error has occurred. [nQSError: 23006] The session variable, NQ_SESSION.to_dt, has no value definition. (HY000)..
    Need help on this.
    Is it possible to "write back" a new value to a session variable ?
    Any other alternatives.
    Thanks
    Nusrat
    Edited by: user10309945 on Jan 24, 2011 10:08 PM

    Sandeep, I found a several topics where users describe saving values in DB through stored procedure or function. For example, [How to store OBIEE presentation level variable values in DB |http://forums.oracle.com/forums/thread.jspa?threadID=892006] I tried it and get an error
    *10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 17001] Oracle Error code: 14551, message: ORA-14551: cannot perform a DML operation inside a query ORA-06512*
    It's not a BI error. This error are generated by Oracle DB. If I write next:
    SELECT MyPLSQLFunction(p1,p2) FROM DUAL
    I get the same error.
    Oracle doesn't allow DML operations in SELECT.
    Did you relalize this feature yourself? Where did I mistake?

  • When running a report in RRMX in BI 7.

    Hello All,
    When I try to run a report in RRMX I get a Runtime error. Please find the ABAP Dump Analysis from ST22.
    Runtime Errors         SYSTEM_NO_TASK_STORAGE
    Date and Time          13.05.2008 16:17:08
    Short dump has not been completely stored (too big)
         Short text
              Unable to fulfil request for 5855472 bytes of storage space.
         What happened?
              Each transaction requires some main memory space to process
              application data. If the operating system cannot provide any more
              space, the transaction is terminated.
         What can you do?
              Try to find out (e.g. by targetted data selection) whether the
              transaction will run with less main memory.
              If there is a temporary bottleneck, execute the transaction again.
              If the error persists, ask your system administrator to check the
              following profile parameters:
              o  ztta/roll_area            (1.000.000 - 15.000.000)
                     Classic roll area per user and internal mode
                     usual amount of roll area per user and internal mode
              o  ztta/roll_extension       (10.000.000 - 500.000.000)
                     Amount of memory per user in extended memory (EM)
              o  abap/heap_area_total      (100.000.000 - 1.500.000.000)
                     Amount of memory (malloc) for all users of an application
                     server. If several background processes are running on
                     one server, temporary bottlenecks may occur.
                     Of course, the amount of memory (in bytes) must also be
                     available on the machine (main memory or file system swap).
                     Caution:
                     The operating system must be set up so that there is also
                     enough memory for each process. Usually, the maximum address
                     space is too small.
                     Ask your hardware manufacturer or your competence center
                     about this.
                     In this case, consult your hardware vendor
              abap/heap_area_dia:        (10.000.000 - 1.000.000.000)
                     Restriction of memory allocated to the heap with malloc
                     for each dialog process.
              Parameters for background processes:
              abap/heap_area_nondia:        (10.000.000 - 1.000.000.000)
                     Restriction of memory allocated to the heap with malloc
                     for each background process.
              Other memory-relevant parameters are:
              em/initial_size_MB:         (35-1200)
                     Extended memory area from which all users of an
                     application server can satisfy their memory requirement.
              Note which actions and input led to the error.
              For further help in handling the problem, contact your SAP administrator
              You can use the ABAP dump analysis transaction ST22 to view and manage
              termination messages, in particular for long term reference.
         Error analysis
              A new storage area of 5855472 bytes was requested
              (storage calss TASK).
              All the available space has been used up.
              Possible reason: Either the volume of data to be processed is too large
              or the available swap space is too small.
              Last error logged in SAP kernel
              Component............ "EM"
              Place................ "SAP-Server olbiwprd_BWP_00 on host olbiwprd (wp 1)"
              Version.............. 37
              Error code........... 7
              Error text........... "Warning: EM-Memory exhausted: Workprocess gets PRIV "
              Description.......... " "
              System call.......... " "
              Module............... "emxx.c"
              Line................. 1880
              The error reported by the operating system is:
              Error number..... " "
              Error text....... " "
         How to correct the error
              Restrict volume of data or increase swap space.
              Try to decide by analysis whether this request is
              reasonable or whether there is a program error. You should pay
              particular attention to the internal table entries listed below.
              If the error occures in a non-modified SAP program, you may be able to
              find an interim solution in an SAP Note.
              If you have access to SAP Notes, carry out a search with the following
              keywords:
              "SYSTEM_NO_TASK_STORAGE" " "
              "CL_RSR_NET_GRID===============CP" or "CL_RSR_NET_GRID===============CM00A"
              "MERGE_RANGES"
              If you cannot solve the problem yourself and want to send an error
              notification to SAP, include the following information:
              1. The description of the current problem (short dump)
                 To save the description, choose "System->List->Save->Local File
              (Unconverted)".
              2. Corresponding system log
                 Display the system log by calling transaction SM21.
                 Restrict the time interval to 10 minutes before and five minutes
              after the short dump. Then choose "System->List->Save->Local File
              (Unconverted)".
              3. If the problem occurs in a problem of your own or a modified SAP
              program: The source code of the program
                 In the editor, choose "Utilities->More
              Utilities->Upload/Download->Download".
              4. Details about the conditions under which the error occurred or which
              actions and input led to the error.
         System environment
              SAP-Release 700
              Application server... "olbiwprd"
              Network address...... "10.10.10.7"
              Operating system..... "Windows NT"
              Release.............. "5.2"
              Hardware type........ "4x Intel 801586"
              Character length.... 16 Bits
              Pointer length....... 32 Bits
              Work process number.. 1
              Shortdump setting.... "full"
              Database server... "OLBIWPRD"
              Database type..... "MSSQL"
              Database name..... "BWP"
              Database user ID.. "bwp"
              Char.set.... "C"
              SAP kernel....... 700
              created (date)... "Oct 30 2006 00:29:20"
              create on........ "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
              Database version. "SQL_Server_8.00 "
              Patch level. 83
              Patch text.. " "
              Database............. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"
              SAP database version. 700
              Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
              Memory consumption
              Roll.... 1709536
              EM...... 419168344
              Heap.... 500866656
              Page.... 16384
              MM Used. 910107048
              MM Free. 10780592
         User and Transaction
              Client.............. 400
              User................ "SETTM"
              Language Key........ "E"
              Transaction......... " "
              Program............. "CL_RSR_NET_GRID===============CP"
              Screen.............. "SAPMSSY1 3004"
              Screen Line......... 2
              Information on caller of Remote Function Call (RFC):
              System.............. "BWP"
              Database Release.... 700
              Kernel Release...... 700
              Connection Type..... 3 (2=R/2, 3=ABAP System, E=Ext., R=Reg. Ext.)
              Call Type........... "asynchron without reply and non-transactional (emode 0,
               imode 0)"
              Inbound TID.........." "
              Inbound Queue Name..." "
              Outbound TID........." "
              Outbound Queue Name.." "
              Client.............. 400
              User................ "SETTM"
              Transaction......... "RRMX"
              Call Program........."SAPLRSAH"
              Function Module..... "RSAH_BIW_CALL_SERVER"
              Call Destination.... "NONE"
              Source Server....... "olbiwprd_BWP_00"
              Source IP Address... "10.10.10.7"
              Additional information on RFC logon:
              Trusted Relationship " "
              Logon Return Code... 0
              Trusted Return Code. 0
              Note: For releases P_T_RANGE_INT
              Table IT_2188559[365967x160]
    DATA=P_T_RANGE_INT
                 Table reference: 2392
                 TABH+  0(20) = 08F3DE520000000000000000580900000F652100
                 TABH+ 20(20) = 8F950500A0000000FFFFFFFF04140500500C0000
                 TABH+ 40( 8) = 10000000C1248001
                 store        = 0x08F3DE52
                 ext1         = 0x00000000
                 shmId        = 0     (0x00000000)
                 id           = 2392  (0x58090000)
                 label        = 2188559 (0x0F652100)
                 fill         = 365967 (0x8F950500)
                 leng         = 160   (0xA0000000)
                 loop         = -1    (0xFFFFFFFF)
                 xtyp         = TYPE#000051
                 occu         = 16    (0x10000000)
                 access       = 1     (ItAccessStandard)
                 idxKind      = 0     (ItIndexNone)
                 uniKind      = 2     (ItUniqueNon)
                 keyKind      = 1     (default)
                 cmpMode      = 2     (cmpSingleMcmpR)
                 occu0        = 1
                 groupCntl    = 0
                 rfc          = 0
                 unShareable  = 0
                 mightBeShared = 0
                 sharedWithShmTab = 0
                 isShmLockId  = 0
                 gcKind       = 0
                 isUsed       = 1
                 isCtfyAble   = 1
                 >>>>> Shareable Table Header Data <<<<<
                 tabi         = 0xA88AF34D
                 pgHook       = 0xA0040539
                 idxPtr       = 0x00000000
                 shmTabhSet   = 0x00000000
                 id           = 92815 (0x8F6A0100)
                 refCount     = 0     (0x00000000)
                 tstRefCount  = 0     (0x00000000)
                 lineAdmin    = 376816 (0xF0BF0500)
                 lineAlloc    = 366000 (0xB0950500)
                 shmVersId    = 0     (0x00000000)
                 shmRefCount  = 1     (0x01000000)
                 >>>>> 1st level extension part <<<<<
                 regHook      = Not allocated
                 collHook     = Not allocated
                 ext2         = Not allocated
                 >>>>> 2nd level extension part <<<<<
                 tabhBack     = Not allocated
                 delta_head   = Not allocated
                 pb_func      = Not allocated
                 pb_handle    = Not allocated
         L_TAB_LINES
              365967
                 8900
                 F550
         RRK_C_CHAVL-REST_HRY
              REST_H
                 545554222222222222222222222222222222222222222222222222222222
                 2534F8000000000000000000000000000000000000000000000000000000
                 000000000000000000000000000000000000000000000000000000000000
                 000000000000000000000000000000000000000000000000000000000000
         %_DUMMY$$
                 2222
                 0000
                 0000
                 0000
         <L_S_WA1>
         SY-REPID
              CL_RSR_NET_GRID===============CP
                 4455555445545443333333333333334522222222
                 3CF232FE54F7294DDDDDDDDDDDDDDD3000000000
                 0000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000
         SYST-REPID
              CL_RSR_NET_GRID===============CP
                 4455555445545443333333333333334522222222
                 3CF232FE54F7294DDDDDDDDDDDDDDD3000000000
                 0000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000
         SPACE
                 2
                 0
                 0
                 0
         <L_S_WA1>-LEVEL
         L_S_WA2-LEVEL
              0
                 0000
                 0000
         <L_S_WA1>-FORMAT
         L_S_WA2-FORMAT
                 22222222222222222222222222222222222222222222222222222222222222222222
                 00000000000000000000000000000000000000000000000000000000000000000000
                 00000000000000000000000000000000000000000000000000000000000000000000
                 00000000000000000000000000000000000000000000000000000000000000000000
         <L_S_WA1>-X1
         L_S_WA2-X1
              0
                 0000
                 0000
         <L_S_WA1>-X2
         L_S_WA2-X2
              0
                 0000
                 0000
         <L_S_WA1>-Y2
         L_S_WA2-Y1
              0
                 0000
                 0000
         No.         13     Ty.      METHOD
         Name      CL_RSR_NET_GRID=>FILL_RANGES
         I_AREA_OPTIMIZATION
              X
                 5
                 8
                 0
                 0
         ME->P_NOSTYLES
                 2
                 0
                 0
                 0
         RS_C_FALSE
                 2
                 0
                 0
                 0
         ME
                 0000F000
                 60009100
         RS_C_TRUE
              X
                 5
                 8
                 0
                 0
         ME->N_T_RANGES
              Table[initial]
         ME->P_T_RANGE_INT
              Table IT_2188559[365967x160]
         L_S_RANGES_FROM
    0.0.0.0.0.0.0.1.                                                                    ####
                 00000000222222222222222222222222222222222222222222222222222222222222222222220000
                 00000000000000000000000000000000000000000000000000000000000000000000000000000000
                 00000000000000000000000000000000000000000000000000000000000000000000000000000000
                 00000000000000000000000000000000000000000000000000000000000000000000000000000000
         RRX1_C_AXIS-COLUMNS
              X
                 5
                 8
                 0
                 0
         L_S_RANGES_TO
                 0000000022222222222222222222222222222222222222222222222222222222222222222222
                 0000000000000000000000000000000000000000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000000000000000000000000000000000000000
         ME->N_EXTRA_COLUMNS
              10
                 0000
                 A000
         ME->N_EXTRA_ROWS
              1
                 0000
                 1000
         %_PRINT
                  000                                                                                0###
                 2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000
                 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
         No.         12     Ty.      METHOD
         Name      CL_RSR_NET_GRID=>FILL_GRID
         I_FROM_ROW
              0
                 0000
                 0000
         I_TO_ROW
              0
                 0000
                 0000
         I_FROM_COLUMN
              0
                 0000
                 0000
         I_TO_COLUMN
              0
                 0000
                 0000
         I_WITH_CAPTION_ROWS
              X
                 5
                 8
                 0
                 0
         I_WITH_CAPTION_COLUMNS
              X
                 5
                 8
                 0
                 0
         I_WITH_DATA
              X
                 5
                 8
                 0
                 0
         I_FORMATTED_VALUES
              X
                 5
                 8
                 0
                 0
         I_MAX_COLS
              65535
                 FF00
                 FF00
         RRFMT_C_VALEXCP-NORMAL
              X
                 5
                 8
                 0
                 0
         SY-SUBRC
              0
                 0000
                 0000
         ME->P_NOSTYLES
                 2
                 0
                 0
                 0
         ME
                 0000F000
                 60009100
         L_AREA_OPTIMIZATION
              X
                 5
                 8
                 0
                 0
         No.         11     Ty.      METHOD
         Name      CL_RSR_XLS_VIEW=>SERIALIZE_RESULT
         I_R_PARAMETER
                 A0005000
                 A0005200
         E_SX_RESULT
    0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1. #######
                 000000FF00FF00FF00FF200000FF
                 000000FF00FF00FF00FF000000FF
                 000000FF00FF00FF00FF000000FF
                 000000FF00FF00FF00FF000000FF
         %_DUMMY$$
                 2222
                 0000
                 0000
                 0000
         L_R_GRID
                 0000F000
                 60009100
         SPACE
                 2
                 0
                 0
                 0
         ME
                 60009000
                 1000E000
         L_S_SESSION_SETTINGS-MASK_DATE
              DD/MM/YYYY
                 44244255552222222222
                 44FDDF99990000000000
                 00000000000000000000
                 00000000000000000000
         L_DATE_MASK
              DD/MM/YYYY
                 4424425555
                 44FDDF9999
                 0000000000
                 0000000000
         L_S_SESSION_SETTINGS
               DD/MM/YYYY                                ###   #########
                 2442442555522222222222222222222222222222222000222000000000222222222222222222222222222222222222
                 044FDDF999900000000000000000000000000000000000000000000000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
         SYST
              ####&#38287;#################################¤#########<###########################'#µ#########XC####
                 00008000000000000000000000000000000000A000000000300000000000000000000000000020B000100000540000
                 1000F5D00000000000000010100010000000004000000000C000000000000000000000000000705000E00000830200
                 0000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
                 000050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000C
         RS_C_TRUE
              X
                 5
                 8
                 0
                 0
         RRX1_C_MAX_ROW
              65535
                 FF00
                 FF00
         %_SPACE
                 2
                 0
                 0
                 0
         ME->N_SX_RESULT+4(4)
              0
                 0000
                 0000
         L_R_GRID->N_MAX_X
              23
                 1000
                 7000
         ME->N_SX_RESULT-MAX_Y
              0
                 0000
                 0000
         L_R_GRID->N_MAX_Y
              36516
                 A800
                 4E00
         ME->N_SX_RESULT+16(8)
              Table IT_2188115[0x152]
    DATA=N_SX_RESULT-RANGES
                 Table reference: 75887
                 TABH+  0(20) = 0000000000000000000000006F28010053632100
                 TABH+ 20(20) = 0000000098000000FFFFFFFF04A10100D0070000
                 TABH+ 40( 8) = 10000000C1248401
                 store        = 0x00000000
                 ext1         = 0x00000000
                 shmId        = 0     (0x00000000)
                 id           = 75887 (0x6F280100)
                 label        = 2188115 (0x53632100)
                 fill         = 0     (0x00000000)
                 leng         = 152   (0x98000000)
                 loop         = -1    (0xFFFFFFFF)
                 xtyp         = TYPE#000027
                 occu         = 16    (0x10000000)
                 access       = 1     (ItAccessStandard)
                 idxKind      = 0     (ItIndexNone)
                 uniKind      = 2     (ItUniqueNon)
                 keyKind      = 1     (default)
                 cmpMode      = 2     (cmpSingleMcmpR)
                 occu0        = 1
                 groupCntl    = 0
                 rfc          = 0
                 unShareable  = 0
                 mightBeShared = 1
                 sharedWithShmTab = 0
                 isShmLockId  = 0
                 gcKind       = 0
                 isUsed       = 1
                 isCtfyAble   = 1
                 >>>>> Shareable Table Header Data <<<<<
                 tabi         = Not allocated
                 pghook       = Not allocated
                 idxPtr       = Not allocated
                 shmTabhSet   = Not allocated
                 id           = Not allocated
                 refCount     = Not allocated
                 tstRefCount  = Not allocated
                 lineAdmin    = Not allocated
                 lineAlloc    = Not allocated
                 shmVersId    = Not allocated
                 shmRefCount  = Not allocated
                 shmIsReadOnly = Not allocated
                 >>>>> 1st level extension part <<<<<
                 regHook      = Not allocated
                 collHook     = Not allocated
                 ext2         = Not allocated
                 >>>>> 2nd level extension part <<<<<
                 tabhBack     = Not allocated
                 delta_head   = Not allocated
                 pb_func      = Not allocated
                 pb_handle    = Not allocated
         L_R_GRID->N_T_RANGES
              Table[initial]
         ME->N_SX_RESULT+8(8)
              Table IT_2188116[0x692]
    DATA=N_SX_RESULT-GRID
                 Table reference: 75888
                 TABH+  0(20) = 0000000000000000000000007028010054632100
                 TABH+ 20(20) = 00000000B4020000FFFFFFFF04A1010010070000
                 TABH+ 40( 8) = 10000000C1308401
                 store        = 0x00000000
                 ext1         = 0x00000000
                 shmId        = 0     (0x00000000)
                 id           = 75888 (0x70280100)
                 label        = 2188116 (0x54632100)
                 fill         = 0     (0x00000000)
                 leng         = 692   (0xB4020000)
                 loop         = -1    (0xFFFFFFFF)
                 xtyp         = TYPE#000023
                 occu         = 16    (0x10000000)
                 access       = 1     (ItAccessStandard)
                 idxKind      = 0     (ItIndexNone)
                 uniKind      = 2     (ItUniqueNon)
                 keyKind      = 1     (default)
                 cmpMode      = 8     (cmpManyEq)
                 occu0        = 1
                 groupCntl    = 0
                 rfc          = 0
                 unShareable  = 0
                 mightBeShared = 1
                 sharedWithShmTab = 0
                 isShmLockId  = 0
                 gcKind       = 0
                 isUsed       = 1
                 isCtfyAble   = 1
                 >>>>> Shareable Table Header Data <<<<<
                 tabi         = Not allocated
                 pghook       = Not allocated
                 idxPtr       = Not allocated
                 shmTabhSet   = Not allocated
                 id           = Not allocated
                 refCount     = Not allocated
                 tstRefCount  = Not allocated
                 lineAdmin    = Not allocated
                 lineAlloc    = Not allocated
                 shmVersId    = Not allocated
                 shmRefCount  = Not allocated
                 shmIsReadOnly = Not allocated
                 >>>>> 1st level extension part <<<<<
                 regHook      = Not allocated
                 collHook     = Not allocated
                 ext2         = Not allocated
                 >>>>> 2nd level extension part <<<<<
                 tabhBack     = Not allocated
                 delta_head   = Not allocated
                 pb_func      = Not allocated
                 pb_handle    = Not allocated
         L_R_GRID->N_T_GRID
              Table IT_2188558[839877x692]
    DATA=N_T_GRID
                 Table reference: 2409
                 TABH+  0(20) = 08F35E520000000000000000690900000E652100
                 TABH+ 20(20) = C5D00C00B4020000FFFFFFFF04140500E0060000
                 TABH+ 40( 8) = 10000000C1308001
                 store        = 0x08F35E52
                 ext1         = 0x00000000
                 shmId        = 0     (0x00000000)
                 id           = 2409  (0x69090000)
                 label        = 2188558 (0x0E652100)
                 fill         = 839877 (0xC5D00C00)
                 leng         = 692   (0xB4020000)
                 loop         = -1    (0xFFFFFFFF)
                 xtyp         = TYPE#000022
                 occu         = 16    (0x10000000)
                 access       = 1     (ItAccessStandard)
                 idxKind      = 0     (ItIndexNone)
                 uniKind      = 2     (ItUniqueNon)
                 keyKind      = 1     (default)
                 cmpMode      = 8     (cmpManyEq)
                 occu0        = 1
                 groupCntl    = 0
                 rfc          = 0
                 unShareable  = 0
                 mightBeShared = 0
                 sharedWithShmTab = 0
                 isShmLockId  = 0
                 gcKind       = 0
                 isUsed       = 1
                 isCtfyAble   = 1
                 >>>>> Shareable Table Header Data <<<<<
                 tabi         = 0xF8C5BB3C
                 pgHook       = 0x70C46839
                 idxPtr       = 0x00000000
                 shmTabhSet   = 0x00000000
                 id           = 92814 (0x8E6A0100)
                 refCount     = 0     (0x00000000)
                 tstRefCount  = 0     (0x00000000)
                 lineAdmin    = 851968 (0x00000D00)
                 lineAlloc    = 839888 (0xD0D00C00)
                 shmVersId    = 0     (0x00000000)
                 shmRefCount  = 1     (0x01000000)
                 >>>>> 1st level extension part <<<<<
                 regHook      = Not allocated
                 collHook     = Not allocated
                 ext2         = Not allocated
                 >>>>> 2nd level extension part <<<<<
                 tabhBack     = Not allocated
                 delta_head   = Not allocated
                 pb_func      = Not allocated
                 pb_handle    = Not allocated
         ME->N_SX_RESULT+32(8)
              Table[initial]
         L_R_GRID->N_T_SYMBOLS
              Table[initial]
         ME->N_SX_RESULT+24(8)
              Table[initial]
         L_R_GRID->N_T_TEXT
              Table[initial]
         SY-REPID
              CL_RSR_XLS_VIEW===============CP
                 4455555545554453333333333333334522222222
                 3CF232F8C3F6957DDDDDDDDDDDDDDD3000000000
                 0000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000
         ME->N_SX_RESULT+40(2)
                 2
                 0
                 0
                 0
         L_R_GRID->N_EDITABLE
                 2
                 0
                 0
                 0
         SYST-REPID
              CL_RSR_XLS_VIEW===============CP
                 4455555545554453333333333333334522222222
                 3CF232F8C3F6957DDDDDDDDDDDDDDD3000000000
                 0000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000
         ME->N_R_REQUEST
                 5000A000
                 E0001000
         RSBBS_C_RETURN_TYPE-INTERNAL
              I
                 4
                 9
                 0
                 0
         ME->N_SX_RESULT+48(8)
              Table IT_2188117[0x490]
    DATA=N_SX_RESULT-TXT_ELEMENTS
                 Table reference: 75889
                 TABH+  0(20) = 0000000000000000000000007128010055632100
                 TABH+ 20(20) = 00000000EA010000FFFFFFFF04A4010060230000
                 TABH+ 40( 8) = 10000000C1248401
                 store        = 0x00000000
                 ext1         = 0x00000000
                 shmId        = 0     (0x00000000)
                 id           = 75889 (0x71280100)
                 label        = 2188117 (0x55632100)
                 fill         = 0     (0x00000000)
                 leng         = 490   (0xEA010000)
                 loop         = -1    (0xFFFFFFFF)
                 xtyp         = TYPE#000174
                 occu         = 16    (0x10000000)
                 access       = 1     (ItAccessStandard)
                 idxKind      = 0     (ItIndexNone)
                 uniKind      = 2     (ItUniqueNon)
                 keyKind      = 1     (default)
                 cmpMode      = 2     (cmpSingleMcmpR)
                 occu0        = 1
                 groupCntl    = 0
                 rfc          = 0
                 unShareable  = 0
                 mightBeShared = 1
                 sharedWithShmTab = 0
                 isShmLockId  = 0
                 gcKind       = 0
                 isUsed       = 1
                 isCtfyAble   = 1
                 >>>>> Shareable Table Header Data <<<<<
                 tabi         = Not allocated
                 pghook       = Not allocated
                 idxPtr       = Not allocated
                 shmTabhSet   = Not allocated
                 id           = Not allocated
                 refCount     = Not allocated
                 tstRefCount  = Not allocated
                 lineAdmin    = Not allocated
                 lineAlloc    = Not allocated
                 shmVersId    = Not allocated
                 shmRefCount  = Not allocated
                 shmIsReadOnly = Not allocated
                 >>>>> 1st level extension part <<<<<
                 regHook      = Not allocated
                 collHook     = Not allocated
                 ext2         = Not allocated
                 >>>>> 2nd level extension part <<<<<
                 tabhBack     = Not allocated
                 delta_head   = Not allocated
                 pb_func      = Not allocated
                 pb_handle    = Not allocated
         No.         10     Ty.      METHOD
         Name      CL_RSR_XLS_VIEW=>SERIALIZE
         I_R_PARAMETER
                 A0005000
                 A0005200
         E_SX_DATAPROVIDER
              DATA_PROVIDER_1               ##########################################0000##0  00000000  ###
                 4454555454445532222222222222220000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF3333003223333333322000
                 4141F02F69452F10000000000000000000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF0000000000000000000000
                 0000000000000000000000000000000000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF0000000000000000000000
                 0000000000000000000000000000000000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF0000000000000000000000
         L_DO_NOT_READ_DATA
                 2
                 0
                 0
                 0
         ME->N_R_REQUEST
                 5000A000
                 E0001000
         ME->N_R_REQUEST->N_SX_REQUEST
              Ð#######Ë###Ï###Ä###Ì#######Î###Í###Ê###########Ô#&#2347;#####
                 D00000F0C010C010C030C01000F0C010C010C01000FF00FFD02000FF
                 00F0B040B040F00040B0C030D020E010D020A05000FF00FF40B000FF
                 000000000000000000000000000000000000000000FF00FF000000FF
                 008000700080008000900080008000800080008000FF00FF009000FF
         RS_C_FALSE
                 2
                 0
                 0
                 0
         ME
                 60009000
                 1000E000
         E_SX_DATAPROVIDER-RESULT
    0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1. #######
                 000000FF00FF00FF00FF200000FF
                 000000FF00FF00FF00FF000000FF
                 000000FF00FF00FF00FF000000FF
                 000000FF00FF00FF00FF000000FF
         L_CNT
              109
                 6000
                 D000
         No.          9     Ty.      METHOD
         Name      CL_RSR_XLS_WORKBOOK=>SERIALIZE
         I_R_PARAMETER
                 A0005000
                 A0005200
         E_SX_WORKBOOK
    0.0.0.1. X####&#2404;#########X###############
                 00002500906010C000FF500000FF00FF00FF
                 10000800B04000F000FF800000FF00FF00FF
                 000000000000000000FF000000FF00FF00FF
                 000000000090009000FF000000FF00FF00FF
         %_SPACE
                 2
                 0
                 0
                 0
         SY
              ####&#38287;#################################¤#########<###########################'#µ#########XC####
                 00008000000000000000000000000000000000A000000000300000000000000000000000000020B000100000540000
                 1000F5D00000000000000010100010000000004000000000C000000000000000000000000000705000E00000830200
                 0000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
                 000050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000C
         RSSTA_C_HANDLETP-BEX_DP
              DP
                 4522
                 4000
                 0000
                 0000
         L_EVENT_CNT
              108
                 6000
                 C000
         %_DUMMY$$
                 2222
                 0000
                 0000
                 0000
         SYST-REPID
              CL_RSR_XLS_WORKBOOK===========CP
                 4455555545554544444333333333334522222222
                 3CF232F8C3F7F2B2FFBDDDDDDDDDDD3000000000
                 0000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000
         %_VIASELSCR
                 0
                 4
         L_SX_DP-NAME
              DATA_PROVIDER_1
                 445455545444553222222222222222
                 4141F02F69452F1000000000000000
                 000000000000000000000000000000
                 000000000000000000000000000000
         L_DO_NOT_READ_DATA
                 2
                 0
                 0
                 0
         RS_C_FALSE
                 2
                 0
                 0
                 0
         L_FETCH_DATA
              X
                 5
                 8
                 0
                 0
         RS_C_TRUE
              X
                 5
                 8
                 0
                 0
         SY-XFORM
              RSR_NET_INTERFACE
                 555544554454544442222222222222
                 232FE54F9E45261350000000000000
                 000000000000000000000000000000
                 000000000000000000000000000000
         L_SX_DP-REF
                 60009000
                 1000E000
         SY-REPID
              CL_RSR_XLS_WORKBOOK===========CP
                 4455555545554544444333333333334522222222
                 3CF232F8C3F7F2B2FFBDDDDDDDDDDD3000000000
                 0000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000
         L_SX_DATAPROVIDER
              DATA_PROVIDER_1               ##########################################0000##0  00000000  ###
                 4454555454445532222222222222220000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF3333003223333333322000
                 4141F02F69452F10000000000000000000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF0000000000000000000000
                 0000000000000000000000000000000000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF0000000000000000000000
                 0000000000000000000000000000000000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF0000000000000000000000
         E_SX_WORKBOOK-T_DATAPROVIDER
              Table[initial]
         ME->N_R_MESSAGES
                 60009000
                 5000A000
         E_SX_WORKBOOK-T_MESSAGES
              Table[initial]
         SYST
              ####&#38287;#################################¤#########<###########################'#µ#########XC####
                 00008000000000000000000000000000000000A000000000300000000000000000000000000020B000100000540000
                 1000F5D00000000000000010100010000000004000000000C000000000000000000000000000705000E00000830200
                 0000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
                 000050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000C
         No.          8     Ty.      FUNCTION
         Name      RSR_NET_INTERFACE_II
         I_R_PARAMETER
                 A0005000
                 A0005200
         E_OUTPUT
         E_T_MIME[]
              Table IT_2188371[1x2944]
                 FUNCTION-POOL=RSR_XLS_RFCFORM=RSR_NET_INTERFACEDATA=%_%_E_T_MIME
                 Table reference: 776
                 TABH+  0(20) = 0820EA41D06A4A26000000000803000053642100
                 TABH+ 20(20) = 01000000800B0000FFFFFFFF04120000F0050000
                 TABH+ 40( 8) = 04000000C1308001
                 store        = 0x0820EA41
                 ext1         = 0xD06A4A26
                 shmId        = 0     (0x00000000)
                 id           = 776   (0x08030000)
                 label        = 2188371 (0x53642100)
                 fill         = 1     (0x01000000)
                 leng         = 2944  (0x800B0000)
                 loop         = -1    (0xFFFFFFFF)
                 xtyp         = TYPE#000017
                 occu         = 4     (0x04000000)
                 access       = 1     (ItAccessStandard)
                 idxKind      = 0     (ItIndexNone)
                 uniKind      = 2     (ItUniqueNon)
                 keyKind      = 1     (default)
                 cmpMode      = 8     (cmpManyEq)
                 occu0        = 1
                 groupCntl    = 0
                 rfc          = 0
                 unShareable  = 0
                 mightBeShared = 0
                 sharedWithShmTab = 0
                 isShmLockId  = 0
                 gcKind       = 0
                 isUsed       = 1
                 isCtfyAble   = 1
                 >>>>> Shareable Table Header Data <<<<<
                 tabi         = 0x5046733D
                 pgHook       = 0x00000000
                 idxPtr       = 0x00000000
                 shmTabhSet   = 0x00000000
                 id           = 92777 (0x696A0100)
                 refCount     = 0     (0x00000000)
                 tstRefCount  = 0     (0x00000000)
                 lineAdmin    = 4     (0x04000000)
                 lineAlloc    = 4     (0x04000000)
                 shmVersId    = 0     (0x00000000)
                 shmRefCount  = 1     (0x01000000)
                 >>>>> 1st level extension part <<<<<
                 regHook      = 0x00000000
                 collHook     = 0x00000000
                 ext2         = 0x08F39E54
                 >>>>> 2nd level extension part <<<<<
                 tabhBack     = 0xE85E713D
                 delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
                 pb_func      = 0x00000000
                 pb_handle    = 0x00000000
         L_CMD_VAL
         SY-REPID
              SAPLRSR_XLS_RFC
                 5454555554555442222222222222222222222222
                 310C232F8C3F2630000000000000000000000000
                 0000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000
         C_PARAMETER_THEMEDEF
              THEMES
                 544445
                 485D53
                 000000
                 000000
         SY
              ####&#38287;#################################¤#########<###########################'#µ#########XC####
                 00008000000000000000000000000000000000A000000000300000000000000000000000000020B000100000540000
                 1000F5D00000000000000010100010000000004000000000C000000000000000000000000000705000E00000830200
                 0000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
                 000050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000C
         SCREEN
                 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
                 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
         RS_C_TRUE
              X
                 5
                 8
                 0
                 0
         L_PAGENO
              0001
                 3333
                 0001
                 0000
                 0000
         L_RETURN_CODE
              0
                 0000
                 0000
         L_R_WORKBOOK
                 60009000
                 80007000
         %_DUMMY$$
                 2222
                 0000
                 0000
                 0000
         %_VIASELSCR
                 0
                 4
         %_ARCHIVE
                 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
                 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
         L_SX_WORKBOOK
    0.0.0.1. X####&#2404;#########X###############
                 00002500906010C000FF500000FF00FF00FF
                 10000800B04000F000FF800000FF00FF00FF
                 000000000000000000FF000000FF00FF00FF
                 000000000090009000FF000000FF00FF00FF
         C_CMD_DEFAULT_WORKBOOK
              DEFAULT_WORKBOOK
                 4444545554544444
                 45615C4F7F2B2FFB
                 0000000000000000
                 0000000000000000
         C_CMD_GET_THEME_CATALOG
              GET_THEME_CATALOG
                 44555444454454444
                 754F485D5F3141CF7
                 00000000000000000
                 00000000000000000
         No.          7     Ty.      FUNCTION
         Name      RSR_NET_INTERFACE
         I_INPUT
              <?xml version="1.0" encoding="utf-16"?>##<ArrayOfBExSer_ParameterValue xmlns:xsi="http://www.w
                 3376627677666323232266666666327762332330034776746447567556766676756676276667377632677732277727
                 CF8DC065239FED21E0205E3F49E7D2546D162FEDAC12219F6258352F0121D545261C5508DCE3A839D28440AFF777E7
                 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
                 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
         I_STATISTIC_STEP_CLOSE
                 2
                 0
                 0
                 0
         E_OUTPUT
         E_SUBRC
              0
                 0000
                 0000
         E_T_MESSAGE[]
              Table IT_2188370[0x892]
                 FUNCTION-POOL=RSR_XLS_RFCFORM=RSR_NET_INTERFACEDATA=%_%_E_T_MESSAGE
                 Table reference: 2339
                 TABH+  0(20) = 0000000078B72540000000002309000052642100
                 TABH+ 20(20) = 000000007C030000FFFFFFFF04120000E0060000
                 TABH+ 40( 8) = 10000000C1248001
                 store        = 0x00000000
                 ext1         = 0x78B72540
                 shmId        = 0     (0x00000000)
                 id           = 2339  (0x23090000)
                 label        = 2188370 (0x52642100)
                 fill         = 0     (0x00000000)
                 leng         = 892   (0x7C030000)
                 loop         = -1    (0xFFFFFFFF)
                 xtyp         = TYPE#000022
                 occu         = 16    (0x10000000)
                 access       = 1     (ItAccessStandard)
                 idxKind      = 0     (ItIndexNone)
                 uniKind      = 2     (ItUniqueNon)
                 keyKind      = 1     (default)
                 cmpMode      = 2     (cmpSingleMcmpR)
                 occu0        = 1
                 groupCntl    = 0
                 rfc          = 0
                 unShareable  = 0
                 mightBeShared = 0
                 sharedWithShmTab = 0
                 isShmLockId  = 0
                 gcKind       = 0
                 isUsed       = 1
                 isCtfyAble   = 1
                 >>>>> Shareable Table Header Data <<<<<
                 tabi         = Not allocated
                 pghook       = Not allocated
                 idxPtr       = Not allocated
                 shmTabhSet   = Not allocated
                 id           = Not allocated
                 refCount     = Not allocated
                 tstRefCount  = Not allocated
                 lineAdmin    = Not allocated
                 lineAlloc    = Not allocated
                 shmVersId    = Not allocated
                 shmRefCount  = Not allocated
                 shmIsReadOnly = Not allocated
                 >>>>> 1st level extension part <<<<<
                 regHook      = 0x00000000
                 collHook     = 0x00000000
                 ext2         = 0x08F31E54
                 >>>>> 2nd level extension part <<<<<
                 tabhBack     = 0xD053713D
                 delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
                 pb_func    

    Hi,
    It is a memory or buffer related problem. Contact your BASIS.
    Looks like there is a shortage of space. Analyse the dump in ST22 and look for its proposals.
    OSS note 965351 might be applicable (if you are on 640/ unix).
    regards,
    NR

  • Error when trying to run delivery report via OWA

    When I click 'search' to run a Delivery Report via OWA I get the error "Sorry! We're having trouble processing your request at the moment. PLease try again in a few minutes".
    It does this contstantly no matter how many times I try. And it's not as if the server is struggling with resources or anything, that's fine.
    The following event shows up in the server event log too at the same time I try to run a report:
    Event ID 12014
    Microsoft Exchange could not find a certificate that contains the domain name NMSMAIL01.nms2k.int in the personal store on the local computer. Therefore, it is unable to support the STARTTLS SMTP verb for the connector Applications and Printers with a FQDN
    parameter of NMSMAIL01.nms2k.int. If the connector's FQDN is not specified, the computer's FQDN is used. Verify the connector configuration and the installed certificates to make sure that there is a certificate with a domain name for that FQDN. If this certificate
    exists, run Enable-ExchangeCertificate -Services SMTP to make sure that the Microsoft Exchange Transport service has access to the certificate key.
    I wonder if anyone has had this particular error when running delivery ports. I don't want to caryr out any changes until I'm sure it's the right thing i'm doing for the right reason.
    Thank you

    Hi,
    If the issue persists, I recommend you follow the steps below for troubleshooting:
    1. Please stop all the Exchange services on CAS Server and then stop IIS by running the iisreset/stop command.
    2. Locate to C:\Windows\Microsoft.NET\Framework64\v2.0.50727\Temporary ASP.NET, delete all the files and folders after taking a backup.
    3. Start all Exchange services on CAS Server and then start the IIS by running iisreset/start command.
    4. Locate to C:\Windows\Microsoft.NET\Framework64\v2.0.50727\Temporary ASP.NET Files, once user logon via OWA and then go to Options, new folders like OWA, ECP, will get created automatically.
    After the above settings, please check if users can run delivery report via OWA.
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

  • SAP crashes when trying to run a report

    Hi,
    The report i built runs just fine when i run it in crystal reports program.
    After i link the report to SAP, almost every time i try to run the report in SAP, the SAP program gives an error message saying that SAP encountered a problem and has to shut down.
    what can be the reason for it?
    Thanks, Udi

    Not enough info.
    Try posting to the SAP Integration kit forum.

  • Problem to run a report

    Hi all,
    I have a problem to run report in report server other than the report server in process.I installed 9IDS on 2 PCs.I use one PC as a small Appserver.Exactly, i run OC4J on it, i also create a report server on it, .Both OC4J and report server are permantly ran on my small AppServer.When i run a report using the report server in process, it work well.But when i try to run a report using my report server, i receive these errors messages:
    REP-110:Impossible to open the report
    REP-1070:Error when trying to open or save report.
    I don't know what wrong!Every answers to help are welcomed.
    Thanks!

    a couple more things .. since you are running your server as a real user, make sure the directory your report file is in allows access for this particular user.
    if your reports come from a mapped drive, it will not work as windows services don't have access to mapped drives.
    if you are using a CGIMAP-key, make sure your CGICMD.DAT is available. you can check this by submitting the showmap servlet command (like you did the showenv).
    you can find even more hints in the following tech note:
    Article-ID: <Note:215469.1>
    Circulation: PUBLISHED (EXTERNAL)
    Folder: tools.Developer.Reports.Generic
    Topic: Errors
    Title: Comprehensive REP-110 Troubleshooting and Overview Guide
    which is available via matalink.
    thanks,
    ph.

  • User Was Not Found when trying to run SSRS report!

    I'm trying to run SSRS report (Custom Reports) for Dynamics CRM 2011. However, when I try to run the report from the Reporting Manager it errors out "User Was Not Found"!
    Here's the complete error log:'
    An error has occurred during report processing. (rsProcessingAborted)
    Query execution failed for dataset 'DSMain'. (rsErrorExecutingCommand)
    Microsoft.Crm.CrmException: An unexpected error occurred. System.ServiceModel.FaultException`1[[Microsoft.Xrm.Sdk.OrganizationServiceFault, Microsoft.Xrm.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]:
    User Was Not Found <OrganizationServiceFault xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/xrm/2011/Contracts"> <ErrorCode>-2147220969</ErrorCode> <ErrorDetails xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic">
    <KeyValuePairOfstringanyType> <d2p1:key>CallStack</d2p1:key> <d2p1:value xmlns:d4p1="http://www.w3.org/2001/XMLSchema" i:type="d4p1:string"> at Microsoft.Crm.ServerLocatorService.GetCrmUserId(Guid organizationId,
    String authenticationInfo) at Microsoft.Crm.Sandbox.SandboxHostSids.IsCallerAllowed(SandboxSdkContext requestContext, String&amp; expectedSidSddlForm, String&amp; callerSidSddlForm) at Microsoft.Crm.Sandbox.SandboxSdkListener.AuthenticateCaller(SandboxCallInfo
    callInfo, SandboxSdkContext requestContext, String operation) at Microsoft.Crm.Sandbox.SandboxSdkListener.Execute(SandboxCallInfo callInfo, SandboxSdkContext requestContext, String operation, Byte[] serializedRequest)</d2p1:value> </KeyValuePairOfstringanyType>
    </ErrorDetails> <Message>User Was Not Found</Message> <Timestamp>2014-05-09T21:37:02.5487525Z</Timestamp> <InnerFault i:nil="true" /> <TraceText i:nil="true" /> </OrganizationServiceFault>
    An unexpected error occurred.
    User Was Not Found

    Hello,
    Can you preview the report in Report Builder or Report Designer?
    Based on the error message, the issue may related to a invalid user account for the report data source credentials.Please verify the user account is valid and has sufficient permission to access CRM data source.
    You can refer to the following blog to troubleshooting CRM custom report rsProcessingAborted error:
    http://blog.simpletrees.com/2013/04/mscrm-and-dreaded-rsprocessingaborted.html
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • How to set the minimial right to run a report only on SQL express Reporting Services

    Hi,
    I tried several times on setup a SERVERNAME\USERA from the "Home-Report Manager --> Site Settings --> Security --> New Role Assignment..
    I also checked it already have the roles (System Administrator, System User) being assigned
    When I try to run the report remotely via
    http://ThisISdomainNameURL/Reports_SQLEXPRESS/Pages/Report.aspx?ItemPath=
    User 'SERVERNAME\USERA' does not have required permissions. Verify that sufficient permissions have been granted and Windows User Account Control (UAC) restrictions have been addressed
    The permissions granted to user 'SERVERNAME\USERA' are insufficient for performing this operation (rsAccessDenied)

    Hi kkcci88888,
    Based on your description, you are experiencing the problem when login on the Report Server remotely, you got some error about required for permissions, right?
    Generally, Reporting Services uses role-based security to grant user access to a report server, and there are two types of roles: Item-level roles and System-level roles. On a new installation, only local administrators have access to a report server. If
    the user need to have access to reports, folders, models and shared data sources, we can assign Item-level roles on the root node (the Home folder) or on specific folders or items. In this case, you can check if you have assigned an Item-level role first.
    bellow are about how to assign an Item-level role:
    Start Internet Explorer together with the Run as administrator option. To do this, click Start, click All Programs, right-click  Internet Explorer, and then click Run as administrator.
    Open Report Manager. By default, the Report Manager URL is
    http://<ServerName>/reports_sqlexpress. If you use a named instance of Reporting Services, the Report Manager URL is
    http://<ServerName>/reports_<InstanceName>.
    In the Home dialog box, click Properties.
    Click New Role Assignment.
    Type a Windows user account name by using this format: <Domain>\<User>
    Click to select the Role(5 default roles) check box and click OK.
    If you already assigned a role for the user, this issue might be caused by the UAC settings, you can find more details in this link:http://support.microsoft.com/kb/934164 and you can follow the steps below
    to do the right configuration on your remote computer:
    Start Windows Internet Explorer.
    On the Tools menu, click Internet Options.
    Click Security.
    Click Trusted Sites and then click Sites.
    Under Add this Web site to the zone, type http://<ServerName>.  If you are not using HTTPS for the default site, click to clear the Require server certification (https:) for all sites in this zone check box,
    Click Add.
    Repeat step 4 and step 5 to add the http://localhost URL, and then click  Close.
    Close Report Manager and Use Internet Explorer without the Run as administrator option to reopen Report Manager.
    Links bellows are about the similar thread which answered are for your reference:
    http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/e8da121a-c0ac-4d0b-8774-abd5128d88fe
    http://stackoverflow.com/questions/14433068/user-does-not-have-required-permissions-ssrs-2008-on-windows-8
    https://connect.microsoft.com/SQLServer/feedback/details/622737/user-does-not-have-required-permissions-verify-that-sufficient-permissions-have-been-granted-and-windows-user-account-control-uac-restrictions-have-been-addressed
    If you still have any question, please feel free to ask.
    Regards
    Vicky Liu

  • WIS 10901 error while running WEBI report

    Hello All
    When we try to run WEBI report on BW query for Cost center accounting infocube its giving following error when we add measure in the info view.
    "A database error occured. The database text is: Error in MDDataSetBW.GetCellData. See RFC trace file or SAP system log for more details. (WIS 10901)"
    We did a trace and came to know that BO user id doesnt have authorization for Admin work bench. But when we authorize too its giving same error.
    This error populates only when we drag measure into the info view of Webi and if we drag any characteristic it works fine.
    Any help is highy appreciated.
    Thanks

    i have the same problem and i solve it
    step1 : go to START --> administrative tools --> Data sources (ODBC)
    step 2 : system DSN tab --> check the spell name efashion &  efashion-webi
               go to configure
    step 3 : go to this path and check spell and repair
    Now its working ....
    best regards ,,,

  • Error while running Crystal Reports from application

    Hi,
    I am getting the below error when I try to run Crystal Reports from my application.
    There are no Page Servers connected to the Cache Server or all connected Page Servers are disabled or all connected Page Servers are not part of the specified server group. Please try to reconnect later.
    I am able to preview the reports in CMC and Infoview, but when I try to run the same report via my application the above error pops up.
    Sometimes I get a different error:
    The Page Server you are trying to connect to is not accessible. Please contact your system administrator.
    Looks like some configuration settings are missing/ corrupted.
    I tried to look in a number of websites... tried few workarounds, but none seems to be working.
    Any help is highly appreciated.
    Meena
    Edited by: meenakshitikoo1 on Apr 19, 2011 12:46 PM

    Check the following SAP note
    https://service.sap.com/sap/support/notes/1032461
    Regards,
    Stratos

  • Frame overlaps repeating frame when I run the report

    Hi
    I created a report manually. On my designer, I have a frame, on top of which I have a repeting frame with all the fields and labels etc. However when I try to run the report, I get the frame on the top as a result the information on the repeating frame is hidden and report comes out to be blank. What am I doing wrong here?
    Any help?
    Thx!

    If you have frames positioning like this, the bottom frame could take place of the top one:
        |             |
        |             |
    |             |
    |             |
    --------------<br>
    <p>
    Solution is, move both to the left. If its not feasible, other solution is create another outer frame for the first one and maximize that to the left and don't show borders for that frame.
    </p>
    <br>
    Hope this helps.

  • Error running the report from Form

    Hi,
    I am try to run the report from the form by using these code of line
    DECLARE
         RPT_OBJECT      REPORT_OBJECT;
         RPT_RUN          VARCHAR2(100);
    BEGIN
    RPT_OBJECT := FIND_REPORT_OBJECT('REPORT7');
    SET_REPORT_OBJECT_PROPERTY(RPT_OBJECT, REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(RPT_OBJECT, REPORT_DESTYPE, CACHE);
    SET_REPORT_OBJECT_PROPERTY(RPT_OBJECT, REPORT_OTHER,'P_CITYCODE'||:CITYCODE||'PARAMFORM = YES');
    RPT_RUN := RUN_REPORT_OBJECT(RPT_OBJECT);
    END;
    but i m not using any Form server and Report Server i m completly using Oracle9iDS
    It gives the error rep-0110 file not found and
    rep-1070 error while opening and saving the file
    please give me the solution
    Shehzad

    Shehzad,
    this means that Reports Server cannot access the Reports module. You can test this assumption by copying your Reports module into <Oracle Home>\reports\samples\demo. The demo directory is out of the box accessible fro Reports.
    If this allows you to run the Report, then all you need to do is to specify the Reports_Path to include the reports modules.
    btw.: An other reason can be that your Reports contains uncompiled PLSQL, so you may want to check this too.
    Frank

  • FRM-41213 running a report.

    When I restart OC4J and then I try to run a report a I get the error FRM-41213.
    I need to start manually the report engine, using something like /rwservler/showjobs before I can run the report.
    I read the metalink note 218835.1 and it seems I runned in the same problem but the problem in that note was related to iDS9 and solved in 10g.
    How can I solve that issue ?
    Tks
    Tullio

    When I restart OC4J and then I try to run a report a I get the error FRM-41213.
    I need to start manually the report engine, using something like /rwservler/showjobs before I can run the report.
    I read the metalink note 218835.1 and it seems I runned in the same problem but the problem in that note was related to iDS9 and solved in 10g.
    How can I solve that issue ?
    Tks
    Tullio

Maybe you are looking for