SSRS 2014 SharePoint integrated - getting error "Value does not fall within the expected range"

Hi everyone,
Note sure if this should be in the SharePoint forum instead, but here goes...
I have got an SSRS report (SQL 2014) deployed to SharePoint 2013, and I am using a command line to call this report. The command line is...
https://myserver/_vti_bin/reportserver?https://myserver/Reports/AdjustmentPlan.rdl&rs:Format=PDF&ParamActionGUID=B9B57C49-558B-471A-8BFD-2853673E8874
This returns an error "Value does not fall within the expected range"
If I remove the "&rs:Format=PDF" then the report appears on screen without problems...
When I look in the sharepoint log files, I see the command line has changed to be 
https://myserver/_vti_bin/reportserver?https://{machine_name}/Reports/AdjustmentPlan.rdl&rs:Format=PDF&ParamActionGUID=B9B57C49-558B-471A-8BFD-2853673E8874
I'm not sure why this is happening, but if I can ensure the command line uses the correct SharePoint address, then I think this will fix the problem.
Any questions or suggestions or solutions gratefully received.
thanks
David

Thanks for the reply. I can probably explain easier than screenshots..
The server name is "datacentre-cenet" for example
But the address we use to access SharePoint is https://cenet (ie using the SharePoint Alternate Access mappings). So the command line to call the SSRS report uses the SharePoint name (CENET).
But when I try to export SSRS to PDF, the command line get changed to
https://datacentre-cenet which causes an error
My thought is that somewhere SSRS is using the server name, rather than the correct URL which is
https://cenet
So if I could know where SSRS picks up the server name, I could configure that to fix this issue.
Hope that's more clearer, thanks again,
David

