Product ID for second issue of multi viewer app

hi,
I've in this forum already found very usefull info about publishing the second issue of a free multi viewer app but still can't figure out if we have to use the same Product ID  for each issue, or do we need to create a different Product ID for each issue ?
I've put two examples below, suppose one of them has to right. Or not ??
Is this the way to handle multiple issues (option 1):
product ID issue 1 = Product ID issue 2 = com.magnusmedia.magname
Or is this the right way (option 2):
product ID issue 1 = com.magnusmedia.magname.01
product ID issue 2 = com.magnusmedia.magname.02
thanx in adavance
Herman
Allright, was in a hurry and tested it out myself.
Option 2 is working for me, hope it's right to handle it that way.
With option 1 the app crashes (dark gray screen, no folio opens, library- en scrolling buttons are available but)

Short answer: Yes, use a different Product ID for each folio (or for each set of folio renditions).
Longer answer: It's confusing that there are three different types of Apple Product IDs:
(1) the app Product ID, which you can ignore
(2) subscription duration Product IDs for a paid app or a single Product ID for a free subscription app
(3) a Product ID for each retail folio
When you're setting up a free subscription app, you don't need to use iTunes to create a Product ID for individual folios, because your folios are free. You just need to set up a free subscription Product ID in iTunes Connect and specify that Product ID in the DPS App Builder. On the Adobe side, you use a different Product ID for different folios you publish, such as com.publisher.publication.2012October and com.publisher.publication.2012November.  If you're creating renditions, you use the same Product ID for the different renditions and different Product IDs for different sets of renditions.

