generate the next publication in multi folio app

Hi, how can I generate a publication next in my folio app iPad, if I ve published and notificated multi these new publication?

Use the same producer of Folio account (id title in DPS App Builder) to publish the folios as 'Public '. When you do this, the sheets will be available in your application. For any question of paid, you need to also create in-app purchases and use the same product as the folio id.

Tags: Digital Publishing Suite

Similar Questions

  • multi folio app

    I have a multi folio app that release issues each year. In addition, I would like to add a free issue - for all to download - what I add to iTunes Connect?

    All of the options that I see in the Apple no consumables in-app purchases should be set to a price - no free option?

    Free, folios, you don't need to do anything in iTunes Connect - in fact, you cannot create a product ID for a free item. Just use the producer Folio released folio as Public and free. You can also specify a product ID, but just make a to - there need not correspond to anything.

    In addition, you can specify a Date of Publication to determine where the folio appears in the library. For example, if you want it to be the last number, specify a date of 1990.

  • Several languages in multi-folio App - not possible?

    Hello

    We want to create a multi folio App with leaflets in both languages.

    Which is the right way to do it?

    Y at - it an option to have an application that gets the right language folio by detecting the language of the camera?

    THX!

    A way to do this would be to create different editions of the same folio for different languages and use of filters library.

  • My folio does not not in multi-Folio App

    My folio does not not in multi-Folio App, I did the app and download you ipa file, I see the app in my ipad but not the folio, my folio looks like published as free and public, u can help me?

    Make sure you only enter correct title id in the application Builder as the title id is application (specify the same Adobe ID allows you to create folios).

  • code or function to generate the next date of work for a given date

    Hello

    First lets see the struncture table and the data in the table.
    CREATE TABLE LT_CA_HOLIDAYS
    (
      HOLIDAY_DATE            DATE                  NOT NULL,
      IS_BANK_HOLIDAY         CHAR(1 BYTE)          NOT NULL,
      DISPLAY_NAME            VARCHAR2(35 BYTE)     NOT NULL
    )
    
    
    Insert into LT_CA_HOLIDAYS
       (HOLIDAY_DATE, IS_BANK_HOLIDAY, DISPLAY_NAME)
     Values
       (TO_DATE('12/25/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'Y', 'Christmas Day');
    Insert into LT_CA_HOLIDAYS
       (HOLIDAY_DATE, IS_BANK_HOLIDAY, DISPLAY_NAME)
     Values
       (TO_DATE('01/01/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'Y', 'New Years Day');
    Insert into LT_CA_HOLIDAYS
       (HOLIDAY_DATE, IS_BANK_HOLIDAY, DISPLAY_NAME)
     Values
       (TO_DATE('01/17/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'Y', 'Martin Luther King Jr');
    Insert into LT_CA_HOLIDAYS
       (HOLIDAY_DATE, IS_BANK_HOLIDAY, DISPLAY_NAME)
     Values
       (TO_DATE('02/21/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'Y', 'Washington s B-Day');
    Insert into LT_CA_HOLIDAYS
       (HOLIDAY_DATE, IS_BANK_HOLIDAY, DISPLAY_NAME)
     Values
       (TO_DATE('05/30/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'Y', 'Memorial');
    Insert into LT_CA_HOLIDAYS
       (HOLIDAY_DATE, IS_BANK_HOLIDAY, DISPLAY_NAME)
     Values
       (TO_DATE('07/04/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'Y', 'Independence Day');
    Insert into LT_CA_HOLIDAYS
       (HOLIDAY_DATE, IS_BANK_HOLIDAY, DISPLAY_NAME)
     Values
       (TO_DATE('09/05/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'Y', 'Labor Day');
    Insert into LT_CA_HOLIDAYS
       (HOLIDAY_DATE, IS_BANK_HOLIDAY, DISPLAY_NAME)
     Values
       (TO_DATE('10/10/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'Y', 'Columbus Day');
    Insert into LT_CA_HOLIDAYS
       (HOLIDAY_DATE, IS_BANK_HOLIDAY, DISPLAY_NAME)
     Values
       (TO_DATE('11/11/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'Y', 'Verterans Day');
    Insert into LT_CA_HOLIDAYS
       (HOLIDAY_DATE, IS_BANK_HOLIDAY, DISPLAY_NAME)
     Values
       (TO_DATE('11/24/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'Y', 'Thanksgiving Day');
    Insert into LT_CA_HOLIDAYS
       (HOLIDAY_DATE, IS_BANK_HOLIDAY, DISPLAY_NAME)
     Values
       (TO_DATE('12/25/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'Y', 'Christmas Day');
    Insert into LT_CA_HOLIDAYS
       (HOLIDAY_DATE, IS_BANK_HOLIDAY, DISPLAY_NAME)
     Values
       (TO_DATE('12/26/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'Y', 'Bank Observed Christmas');
    Insert into LT_CA_HOLIDAYS
       (HOLIDAY_DATE, IS_BANK_HOLIDAY, DISPLAY_NAME)
     Values
       (TO_DATE('01/01/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'Y', 'New Years Day');
    Insert into LT_CA_HOLIDAYS
       (HOLIDAY_DATE, IS_BANK_HOLIDAY, DISPLAY_NAME)
     Values
       (TO_DATE('01/02/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'Y', 'Bank Observed New Years Day');
    COMMIT;
    .

    The requirement goes something like this:


    SATURDAY and SUNDAY weekend days ARE considered holidays.

    The list of public holidays are in LT_CA_HOLIDAYS.

    We will give a date as p_processdate.we need to check if the p_processdate is a holiday or a business day,
    If p_processdate is a holiday, so we need to generate the next business day.
    If p_processdate is a day's work, we have to check if p_processdate + 1 is a business day, IF p_processdate + 1 is a holiday then
    We must generate the day following close p_processdate + 1.

    Concerning

    Hi Bro I edited by forum...

    sending correct code

    DECLARE
    
    day_param date:=TO_DATE('07/01/2011','MM/DD/YYYY');
    n_yes number;
    BEGIN
         LOOP
              day_param:=day_param+1;
              select count(*) into n_yes from LT_CA_HOLIDAYS WHERE TO_CHAR(HOLIDAY_DATE,'MM/DD/YYYY')=TO_CHAR(day_param ,'MM/DD/YYYY') ANd IS_BANK_HOLIDAY='Y' ;
              IF(to_char (day_param,'DY') NOT IN ('SAT','SUN')) AND n_yes=0 THEN
                   EXIT;
              END IF;
    
         END LOOP;
         DBMS_output.put_line('output'||day_param);
    END;
    

    output05-JUL-11

  • Order of the Folios in multi-folio App

    Is it possible to organize folios in a multi-folio (iPad) app other than the order of publication?

    Thank you

    Not really. You could do a custom storefront and then perform your own ranking, but this would require a bit of dev work.

    Neil

  • DSP generator for android multi folio app needed?

    Hello, I am trying to create an app for android tablets. I need only a single edition of the DSP, but read that the DSB generator offers multi single folio apps for androids have I need a DSP Professional license?

    Thanks for any help.

    Currently, creating Android applications is available with professionals of DPS and business licenses. With simple editing of DPS, you can create an iPad only app.

  • How can I publish my next edition of my multi-folio app?

    I was wondering if someone could help me.

    I created my second edition to my multi-folio application in Adobe Folio Producer. I wonder how you created another (like a magazine). I have to go through all the steps that I did when I created my first app in App Builder DPS?

    Also how to you send on iTunesConnect? If this is the same app just the next number (like a magazine)? I don't see anything that indicates the next number, just add Version but I don't know this isn't the same thing.

    Any help would be greatly appreciated.

    Kind regards

    Michelle

    When your folio is ready, publish it as free and Public using your account of the application. That's all. You don't need to do anything in iTunes Connect.

  • Change the type of simple Multi Folio edition App

    Is there a simple way to move from an editing application unique integrated Multi Folio without having to start over from scratch and new application to Apple for approval?

    Unfortunately there is no other way, you must build a new application as an application Multi question in DPS App Builder, publish your folio as 'Public' of the title id and submit to Apple for approval.

  • Accidents of the content viewer, will be my multi-folio app crash as well?

    I am setting up numbers before our multi-folio application will live in a few weeks (my first foray into Adobe DPS). Certain sections of my folios are very large in size due to the large PNG status slide shows (about 25 MB for each article) object. These items are now causing Adobe Content Viewer (ACV) to plant, since the app has been updated to accommodate the v26 versions. I tried to create identical sheets with v25, v26 tools and they both crash when reading the articles large.

    ACV is not crushed when reading the exact same folios/articles before the app updated to accommodate the v26 tools. I test on an iPad 1. I'll be able to test on an iPad 2 and iPad 3 in the coming days. The same type of folios/items do not stroke cause crashing on android before or after the update.

    My question is... does ACV crashing average that my app real multi-folio is guaranteed to hang when it goes live in a couple of weeks? Or is this a bug in LCA that didn't exist in my app real multi-folio?

    Thank you.

    LCA and the custom Viewer are the same. If you are having problems with the STROKE you will have the same problems with your custom application. This isn't a bug in the software, this is the app to run out of memory due to the complexity of your pages. iPads are not as powerful as desktop computers. If you design with slideshows full PNG articles pages with several States you wind upward with problems of memory. You need to rethink your page design to simplify the number of assets that you have.

    Neil

  • Account Pro DPS and a multi-folio app distribution + analytical

    Here's the thing again.

    I talked to my client and he explained how complex it is to follow each (out of 30) who consults a folio.

    So now, what he would be fundamentally happy just to know the overall time of how long a folio was seen, and also to see what items have been read the most and for how long.

    I think, analytical can provide these data with no problems, am I right? The question is, it is noticeable at basic analytics or I would need SiteCatalyst for this?

    As I understand it, get a Pro account saw an opportunity to create a single application multi-folio, which could contain many sheets inside. I could delete and add them without having to wait as some approvals of Apple?

    But the main question is: How can I distribute this application multi-folio to specific people? Can it be sent via a link or something? Because this app is not for public use.

    You need a company for private distribution account.

    You could fake it by using the content viewer Adobe and putting an overlay of web on each page with a link to a web page with google analytic. Which would give you a very basic idea of what is being looked at assuming that each user is online. In addition, you will need to use enterprise.

  • Multi-Folio App... Apple check?

    Hi all

    I've developed SE apps for some time now with great success. My customer wants an application now free multi-Folio, my question is, apple checks just the container of the application or they also download the folio and check as well? Thank you.

    First, you need a pro or business for this account.

    In regards to Apple, they will verify that the application works correctly and it will check

    to ensure that you have the content available. They therefore there standards

    will be a cheque, but it won't be as strict as it is for simple editing

    with regard to required interactivity.

  • Multi-Folio app with landscape and portrait orientation

    Can we create an application multi-folio containing folios of orientation portrait and landscape?

    A multi-folio application can have any mix of portrait, landscape or double direction folios in it. The only requirement is that, for a specific folio, all items that he share the same orientation setting.

    Neil

  • I have a single folio paid app and I want to migrate to a mult folio app with each folio available for purchase. How can I migrate those who bought my application single-folio so that they are able to keep the folio they paid for in the new folio multi ap

    I have a single folio paid app and I want to migrate to an app of folio to multi with each folio available for purchase. How can I migrate those who bought my application single-folio so that they are able to keep the folio they paid for in the new folio multi application?

    I'm sure that the only way to proceed is to make a free portfolio for all the world in your new application of muli-folio. There is no way to match the records of the purchase of an application with a new application that contains a folio.

    Apple wants to see at least one element of the library is available free of charge, in any case if the application has a utility when downloaded from the store anyway.

    Neil

  • How can I activate the push notifications once my multi-folio app is in the app store?

    I submit to new binary/app?

    Yes, you need to build and present a new binary that has push notifications enabled.

Maybe you are looking for

  • NB550D - creating an Image and recovery

    My laptop is a Toshiba NB550D according to disk management the following is my start-up: Recovery partition Active 1.46 GB7.98 gb main partition224.23 initialization, page file, crash dump, primary assets If I use a disk imaging program like Macrium

  • Brightness control question

    Hello. I use windows pro 8.1 on my hp pavilion dv6 7040tx replacement of windows 7 Home premium. When win 7, it was good except the thing that my system was a little slow to start and stop on time. But as I installed windows 8.1, my KEYS in ORDER of

  • Ghost of Smartphones from blackBerry email address...

    If I go to compose the e-mail message and start typing n I get a choice of email address that appears as no_reply@***.com and it is not in my contacts... where can I find it and delete it?  Thank you!!

  • error code 202

    I meet a 202 error code downloading the app from creative cloud... What does this mean and how to solve?

  • When I download an upgrade to Lightroom (e.g. LR 4 to 5 LR), can I delete the old application (LR4) from my hard drive?

    I upgraded LR LR 4 to 5 in the past and then update to LR 5.5 to 5.7. My SSD drive is quite full and there is enough significant LR 4 files such as Lightroom_4_LS11_win_4_4.  Can it be deleted from my hard drive or upgrading to LR 5 somehow relies on