Similar Messages

  • Value does not fall within the expected range in my itemupdated eventreceiver while accessing a splist column on the root site collection

    hi,
     I am performing the below operations:
    1) Itemupdated event handler when a document is uploaded into the document library
    2) Now amreading another list which is in the root  site level so, i used spsite, spweb again and accessed that splist and trying to read single line of text column and user or group column.
    Now when i am reading this, i am getting the error "Value does not fall within the expected range".
    I went to resource throttling under central admin -->my current web appln and changed that value to 20  from 8
    even after performing the above, i am getting the same error.
    pls help anyone has faced this issue before.
    Accessing a splist which is under root site collection within the itemupdated eventreceiver is allowed in SP ?

    hello sir,
     as per my requirement i have to access a  splist which is residing in the ROOT SITE COLLECTION OF THIS WEB APPLICATION. the event receiver i have written is residing in one of the few document libraries within the sub site. there are hundreds
    of sub sites exist in this site collection. I need to access the root site collection within the itemevent receiver and access thatperson column from that splist. why i ahve kept this list at the root site collection level [
    http://server1:2020/ ] , because this  splist is the UI for customer's sp admin for performing  weekly tasks. like adding few items in the splist and my event receiver fires and check this column- person /group
    column ]  and apply permissions on the  document.
    so my doubt is it possible to access the root site collection from my event receiver code.
    spweb from properties web is just the subsite url and not the site collection. i want to get the root sitec ollection url's splist.
    also am already running this code under runwithelevatedprivileges.

  • SharePoint Receive Location: Value does not fall within the expected range

    Hi,
    I setup a wss receive location in BizTalk 2013 (CU2 applied) to get documents from a SharePoint 2013 infoPath Form Library, the documents were checked out but not processed by WSS adapter and BizTalk logs following error in event log
    The host instance user has 'Full Control' permission on this form library
    (the same configuration is working in another environment with different BizTalk and SP instances)
    any help would be highly appreciated
    Usman Shaheen MCTS BizTalk Server http://usmanshaheen.wordpress.com

    Hi,
    I would recommend to create a new InfoPath form and publish it to SharePoint library to see
    if the issue still occurs.
    Here is a similar thread for you to take a look:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/07438b97-2b25-431a-b94a-1ea8e08992d5/upgrade-sharepoint-2007-to-sharepoint-2010-info-path-pages-issues?forum=sharepointadminprevious
    If that doesnt fix the issue, you should go with this hotfix.
    Description of the SharePoint Foundation 2010 hotfix package (Wss-x-none.msp): July 2, 2012
    Description reads: 
    Assume that you use the metadata navigation and filter feature to filter a view of a document library. When you check in or check out a document through the menu on the ribbon, you receive the following error exception:
    System.ArgumentException: Value does not fall within the expected range. at Microsoft.SharePoint.SPWeb.GetFile(String strUrl) at Microsoft.SharePoint.ApplicationPages.Checkin.get_File() at Microsoft.SharePoint.ApplicationPages.Checkin.OnPreInit(EventArgs
    e) at System.Web.UI.Page.PerformPreInit() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Rachit

  • GetListItems() and "Value does not fall within the expected range"

    I have a sharepoint list (it's a task list).  I have the ID of the task - I can access the task like this :
     http://addr/EditForm.aspx?ID=<value>
    This works fine.  I would like to create a query so when I call GetListItems() from a web service, I can select this record.
    This is the code I'm using - when I set the ndQuery.innerxml to a blank string, it returns all records (correctly).  When I enable it, I get the wonderfully useful "Value does not fall within the expected range" error.  I have tried querying
    a number of different fields (besides ID) and every single one gives me that error.
            XmlDocument xmlDoc = new System.Xml.XmlDocument();
            XmlNode ndQuery = xmlDoc.CreateNode(XmlNodeType.Element, "Query", "");
            XmlNode ndViewFields = xmlDoc.CreateNode(XmlNodeType.Element, "ViewFields", "");
            XmlNode ndQueryOptions = xmlDoc.CreateNode(XmlNodeType.Element, "QueryOptions", "");
            ndQuery.InnerXml = "<Where><eq><FieldRef Name=\"ID\" />" + "<Value Type=\"Counter\">" + pTaskID.ToString() + "</Value></eq></Where>";
            ndViewFields.InnerXml = "<FieldRef Name=\"ID\" /><FieldRef Name=\"Title\" />";
            ndQueryOptions.InnerXml ="<IncludeMandatoryColumns>False</IncludeMandatoryColumns>";
            System.Xml.XmlNode nodes = listService.GetListItems(strListID, strViewID, ndQuery, ndViewFields, "3", ndQueryOptions, null);
    I dug into the server logs and this is the XML that I see :
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"                                 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body>
     <GetListItems xmlns="http://schemas.microsoft.com/sharepoint/soap/">
       <listName>{61A69E7F-F515-456C-B075-CB80FA59AFED}</listName>
       <viewName>{BBEDC17F-9578-4226-B4FC-E4BE102E6BED}</viewName>
       <query><Query xmlns=""><Where><eq><FieldRef Name="ID" /><Value Type="Counter">87</Value></eq></Where></Query></query>
       <viewFields><ViewFields xmlns=""><FieldRef Name="ID" /><FieldRef Name="Title" /></ViewFields></viewFields>
       <rowLimit>3</rowLimit>
       <queryOptions><QueryOptions xmlns=""><IncludeMandatoryColumns>False</IncludeMandatoryColumns></QueryOptions></queryOptions>
     </GetListItems>
    </soap:Body>
    I don't like seeing two nested <query> tags but there is no way that I can see to remove them!  At this point - can anyone tell me, is there any way to tell WHAT value does not fall within the expected range?  Or WHAT the expected range is?

    Hi Chris,
    Per my understanding, there is an issue when calling GetListItems() from a web service.
    Please check if the “pTaskID” is valid and take the snippet below for a test in your environment:
    public static void getItems()
    var lists = new MyWebServiceDemo.Lists();
    lists.Url = "http://sharepoint/_vti_bin/Lists.asmx";
    lists.Credentials = System.Net.CredentialCache.DefaultCredentials;
    System.Xml.XmlDocument xmlDoc = new System.Xml.XmlDocument();
    //displayName or GUID
    string listName = "List1";
    string viewName = "";
    string rowLimit = "150";
    System.Xml.XmlElement query = xmlDoc.CreateElement("Query");
    System.Xml.XmlElement viewFields = xmlDoc.CreateElement("ViewFields");
    System.Xml.XmlElement queryOptions = xmlDoc.CreateElement("QueryOptions");
    query.InnerXml = "<Where><Eq><FieldRef Name=\"ID\" /><Value Type=\"Counter\">1</Value></Eq></Where>";
    //query.InnerXml = "";
    viewFields.InnerXml = "<FieldRef Name=\"Title\" />";
    queryOptions.InnerXml = "";
    System.Xml.XmlNode nodeListItems = lists.GetListItems(listName, viewName, query, viewFields, rowLimit, queryOptions, null);
    foreach (XmlNode outerNode in nodeListItems.ChildNodes)
    if (outerNode.NodeType.Equals(System.Xml.XmlNodeType.Element))
    foreach (XmlNode node in outerNode.ChildNodes)
    if (node.NodeType.Equals(System.Xml.XmlNodeType.Element))
    XmlNode nameNode = node.Attributes.GetNamedItem("ows_Title");
    String wikiName = nameNode.InnerText;
    Console.WriteLine(wikiName);
    If it is an issue of the invalid item id, for avoiding this error, a workaround is that you can run a request to retrieve all the existing ids in the target list,
    then add a validation to ensure the “pTaskID” is valid.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for
    TechNet Support, contact [email protected].

  • Value does not fall within the expected range while passing a spfieldlookupvalue in a caml QUERY

    i have to pass a column from master list -single line of text - and this will be the lookup of another column in another list
    splist1---> column1 [ free text]
    splist2--> column2  [ lookup column of the above list -splist1]
    now am writing a  caml query :
       objDisciNodeQuery.Query =
                                          string.Format(
                                       "<OrderBy>" +
                                         "<FieldRef Name='ID' />"
    +
                                      "</OrderBy>" +
                                       "<Where>" +
                                        "<And>" +
                                          "<Eq>" +
                                             "<FieldRef
    Name='somecolumn' />" +
                                             "<Value
    Type='Text'>{0}</Value>" +
                                          "</Eq>" +
                                          "<Eq>" +
                                             "<FieldRef
    Name='column2' LookupId='TRUE' />" +
                                             "<Value
    Type='Lookup'>{1}</Value>" +
                                          "</Eq>" +
                                         "</And>" +
                                       "</Where>", valueofsomecolumn, lookupidvalueofcolumn2);
                                        SPListItemCollection splistItemAssocCollec
    = null;
                                        splistItemAssocCollec = splist2.GetItems(objDisciNodeQuery);
    here it throws Value does not fall within the expected range
    Anyone has idea why i am getting this error, .
    any ideas  are appreciated.

    We can use lookup column in caml query link this
    <Where>
    <Eq>
    <FieldRef Name=’Departments’ LookupId=’TRUE’ />
    <Value Type=’Lookup’>10</Value>
    </Eq>
    </Where>
    Multi lookup column reference 
    http://naimmurati.wordpress.com/2013/12/03/multi-lookup-fields-in-caml-queries-eq-vs-contains/

  • Soap:Server was unable to process request. --- Value does not fall within the expected range

    Brand spanking new Sharepoint 2010 RTM and Designer 2010 RTM install. Unable to edit any page whatsoever even when checking out. Error in SP Designer: soap:Server was unable to process request. ---> Value does not fall within the expected range.
    Like I said, this is a brand new RTM install with nothing altered yet. Why can't I edit any pages? I am using the highest credentials so there should be no permission issues. There isn't anything that is helping me on the Web for this.
    Why would I encounter a problem like this out of the box? This is not the beta - it is RTM!

    Go to :
    Site Collection Administration 
    SharePoint Designer Settings
    and Enable the following
    Enable Detaching Pages from the Site Definition
    Enable Customizing Master Pages and Page Layouts
    Enable Managing of the Web Site URL Structure
    This should resolve the SP Designer Edit Issues.

  • Sharepoint2010: ArgumentException: Value does not fall within the expected range

    I have a lookup column 'usertype' in one of my list, that is lookup for another list. and in my code when i try to access this column,
    item["usertype"]
    i get an error: ArgumentException: Value does not fall within the expected range.
    I tried with Lookup Resource Throttling in Central Administration. But still i am not able to access this field. And this field is not programmatically created.
    Any idea to solve this..
    Thanks in advance.

    Hi Hemendra,
    In the "Course " List there is a lookup field "CourseType"
    which is lookup to a list having two values "Internal" and "external"
    Here is my code:
    SPList Course = Helpers.GetList(web, "Course");
    SPListItemCollection Mycourse = Helpers.GetListItemsByField(Course, "Course_x0020_Code", "001");
    string CourseType=Mycourse[0]["CourseType"].ToString();
    "Helpers.GetListItemsByField" method will return proper result using CAML query. So Mycourse[0] will have all the fields except the one which i mentioned above. There are other Lookup fields in the same list and all works fine. (Assume Mycourse
    will always have exactly 1 row.)
    Regards,
    Vikas

  • REST API - Can't expand Title of lookup columns "System.ArgumentException : Value does not fall within the expected range"

    I have a list that has more than 12 columns of type lookup with more than 5000 items and I am using a date field as an indexed column so I can restrict the results to meet the list view threshold.  I am also using $select to restrict the columns to
    meet the lookup column threshold.
    If I run the query below it all works as expected:
    _api/web/Lists/MyList/items/?$Filter=Created gt '2015-03-10T05:00:00.000Z' and Created lt '2015-03-17T18:25:00.712Z'&$select=Lookup1/Id&$expand=Lookup1
    If I run this query it does not work:
    _api/web/Lists/MyList/items/?$Filter=Created gt '2015-03-10T05:00:00.000Z' and Created lt '2015-03-17T18:25:00.712Z'&$select=Lookup1/Title&$expand=Lookup1
    Error:
    <m:error xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
    <m:code>-2147024809, System.ArgumentException</m:code>
    <m:message xml:lang="en-US">Value does not fall within the expected range.</m:message>
    </m:error>
    The lookup column "Lookup1" is using Title as the column's information and this should be working.  What is interesting is that changing the lookup threshold has no effect on this but raising the list item view limit does make it work.  The
    date range is selecting less than 5000 items.  So what am I missing here? I just want the Title for the lookup column and my query has about 10 items in it.

    Looking through the logs the error is thrown due to the following error messages:
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    Fields 84h8
    High Field with internal name 'LookupFieldName_x005f_Title' already exists in the field cache
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    Fields ki9p
    High Unable to add join related fields to the Query.[Error 0x80070057]
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    General xxpm
    High Unable to execute query: Error 0x80070057
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    General 8e2s
    Medium Unknown SPRequest error occurred. More information: 0x80070057
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    General aix9j
    High SPRequest.GetListItemDataWithCallback2: UserPrincipalName=<removed>, AppPrincipalName= ,pSqlClient=<null> ,bstrUrl=siteUrl ,bstrListName=<removed> ,bstrViewName=<null> ,bstrViewXml=<View
    Scope="RecursiveAll"><Query><Where><Eq><FieldRef Name="ID" /><Value Type="Counter">5481</Value></Eq></Where></Query><ViewFields><FieldRef Name="LookupFieldName"
    LookupId="TRUE" /><FieldRef Name="LookupFieldName_x005f_Title" /></ViewFields><ProjectedFields><Field Name="LookupFieldName_x005f_Title" Type="Looku ,fSafeArrayFlags=SAFEARRAYFLAG_DATES_IN_UTC
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    The very first message states that it is unable to add join related fields, what could be the possible cause of this?  As you can see rather than specifying a date range which I know contains less than 5000 items, even filtering based on ID gives the
    same result.

  • Server Error in '/' Application. Value does not fall within the expected range

    Hi,
    I am getting this error when i am publishing my custom webpart in the UAT site, it is created in Visual studio 2008 and i have deployed it in MOSS 2007 site.
    I appreciate any help on this. Please see the below error.
    Source Error:
    Line 20: protected void getDivision(SPWeb web, string strList)
    Line 21: {
    Line 22: SPList list = web.Lists[strList];
    Line 23: ddlDivision.DataSource = list.Items;
    Line 24: ddlDivision.DataValueField = "Title"; // List field holding value - first column is called Title anyway!
    Thanks,
    Prachi

    Hi,
    I am receiving this error when i am publishing the web-part page. Web part was developed in visual studio 2008 and deployed in SharePoint 2007 site.
    While deployment i am getting any error, this error is occurring only when i am publishing the web-part page.
    I checked all the help links and made changes in the web.config file, restarted IIS, add n deleted web-part from the web-part Gallery, added n removed wsp files 2-3 times, everything i did.
    If anyone can help me resolving this issue then please send across solution.
    Thanks,
    Prachi

  • Value does not fall within expected range in client object model SharePoint online

    Hi,
    I might be missing something, at least i hope so because I don't see it anymore.
    Yes, I used the search, and yes many had the same error, but I think my problem has to be something else.
    It is not size related but more context related i think.
    I've build a function to break inheritance on folders and libraries for several document librarys to implement a crud matrix.
    The thing is, it works sort of. The function takes a list and foldername. If the foldername is null the
    inheritance on the list is broken and the group is given the roles as provided.
    If a foldername is given, i retrieve the folder, break the inheritance and set the new permissions for the given group.
    The problem is: The second time the function is called with a foldername it breaks on the getItems for querying the folder.
    It is not folder related, becaus changing the folder order gives the same problem on another folder.
    I already tried creating a new clientcontext and a new list variable but i cant get it to work.
    I cant get into the server logs because im querying SharePoint Online.
    var list = GetList(clientContext, "Listx");
    AddPermission(list, null, company_Groups.Beheerder, RoleType.Contributor, clientContext);
    AddPermission(list, null, company_Groups.Projectleider, RoleType.Contributor, clientContext);
    AddPermission(list, null, company_Groups.Constructeur, RoleType.Reader, clientContext);
    AddPermission(list, null, company_Groups.Tekenaar, RoleType.Contributor, clientContext);
    //Montagepartner
    AddPermission(list, "Folder2", company_Groups.Montagepartner, RoleType.None, clientContext);
    AddPermission(list, "Folder1", company_Groups.Montagepartner, RoleType.None, clientContext);         <----- is where it breaks
    AddPermission(list, "Folder3", company_Groups.Montagepartner, RoleType.None, clientContext);
    AddPermission(list, "Folder4", company_Groups.Montagepartner, RoleType.None, clientContext);
    private void AddPermission(List list, string folderName, company_Groups group, RoleType roleType, ClientContext clientContext)
    //MsOnlineClaimsHelper claimsHelper = new MsOnlineClaimsHelper();
    //using (ClientContext clientContext = new ClientContext(ctx.Url))
    //clientContext.ExecutingWebRequest += claimsHelper.clientContext_ExecutingWebRequest;
    //clientContext.RequestTimeout = timeOut;
    if (!list.HasUniqueRoleAssignments)
    list.BreakRoleInheritance(false, true);
    list.Update();
    var principal = GetPrincipal(clientContext, group.ToString());
    var role = GetRole(clientContext, roleType);
    // Add the role to the collection.
    //var collRdb = new RoleDefinitionBindingCollection(clientContext) { role };
    if (folderName != null)
    var query = new CamlQuery();
    query.ViewXml = "<View Scope=\"RecursiveAll\"> " +
     "<Query>" +
      "<Where>" +
      "<And>" +
    "<Eq>" +
      "<FieldRef Name=\"FSObjType\" />" +
      "<Value Type=\"Integer\">1</Value>" +
    "</Eq>" +
    "<Eq>" +
      "<FieldRef Name=\"Title\"/>" +
      "<Value Type=\"Text\">" + folderName + "</Value>" +
    "</Eq>" +
      "</And>" +
      "</Where>" +
      "</Query>" +
      "</View>";
    // query.FolderServerRelativeUrl = Path.Combine(list.RootFolder.ServerRelativeUrl, folderName);
    ///This is where it breaks, the second time the function executes on a list with another folder name
    var folderItems = list.GetItems(query);    <----- is where it breaks 
    clientContext.Load(folderItems);
    clientContext.ExecuteQuery();
    ListItem folder = null;
    if (folderItems.Count > 0)
    folder = folderItems[0];
    folder = list.GetItemById(folder.Id);
    //if (!folder.HasUniqueRoleAssignments)
    folder.BreakRoleInheritance(true, true);
    folder.Update();
    RoleDefinition roledef = clientContext.Web.RoleDefinitions.GetByType(roleType);
    RoleDefinitionBindingCollection roleDefCol = new RoleDefinitionBindingCollection(clientContext);
    // .Add(roledef);
    roleDefCol.Add(roledef);
    folder.RoleAssignments.Add(principal, roleDefCol);
    folder.Update();
    else
    RoleDefinition roledef = clientContext.Web.RoleDefinitions.GetByType(roleType);
    RoleDefinitionBindingCollection roleDefCol = new RoleDefinitionBindingCollection(clientContext);
    // .Add(roledef);
    roleDefCol.Add(roledef);
    list.RoleAssignments.Add(principal, roleDefCol);
    list.Update();
    clientContext.ExecuteQuery();

    Hi,                                                             
    What if you execute the AddPermission method once a time, will the error still occur or can your code works out the expected result?
    As the program breaks in the GetItems() method, to narrow down this issue, I suggest to comment the other lines of code which has no relationship with the items retrieving, then debug your project to see whether the error will
    still occur.
    Best regards
    Patrick Liang
    TechNet Community Support

  • Error: SNAP_ADT does not exist in the database - manual check required

    Hello Friends,
    We are  performing an upgrade+migration to HDB using the DMO option(Oracle to HANA).
    We are getting below error in the phase MAIN_SHDCRE/SUBMOD_SHDDBCLONE/DBCLONE!
    Also find the output of SE11 & SE14 attached.
    SE14->
    Please help us with the manual check.
    Regards
    Sury

    Hi Sury,
    In regards to the error below:
    1EETGCLN Error: SNAP_ADT does not exist in the database -> manual check
    required
    1EETGCLN SNAP_ADT
    1EETGCLN Table does not exist
    Could you please try to activate the following tables via SE11?
    -  SNAP_ADT
    Once they are activated, Could you please repeat the phase and update the result?
    Thanks and Regards,
    James Wong
    Follow us:
    SAP System Upgrade & Update Troubleshooting Wiki Space.
    SAP Product Support Twitter  ( Hashtag: #NWUPGRADE)

  • HT1212 IPAD is Disabled, tried to connect via itunes but get error "iTunes could not connect to the [device] because it is locked with a passcode. You must enter your passcode on the [device] before it can be used with iTunes."

    IPAD is Disabled, tried to connect via itunes but get error "iTunes could not connect to the [device] because it is locked with a passcode. You must enter your passcode on the [device] before it can be used with iTunes."

    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    Saw this solution on another post about an iPad in a school enviroment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just cancelling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • Trying to add RAD Descriptor but.... "New userdDN does not fall within any"

    I am trying to add a RAD descriptor, yet I get this error message:
    New userdDN does not fall within any search base: orclresourcename=test+orclresourcetypename=OracleDB, cn=Resource Access Descriptor,orclownerguid=3EAF439B3B0F46A7B17F93A6F672AFB2,cn=Extended Properties,cn=OracleContext,dc=iwif-internal,dc=com
    The dn: cn=Resource Access Descriptor,orclownerguid=3EAF439B3B0F46A7B17F93A6F672AFB2,cn=Extended Properties,cn=OracleContext,dc=iwif-internal,dc=com Does in fact exist! I even copied and pasted it from OID Manager to verify and sure enough, exact match!
    Note: I am using oid 10.1.4, so the cn=Resource Access Descriptor,orclownerguid=3EAF439B3B0F46A7B17F93A6F672AFB2,cn=Extended Properties,cn=OracleContext,dc=iwif-internal,dc=com is generated by default
    What might I be doing wrong to get this error...?
    here is my ldif file to add a raddescriptor:
    dn: orclresourcename=test+orclresourcetypename=OracleDB, cn=Resource Access Descriptor,orclownerguid=3EAF439B3B0F46A7B17F93A6F672AFB2,cn=Extended Properties,cn=OracleContext,dc=iwif-internal,dc=com
    orclusermodifiable: true
    orclresourcetypename: OracleDB
    orclflexattribute1: ourTestTNSname
    orcluseridattribute: ops$spiveyj
    orclownerguid: 3EAF439B3B0F46A7B17F93A6F672AFB2
    orclpasswordattribute: welcome2
    orclresourcename: test
    objectclass: top
    objectclass: orclresourcedescriptor
    Edited by: user8859423 on Mar 3, 2010 12:53 PM

    Solved:
    The problem was that I was using the bulk add option in the OID Manager as opposed to ldapadd!

  • Account error: value does not exist in BB Company is displayed when Uploading a Journal to Oracle ADI Interface Table

    Environment:
    Oracle ADI version: version Oracle ADI 7.2.12.04.25 and patch number 9493800
    Microsoft Office version: 2003
    How to recreate incident:
    1. Create a budget worksheet for a company
    2. View the budget information
    3. Upload budget information to the Interface Table
    Actual Result:
    Account error: Value <value> for the flexfield COMPANY does not exist in the value set BB_COMPANY. I have noticed the same error is displayed regardless of whether I select options from the combo boxes or enter random numbers in the journal i.e. 0000 for each field.
    Expected Result:
    Budget information to be uploaded successful especially when the data has not been amended
    Questions:
    1. What is happening to cause this problem?
    2. What is the solution?

    The issue is resolved, no need to answer, the dbconnection class was calling the wrong db :(

  • Siebel Charts gets generated but does not display in the Web client

    Siebel Chart is getting generated in NetChart4.6\Server\root\projects\Siebel.chart folder. However does not display on the Web client
    There is either no error displayed on the front end...
    Also note that Charts is installed on Windows environment and Siebel Server is installed on Linux Server

    Dear User,
    Thanks for using Oracle communities.
    Does this happens in dedicated client as well?
    We would need to have traffic captured when you are actually executing actions. The tools like fiddler etc will help here to track the traffic.
    I would suggest you open SR with MOS since it will need some analysis on network trace like fiddler. You can refer this thread in SR as well, so that once issue gets resolved thread will get updated with solution which will benefit others.
    Best Regards,
    Chetan

Maybe you are looking for

  • Plans to upgrade CPS?

    Are there plans to upgrade CPS to correspond to Cronacle 9 by Redwood?

  • Insert record - works in FF and Safari, but not IE

    I think this is an odd one - I have a site which uses a fairly standard form to add a record to a database. I changed the input code to have an image as the button to : <input type="image" name="New Vehicle" id="New Vehicle" value="Insert record" alt

  • .DOC to .PDF conversion with the format maintainence

    Hi, My requirement is to convert the exact text witht he formating in the .DOC file to PDF file. I have done this using POI and IText ar files but I am unable to maintain the formating , tried and search the net but unable to find the solution. Pleas

  • Can I set the Ipad 2 to default to wifi?

    Can I set the Ipad 2 to default to wifi?

  • Problems instelling an app on my bb from computer.

    Hii! I'm trying to instal opera mini from computer to my blackberry 9700. Everything's fine till the desktop manager sends me an error: Blackberry Desktop software failed to validate your device update. Aborting install due to validation failure. Som