Similar Messages

  • Opening a page of a Folio in a Multi-viewer app is possible by URL Scheme

    I set URL Scheme on Multi-App by Viewer Builder.
    It launches well by tapping the URL Scheme button on Web page.
    Is it possible to open a page of a folio in a Multi-viewer app is possible by URL Scheme?
    Shimoawazu

    if you can find your app's actual URLscheme in the info.plist file inside the viewer, you can deep link into your articles (you also need the internal names of your folio and the articles), I find out here:
    http://forums.adobe.com/thread/1009059
    —Johannes

  • Video pause for second issue

    Hello guys,
    do you have any clue why Premiere Pro CS3 would suddenly pause the playback for 2 seconds and it will continue to play the videos in the timeline?
    This issue only happens when a title is put on layer above the timeline. Also happens when I added the end credits.
    This pausing behaviour does not happen when I only render or playback videos only without titles in the Timeline.

    Please provide
    these details to help us help you.
    Cheers
    Eddie
    PremiereProPedia   (
    RSS feed)
    - Over 300 frequently answered questions
    - Over 250 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • Stuck at error with How To Example for Data Binding in Multi-Form App

    I have succesfully completed the section "Serial Forms Use Case" by Ralph Gordon's in "Managing ADF JClient Data Binding in a Multi-Fom Application" How To Document. Everything worked as explained.
    Then I tried doing the second section "Concurrent Form Use Case". I got stuck there.
    Im sure it's just something silly, but I would love to complete this section.
    I get the follwing error when I click on the open details button in the master form:
    java.lang.ClassCastException: portaluniverse.debitorder.model.dao.ClientViewRowImpl
         at portaluniverse.debitorder.view.debitorder.debitform.openButton_actionPerformed(debitform.java:545)
         at portaluniverse.debitorder.view.debitorder.debitform.access$6000171(debitform.java:47)
         at portaluniverse.debitorder.view.debitorder.debitform$2.actionPerformed(debitform.java:144)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:458)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    The error appears on this line:
    RowSetIterator detailAccessor = (RowSetIterator)row.getAttribute("ClientView");
    The above line of code was taken out of the following method:
    // object used in the following action listener
    oracle.jbo.Key masterRowKey ;
    // specify the action listener
    private void openButton_actionPerformed(ActionEvent e) {
    ClientForm df = new ClientForm();
    // note that the setBindingContainer() method will be defined in DetailForm.java
    df.setBindingContainer(createDetailBinding());
    // get master current row, get detail accessor iterator, then bind detail form iterator binding to
    // detail accessor iterator
    DCIteratorBinding iterBinding = getPanelBinding().findIteratorBinding("DebitOrderViewIterator");
    Row row = iterBinding.getCurrentRow();
    if (masterRowKey != null && row.getKey().equals(masterRowKey)) {
    //create a new RowSet Iterator for the same master to avoid auto-synchronization of currency
    RowSetIterator secondaryRSI = (RowSetIterator)iterBinding.getViewObject().createRowSetIterator(null);
    df.getPanelBinding().findIteratorBinding("ClientViewIterator").bindRowSetIterator(secondaryRSI, false);
    } else {
    RowSetIterator detailAccessor = (RowSetIterator)row.getAttribute("ClientView");
    df.getPanelBinding().findIteratorBinding("ClientViewIterator").bindRowSetIterator(detailAccessor, false);
    df.setVisible(true);
    My Master Form is called "DebitForm.java" and my Details Form is called "ClientForm.java".
    I appreciate any help.
    Thank-you in advance.
    Leana

    Leana,
    I'll point Ralph to this question. I can't see a difference between your code and Ralph's. Which JDeveloper version do you use use?
    Frank

  • Ipad tab bar/multi views app

    i want to develop an ipad app with a main screen contains a tab bar control in the bottom, this tab contains 5 sections each one open a new view
    sections are (home,P1,P2,V1,V2,info)
    home -> return to the main screen
    P1->open a pdf file with (back-next) feature
    p2->open images slide-show with (back-next) feature
    V1->open a video from youtube
    V2->open a video from resources folder(saved with the app)
    how can i implement these features ?
    which type of app should i use? (window based OR view based)?why?
    should i add a new view controller for each button in the tab bar?
    how can i open a pdf file?any sample code available ?
    ( i found a pdf sample code but it opens just one page)
    any slide show sample code ?
    how can i call a view controller based on the user selection?
    i highly appreciate any help

    I had trouble getting an iAd to work when using IB as well. I ended up adding it programmatically like this:
    self.adView = [[ADBannerView alloc] initWithFrame:CGRectMake(0,412,320,50)];
    adView.currentContentSizeIdentifier = ADBannerContentSizeIdentifier320x50;
    adView.delegate = self;
    [self.view addSubview:adView];
    in the - (void)viewDidLoad of my view controller.
    Hope that helps.
    -Phil

  • Product ID for Free Folios

    We have a free app with a free subscription all set up and working properly, with one issue published so far. We are ready to publish the second issue. The app itself has a Product ID, and our Free Subscription in-app purchase as a different Product ID. I used the same Product ID for the first folio as the Free Subscription Product ID.
    But today I read at http://adobe.ly/SsvLPN to "Note: Use different Product IDs for each separate folio in your app."
    So, should I use a different Product ID from now on for each Folio we publish?

    Short answer: Yes, use a different Product ID for each folio (or for each set of folio renditions).
    Longer answer: It's confusing that there are three different types of Apple Product IDs:
    (1) the app Product ID, which you can ignore
    (2) subscription duration Product IDs for a paid app or a single Product ID for a free subscription app
    (3) a Product ID for each retail folio
    When you're setting up a free subscription app, you don't need to use iTunes to create a Product ID for individual folios, because your folios are free. You just need to set up a free subscription Product ID in iTunes Connect and specify that Product ID in the DPS App Builder. On the Adobe side, you use a different Product ID for different folios you publish, such as com.publisher.publication.2012October and com.publisher.publication.2012November.  If you're creating renditions, you use the same Product ID for the different renditions and different Product IDs for different sets of renditions.

  • Updating viewer app to include entitlement

    We currently have a multi issue app working nicely in the app store.  The learning curve being we were prepared to give away some content while we fine tune the how we work and how DPS works.  We have a large subscription base and are in the motions of incorporating an entitlement call to allow current subscribers free access leaving the old freebie isses available for free.   I am in the viewer builder and am trying to update our app for new tool sets, bookmarks etc with the main aim to incorporate access and entitlement.
    The problem is when I try and start a new update to the current version I assume I should be changing the viewer type from the current "multi-issue" to "multi-issue with entitlement and access and entitlement" but this option is greyed out unless I start a brand new build.
    This is not something want to do as we have shared the iTunes URL and the current issues (about 12) will need to be re-uploaded again.  (of which I dont have all the files)
      SO......how do I update my current multi viewer app. to one that includes entitlement?

    You can't use Edit to change the viewer type. You need to use New and create a new viewer (then delete the old instance to keep things tidy). When you do this, you don't create a different app. If you use the same credentials when you build the viewer, it will act as an update to the existing app.

  • How do you publish a second issue in a multi folio DPS app?

    For a free folio is it really as easy as the following?
    1.) Go to DigitalPublishing.acrobat.com and click on folio Producer
    2.) Click on the Folio and click the Publish Button
    3.) Select the options as "Public" & "Free"
    4.) Enter The Product ID and Hit Publish
    Do you sign in with the new PRODUCT ID that you've created for the second issue?
    How far in advance can you schedule the publishing of an app?
    Is there no waiting period after submitting the app to APPLE?

    Yes, it's that simple for free apps. Just publish it as public and free—and use a DIFFERENT product ID such as com.company.app.issue—and it will be available.

  • Goods Issue Production Order for Confirmed Qty Component

    Dear PP Gurus,
    Here is my case :
    Stock Qty for Sparepart A : 100 un
    First production will require 80 un A, and availability check confirmed. Second Production Order will require 70 un A, where 20 un confirmed and 50 un is not confirmed on availability check. When i try to goods issue the second production order, it is allowed to consumed all 70 un because unrestricted stock is 100. How can i forbid goods issue in second production order only for 20 un A which is confirmed before.
    Thanks,
    Arman Lie

    Dear
    First of all what ever qty u release during production it well get copied in confirmation so as u said first production order is 80 so the balance qty is 20 out of 100 units so for 20 production order is confirmed so u need another production order for 70 in that case u have deflicit stock of 50 so for that reason ur production order not get confirmed for 50 in order to confirm this order u need t make a stock of 50.
    1. check in the OPK4 enable the actual qty
    2.check t-code OPJK Checking Rule and check when material availability when saving the order
    and please check in the material master what availability check u have maintained in mrp
    [http://help.sap.com/erp2005_ehp_04/helpdata/EN/cf/70124adf2d11d1b55e0000e82de178/frameset.htm]
    With Regards
    Pushpalas

  • How to restrict the GR for Production Order when Goods Issue is not done

    Hi Gurus
    How to restrict the GR for Production Order when all the required components for production order are not issued with all required quantity. Even for partial issue system should not allow GR with 101. The user status with RMWA, RMWF & CGFB is not working.
    Pls suggest best solution.
    Abhijit.

    Hi,
    You can club together the GI nad GR at the time of confirmation..
    I.e Backflush for the components and auto GR for the Product.
    So that you can stream line the Process.
    The best Option would be to use the User Exit:
    Enhancement - MBCF0002
    Functional Module - EXIT_SAPMM07M_001
    Include - ZXMBCU02
    Refer below link for further details..
    How to stop the goods receipt before issueing the goods for production orde
    Regards,
    Siva

  • Production version for different periode

    Hello Expert,
    I have a requirement like below please suggest some solution
    One of my finished material having two alternative BOM  say 1 and 2 and I have a requirement in MD61 for 500 pcs in current month and another requirmnet in next month for 1000 pcs
    Now the when we run MRP I want system should take alternative bom 1 for current month requirement(500 pcs) and system need to take alternative bom 2 for next month requirement(1000 pcs)
    Any body have any idea about this solution with less master data maintenance for user
    Thanks in Advance
    Abu fathima

    Hi,
           You can resolve your issue by two ways , either using lot size procedure or using validity period.
        Case I:- Using Lot size
           You can use lot size procedure in production version in material master MRP 4 view. Kindly note that selection method should be
    3
    Selection only by production version
    1.  Lot size  0 -500 lot quantity select first BOM in production version
    2.  Lot size 501 - 9999 or 501 - 1000 quantity select second alternative BOM
    This will be used for every time production process.
         Case II:- Using Validity period
    If you are using this scenario for specific period then you can use this option of validity. Validity can be applied at different level like BOM validity or production version validity date in your case.
    a)If you have use validity start date of second BOM from next month then it will not explode in current month for MRP to achieve this use selection method in MRP4 view in material master as follows
    1
    Selection by explosion date
    b) You can also restrict selection of BOM for specific period using production version validity
    Start validity of second production version from second month to avoid selection in current month MRP.
    To achieve this use selection method in MRP4 view in material master as follows
    3
    Selection only by production version
    Hope you will get brief idea of selection correct BOM in MRP.
    Apart from this there are various different method depends on business scenarios you can adopt your best. For more details of other method see following
    Correct BOM selection in multiple BOMS for same FG Product for the same month
    Hope above explanation will help you to resolve your issue.
    Regards,
    Shyam

  • Multi Folio App first Issue

    Hello
    I'm struggling to display the first issue in my multi folio app.
    I made a multi folio app in DPS builder. For test purposes I downloaded the ipa file.
    All good. The App apears on my ipad. and worked fine. The Libryry is empty by now.
    As a second step I wanted to load it with my first issue.
    I created a new folio in InDesign and published it in the Folio Producer/Organiser.
    Using the same Adobe ID as I have used for the multi issue app in the DPS builder.
    But the Library is still empty.
    Any sugestions, where my fault is?

    - Yes the folio is published as public
    - Yes the Adobe ID is the same. Even for loginto DPS Builder
    - About the product ID I'm unsure. In the folio manager I typed as product ID the same as the app ID is, in the DPS Builder
    Actually it was not clear to me where the product ID has to come from.

  • Creating the second issue of an iPad magazine

    So the first issue is approved by Apple and ready to go on iTunes...
    When I come to the second issue, I am a little unsure of the Viewer Builder process - can anyone help?
    If my first issue is loaded up as:
    Viewer name: Design Monthly
    Viewer type: Multi-issue
    Title (Library view): Design Monthly Magazine
    How do I specify the second issue?
    I assume it is:
    Viewer name: Design Monthly
    Viewer type: Built-in Single Issue
    Is this correct?
    Also, how does enabling the app for Newstand change things (if at all)? Is that specified in the first issue as 'Multi-issue with iTunes subscription'?

    A little bit of extra information:
    If you have created a multi-folio app, until now with only free folio's, you should do the following:
    Create a IAP (in application purchase) in itunes connect . (Add screenshots of a couple of you magazine pages to the IAP)
    Create a folio that has the content and publish it is 'Public/Retail'. Make sure the productId matches the productID in your IAP
    Create a new Viewer binary (the marketing version number will increase) - the configuration of the viewer is _exactly_ the same as your current viewer
    Test the viewer on your iPad - including the purchasing proces with an iTunesConnect Test User
    Upload the viewer to iTunes Connect.
    Submit the viewer for Approval TOGETHER with your first In Application Purchase.
    (Apple requires you to submit a 'new' binary once you start to use IAPs). At the moment to use Newsstand in combination with DPS, you can only use paid subscriptions, which als requires you to set up at least on paid issue and the corresponding subscription IAPs
    if you have not yet submitted a viewer to iTunes Connect and want to do retail (IAP) content, you should do the following:
    Create a folio with content that represents your magazine. Publish the folio as 'Public/Free'
    Create an IAP (Add screenshots of a couple of your magazine pages to the IAP)
    Create a folio that has the content and publish it is 'Public/Retail'. Make sure the productId matches the productID in your IAP
    Test the viewer on your iPad - including the purchasing proces with an iTunesConnect Test User
    Upload the viewer to iTunes Connect
    Submit the viewer for Approval TOGETHER with your first In Application Purchase.
    (Non official information) Apple will closely look at the content of your Free folio to approve the app. They will use the screenshots to approve the IAP.
    If you are planning to publish frequently (once a week, once a day) and IAP approval time is critical, then work with your local Apple representative. Publishers have been able to get IAPs preapproved for a longer time period
    More information on testing can be found in the 'iPad publishing companion guide' in the Digital Publishing Portal and in the iTunes Connect Developer Guide (downloadable from iTunes Connect)
    With kind regards,
    Klaasjan Tukker

  • Content Viewer crashes, will my multi-folio app crash as well?

    I am in the process of creating back-issues before our multi-folio app goes live in a couple weeks (my first foray into Adobe DPS). Some articles in my folios are very large in size because of large PNG object state slideshows (about 25 MBs for each article). These articles are now causing Adobe Content Viewer (ACV) to crash, ever since the app was updated to accommodate the v26 versions. I have tried creating identical folios with both v25 and v26 tools, and they both crash when reading the large articles.
    ACV did not crash when reading the exact same folios/articles before the app updated to accommodate the v26 tools. I'm testing on an iPad 1. I will be able to test on an iPad 2 and iPad 3 in a few days. The same type of folios/articles do not cause ACV to crash on android before or after update.
    My question is... does ACV crashing mean my real multi-folio app is guaranteed to crash when it goes live in a few weeks? Or is this a bug in ACV that will not exist in my real multi-folio app?
    Thanks.

    ACV and the custom viewer are the same. If you are seeing problems with ACV you will have the same problems with your custom app. This isn't a bug in the app, it's the app running out of memory because of the complexity of your pages. iPads aren't as powerful as desktops. If you are designing articles with full-page PNG slideshows with multiple states you will wind up with low memory problems. You should rethink your page design to simplify the number of large assets you have.
    Neil

  • Multi Folio App for Educative Institution

    Hello,
    We are an educative institution and have an internal magazine which we view in iPad with Adobe Content Viewer.
    Now we want to publish to App store and we already have the Apple Dev Account, and all Certificates and Assets ready too.
    My question is: ¿What is the simplest, and, well, cheapest way to publish our multi folio app?
    I see that with a Creative Cloud Account you get the DPS but only single edition. Do we have to purchase the DPS Pro Edition in order to publish Multi Folio App or is there another way?
    We also have the CS5.5 license for education. Are there any special offers for Educative Intitutions?
    Thank you so much
    Eduardo Flores

    You can purchase DPS Professional Account either Monthly or Annual to create Multi Issue Apps. I do not think that there are any offers for DPS Pro edition.

Maybe you are looking for