Ineractive sorting error.

Hi,
Developed a report which has both sub report and interactive sorting, report work find for initial run but when using interactive sorting, it comes up with below error message.
Data could not be retrieved for the subreport, 'Sub_QtrFinanceReport', located at: /Sub_QtrFinanceReport. Data is only retrieved during the initial request or during snapshot creation.
Can any one please share the information, if faced similar error on 2008R2.
Thank You,
Praveen
Praveen

Hi PA kumar,
According to your description, your report initially runs properly. When you use interactive sorting, it throws the error above. Right?
In Reporting Services, this is a known issue in SSRS 2008 R2 and 2012and it's not fixed now. The subreport only processed one time when the first time you run the main report. When you use interactive sorting, it will re-pass the parameters so
that it will cause the data can't be retrieved again in subreport. Please refer to links below:
subreport fails if main report does
interactive sorting
[SSRS] "Interactive Sorting" does not work with SubReports
If you have any question, please feel free to ask.
Best Regards,
Simon Hou

Similar Messages

  • DTW Sort Error - after mapping during import

    I got the "Sort Error - after mapping during import" message in DTW. (version 8.8)
    I would like to import warehouse info for items.
    My itemcodes are fix 15 character numbers, like this: 10204150020011
    The note nr. [1331130|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/oss_notes/sdn_oss_sbo_dtw/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d31333331313330%7d] said that I can't use recordkey like this.
    Do you have any idea how can I import thees information with DTW?
    Thank you,
    Attila Sarkady

    Dear All
    Please give correct and complete information
    i have tested every kind of combination;
    - recreate the template with the dtw for Items = i have UDF's
    - ADD the column RecordKey   !!! unbelievable that we have to do this
    - i have entered a nr 1 in it (even when we had already 850 items in the database)
    (and of course the hints of Gordon - columns as text, start with basic... - and use CSV format)
    now at last i can import the record line
    greetings
    philippe

  • DTW - Sort Error

    For test purposes I'm trying to import some items (ca. 60) into SAP 2550A, SP01, PL12.
    I use the original template Items.xlt where I filled out only the colums RecordKey, ItemCode, InventoryItem (always set to tYES), ItemName, ItemType (always set to itItems), PurchaseItem and SalesItem (both set always to tYES). RecordKey is always set to the value of corresponding ItemCode (as we are used to do it always). All other colums are left unchanged and empty.
    I saved the template as a semicolon-separated csv-file. This file looks OK when checked using a text editor.
    In DTW I selected oItems as object with the saved csv-file. Other sub-objects to oItems were not specfied. In step 3 of the wizzard under register Source Data all item-entries as defined in the csv-file appear correctly.
    The import process ends up with the error-message "Sort Error - after map, please check ...". In the protocol the import process is stated as "successful", but no items are imported to SAP.
    Before posting this question I checked other threads in the forum and the self-help but couldn't find any hints!
    Thanks for your help!
    Frank

    Frank,
    The version of SAP Business One 2005A SP01 PL 12 is very many patch levels behind.  I would first suggest that you download the latest SAP Business One 2005A SP01 patches and apply to Business One as well as the DTW.  The latest patch level is 23 I believe.
    HTH,
    Eddy

  • Sort Error - failed to parse query

    I'm using APEX 2.2.1 .
    I have a very detailed report, I wanted to implement a sorting feature into it, where you can click on the title and it'll sort asc or desc. Well Through reading my trusty Oracle manual I decided that a sort option would be the way to go.
    The detailed report had all the columns I wanted to be sortable enabled, and I ran it and I get :
    failed to parse SQL query:
    ORA-00911: invalid character
    I have gone down to only having one column checked with sort, and the Sort Sequence is set. No matter how I set this up I get the error. I then decided I'd put in a simple query into a report, to see if it worked at all:
    select * from super_user; - this return 2 columns and 2 rows.
    I get the same error when I try and enable sorting on this... What am I doing wrong?

    Literally 2 seconds after posting this I re-read it and saw that I have a semicolon after my query. I thought to myself "Self - how could it amend any sorting info if you're doing this?"
    I removed the semicolon and it worked.

  • Sort error help

    Hi all.
    I have a function that work fine by itself
    ItemEditEnd calls a function to change a value in a DP from
    true to false or vice versa.
    When a user clicks on a NumericStepper to change values the
    ItemEditEnd Event fires this works fine
    The problem occurs when a user sorts a column prior to
    editing.
    When this occurs I receive this error: Find criteria must
    contain at least one sort field value.
    Any help is appreciated.

    Sreenivas,
    thanks.
    i think it had more to do with the fact that I am using Item
    renderers in a DataGrid.
    when the grid is sorted Flex losses the context of the item
    renderers
    What I did was to assign the DP to a temp AC then perform my
    operations then set the original AC source equal to the temp
    ac

  • How do i sort error 21 on my iphone

    my iphone 4 wont restore it keeps saying error 21 i dont know how to sort it can anybody help please?

    This Apple doc should help ya out -> iTunes: Specific update-and-restore error messages and advanced troubleshooting
    Error 20, 21, 23, 26, 28, 29, 34, 36, 37, 40
    These errors typically occur when security software interferes with the restore and update process. Follow Troubleshooting security software issues to resolve this issue. In rare cases, these errors may be a hardware issue. If the errors persist on another computer, the device may need service.
    If you don't want to go through the security software issues article, you can just uninstall the security software on your computer, test again, and reinstall it again afterwards.

  • Search Sort  Error

    Hi Guys
    I am facing a strange error related to search sorting in WLP10.2
    I have an explicit property (displayOrder), mapped to CM_NODE table as priority column.
    I get right result if i use jsp search tag i.e <cm:search id="queryResult" useCache="true" query="<%=queryString%>" sortBy="displayOrder ASC" />
    But if i use the Search API in the pageflow controller then i get an exception saying that "Invalid sort criteria "toProperty('displayOrder') ASC". Property "displayOrder" must be a system property or explicit property."
              ContentContext context=new ContentContext();
              SortCriteria sortCriteria[]={new SortCriteria("displayOrder", true)};
              String queryString ="(cm_objectClass='"+selectedContentType+"')&&(cm_path like '/"+ROOT_ID+selectdFolderPath+"/*')"+
              " && (!(cm_path like '/"+ROOT_ID+selectdFolderPath+"/*/*'))";
              Expression expression=ExpressionHelper.parse(queryString );
              Search search=new Search("/"+ROOT_ID,-1,sortCriteria,expression);
              System.out.println("search="+search.toString());
              ISearchManager searchManager=ContentManagerFactory.getSearchManager();
              ISortableFilterablePagedList <Node> nodePagedList=null;
              try
                   nodePagedList=searchManager.search(context, search);
              }catch(Exception e)
                   e.printStackTrace();
    This code used to work fine in WLP10.0.
    Does any one know, has there been any changes in the API? or some one else has encountered the same problem?
    ==============================================================
    Here is the full stacktrace:
    <Aug 22, 2008 11:48:39 AM EDT> <Error> <ContentManagement> <BEA-000000> <
    com.bea.content.RepositoryException: Invalid sort criteria "toProperty('displayOrder') ASC". Property "displayOrder" mus
    t be a system property or explicit property.
    at com.bea.content.expression.internal.FullTextSearchHelper.validatePropertyForSort(FullTextSearchHelper.java:40
    4)
    at com.bea.content.expression.internal.FullTextSearchHelper.validateSortCriteria(FullTextSearchHelper.java:171)
    at com.bea.content.expression.internal.FullTextSearchHelper.validateSearch(FullTextSearchHelper.java:132)
    at com.bea.content.federated.internal.SearchManagerImpl.search(SearchManagerImpl.java:53)
    at com.alger.cms.content.location.ContentLocationController.folderSelected(ContentLocationController.java:78)
    Truncated. see log file for complete stacktrace
    >
    com.bea.content.RepositoryException: Invalid sort criteria "toProperty('displayOrder') ASC". Property "displayOrder" mus
    t be a system property or explicit property.
    at com.bea.content.expression.internal.FullTextSearchHelper.validatePropertyForSort(FullTextSearchHelper.java:40
    4)
    at com.bea.content.expression.internal.FullTextSearchHelper.validateSortCriteria(FullTextSearchHelper.java:171)
    at com.bea.content.expression.internal.FullTextSearchHelper.validateSearch(FullTextSearchHelper.java:132)
    at com.bea.content.federated.internal.SearchManagerImpl.search(SearchManagerImpl.java:53)
    at com.alger.cms.content.location.ContentLocationController.folderSelected(ContentLocationController.java:78)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.beehive.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:870)
    at org.apache.beehive.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:809)
    at org.apache.beehive.netui.pageflow.FlowController.internalExecute(FlowController.java:478)
    at org.apache.beehive.netui.pageflow.PageFlowController.internalExecute(PageFlowController.java:306)
    at org.apache.beehive.netui.pageflow.FlowController.execute(FlowController.java:336)
    at org.apache.beehive.netui.pageflow.internal.FlowControllerAction.execute(FlowControllerAction.java:52)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:97)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java
    :2044)
    at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.c
    ontinueChain(ActionInterceptors.java:64)
    at org.apache.beehive.netui.pageflow.interceptor.action.ActionInterceptor.wrapAction(ActionInterceptor.java:184)
    at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.i
    nvoke(ActionInterceptors.java:50)
    at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.c
    ontinueChain(ActionInterceptors.java:58)
    at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptor
    s.java:87)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java
    :2116)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:556)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:853)
    at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:631)
    at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:158)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
    at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1199)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.jav
    a:686)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionInternal(ScopedContentCommonSup
    port.java:142)
    at com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.processAction(PageFlowStubImpl.java:106)
    at com.bea.portlet.adapter.NetuiActionHandler.raiseScopedAction(NetuiActionHandler.java:111)
    at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:181)
    at com.bea.netuix.servlets.controls.portlet.events.FirePageFlowActionDecorator.handleEvent(FirePageFlowActionDec
    orator.java:101)
    at com.bea.netuix.events.manager.EventManager.doFireEvents(EventManager.java:282)
    at com.bea.netuix.events.manager.EventManager.fireEvents(EventManager.java:217)
    at com.bea.netuix.nf.ControlLifecycle$4.postVisitRoot(ControlLifecycle.java:324)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:341)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:130)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:352)
    at com.bea.netuix.nf.Lifecycle.runInbound(Lifecycle.java:184)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:159)
    at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:388)
    at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:258)
    at com.bea.netuix.servlets.manager.UIServlet.doGet(UIServlet.java:211)
    at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:196)
    at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:251)
    at com.bea.netuix.servlets.manager.PortalServlet.service(PortalServlet.java:686)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:336)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at com.bea.jsptools.servlet.PagedResultServiceFilter.doFilter(PagedResultServiceFilter.java:82)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at com.bea.portal.tools.servlet.http.HttpContextFilter.doFilter(HttpContextFilter.java:60)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    Thanks

    Hi,
    Have you tried to use instead of search method the postSearchSort. Then in the ISortableFilterablePagedList object you get you can run the reSort method like this
    results.reSort(SortOrder.ASCENDING,"displayOrder", Locale.getDefault());
    also you can inspect what properties are available to sort with getAllSortableProperties()
    if your properties doesn't show it may be your property is not in the CM_NODE table (I know you said it is, you can double check)
    hope it helps
    regards

  • Alv sort error ?

    hi friends ı write this code .
    data : BEGIN OF g_itable OCCURS 0,
           COLOR LIKE icon-id, "emrah color degisken
           bukrs LIKE bkpf-bukrs,
           belnr LIKE bkpf-belnr,
           gjahr LIKE bkpf-gjahr,
           koart LIKE bseg-koart,
           koart_text(60) TYPE c,
           dmbtr LIKE bseg-dmbtr,
           dmbtr1 LIKE bseg-dmbtr,
           name1 LIKE kna1-name1,
           buzei LIKE bseg-buzei,
           shkzg LIKE bseg-shkzg,
           kunnr LIKE bseg-kunnr,
           budat LIKE bkpf-budat,
           header_th(100) TYPE n,
           hkont LIKE bseg-hkont,
           lifnr LIKE bseg-lifnr,
    END OF g_itable.
      PERFORM FILL_T_SORT
           USING  : 'G_ITABLE' 'HEADER_TH' 'X' '' ''.
    FORM FILL_T_SORT USING   TABNAME FIELDNAME UP DOWN SUBTOT .
      CLEAR U_SORT .
      MOVE : TABNAME   TO U_SORT-TABNAME   ,
             FIELDNAME TO U_SORT-FIELDNAME ,
             UP        TO U_SORT-UP        ,
             DOWN      TO U_SORT-DOWN      ,
             SUBTOT    TO U_SORT-SUBTOT    .
      APPEND U_SORT .
    ENDFORM.  
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                =
      I_BUFFER_ACTIVE                   =
         I_CALLBACK_PROGRAM                = gd_repid
       I_CALLBACK_PF_STATUS_SET          = 'GUI'
         I_CALLBACK_USER_COMMAND           = 'COMMAND'
         I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = 'DTY_BACKGROUND'
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
         IS_LAYOUT                     = gd_layout
         IT_FIELDCAT                  = fieldcatalog[]
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS_LVC             =
      IT_SORT_LVC                       =
      IT_FILTER_LVC                     =
      IT_HYPERLINK                      =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
       I_SAVE                            = 'A'
          IS_VARIANT               = VARIANTE
      IT_EVENTS                         =
      IT_EVENT_EXIT                     =
      IS_PRINT_LVC                      =
      IS_REPREP_ID_LVC                  =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      I_HTML_HEIGHT_TOP                 =
      I_HTML_HEIGHT_END                 =
      IT_ALV_GRAPHICS                   =
      IT_EXCEPT_QINFO_LVC               =
        IT_SORT                  = U_SORT[]
      IR_SALV_FULLSCREEN_ADAPTER        =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        TABLES
          t_outtab                          = g_itable2
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    where do ı do error?help me please

    probably you have to specify field SPOS in your UT_SORT.

  • MSS- Search Position-- Sorting error

    Hello Experts,
    We are using EP7.0/ECC6.0 system. While navigating to MSS->Search position form, there are various columns available like (firstname, org unit, manager name etc..). When we are trying to sort the firstname column through header arrow, it's not working. We are unable to sort the column.
    Can anybody suggest how to sort the column. If anything needs to be configure in R3 OR anything needs to be done on portal side, let us know.
    Would appreciate any suggestions.
    Thanks
    Manish

    Hi Satish,
    we are not using any nested columns. we just have a table like various columns(eg firstname, manager name, org unit etc.). we are unable to sore the first column, while sorting on other columns through header arrow are working fine.
    Please let us know how can we configure in backend so that the first column also start working.
    Thanks
    Manish

  • How to sort Errors and Warnings?

    Any idea how to sort those problems I have with iAD Developer?

    What do you mean?
    I got them because I uploaded two assets - one mp4 video and one image. The problem is that I need to reduce the size of both of them, as it says they have either reached the limit of their size or they are just too big in size (example is, the image is 250MB and the limit is 230MB)

  • Sorting error of Albums

    Hi,
    Story:
    A few months ago I upgraded from iPhoto 6 to 8, no problems there. (Please don't ask me how I transfered the library because I don't remember). From the beginning I have had an issue with the sorting of my albums/events in one of the two views offered by iPhoto.
    Problem:
    There are two views, "Events" and "Photos". Events works just fine, where the sorting is set "By Title" and works just fine. However, in "Photos" view, I have turned on "Event Titles" so it resembles the old film-roll view from iPhoto 6. Even though I have set the sorting "By Title", the albums are all over the place (and the time frame of the photos within the albums might be a problem???), but I'm not sure as it doesn't affect the sorting in "Events" view.
    If anyone knows how I can sort this out, that would be great. As I usually use the "Photos" view to sort out new photos that I import and the "Events" view isin't very convenient for that.
    Cheers!

    In the Photo's window with Event names displayed the Events are sortable only by Date either ascending or descending. The date of the even will be determined by the oldest dated file in the event is the sort is ascending and by the newest dated file if the sort is descending.
    All of the other sort options work only on the photos within the events.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Sorting Error!

    My friend and I (one on a mac and one on a PC) experienced the same problem at the same time. Itunes sorted from 0-9 then A-Z, now it sorts from A-Z then 0-9...how can we change it back to the way that we like it? Thanks,
    Julie

    I agree. It made it so I couldn't find a song. The song began with a ! and I couldn't remember the rest of the title because it wasn't in English. I was finally able to find it, but it shouldn't be able to resort our music.

  • I updated itunes to 10.4, my ipod touch was wiped clean then errored (2003) when attempting to restore, now my ipod is clear. I have tried disabling my antivirus, no luck.

    I updated itunes to 10.4, my ipod touch was wiped clean then errored (2003) when attempting to restore. Now my ipod is clear, when I turn it on I get the "Connect to itunes screen", this never goes. I have tried disabling my antivirus, to allow me to restore with no luck.
    When I go into itunes I get the message - itunes has detected an ipod in recovery mode. You must restore this ipod before it can be used with itunes,
    how am I supposed to do this ?
    I would rather take the ipod to someone to do the restoration - I still have itunes with all of my downloads on my computer, I dont want to risk losing this as I can re-install onto my ipod when it is sorted.

    Error 2000-2009 (2001, 2002, 2005, 2006, 2009, and so on): If you experience this issue on a Mac, disconnect third-party devices, hubs, spare cables, displays, reset the SMC, and then try to restore. If you are using a Windows computer, remove all USB devices and spare cables other than your keyboard, mouse, and the device, restart the computer, and try to restore. If that does not resolve the issue, try the USB issue-resolution steps and articles listed for Error 1604 above. If the issue persists, it may be related to conflicting security software.
    Above from:
    http://support.apple.com/kb/TS3694
    It may be more than you security software.
    Do you have access to another computer you can use to restore the iPod to factory defaults/new iPod?

  • [JS] CS3 and later. Sort the Swatches alphabetically

    Is there a way to sort the swatches, like I did for the paragraphStyles, characterStyles, and so on...?
    There is no swatches[x].move(Location_option) in CS3 nor CS4 like paragraphStyles have.
    Would CS5 have it?
    Thanks, Alex.

    Ok. More fixes posted at the original link:
    http://ajarproductions.com/blog/2013/12/13/sort-swatches-in-adobe-inde sign/
    Now includes:
    Case-insensitive sorting
    Error checking for certain Pantone colors that cannot be edited with a script
    An alert that tells you which Swatches could not be sorted automatically
    Automatically undoes the temporary name if a swatch cannot be edited
    New code for those interested:
    #target indesign
    * Sort Swatches
    * Created by Ajar Productions
    * http://ajarproductions.com
    * version 1.2.0
    (function() {
    var debug = false;
    if(debug) $.writeln('--------');
    app.doScript(sortSwatches, ScriptLanguage.JAVASCRIPT, [], UndoModes.ENTIRE_SCRIPT); //can undo entire script
    function sortSwatches(){
        var docOpen = (app.documents.length > 0);
        var doc = (docOpen) ? app.activeDocument : null;
        var swatches = (docOpen) ? doc.swatches : app.swatches;
        var colors = (docOpen) ? doc.colors : app.colors;
        var tints = (docOpen) ? doc.tints : app.tints;
        var inks = (docOpen) ? doc.mixedInks : app.mixedInks;
        var gradients = (docOpen) ? doc.gradients : app.gradients;
        var swatchNames = swatches.everyItem().name;
        swatchNames = swatchNames.sort(customSort);
        var i = 0, len = swatchNames.length, tempSwatch, iSwatch, props, iType, unsorted = [];
        for(i;i<len;i++){
            try{
                iSwatch = swatches.item(swatchNames[i]).getElements()[0];
                iType = iSwatch.constructor.name;
                props = iSwatch.properties;
                collection = colors;
                switch(iType){
                    case 'Tint':
                        iSwatch.tintValue += .01; //avoid duplicate
                        tempSwatch = tints.add(props.baseColor, props);
                        iSwatch.remove(tempSwatch);
                        break;
                    case 'MixedInkGroup':
                    case 'MixedInk':
                        unsorted.push(props.name);
                        break; //creates error -- skip for now
                        iSwatch.name = new Date().getTime() + ''; //produce unique value
                        tempSwatch = inks.add(props.inkList, props.inkPercentages, props);
                        iSwatch.remove(tempSwatch);
                        break;
                    case 'Swatch':
                        unsorted.push(props.name);
                        break; //ignore [None]
                    case 'Gradient':
                    case 'Color':
                        try{
                            iSwatch.name = new Date().getTime() + ''; //produce unique value
                        } catch(e) {
                            unsorted.push(props.name);
                            break;
                        tempSwatch = (iType == 'Gradient') ? gradients.add(props) : colors.add(props);
                        try{
                            iSwatch.remove(tempSwatch);
                        } catch(e) {
                            tempSwatch.remove();
                            iSwatch.name = props.name;
                            unsorted.push(props.name);
                        break;
            } catch(e) {
                unsorted.push(props.name);
                if(debug) $.writeln(props.name +', ' + iType + ': ' + e + ', line: ' + e.line);
        if(unsorted.length) alert('Operation complete. The following swatches could not be sorted automatically:\r' + unsorted.join('\r'));
        function customSort(a,b){
            var aN = parseInt(a), bN = parseInt(b);
            if(isNaN(aN)){
                if(isNaN(bN)) {
                        var aL = a.toLowerCase(), bL = b.toLowerCase();
                        if (aL < bL) return -1;
                        if (aL > bL) return 1;
                        return 0;
                return 1;
            } else if(isNaN(bN)){
                return - 1;
            } else return aN - bN;

  • ORA-06502 on  'SQL query' report with sort in 'Report Attributes'

    Hi All,
    We get the next error if we set sorting on a column in a 'Report' based on a 'SQL query'. Removing the sort, error disappeares:
    failed to parse SQL query:
    ORA-06502: PL/SQL: numeric or value error: NULL index table key value
    Any suggestions?
    Erik

    Erik,
    Thanks, this explains it. By specifying the request as part of your URL you run into the recently uncovered issue. The request you're setting is REMFROMLIST and ADD2LIST. You probably either have links that include those requests or you have branches where you specify them. Either way, in order to get reports sorting to work, you'll have to make sure that the request strings are not part of your URL. This is a work-around and the upcoming HTML DB patch release will solve this issue.
    One way of avoiding this is to have computations on the previous pages that set a napplication level or page level item to the REMFROMLIST and ADD2LIST values and then you can use those items for your conditions that are currently evaluating those strings.
    Hope this helps and sorry for the inconvenience,
    Marc

Maybe you are looking for

  • I updated my MBP to Maverick, and now iTunes won't open.

    I get a message saying to uncheck the box in info to open in 32bit. That box isn't checked. Now what?

  • "The picture could not be opened because the original image could not be found."

    "The picture XXXXX.jpg could not be opened because the original image could not be found." - I've translated from Portuguese, so it's possible to contain errors on text but I think it is clear to understand. This error message has appeared on my scre

  • Droid 3 - web pages will not scroll

    I've noticed about a week ago that some web pages on the native Droid 3 browser will not scroll by touching the screen and moving your finger..  It may be related to only those pages that are not built for mobile devices.  Example: www.nickslighthous

  • DATA BASE TABLE AND INTERNAL TABLE

    Dear Friends, please help me out in getting complete information about database table and internal table. you can email me at < Removed by moderator - please maintain e-mail iDs in Business Card> Message was edited by:         Arun Varadarajan

  • Cannot start the presentation server

    Linux OS OBIEE 11.1.1.5.0 Weblogic Server 10.3.5.0 OBIEE gurus, I cannot start the presentation server via EM or via the command line ./opmnctl startproc ias-component=coreapplication_obips1. I get the error in the comman line: opmnctl startproc: sta