Updated App with different DPS license

Can someone advise me on the following scenario. I have a multi App edition, version 1.0 live in the Apple store using the DPS account [email protected]

I then upgraded the application 2.0 on the Apple store, but the new version uses a different account DPS, [email protected]

What happens in this scenario? Especially for users of the application who have purchased a subscription to the title of the version 1.0 (ie the other DPS account).

Note: The 2 DPS accounts above are 2 different licenses DPS.

You must first build the new application for a new account using the same certificates and using the same bundle id and include the same product id subscription in App Builder. Then you must republish the folios of account new account DPS application. Publish these older folios with the same product id. In this way, when you create and update using the new DPS account, all your subscribers would have access to download the previously titled folios.

Tags: Digital Publishing Suite

Similar Questions

  • new creative Cloud with different owner license

    Hello. We're going to buy a new license for creative cloud, but with the other owner (same company, but in another State - with different address)-c' is possible?

    Team license links that can help

    - https://creative.adobe.com/plans?plan=team team plans

    -http://www.adobe.com/creativecloud/buy/business.html

    -https://helpx.adobe.com/contact/creative-cloud-teams.html using the team

    -manage your account http://forums.adobe.com/thread/1460939?tstart=0 team

  • Updated app with account different creative cloud

    This question is about an existing single-folio application that is already published and is now updated. Unfortunately, the app was transferred to the enforcement of a cloud creative designer, we have access to more, so we need to use our 'new' creative cloud to load in the application builder, then in itunes. is this possible or to publish a new application?

    the itunes account is the same, of course.

    As long as you use the same certificate and iTunes account, you can rebuild the application with another CC account and submit it as an update of an existing application.

  • Update records with different IDS

    Hello

    I am looking for the possibility to update some records using the new id with the column with a different id values

    example of

    the table contains some these documents:
    id    gross      net
    
    ========================
    7     0,1     0,0507749
    8     0,2     0,1015499
    9     0,5     0,2538748
    10     0,83     0,4214
    11     0,85     0,4315873
    12     1,99     1,010422
    13     2,44     1,2389094
    14     0     0
    15     2,59     1,3150719
    16     2,99     1,5181718
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    and I would like to insert the same gross and net of IDS 7-16 column values
    column with the ID of 40 to 49 in the same order.
    This is why I would like to get the result that I describe below:
    id    gross      net
    
    ========================
    7     0,1     0,0507749
    8     0,2     0,1015499
    9     0,5     0,2538748
    10     0,83     0,4214
    11     0,85     0,4315873
    12     1,99     1,010422
    13     2,44     1,2389094
    14     0     0
    15     2,59     1,3150719
    16     2,99     1,5181718
    40    0,1     0,0507749
    41    0,2     0,1015499
    42    0,5     0,2538748
    43    0,83     0,4214
    44    0,85     0,4315873
    45    1,99     1,010422
    46    2,44     1,2389094
    47    0     0
    48    2,59     1,3150719
    49    2,99     1,5181718
    Thanks in advance
    update  y1
    set (gross, net)=(select gross, net from  y2 where y2.id=y1.id-33)
    where y1.id between 40 and 49;
    

    You must replace with your real tablename.
    (not tested).

  • query users to mulitple update block with different values

    Hello

    I need to write a SQL script to update the information of multiple users (400) in the database.

    Here's the query I use to update a single user:

    setting a day of usr set usr_login = "ROBERTAA_OLDx", USR_EMAIL = 'robertaa@abadrer_dellllx.com' where usr_login = 'ROBERTA ';

    usr_login and usr_email must be different for each user.

    What is the best way to achieve this?

    Please suggest

    Thank you

    OK, I see.  Here is my version of update:

    DROP TABLE usr;
    
    CREATE TABLE usr
    (
     usr_login VARCHAR2(20)
    ,usr_email VARCHAR2(50)
    );
    
    INSERT INTO usr VALUES ('PENUMALH', '[email protected]');
    INSERT INTO usr VALUES ('IAMTEAM', '[email protected]');
    INSERT INTO usr VALUES ('TESTSOA2', '[email protected]');
    INSERT INTO usr VALUES ('TESTADF1', '[email protected]');
    INSERT INTO usr VALUES ('IAMTESTIR2', '[email protected]');
    INSERT INTO usr VALUES ('IAMPWDTT', '[email protected]');
    INSERT INTO usr VALUES ('IAMPWDTI', '[email protected]');
    
    COMMIT;
    
    SET LINESIZE 80 PAGESIZE 20
    
    COLUMN usr_login FORMAT A20
    COLUMN usr_email FORMAT A50
    
    SELECT *
      FROM usr;
    
    UPDATE usr t1
       SET (t1.usr_login, t1.usr_email)
           =
           (SELECT t2.usr_login || 'OLD' || TO_CHAR(ROWNUM) AS usr_login
                  ,SUBSTR(t2.usr_email, 1, INSTR(t2.usr_email, '.', -1, 1) - 1)
                   || '_delxxxxasdf' ||
                   SUBSTR(t2.usr_email, INSTR(t2.usr_email, '.', -1, 1)) AS usr_email
              FROM usr t2
             WHERE t2.usr_login = t1.usr_login);
    
    COMMIT;
    
    SELECT *
      FROM usr;
    

    And the output:

    Table dropped.
    Elapsed: 00:00:00.05
    Sequence dropped.
    Elapsed: 00:00:00.03
    Table created.
    Elapsed: 00:00:00.03
    Sequence created.
    Elapsed: 00:00:00.03
    1 row created.
    Elapsed: 00:00:00.13
    1 row created.
    Elapsed: 00:00:00.04
    1 row created.
    Elapsed: 00:00:00.03
    1 row created.
    Elapsed: 00:00:00.03
    1 row created.
    Elapsed: 00:00:00.03
    1 row created.
    Elapsed: 00:00:00.03
    1 row created.
    Elapsed: 00:00:00.03
    Commit complete.
    Elapsed: 00:00:00.02
    
    USR_LOGIN            USR_EMAIL
    -------------------- --------------------------------------------------
    PENUMALH             [email protected]
    IAMTEAM              [email protected]
    TESTSOA2             [email protected]
    TESTADF1             [email protected]
    IAMTESTIR2           [email protected]
    IAMPWDTT             [email protected]
    IAMPWDTI             [email protected]                                
    
    7 rows selected.
    Elapsed: 00:00:00.03
    7 rows updated.
    Elapsed: 00:00:00.04
    Commit complete.
    Elapsed: 00:00:00.02
    
    USR_LOGIN            USR_EMAIL
    -------------------- --------------------------------------------------
    PENUMALHOLD1         Hari.Penumalli@abc_delxxxxasdf.com
    IAMTEAMOLD1          iam.team@xyz_delxxxxasdf.com
    TESTSOA2OLD1         test.soa2@gio_delxxxxasdf.com
    TESTADF1OLD1         test.adf1@yu_delxxxxasdf.com
    IAMTESTIR2OLD1       iam.testir@ou_delxxxxasdf.net
    IAMPWDTTOLD1         iam.pwdtt@iuet_delxxxxasdf.in
    IAMPWDTIOLD1         iam.pwdt@oiyoi_delxxxxasdf.com                    
    
    7 rows selected.
    Elapsed: 00:00:00.03
    
  • Remote Server Update Manager with different http port

    To put it simply, I think I might have some problems, but I installed the update on a remote server Manager (and not on the VC server) and since he also manages the WSUS updates, I couldn't use port 80 for the http port so I changed it to 81.  I have problems with the VC connection to Manager Update server.  I can't download the plugin to activate it.  Also, I noticed that there is a full installation of the 2.5u3 on our server of VC, which also included the Update Manager.  Should I uninstall that before the new one would connect upward?

    • Kyle

    I'm Tryin '

    I found something good again

    http://KB.VMware.com/kb/1006169

  • Update user with Org units using NSAPI

    We have a requirement where we need to update users with different organizational units with an external system. The integration guide indicates an NSAPI that may be used for this operation, no one create/update. It just says that we must use the XML from a details person Get API and use it as a query XML.

    The problem that we face is to find where to place the new Org Unit details in the request XML. If someone knows about this detail.

    Is this still the correct API for the fulfilment of the condition or we're looking at the wrong thing here

    That's why the requirements a bit clearer.

    If you are to be drawn from the external system rather that push to the PSAB, then I think that using the above mentioned SDK might be better suited since it is for the most part it that it was designed for, however, is probably a bit more complex to implement than the REST API.

    If you're always going the way of the use of the REST API, based on what I've seen and read that this API does not account of associatedOrganizationalUnits , which is where you update the members of the ORGANIZATIONAL unit, I can't see another way for you to do so through the current REST API.

    A third option is to create a service within the CPSC updates a user using the tasks Directory included in the plan, this service can then be consumed using the API of requisition, the downside of this is that there is a demand generated for each update.

  • Apps for different clients with one license of creative cloud

    Can I publish apps to different customers with a license only edition on creative cloud?

    Yes, but they are all should have their own Apple Developer account.

    Bob

  • Hello. I started with the DPS. Is it possible to publish a magazine for a limited specific target group? For example, in a Department of a large company? Or for the heads of the different services? If so, how should I do? Thank you for your help.

    Hello.

    I started with the DPS. Is it possible to publish a magazine for a limited specific target group? For example, in a Department of a large company?

    Or for the heads of the different services? If so, how should I do? Thank you for your help.

    The short answer is Yes.

    Click on the request of consultation in link Digital Publishing Suite help | DPS pricing options to receive a quote for your project of the DPS license.

  • I had problems with e-mail and reset my Apple ID and password.  I can log into my account using the new ID but cannot update apps on my iPad.  The ID has not changed on the iPad.  How can I change my iPad ID to reflect the changes made to my account?

    I recently changed my email ID of iPad.  Change shows when I go online from Apple, but I can't update apps on my Mini, because the ID is still the old.  How change/modify my ID on my Mini?  Help!

    As long as you have changed e-mail address * location ID and the id not create a new ID - settings > iTunes & App Store > Apple ID (tap the ID that shows) > Sign Out. Then log in with the ID changed.

    What to do when you have changed your Apple ID email address or password - Apple support

  • How can I Albums in the Photo App with images taken at different times.

    How can I Albums in the Photo App with images taken at different times.

    I had books in Aperture and iPhoto which have been labeled 'Family', 'Friends', etc., and I would like to move the images in the album, and there no matter when it was taken.

    Thank you

    Brian

    In the same way. Make an Album and drag the images to him. Key word or images and the use of the smart Albums.

  • How can I download Adobe Creative Suite on a different computer with my current license?

    How can I download Adobe Creative Suite on a different computer with my current license?

    Download and Installation Help-

    https://helpx.Adobe.com/download-install.html

    CS3 - http://helpx.adobe.com/creative-suite/kb/cs3-product-downloads.html

    CS4 - http://helpx.adobe.com/creative-suite/kb/cs4-product-downloads.html

    CS5 - http://helpx.adobe.com/creative-suite/kb/cs5-product-downloads.html

    CS5.5 - http://helpx.adobe.com/creative-suite/kb/cs5-5-product-downloads.html

    CS6 - http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html

    You can also download the demo version of the software through the page linked below and then use your current serial number to activate it.

    Don't forget to follow the steps described in the Note: very important Instructions in the section on the pages of this site download and have cookies turned on in your browser, otherwise the download will not work correctly.

    CS3 and CS4: http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here.html

    CS5: http://prodesigntools.com/all-adobe-cs5-direct-download-links.html

    CS5.5: http://prodesigntools.com/adobe-cs5-5-direct-download-links.html

    CS6: http://prodesigntools.com/adobe-cs6-direct-download-links.html

  • Licenses that merge with different activation time

    Hello

    I want to merge two different activation time license. I found that there is a solution for this http://kb.vmware.com/selfservice/microsites/search.do?language=en_US & cmd = displayKC & externalId = 2006973

    But some question appears in this operation:

    1 time activation may differ by more than 30 days (a license has been purchased and activated in September and the other was purchased and active in June) type of licenses will be the same example - VMware vSphere Standard for 1 CPU with 1 year of support in version 5.5, how support for this looks?

    2. what type of license do need me for server with 2 processors with 8 cores and 192 GB of RAM, this license fits my needs? Is there a single license covering such a feature?

    On the HP site, I found only licnses for 1 CPU http://h30094.www3.hp.com/searchresults.aspx?store_id=11 & search_id = 67 & dept_id = 1328

    3. should I VMware vSphere Standard at least to connect to vCenter VMware?

    THX in advance for any replay :-)

    From vSphere 5.5 all basic and memory restrictions have been removed, and licenses are simply based on the number of processors physical Sockets (see http://kb.vmware.com/kb/2064117).

    What you must ensure is that the license key you want to assign has at least the capacity of the CPU. You can merge the license keys for the same version/edition even with different dates of SnS. However, this will not change SnS and end dates will always be displayed ion the MyVMware portal.

    vCenter Server is optional and licensed separately and is necessary if you want to manage a cluster host, or use additional features (for example, the cloning, live migration,...)

    André

  • updates fail with apps, cloud

    Updates: Problems with updates: cloud creative apps. updates run at 100%, then an error message comes back and means; update failed.

    What should I do when the updates are back as having failed after update to 100%?

    close your creative cloud desktop application, right-click and click "Run as Administrator".  then update.

  • Install Apps on HDs Ext with different operating systems

    HI -.

    What is the process for installation across multiple operating systems multiple ext HDS connected to a computer?

    I have several external hard drives with a Mac OS different on each connected to my Mac desktop to emulate environments with my clients.  My internal HD is running 10.7.5, and I have a 2 TB with Mountain Lion installed external HD.  I would like to know how to install the Adobe applications in each environment.  Because I can never run multiple instances of the operating system at the same time, I can't be in violation of the EULA, ergo I think I should be able to install Adobe software on any of these HDs ext with only one license.

    Thank you.

    KirkibusMaximus

    Post edited by: KirkibusMaximus

    You can install a million times until you bleed your ears, but you can never activate 2 installs with a single license. Do not hesitate to turn on and off according to your needs.

    Mylenium

Maybe you are looking for