Report Error only for some users - Unsupported RPL stream version detected: 101.116.1047292257. Expected version: 10.6.

Hi,
We have certain SSRS report  (which includes subreports) which
many users are able to access, but
some users cannot access- they get this error:
"Unsupported RPL stream version detected: 101.116.1047292257. Expected version: 10.6."
(We are not using SP integrated mode)(using SSRS 2008 R2)
No problem in VS or on server when trying to run this report.
User having this problem has the sam ewindows and explorer versions.
Please advice
Namnami

 have the user clear their temporary internet cache
How? 
Another detail- on the problematic user's computer if I run the explorer using my credentials, the report runs fine. 
Thanks
Namnami

Similar Messages

  • Outlook asking for username and password, but only for some users

    Hello, I'm
    in an Exchange Server 2013 client
    environment, two CAS servers
    and two Mailbox.
    Some users are having trouble in Outlook 2007
    and 2012, which is directly
    requesting the user name and password, not all,
    just some.
    The Active Directory is ok,
    DNS and also own Exchange
    servers apparently do not see errors.
    Has anyone here ever experienced this?
    How can I solve this problem?
    As this happens only to some users
    and the vast majority have no problems, so
    difficult to find the cause.
    Thank you!
    Ivanildo Teixeira Galvão

    Hi Ivanildo,
    From your description, only some users have an issue that Outlook prompts for username and password. In your case, I recommend you compare the normal and problematic Outlook settings. Here is the Outlook settings in my environment for your reference:
    1. "Always prompt for logon credentials" isn't checked.
    2. Logon network security using Negotiate Authentication.
    3. "Connect to Microsoft Exchange using HTTP" is checked.
    4. Use the NTLM Authentication when connecting to my proxy server for Exchange.
    Hope this can be helpful to you.
    Best regards,
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Amy Wang
    TechNet Community Support

  • Output type in Purchase Orders, erroring out for some users

    Hi All,
    We have a custom ouput type for PO, say 'ZZZ'. The problem is we do not get this out put type in the message screen of PO for some users and some time it gets populated for the same users. Please help me in understanding this issue as we are unable to track the things.
    Thanks,
    Amit

    Hi
    Please check the maintenace of the condition record, Check the key combination used. The conditon records are mainatined based on the organisational parmeters & the Vendor data.
    Please check the PO's in whcih the message are not coming automatically & check the combination exist or not as condition records.
    You can check the condition records using MN05, MN06
    Award points if useful
    Thanks & Regards
    Kishore

  • OBIEE Report keeps running for some users

    Hi Mates,
    I am facing a issue, while running the report.
    This reports keeps on running and expires after the max time out for few of the users whereas for few users it displays the output in 30 secs or so.
    Just to add in Oracle Identity Management has been setup security.
    Tried looking into the log files but couldn't find something related.
    OBIEE Version - 11.1.1.5
    Database version - 11.1.2
    Regards
    Gyan

    You need to verify the sqls fired for both users and its data level security, you may be pulling more data for few users.
    Also, try running the sql query in Toad or some other tool and compare the performance.

  • Catalog items visible to everyone, purchaseable only for some users

    Hello everybody
    Me again trying to find a solution to the following problem:
    We need to have some items in our catalog that are visible for every user but only purchaseable via shopping cart / SRM for some authorized users. I couldn't find any possibility in the customizing. So my attempt would be to add an additional attribute in CCM where I can put some kind of flag and then to construct an authorization check based on that flag and on a authorization profile. In case the authorization check fails, the catalog item may not be put in the shopping cart. Preferabily the shopping cart icon should be disabled for such items.
    Did somebody out there already think about something similar or already implemented something like that?
    It would also be a good basis for offering a publicly viewable, browseable catalog for "window shopping", because I also didn't find a way until now to publish the catalog as a standalone web application without shopping cart functionality.
    What do you out there think about it?
    Kind regards,
    Renaud

    Hi Christophe
    Thanks a bunch for your great help! I could solved the problem and am now able to have some catalog items visible but only purchaseable for authorized users. This is what I've done:
    1. Create a new authorization class (SU21)
    2. Create a new authorization object within this class
    3. Create a new authorization field within this object
    Don't forget to save and quit the SU21 transaction and then reenter it (/nsu21) because only then you'll see your changes / additions... seems to be a "refresh-bug" in SU21.
    4. Create a new role (PFCG) and an authorization profile containing the new authorization object. Assign the values needed.
    5. Create a new attribute in CCM and assigned it to OCI cust_field5 (because this one is of type TEXT50)
    6. Implemented some code in BAdI BBP_CATALOG_TRANSFER:
    DATA: wa_et_sc_item_data  TYPE BBP_PDS_SC_ITEM_D.
    DATA: wa_catalog_content  TYPE BBP_WS_OCI_ITEM_S.
    DATA: lv_authorized       TYPE c.
    DATA: lt_limtab           TYPE TABLE OF string.
    DATA: wa_limtab(10)       TYPE C.
    DATA: lv_message_v1       LIKE SY-MSGV1.
    DATA: lv_message_v2       LIKE SY-MSGV2.
    DATA: lv_message_v3       LIKE SY-MSGV3.
    DATA: lv_message_v4       LIKE SY-MSGV4.
    LOOP AT et_sc_item_data INTO wa_et_sc_item_data.
    * Get corresponding line from transferred catalog data
      READ TABLE catalog_content INTO wa_catalog_content
                                 WITH KEY line = wa_et_sc_item_data-number_int
                                 BINARY SEARCH.
      IF sy-subrc = 0.
    *   If field content for checking authority against is not empty...
        IF NOT wa_catalog_content-cust_field5 IS INITIAL.
    *     Perform authority check
          AUTHORITY-CHECK OBJECT '<your auth.object here>'
                          ID     '<your auth.field here>'
                          FIELD  wa_tab.
          IF sy-subrc <> 0.
            MOVE wa_catalog_content-cust_field5  TO lv_message_v1.
            MOVE wa_et_sc_item_data-ordered_prod TO lv_message_v2.
    *       Eliminate leading zeroes from product number
            WHILE lv_message_v2+0(1) = '0'.
              SHIFT lv_message_v2.
            ENDWHILE.
    *       Output message
            MESSAGE ID     'ZXXX'
                    TYPE   'W'
                    NUMBER '000'
                    WITH   lv_message_v1
                           lv_message_v2.
    *       Remove item from SC
            DELETE et_sc_item_data.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDLOOP.
    Interesting observation is, that when issueing the message with type = 'I' it does not condense the message text. With type = 'W' it does...
    I also found out the reason, why the way via ET_SC_MESSAGES will not work: SAP <b>has hard coded</b> somewhere after the BAdI call the message id and message number... so no way to bypass this without a modification.
    Kind regards,
    Renaud

  • Error 906 when getting InitialContext (but only for some users)

    I currently have an application where I'm attempting SSO. I'm obtaining the user's credentials using JAAS and then querying ADS with JNDI. All of our Java code is hosted through WebLogic 8.1. If I run the WebLogic process as a certain user, I can successfully authenticate and query ADS. However, if I run WebLogic as another ADS user, I get "Identifier doesn't match expected value (906)". This error occurs at the point that I attempt to obtain InitialContext (which means the intial authentication works). Anyway, these ADS users are in the exact same ADS group, and as far as I can tell, they have the same permissions. Is there something I'm missing? Thanks...
    Also, I have debug=true in my jaas.conf, but it only spits out basic debug information. Is there some way I can get full debugging?
    Terence

    I should probably let you know that I'm using WebLogic's JRockit 1.4.2_05

  • Timesheet error (Only for one user on one task): This Web Part was unable to load

    Hi,
    We have a weird problem with Project server 2013.
    We are on the latest March CU 2015 update on MS Project and Project server.
    Problem:
    A resource(user) is being assigned to a task. When opening the Project with the MS Project client, you can see that the resource is effectively assigned.->OK
    The real problem is when the user goes to his timesheets. He don’t see this task anymore. Other users that are assigned to the same task can see this task in the Timesheets and can open it.
    When the user go back to a timesheet on a period where the task was working and visible, and he open that timesheets, he get an error: “This Web Part was unable to load”
    ULS log:
    [bucketHash:F0949503] There was an error while loading statusing information in the task details webpart for the specified project/assignment - Project UID: 231d4fab-e08b-44fb-8d49-04f7deff207d Assignment UID: 55e2c540-c8ae-42fa-8458-c1c6e98d98f8.
    This could be caused by an out-of-date link to the task details page, specifying invalid information, or it could indicate a potential problem with the project or assignment. Exception details follow. Type: 'Microsoft.Office.Project.PWA.StatusingLib.StatusingException',
    message: 'StatusingDataAccess.GetProjData could not find pre-cached data.  Attempted to load Guid - 231d4fab-e08b-44fb-8d49-04f7deff207d' and stack trace:    at Microsoft.Office.Project.PWA.StatusingLib.StatusingDataAccess.GetProjData(Guid
    docGuid)     at Microsoft.Office.ProjectDataEdit.Document.SvrDoc..ctor(Guid docGuid, ISvrDataAccess dataAccess, SvrDoc entDoc, SvrDoc resourcePool, Boolean bUseProjectResources)     at Microsoft.Office.Project.PWA.StatusingLib.StatusingDataEdit.InitSvrEditForDoc(Guid
    docGuid)     at Microsoft.Office.Project.PWA.CommonControls.TaskDetails.QueryData().
    [bucketHash:D7120B28] Webpart TaskDetailsPart failed in CreateChildControls. Unique ID: efbaf89c-01a5-e078-a033-bc18fe4d431c Microsoft.SharePoint.SPException: The Project and/or Assignment unique ID refers to a missing
    or invalid object.     at Microsoft.Office.Project.PWA.CommonControls.TaskDetails.QueryData()     at Microsoft.Office.Project.PWA.CommonControls.TaskDetails.OnLoad(EventArgs e)     at System.Web.UI.Control.LoadRecursive()    
    at System.Web.UI.Control.AddedControl(Control control, Int32 index)     at Microsoft.Office.Project.PWA.WebParts.PWAResiliencyPart.CreateChildControls() StackTrace:  at Microsoft.Office.Project.Server.Native.dll: (sig=ad0ca0fd-3c62-4564-9144-b6fd1f587187|2|microsoft.office.project.server.native.pdb,
    offset=3C16) at Microsoft.Office.Project.Server.Native.dll: (offset=1265D)
    We tried already to republish the whole project with the ‘Save for Sharing’ workaround
     without success.
    Someone any idea?
    Since we are migrated to Project 2013, we have a lot of problems with Project Server. Too late to go back
    L
    Thanks in advance,
    Johan

    Hi Johan,
    The assignment of this user on the given task might be corrupted. Try to remove the resource from the task, publish the project, assign the resource again and publish again the project. If it is not working, try to unpublish the task (column "publish")
    and publih it again.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Unable to open attachments in WebUI only for some users

    Hello ,
    Can you please help with this attachment problem we have..
    Certain users are unable to open/view attachements in emails.
    This is causing huge downtime as the users work a lot on emails and attachments.
    1. Checked the profile of users who are able to open and who are not
    able to open and they appear same
    2. PC issue was ruled out as the user who was unable to open the
    attachment tried logging into the pc where user was able to open the
    attachment , but still could not open the attachment
    Can you please suggest what could be the issue.
    Thanks
    Regards
    Monica.

    Hi Monica,
    If the authorization check was not problems, and the problematic user tried in a same Internet Explorer with the same settings where another user can open attachments without problems, it's complicated
    I would tried to debug a little in the SAP system with the problematic user, trying to get some clues about it. I can point you:
    - The URL that is associated to an attachment is built on iterator class CL_CRMIC_ATTACHMENTS_IT, at method IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START. There you have a switch, and when the p_column_key is 'FILENAME', check the value for
    lv_row_ref->url. It should be something like this:
    /sap(<COOKIESTRING>)/crm/crm_att_provide?cid=<CONTENT_ID>&content_disposition=attachment
    - When you try to open the attachment, the class that will handle this is CL_CRM_ATT_PROVIDER. Check method IF_HTTP_EXTENSION~HANDLE_REQUEST and debug it's execution.
    Check if this helps you a little more...
    Kind regards,
    Garcia

  • How to set a shared calendar 'read only' for SOME users in ML server

    I am setting up Mountain Lion Server and wish to set up a series of calendars to be used by a studio of approx 20 people - two calendars will show the kind of thing I'm trying to achieve.
    Calendar A shows appointments and meetings - it can be viewd and edited by all
    Calendar B shows who is taking leave and when - it can be viewed by all, but edited by only a small group of people
    What is the best way to set this up? On The earlier version of the server we had set up calendars on the server and delegated - this is not possible on Mountain Lion Server.

    I don't think you can do this strictly by personalization since you need to use SPEL, unless the attribute you will be using for the display to control readonly is already present in the VO. Basically you need to check a value, say Supplier, and have another attribute say readOnly, tthat is set to TRUE if the supplier equals your desired supplier and FALSE for all other suppliers.
    Regards,
    LC

  • Sharepoint Foundation - search working for some users (or computers), but not others

    Hi all,
    We have doozy of a search problem with SharePoint Foundation 2010 that I'm hoping someone can help with.
    We have an application that is listening on port 14197 and search is working just fine, but only for one or two users.
    If I do a search while logged in using the account we set the application up with then the search works fine and it returns records as expected.
    If I use a different account - one that has full control over the app, then the exact same search fails with the following message:
    We did not find any results for 06BSL.
    Suggestions:
    Ensure words are spelled correctly.
    Try using synonyms or related searches.
    Try broadening your search by searching from a different site.
    Additional resources:
    Get additional search tips by visiting Search Help
    If you cannot find a page that you know exists, contact your administrator.
    We've done everything we can think of, including several procedures to create new search accounts, replace databases, etc.
    Nothing has helped and all of the info we can find online is in relation to getting search working when it doesn't work at all.  In our case it is working, but only for some users.  We thought it might have been a permissions issue, but not matter
    what permissions we seem to give to test accounts they still don't work.  We've set up a test account, for example, that is a member of the 'application owners' group, but cannot produce any search results with it.
    The SharePoint Foundation server is running on Windows 2008 Server Foundation, with a separate SBS 2003 DC.  
    Any help most appreciated.

    Hi Alex, thanks for your response and apologies about the late reply - didn't realise someone had responded until now!
    Agreed that this looks like a permissions issue, but we're stumped as to what it could be.  The 'test' account displays this problem - if we try and search on 06BSL
    we get no results, but it does appear that this account has full control over this document (see below).
    Note that the 'Manage Permissions' page presents a comment 'This list item inherits permissions from its parent. (Customer QA & Product Management)' which is what we're
    expecting.
    The indexing schedule is set to 5 minutes. 
    Appreciate your help with this, as we've spent a huge amount of time on this problem but don't seem to be any closer to a resolution.
    Cheers,
    Damian
    Check permissions result (this result is the same for the list or for the document itself):
    Permission levels given to test (DOMAIN\test)
    Full Control
    Given through the "QA Application Owners" group.
    Design, Contribute, Read
    Given through the "QA Application Members" group. 

  • Team view data not getting refers for some user

    Hi,
    We are facing an issue in team view app for mss,  manager's are seeing details of employees not belonging to their Org Unit/ data not getting refreshed. This seems to be the Cache related issue where the data of perviously logged in user is displayed to the current user till browser cache are cleared manually.
    User don't have permission to clear browser cache. Is there any work around.The issue is coming only for some users.I have enable the 'ABAP HTTP Security session Enabled' property of the system used.
    Regards
    Pallavi

    Hi Karthik,
    in the first view I execute the BAPI and in the second view I show the results. In the second view I also submit the modified data via another BAPI.
    As I execute and display result of same BAPI in two different views I have bound the same model node to both of these views. Let me give you some sample code for understanding what have I done.
    In the first BAPI's search action handler I have written:
              Zsr_Packnr_Validate_Components_Input input = new Zsr_Packnr_Validate_Components_Input();
              wdContext.nodeZsr_Packnr_Validate_Components_Input().bind(input);
              input.addT_Version(new Zsr_Packnr_Field_Values());
              input.addT_Zsr_Genbr(new Zsr_Packnr_Field_Values());
    input.setZsr_Gmc(globalMaterialCode);
              input.setZsr_Mrc(mrc);
              input.setZsr_Ctry(country);
              input.setZsr_Dc(distributionChannel);
              input.setZsr_Div(commercialSegment);
    wdContext.nodeOutput_Validate().invalidate(); //as u suggested
              wdContext.currentZsr_Packnr_Validate_Components_InputElement().modelObject().execute();
              wdContext.nodeOutput_Validate().invalidate();
    In the second BAPI I just display the output node from the same Model context node (its mapped to the second view too).
    But as I said whenever I update some values in the result set and submit it the data gets submitted properly. But when I press the search button again, the previous set of data gets populated, not the just updated data.
    If anybody has some idea on why the second time search BAPI execution still shows the previous set of result it will be a great help to me.
    Thanks for all your help.
    Shubhadip

  • OBIEE access denied for some users only

    Hi All,
    we are using OBIEE 10.1.3.4 version on windows envorinment .The users can access the OBIEE reports using 'PORTALPATH' session varible in RPD.For some of the users are got "access denied" while they are accessing for thir particular dashboard.Eariler these user got access this dashboard with out any errors.We dnt changed in our system anything from last three months.
    We have no idea why we are getting these error for particular users only.Its Prod issue we need to reslove these error ASAP.
    we are getting these error"acess denied for user to path/shared/shared/_test/testdashboard
    Error Codes:09XNZMXB"
    but last one year its working without any issues .From our side we dnt did any changes in production like RPD level,Catalog level and config file changes , we have no idea why suddenly we are getting these kind of error for some users only not for all users.
    Could u please advice me how to reslove this PROD issueASAP.
    Thanks,

    Well its Prod (you have a dashboard called testdashboard in Prod?) anyway - someone might have changed the presentation catalogue permissions on the dashboard. All it takes is for someone to remove 'Everyone' or change a Group permission and it could effect.
    If they changed the Parent folder and cascaded the changes down this might cause this issue.
    You have a folder called 'Shared' - check the groups that the people are in have 'Traverse' , 'Read' or higher. Also chek dashboard permissions themselves from Settings-Manage Interactive Dashboards - Check the Padlock icon.
    Are you users getting allocated into the correct WEBGROUPS ? Is this assisngment done explicitly in the webcat or via an RPD Variable ? Have you checked NQQueryl.log to make sure any init blocks are completing successfully?
    Either persmissions have changed or group memebership is not completing.
    Good luck
    Alastair

  • How to Block Account member in input reporting for some users?

    Hi experts, i need to know if is possible to block input of values for some Users in the Account Dimension so that some users can input value in the report but other user cant do it.
    I try to do this from "member access profile" but this option only allow you to define access right for one specifict parent o member.
    I mean, is posible to asigned to Account Dimension a Propertie type "OWNER" like ENTITY?
    For example: one user must to input value for the Account member "CASH", but other user dont, however i have to show the same input reporting for both users.
    I hope understand the question, im sorry about my english
    thank you in advance
    Ignacio Vazquez

    I would think you could do one of the following:
    Either set account as a secured dimension.  You would then define security profiles for all account groups and assign those to your users / teams as appropriate.  Would take a while to setup initially, but if your users don't change that much it shouldn't be too difficult to manage once it's done.
    Setup different input templates that only showed the accounts you wanted each group of users to see.  Put the templates in different site folders and assign access to those sites as required.  users would then only have access to open the template applicable to them.  Would require that you basically make duplicate copies or your current template, modify and save to different site folders which could become a pain if the template requires changes (since you would now have to make the same change multiple times).
    Setup a macro in the current template so that you need to enter a password to unlock the send commands for the respective accounts.  I don't know if it can be setup to support multiple passwords - assuming it can, password 1 would unlock all accounts, password 2 would only unlock CASH accounts, password 3 would only unlock LIABILITY accounts, etc.  You then distribute the passwords to the users as appropriate.
    Hope that helps.

  • How do I add a new user to my account? But I wanna give him a special product (e.g. InCopy) only for some month...

    I am admin and I want to add a new user to my account. But as written above, I want that he/she will get this product only for some month and not for a whole year.
    Thanks for the help.

    Team license links that may help
    -manage your team account http://forums.adobe.com/thread/1460939?tstart=0
    -Team Installer http://forums.adobe.com/thread/1363686?tstart=0

  • How to restrict a user group of SQ01 for only execution for some users

    Hi,
       I would like to know if it is possible to restrict the access to SQ01 transaction for some users. I would like that these users have only execution access to some queries associated with an user group.
       Do I have to associate the user group to the users I want to have access to it? How can I do it=
       Do I have to associate the queries created on SQ01 to the users? or it is enough to assign the users to the user group where the queries are defined?
       Do I have to associate the infosets created on SQ02 to the users? or it is enough to assign the users to the user group to which the infosets are associated?
       Thank you,
       Luz D.

    I suggest you do a web search on SQ01 and SQ02. That'll bring along SQ03 as well.
    There's so much information available on the web that there's no reason to repeat it here.
    [try google|http://www.google.com/search?hl=en&safe=off&q=SAPsq01sq02&meta=]
    Jurjen

Maybe you are looking for

  • Tune doesn't play in entirety

    I imported a rehearsal cd with 5 tracks. When I select only 1 track it plays completely. When I select Track 1 & track 2, Track one fades into track 2 about 5 seconds before completed. I watch the status bar at the top showing how much has played and

  • How do you get for you music on your iphone to show your "most played""recently played" and all that?

    Please I need help. I had it before but I backed it up and it disappeared

  • Windows 7 32bit - will not load on warm boot.

    I have the same problem on two PCs. They are both HP Workstations xw4600. I have the latest BIOS (786F3 1.22 A) and have tried with the older BIOS as well before upgrading. They will not start Windows 7 with a warm boot (restart). They just repeatedl

  • File name of xml form

    I have created a new xml form. For the name, I have used a label with property "displayname". When I save the form, in the KM I can view the file with the name that I assigned, but if I go with the mouse over the file I see in the button bar that the

  • Airport Extreme (n) router keeps resetting.

    My internet keeps going on and off, Ive reset to factory defaults and it keeps resetting every 10-15 minutes for a few seconds. The only thing I have changed is added 1 port forward.