Function adobeDPS.libraryServices.folioMap.sort does not work

Hello, I work with custom showcase and until yesterday the folioMap.sort function works fin, I get all folios published with this function, but today it does not work, I still get an empty array and my library looks like this:

Screenshot 2014.05.30 16.40.47.png

If I debugger it I found that my folios is always an empty array:

Screen Shot 2014-05-30 at 5.01.18 PM.png

What I am doing wrong?

It is an option in the constructor of the App. I checked it once and my folioMap was also empty. So never mind.

Tags: Digital Publishing Suite

Similar Questions

  • Sorting does not work with ROW_NUMBER () OVER (ORDER BY

    CREATE OR REPLACE PROCEDURE SP_SALES)
    p_sales_id IN VARCHAR2,
    p_rownnum_from in NUMBERS
    p_rownnum_to in NUMBERS
    p_sort_by IN VARCHAR2,
    p_query ON SYS_REFCURSOR,
    )
    AS
    v_query VARCHAR2 (32000);
    v_sort_list VARCHAR2 (32000);
    BEGIN

    IF p_spv_sort_by IS NULL THEN
    v_sort_list: = 'nom_donne ASC ";
    ON THE OTHER
    v_sort_list: = p_spv_sort_by;
    END IF;

    DBMS_OUTPUT. Put_line ('v_sort_list' | v_sort_list);
    OPEN FOR P_query
    SELECT sales_id
    item_id,
    order_num,
    Employee_Name
    nom_donne
    dept_id,
    manager_name,
    NO_LIG
    Of
    (SELECT x.*,
    ROW_NUMBER () OVER (ORDER BY v_sort_list) no_lig
    OF (sales_id,
    item_id,
    order_num,
    Employee_Name
    nom_donne
    dept_id,
    manager_name,
    Vaughan Williams order.
    sale pol,
    CA of the EMP,
    WHERE pol.id = rvw.pr_order_id
    AND ca.empid = pol.employee_id
    (AND status = "SUP") x)
    WHERE the arguments no_lig BETWEEN p_rownnum_from AND p_rownnum_to;
    -ORDER by v_sort_list;
    DBMS_OUTPUT. Put_line ('v_sort_list' | v_sort_list);

    EXCEPTION
    WHILE OTHERS THEN
    DBMS_OUTPUT. PUT_LINE ('EX');
    END;
    END;
    /
    DISPLAY ERRORS


    Sorting does not work. I'm doing something wrong here?

    How to run for help below
    declare
    x SYS_REFCURSOR;
    number of y;
    BEGIN
    SP_SALES ('70159_502', 1, 5, 'GIVEN_NAME' |') ASC',: x);
    -dbms_output.put_line (: x);
    END;

    Hello

    According to the number of columns different, you can sort on and data types, it may be possible for you to include conditional logic in the existing statement without requiring dynamic sql code...

    DTYLER_APP@pssdev2> var p_spv_sort_by varchar2(100)
    DTYLER_APP@pssdev2>
    DTYLER_APP@pssdev2> exec :p_spv_sort_by:='some other column'
    
    PL/SQL procedure successfully completed.
    
    P_SPV_SORT_BY
    ----------------------------------------------------------------------------------------
    some other column
    
    DTYLER_APP@pssdev2>
    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, 'z' other_column from dual UNION ALL
      3      SELECT 'b' given_name, 'y' other_column from dual UNION ALL
      4      SELECT 'c' given_name, 'x' other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
     10     OVER (
     11        ORDER BY
     12           CASE
     13              WHEN :p_spv_sort_by IS NULL THEN given_name
     14              WHEN :p_spv_sort_by = 'some other column' THEN other_column
     15           END)
     16        ROW_NUM
     17  FROM
     18      source
     19  /
    
    G O    ROW_NUM
    - - ----------
    c x          1
    b y          2
    a z          3
    
    3 rows selected.
    
    DTYLER_APP@pssdev2> exec :p_spv_sort_by:=NULL;
    
    PL/SQL procedure successfully completed.
    
    P_SPV_SORT_BY
    ----------------------------------------------------------------------------------------
    
    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, 'z' other_column from dual UNION ALL
      3      SELECT 'b' given_name, 'y' other_column from dual UNION ALL
      4      SELECT 'c' given_name, 'x' other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
     10     OVER (
     11        ORDER BY
     12           CASE
     13              WHEN :p_spv_sort_by IS NULL THEN given_name
     14              WHEN :p_spv_sort_by = 'some other column' THEN other_column
     15           END)
     16        ROW_NUM
     17  FROM
     18      source
     19  /
    
    G O    ROW_NUM
    - - ----------
    a z          1
    b y          2
    c x          3
    
    3 rows selected.
    
    DTYLER_APP@pssdev2>
    

    But this would depend on the columns that you sort to be of the same data type or at least have the possibility of converting the same type of data without loss of the sort order.

    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, sysdate - 2 other_column from dual UNION ALL
      3      SELECT 'b' given_name, sysdate - 1 other_column from dual UNION ALL
      4      SELECT 'c' given_name, sysdate  other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
     10     OVER (
     11        ORDER BY
     12           CASE
     13              WHEN :p_spv_sort_by IS NULL THEN given_name
     14              WHEN :p_spv_sort_by = 'some other column' THEN other_column
     15           END)
     16        ROW_NUM
     17  FROM
     18      source
     19  /
                WHEN :p_spv_sort_by = 'some other column' THEN other_column
                                                               *
    ERROR at line 14:
    ORA-00932: inconsistent datatypes: expected CHAR got DATE
    
    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, sysdate - 2 other_column from dual UNION ALL
      3      SELECT 'b' given_name, sysdate - 1 other_column from dual UNION ALL
      4      SELECT 'c' given_name, sysdate  other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
     10     OVER (
     11        ORDER BY
     12           CASE
     13              WHEN :p_spv_sort_by IS NULL THEN given_name
     14              WHEN :p_spv_sort_by = 'some other column' THEN TO_CHAR(other_column,'YYYYMMDDHH24MISS')
     15           END)
     16        ROW_NUM
     17  FROM
     18      source
     19  /
    
    G OTHER_COLUMN            ROW_NUM
    - -------------------- ----------
    a 12-SEP-2011 15:04:19          1
    b 13-SEP-2011 15:04:19          2
    c 14-SEP-2011 15:04:19          3
    
    3 rows selected.
    

    HTH

    David

  • Satellite A100-499 - function for the WiFi button does not work

    Hello, I have a Toshiba Satellite A100 - 499 PSAA9E.

    I formatted my laptop and installed XP with SP3. I downloaded and installed the drivers (in the right order) for this OS of the toshiba - Europe.com and everything is going well except Fn + F8. It is assumed that this combination has toggle Wifi & Bluetooth. When I switch side 'off' position and I press the keys, appears a message saying that I should switch to position 'on' but when I switch lateral position 'on' and I press Fn + F8 it does nothing.

    If I want to disable the wi - fi I have to do it with other methods: the function key does not work correctly.

    Any clue?
    Thanks for the advice (and sorry for my English).

    When the WLAN switch is on orange LED is also on?
    You can scan area available networks?
    Have you tried to use the WLAN without using FN + F8?

  • The 'Search' function on the start menu does not work. It seems to freeze and will not even close until I have shut down the computer. What can I do to correct this situation?

    I tried to use the "Search" function to locate a specific file.  The computer froze... not allow me to cancel when I realized that it wasn't working.  The only way I could get the closing of the window had to shut down the computer.

    Hi DyleAcker,
     
    -Search function work is no problem earlier?
     
    Run the troubleshooter from the link given below and if it helps to fix the problem:
  • Adpatch function of e-mail notification does not work

    Hi all

    I'm about to apply a huge patch (12.1.1 patch) which will have at least 12 hours. When I was testing this before that I have answered the question about 'Yes' email notification and added my email address, but for some reason adpatch did not send email when a worker failed.

    How can I study the origin of this problem? Where adpatch reads information from the SMTP server of?

    Any comment is appreciated.

    Thank you
    Sinan

    You must configure the e-mail of the BONE - test telnet SMTP to perform according to them (how to perform a significant Telnet SMTP test to troubleshoot Java Mailer to Send Notifications by e-mail [753845.1 ID]). If you can send an e-mail message from the operating system, you should be able to receive emails from adpatch session.

    Thank you
    Hussein

  • Sorting does not work in rtf model

    Hello

    Using MS-Word 2007.

    Any of the below works.
    <? sort: (sum (current - group () / MONETARY_AMOUNT));' ascending '; type_donnees = "number"? >
    <? sort: sum (current - group () / MONETARY_AMOUNT);' ascending '; type_donnees = "number"? >
    <? sort: sum (current - group () / MONETARY_AMOUNT);' ascending '; data-type = "text"? >

    When I get rid of this kind as shown below, the report runs filne.
    <? sum (current - group () / MONETARY_AMOUNT)? >

    Here is the error message I get.

    Real fonts: C:\Program Files\Oracle\XML editor Desktop\Word model Builder\fonts
    Run Start OPE
    SetLocale RTFProcessor: en - us
    FOProcessor setData: C:\Documents and Settings\KPabba\Desktop\PS_FIN_OT_Reports\development\MB_OPS_INVENTORY_PSQ.xml
    SetLocale FOProcessor: en - us
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)
    at java.lang.reflect.Method.invoke (unknown Source)
    at oracle.apps.xdo.common.xml.XSLT10gR1.invokeProcessXSL(XSLT10gR1.java:580)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:378)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:197)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:156)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:916)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:869)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:204)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1535)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:925)
    at RTF2PDF.runRTFto (RTF2PDF.java:590)
    at RTF2PDF.runXDO (RTF2PDF.java:455)
    at RTF2PDF.main (RTF2PDF.java:237)
    Caused by: java.util.EmptyStackException
    at java.util.Stack.peek (unknown Source)
    at java.util.Stack.pop (unknown Source)
    at oracle.xdo.parser.v2.XSLTContext.popCurrentGroupingKey(XSLTContext.java:905)
    at oracle.xdo.parser.v2.XSLForEachGroup.processGroups(XSLForEachGroup.java:468)
    at oracle.xdo.parser.v2.XSLForEachGroup.process01(XSLForEachGroup.java:282)
    at oracle.xdo.parser.v2.XSLForEachGroup.process(XSLForEachGroup.java:210)
    at oracle.xdo.parser.v2.XSLForEachGroup.processAction(XSLForEachGroup.java:94)
    at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
    at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
    at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
    at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
    at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
    at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
    at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
    at oracle.xdo.parser.v2.XSLTemplate.processAction(XSLTemplate.java:191)
    at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:508)
    at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:485)
    at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:264)
    at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:150)
    at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:187)
    ... 16 more

    Please notify.

    Thank you

    I sent that you back up the modified model. Please take a look.

    Hope that helps.

    Bipuser

  • How is it possible that Firefox 3.6.28 with intelligent search functions and the latest version does not work?

    I noticed that when I'm on Firefox 3.6.28, try to look for something, not looking but sometimes opens directly the most appropriate result. It's amazing and really fast. Why this feature is not included in the latest version.
    Thank you

    When you type words in the address bar, Firefox will search using any motor is selected in the search bar. You can install a "Browse by name" or a "I m Feeling Lucky" search engine

    If you want the search engines separate in the address bar and the search bar, install the module keyword search.

    The reasoning was that 'Browse by name' and "I m Feeling Lucky" are far from perfect. Rather than risking to send users to sites that are not what they were looking for, it was decided that always show the results of the research was a better option.

  • Really simple question, function and scroll stop bar does not work

    I worked on different parts of this VI separately, when I put it together the scroll bar and stop working stopped button.

    In the individual VI, both are in the while loop. In the end, I was a scroll bar and a stop to apply every 5 while loops.

    I tried to take the helm of scrolling in and out of the first loop to attach to the rest, but it still doesn't work.

    I'm sure that there is a simple answer that is really stupid, but I played with him for a while.

    I have attached the VI am I train both to false data (in order to test the colored boxes).

    Thank you!

    You have a typical problem of beginner because of the lack of understanding of data flow. Run the code using execution highlighting, and look at the diagram to see.

    1. Your stop is outside any loop and so will be read only by the code only once at the beginning of the program.
    2. Your scroll bar is read in the first loop. All the other loops cannot begin until the first loop finished and since (1) is true, it will never happen if the value Boolean false when the code begins.

    Why do you have so much code duplication? 95% of the code for the loop is the same and can be reused. I don't know that the whole thing could be written using 5% of the total code. Put everything in a loop, iterate over the table 2D to get all values. Don't forget to put a little wait inside the while loop.

  • My function "create a new folder" does not work, what is someone knows why or how to fix?

    I can't get my button "create a new folder" to work. They died in the libraries of all kinds and in the folders of documents or libraries. Anyone know what I can do about it?

    S.
    You have installed chrome? It's looking like a recent update of Chrome is responsible. If you want to remove Chrome and restart to test, please do. To fix it without removing chrome, here are your options.
     

    How to remove and restore the default context Menu items 'New' in Windows 7 and Windows 8
    http://www.SevenForums.com/tutorials/28677-new-context-menu-remove-restore-default-menu-items.html
     
     
     
    Tip: When you save the text in Notepad, the default file format is .txt. Replace all files.
     
     
  • Mathematical functions on db TinyInt columns does not work?

    I have several columns with integers stored using the SQL TINYINT data type. I am trying to add the columns and pass the average of Coldfusion:

    < name cfparam = "avgrating" default = "#rsgetratings.ratingone # + #rsgetratings.ratingtwo # / 2" >

    and #avgrating # guard display text without running the mathematical function as such:

    2.000000 + 2.500000 / 2

    You must put the variables in brackets, so that they are treated

    #((rsgetratings.ratingone + rsgetratings.ratingtwo) / 2) #.

  • Open - recent items does not work in preview or Mellel (one third) word processor app

    The 'Open recent element' function under the file menu does not work in preview mode before and in a third of processing (Mellel) I use. It works very well until two weeks or two there. It works in Word,

    May be a corrupt .plist.

    Make a backup, preferably 2 backups on 2 separate drives.

    Quit the application.

    In Finder and hold the option/alt key while clicking on the menu item Go. Select the library. Then go to Preferences/com.apple.Preview.LSSharedFileList.plist. Move the .plist on your desktop.

    Restart your computer, open the application and test. If it works fine, delete the plist for the office.

    If the application is the same, return the .plist where you got it, crushing the latest.

    If you want to make your library user visible permanently, run the command in Applications/Utilities/Terminal Server below.

    chflags nohidden ~/Library/

    You will need to do after the updates.

    If it works, it should be a .plist to the other application.

  • Satellite Pro A60: TV S-VHS on does not work

    I have a Satellite Pro a60 and I'm pulling out my S-VHS to function... This does not work very well.

    I connected all the cables right and right click on the desktop, again choose preferences, then on Preferences, but I can't find anything on the transmission of the video signal.

    I have not though as the configuration standard of Toshiba, but that shouldn't matter. I'm running WinXP SE, but the drivers for my card ATI is about two years old and I can not find a suitable one anywhere, this is the problem, or should I program utility ATI?

    Best regards!

    Hello

    You should also check the TV settings. You must choose the right channel.
    As in the previous announcement suggested, you can change the display device using the FN + F9 key combination.
    If you want to play the DVD with the WinDVD player for example if you first need to change the output of the TV and then start the WinDVD.

  • AutoPlay feature does not work when you insert a CD-ROM into the CD drive

    Original title: computer disc drive

    Download or CD extract of music reading, record music, download CD etc... Before my hard drive had to be replaced, when a disc is inserted into my computer, a window appears, asking what you want to do... Burn music, Rip, copy in folder etc... now when I insert a disk, the window no longer appears, which gives you options and you get to this site... How can I get that back?

    Hey Big-Mack,

    Try the steps of troubleshooting mentioned in the following article and check the result.
    See the enforcement function automatic or AutoPlay feature does not work when you insert a CD-ROM into the CD drive

    If the problem persists, run the Autoplay Repair Wizard and check the result.
    See Autoplay Repair Wizard

    Play functionality; New in Windows Media Player 12 makes it easy to listen to the music, video and photos from your computer to other computers, TVs or stereo on your home network.
    For more information, see play in

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Sum function does not work in the group clause current 'function not found SUM'

    Hi all

    Im working on one. Model RTF to use with EBS R12, I use the version 10.1.3.2.1 on Windows 7.

    I'm reports on invoices for a customer with a subtotal for each customer, but the subtotal does not work

    It worked with a later version of BI publisher model generator, but it was not the right version for EBS.

    The code is shown below, patterns valid OK it's just that when I try to preview the outout I get the error ' caused by: oracle.xdo.parser.v2.XpathException: not found "SUM" function.

    <? for each: G_CUSTOMER? > <? sort: client_name: "growing." data-type = "text"? >

    <? Client_name? >

    <? for-each: G_MAIN? >

    <? ADJUSTMENT_NUMBER? >

    <? NAME? >

    <? ADJUSTMENT_AMOUNT? >

    <? end foreach? >

    <? Sum (Currrent - Group () / ADJUSTMENT_AMOUNT)? >

    <? end foreach? >

    Pointers much appreciated.

    Thank you

    Guy

    Just should be fine, I guess.

    If you still get the error, try to remove this feature and see if the error occurs. Another error is caused by something else.

  • Using the function of scan macOS Sierra HP Officejet 7300 series network printer does not work; He had no problem with El Capitan...

    Printer HP Officejet 7300 network series that allows to work flawlessly with El Capitan does not work after the upgrade to Sierra.

    With macOS Sierra, when used as a network print service printer works fine however scan does not work. Programs like the Image Capture, HP Easy Scan etc does not see the printer. However, if the printer is directly connected to the Macbook Pro using the usb cable, a new printer is added to the list of printers (it shows print and scan functions while the printer network in the list shows only printing function) and the scanner works well with Image Capture, etc. If the usb cable is removed disconnects this printer in the list and there is no way to turn it on. I have the latest update for the printer installed from the App store. It looks like a driver issue, but I wonder if there is a work around for this problem...

    Open Preview.app. Under file in the menu bar, you see import of 'name of your scanner?

Maybe you are looking for