Remove Prerelease Folio from Multi-Folio Viewer?

I have a folio and multi-folio viewer made in the prerelease software that is launched and doing well. I've recreated the old folio and a new one to submit with a new viewer. The old folio was recreated in the new DPS system to be able to use the new analytics tools with it.
In the documentation for prerelease folios it mentions updating prerelease folios with the old software (while it is still available) and that they won't be recognized by the new system. It doesn't mention anything about deleteing them.
In testing my new viewer I have my first folio release showing up along side the recreated one (I was hoping with the same Product ID's it might override the previous one when published.) Is it possible to delete the prerelease folio that's currently active to repleace it with the new one? Is it better to just stick with the Apple download numbers and go with it being available for download, but not part of the new DPS system?
Thanks!

Wes - Unfortunately, there is currently no easy way to replace, or update, a folio created using the prerelease Content Bundler. The program team is working on a solution for an upcoming release. Until then, if the folio is Free instead of Retail, you can use the Content Bundler to delete the old folios, as you suggested, and use the new tools to publish a folio with the same name. But I wouldn't do this if I could avoid it. Your customers who have downloaded the folio will see two identical folios until they delete (archive) the older folio. If your folio is Retail, I recommend holding off on replacing the old folio until a better transition solution is in place.

Similar Messages

  • OK to remove used clips from the Clips Viewer?

    At the bottom of the iMovie 9 screen, there's an area that I think is called the Clips Viewer--the area that shows the imported clips that you can add to your project. After I have done so and I am sure that I don't want to add them anymore to my project, is it okay to remove the clips from the Clips Viewer? I have a lot of clips that I want to use in my project that all have very similar thumbnails and having them all in the Clips Viewer at once will create hopeless confusion.

    Don't delete any clips from the event viewer that are used in your project until you have completed the project and shared it. Then if you are sure you do not ever want to re-edit that project or share it again or use those clips in another project then you can delete them. If you delete them while your project is active the clips will go off line and your project is unusable.

  • Remove previous issues from Adobe Content Viewer

    We do not have a DPS licence as yet, but as part of the process to get the business to sign up we have created some example docs in InDesign and shared with the decision makers directly.
    We now want to remove some of these examples, and have 'unshared' the folios but they are still appearing in the Content Viewer?  If I delete the issue, the thumbnail remains with the option to download it again.
    Help?

    On the iPad, you (or your clients) need to tap the gear icon in the upper right corner of the library and choose "Remove Issues from iPad." Then you select the downloaded folios and delete them. If the folios have been unshared or removed from the server, they'll no longer appear in the library.

  • Remove vertical scrollbar from multi-row af:inputText

    Hi,
    Is it possible?
    I'm using JDeveloper 11.1.2.1
    I have two text field (af:inputText) and field 2 is a multi line row, which automatically adds extra width for the vertical scrollbar, and throws off the right alignment
    field 1 |________|
    field 2 |_______|v|
    I need both field 1 and 2 to be left and right aligned
    i.e.
    field 1 |_______|
    field 2 |_______|
    Is there a way to do this? I was thinking this could be achieved by removing the vertical scrollbar, but I'm not sure how to do this.
    Also, the application needs to be viewed in both mobile device (iPad) and desktop. Since iPad doesn't use scrollbar (hence it's not rendered), setting both fields to have fixed width won't achieve what i need, because it will be correct in one version, but not both.
    Thank you for any information.
    Regards,
    Andi

    Hi Navaneeth,
    Code:
    <h:panelGrid columns="2" id="pg1">
    <af:outputLabel value="Field 1" id="ol5"/>
    <af:inputText value="#{bindings.ModelCode1.inputValue}"
    required="#{bindings.ModelCode1.hints.mandatory}" columns="#{bindings.ModelCode1.hints.displayWidth}"
    maximumLength="#{bindings.ModelCode1.hints.precision}"
    shortDesc="#{bindings.ModelCode1.hints.tooltip}" id="it4">
    <f:validator binding="#{bindings.ModelCode1.validator}"/>
    </af:inputText>
    <af:outputLabel value="Field 2" id="ol4" shortDesc="#{bindings.Comments.hints.tooltip}"/>
    <af:inputText value="#{bindings.Comments.inputValue}"
    required="#{bindings.Comments.hints.mandatory}" columns="#{bindings.Comments.hints.displayWidth}"
    maximumLength="#{bindings.Comments.hints.precision}" shortDesc="#{bindings.Comments.hints.tooltip}"
    id="it9" rows="#{bindings.Comments.hints.displayHeight}">
    <f:validator binding="#{bindings.Comments.validator}"/>
    </af:inputText>
    </h:panelGrid>
    Current layout:
    http://img607.imageshack.us/img607/4282/fieldalignmentproblem.jpg
    Desired layout (To have it aligned as per the green line):
    http://img338.imageshack.us/img338/7865/fieldalignmentdesired.jpg
    Thanks,
    Andi

  • To remove Personalize button from a Custom View

    Hi,
    I have created a Custom View, and in this view it is displaying two 'Personalize' buttons and 'export to spreadsheet' buttons.
    I have to remove one of them.
    Plz suggest something for this.
    As, i also tried to use "IF_BSP_WD_TOOLBAR_CALLBACK~GET_BUTTONS " but this is of no help.
    Regards,
    Sharad

    Hi,
    In one of my views i have written this code in the view layout.
    <chtmlb:tableExtension tableId = "ResultList"
                           layout  = "FIXED" >
      <chtmlb:configTable xml                   = "<%= lv_xml %>"
                          id                    = "ResTable"
                          navigationMode        = "BYPAGE"
                          onRowSelection        = "select"
                          table                 = "//ZACC/TABLE"
                          width                 = "100%"
                          hasLeadSelection      = "TRUE"
                          visibleRowCount       = "<%= lv_lines %>"
                          actionsMaxInRow       = "4"
                          selectionMode         = "<%= ZACC->SELECTION_MODE %>"
                          selectedRowIndexTable = "<%= ZACC->SELECTION_TAB %>"
                          selectedRowIndex      = "<%= ZACC->SELECTED_INDEX %>"
                          visibleFirstRow       = "<%= ZACC->visible_first_row_index %>"
                          usage                 = "SEARCHRESULT"
                          showNoMatchText       = "FALSE" />
    </chtmlb:tableExtension>
    So, any one can help me out if these buttons can be removed from here.

  • Regexp_replace to remove blank lines from multi lines in a single field

    Gents. 10g R2.
       with test_tab as
       (select 'x'||chr(10)||'y'||chr(10)||chr(10)||'z' tester from dual)
       select tester from test_tabproduces
    x
    y
    zI require
    x
    y
    zThere's a lot of examples on how to end up with xzy, but I need to maintain the carriage returns, just strip out blank lines.
    I've been trying with posix [:cntrl:] but it doesn't seem to want to work. Question: how to get the desired output?
    If this has been answered on another post, please point me in the right direction and accept my apologies!

    Hi,
    The simplest thing might be to use LTRIM. (or TRIM, if you need to remove them from the end of the string, as well).
    If you want a regular expression:
    SELECT     REGEXP_REPLACE ( tester
                     , '(^|' || CHR (10) || ')' || CHR (10) || '+'
                     , '\1'
    FROM     test_tab
    ;This might be easier to understand if you let x stand for CHR (10):
    SELECT     REGEXP_REPLACE ( tester
                     , '(^|x)x+'
                     , '\1'
    FROM     test_tab
    ;This is easier to understand: \1 is either the beginning of the string or x. When this is followed imeediately by 1 or more extra x's, then replace that whole pattern with \1 (that is, remove the extra x's).

  • How to removed dashed lines from "Page Break View"?

    Hi,
    In Excel 2010, I found that once “Page Break View” is selected, there will be dashed lines across the view even after returning to “Normal” view. These dashed lines can be distracting.
    Is there a way to remove them?
    Bob

    Yes use
    File -> Options -> Advanced
    Scroll down to Display options for this worksheet and remove the tick in Show Page breaks.
    Unfortunately it's sheet specific so you'll have to do it everytime it happens until you've done all the sheets.
    Unless you develope some VB to do it for you,
    G North MCT

  • Removing live nodes from cluster view.

    Hi All,
              We are experiencing some JMS problems connected with a cluster node being
              hung for some time.
              The following took place just before the problem arises:
              1. First of all one of the nodes (the first) gets one thread
              (weblogic.jms.backend.BEPushRequestSender@76512c) stuck.
              2. After that it closes the TCP connection to another node and
              3. Removes another node from its cluster view.(that is alive)
              4. After that the second node removes the first from its cluster
              view.
              5. Seconds later they find each other again and add each other to the
              cluster view.
              6. After that, the JMS distributed members are connected to each other,
              7. Something strange happens, because either the first node starts
              missing many messages in its distributed topic member or the second
              node doesn't propagate messages from distributed topic to the first
              node.
              Is it possible to set up weblogic cluster in a way, it won't remove
              other members from cluster view by peer gone exception, only by
              heartbeat timeout? Is heartbeat retry time parameter is configurable?
              Any help with this matter will be greatly appreciated.
              Dmitry Finkelstein
              

    You must run the update node list for each ORACLE_HOME on that machine. If this is RAC, the runInstaller will take care to update all nodes, so again, you run it once per ORACLE_HOME installed.
    Shared Home is a single copy of the Oracle software, rather than each node holding their own copy of the software. There's a paper that talks about these two topics and gives some examples of full commands on OTN:
    http://www.oracle.com/technology/products/database/clustering/index.html
    "Oracle Homes in an Oracle Real Application Clusters Environment(PDF) January 2008"
    direct link: http://www.oracle.com/technology/products/database/clustering/pdf/oh_rac.pdf
    Enjoy and hope this helps.
    Saar.

  • Remove UWL Action from just one item type

    I would like to remove the "forward" action from only one item type in the UWL.  There is the ability to remove an action from all items in a particular iView using "List of UWL Actions to exclude", however, I can not find out how, or if it is possible to exclude a UWL action in the XML configuration file for just one item type.  We are on NWO4s sp 05.  Does anyone know if this can be done and what the xml snippet would look like that would remove the "forward" action from a single item type?
    Regards,
    Stephanie.

    Kiran,
    The xml snippet you sent does remove the "forward" action from the UWL preview iView, but it does not remove the action from the list view.  To the right of every item in the list view is the "properties" icon (unclear on the actual name of this icon - the one that has 3 small lines and a triangle).  When this is clicked the "forward" option still appears.  I am looking for a way to totally disable the forward option on the defaultView, but only for certain item types.
    Regards,
    Stephanie.

  • How do I add content to a Multi Folio viewer app?

    We have created a multi folio viewer app, but cannot get our folios to appear in the app. We've published both with the same Apple ID. Help! What are we doing wrong?

    The folio is set to Public Free.
    The Title ID matches the email address used to publish content.
    However, in the Folio Producer, we can't make the 'Product ID' match the com.mydomain etc. from the 'Apple Bundle ID', as Folio Producer doesn't allow us to enter the dash [-] in the name...

  • Problems updating folios in multi issue viewer

    I created a multi issue viewer app containing two issues. Now I try to update one of these two issues in the DPS Folio Producer Organizer, but the app still shows the old version of the issue.
    I update the issue with the "update"-button and deleted the multi issue viewer and re-installed it on my iPad many times, but the multi issue viewer still shows the old version of the changed issue.
    Finally I deleted the changed issue in the DPS Folio Producer Organizer, but the multi issue viewer still shows the old version of the issue.
    What can I do now?

    I suggest calling enterprise support for this, they should be able to help you figure out what is going on. You can find contact information by logging into http://digitalpublishing.acrobat.com/ and looking in the bottom middle of the page.
    Neil

  • Creating first iPad multi-folio viewer...need ID help

    I am creating a multi-folio viewer that will have monthly issues. I've completed a sample folio and the first two issues.
    I understand to  create a multi-folio viewer, I need one Adobe ID to create all of the folios, and not use the Adobe ID for any other folio production.
    I'm confused on how to name the App Id and Product ID. How are all the issues linked to the sample folio and become available as a purchase and download when each month's issue is ready?
    Thanks!

    You specify the App ID only on the Apple developer site. For best results, use the "reverse DNS" naming convention for the App ID, such as com.publisher.publication. You don't specify the App ID anywhere on the Adobe side.
    Product IDs are required for all published folios, but they're only significant if you're selling the folio. In that case, the Product ID you specify needs to match when you create it in iTunes Connect and publish the folio on the Adobe side. Again, use the reverse DNS approach: com.publisher.publication.issue. Each different folio should have a different Product ID, such as "com.dancer.danceoff.2012october" and "com.dancer.danceoff.2012november." However, folio renditions should share the same Product ID.

  • How do I remove display of attendance quota in Multi-Day view in TMW?

    Hi,
    I have just created an attendance quota and am seeing it every day in the multi.day view of Time Manager's Workplace.
    I would like to remove it from being displayed in that part of TMW. Can anyone help me?
    Thanks in advance
    Kim ;-)

    You can try using the Device and Credentials Repository command line interface (dcrcli). Instructions for its use care located here.
    If the issue is with the Fault tool (also known as DFM) then please see this thread about re-initializing the DFM databases.

  • Remove element from multi-surface

    Hi there,
    I am trying to fix some invalid multi-surface geometries that are derived from a 3D source, many of which have ORA-54514: overlapping areas in multipolygon.  I can find out which subset geometry (aka the element in this context) is causing the problem with the VALIDATE_GEOMETRY_WITH_CONTEXT function, and even extract just that element (SDO_UTIL.EXTRACT3D), but how do I remove that element from the geometry (and hopefully fix the problem)?  Is there any way to view the position of the element within the geometry in the same manner that the Extract3D function requires (i.e. 0,0,1,1,0,0,7), I can return this for the problem element but not for any of the other subset geometries.  Unfortunately I'm using FME to load the geometries and the topology validation here is not as robust as Oracle, which means I need to fix the geometries once they are loaded, but there doesn't seem to be any tools to do this?
    Regards
    Dan

    Hi Dan,
    instead of removing the offending element, how about extracting all the correct ones? Should give the same net effect, I think.
    Re FME: I find I can usually validate geometry enough that it will at least pass Oracle's Validate, but that's usually only 2D or 2D with a Z-ordinate (2.5D, as some folks call it).
    Regards,
    Stefan

  • Remove Blank Values from Slicer in Power View

    Hi all,
    I am trying to create a power view report from a power pivot data model. After creating the model when I try to use the slicer in power view I am seeing the Blank record. Then I checked that dimension in model where I don't have any blank value in there.
    Also I checked in fact table where it has a relationship with that dimension and I don't see any blank value there as well.
    I am currently blocked with this issue. Experts please jump in and give some ideas how to remove blank value from there.
    Thanks

    As MM-99 already stated correctly, the BLANK-member is created if there is one or more non-matching row in your fact-table that does not exist in the dimension-table
    maybe you have some issues with upper and lower case?
    or maybe there are some whitespace characters contained in the text?
    to identify the issues you may want to create a calcuated column in your fact-table as =RELATED('DimTable'[MyKeyColumn])
    then you can filter on that column and see if any blank values appear
    hth,
    gerhard
    Gerhard Brueckl
    blogging @ http://blog.gbrueckl.at
    working @ http://www.pmOne.com

Maybe you are looking for

  • Arch Schwag: Interest in USB bracelets?

    Hey all, I'm thinking of getting a batch of Arch Linux wearable USB bracelets for sale via http://schwag.archlinux.ca/. Would anyone be interested in this product? I bought 50 USB keys a couple years ago and had trouble selling them due to the contin

  • Sharepoint 2007 as content server for DMS?

    Hi, Knowing Sharepoint 2003 is not able to act as DMS content server. Does any know if the new Sharepoint 2007 has this function to act as DMS content server? Thanks in advance. Regards, Ronald

  • Interview ques doubts

    Hi i had an interview, I am not sure of some ques could u plz clarify those for me. 1. What is the document hierarchy of iDocs? 2. How will you retrieve an iDoc created for delivery document, based on the delivery document number? 3. If a customer pa

  • Calc Scripts in sequence

    Hi All, We have requirment to run some calc scripts in sequence as they are dependent. If we merge all the scripts in one script then due to dependency calculations are not done or not giving proper result. Is there any way so that calculation script

  • Unable to mount partition

    I'm unable to get a disk partition to mount. The partition has/had 10.6 installed and I was probably doing something I shouldn't have while installing windows on a separate partition. Since then, I am unable to start-up from that mac drive. I had to