Confused if i need the enterprise DPS along with enterprise license from Apple

Do I need to buy the Enterprise DPS if I already have a Enterprise developers license with Apple? I want to develope in-house apps with indesign but everywhere i read no body gives a straight answer.
I have "creative cloud membership" which includes a single edition DPS already so I have single edition DPS now. I want to build an app using indesign and dps but host it on my own server. Can I do this with my single edition along with my enterprise developer licnese from Apple? Or do I have to buy the enterprise DPS to go along with my enterprise developers license from Apple?
thank you for your time
Darian

You will need an Enterprise DPS account along with the Enterprise Apple account. There is nothing ambiguous about this.
And you really need to read Apple’s license very carefully about private distribution. They are very strict about anything not going through the app strore.

Similar Messages

  • To capture the selected rows along with edited field contents in alv report

    Dear All,
             I do have requirement where, in alv report output one field is editable and need to save the content of the edited field along with the selected rows.
             For example If there are 10 records displayed in the alv output with 20 fields.
    Out of this 20 fields one field (say XYZ) is editable. Also i have already created a new pushbutton (say ABC) on alv output. Now in the alv output if we maintain some value in the field (XYZ ) for the 2nd and 4th record and select this two records, and when clicked on the pushbutton (ABC) it has to update the DB table.
          I am using the Func Module  'REUSE_ALV_GRID_DISPLAY'. 
          Your early reply with sample code would be appreciated.
    Thanks in Advance.

    HI Naveen ,
    There is an import parameter "i_callback_program" in the function module,
    plz pass the program name to it.
    Capture the command by passing a field of type sy-ucomm to "I_CALLBACK_USER_COMMAND ".  Check the returned command and
    and program a functionality as desired.
    u can try the event double_click or at line selection. there u can use READLINE command to c if the line has been selected.
    In case it is , process the code segment.
    Regards
    Pankaj

  • How do you copy and paste track changes material in Pages from one point in a document to another and keep both the old text along with the track changed thus far in the new pasted location?

    Depending on whether track changes is on/paused, Pages thinks the pasted material is either all new and thus highlights it as a big track change or just copies the old material along with the edits as plain text so that I cannot see my track changes. I need to be able to copy and paste in the same document and still be able to see the older text along with the changes to certain sections thus far. Is this possible? I need a step-by-step "talk to me like I'm five" instructional if what I would like can be done.
    Thanks for any help!
    Message was edited by: C.M.W.

    What version of Pages?
    What OS, iOS or OSX?
    Are you sure you have the Table selected and not a cell or just contents?
    Peter

  • Regarding Automation Of The iOS App Compiled With Enterprise Program

    Hi,
    We have to automate the iOS app, compiled with `Enterprise Developer Account` build in `Adobe Flash Builder Environment`. We have checked the provision profile attached with the IPA file and the value of `getTaskAllow` is set to `False`, so it seems that the app is build with `Distribution Profile`.
    As the app is developed from Enterprise Developer Account, so we are able to install and run the app in real device, but `Appium` as well as `Instruments` is unable to debug it and showing an error "Permission to debug <BUNDLE ID OF APP> was denied. The App must be signed with a development identity (e.g iOS Developer)".
    So, is it necessary to build the app with `Developer Provisioning Profile` and mentioning the UDID of the device in the Development Provisioning Profile, so as to debug the app via `Appium` or `Instruments` ?

    Yes. I can export Distribution certificates and Distrubution provisioning files and Flash will then export the .ipa file without issue. However when I go to install the app it seems to go over to the iPad and then I get a failure notice on the iPad. I am wondering if I am installing it incorrectly or if there is some step I'm missing. I am dragging the .ipa to iTunes to install it. If I export both the cert and the provisioning files as Development files the app goes on the iPad without issue, however it will expire in a couple of months so that is not what I want. I recently found this link http://www.adobe.com/devnet/digitalpublishingsuite/articles/distributing-enterprise-ios-vi ewer-apps.html which leads me to believe I have to distrubute the .ipa differently, however I was hoping someone had seen a similar tutorial for a Flash ipa. Or is this similar (or exactly) what I need to do?
    Thanks so much for the reply.

  • I have recently bought a second I phone4 and have the same apple ID on both of them, strangely I noticed the messages sent from one phone appearing the other one along with any pictures I sent from one of my Iphones. Is it possible to see the same msgs.

    I have recently bought a second I phone4 and have the same apple ID on both of them, strangely I noticed the messages sent from one phone appearing the other one along with any pictures I sent from one of my Iphones. Is it possible to see the same msgs.

    You need to setup different Receive At addresses for iMessage.
    If you don't want the same pics on each, turn off PhotoStream.
    User Guide

  • Getting the parenet id along with the child ids in hierarchy query results

    create table test_test2 (do_id_tp varchar2(32),do_id number ,do_up_tp varchar2(32),do_up_id number)
    insert into test_test2 values('A_S',100170,'A_S',100001);
    insert into test_test2 values('A_S',1001054,'A_S',100001);
    insert into test_test2 values('A_S',1001055,'A_S',100001);
    insert into test_test2 values('A_S',1001053,'A_S',100001);
    insert into test_test2 values('A_S',1001056,'A_S',100001);
    insert into test_test2 values('A_S',1001051,'A_S',100001);
    insert into test_test2 values('A_S',1001052,'A_S',100001);
    insert into test_test2 values('A_S',100358,'A_S',100170);
    insert into test_test2 values('A_S',100359,'A_S',100170);
    insert into test_test2 values('A_S',100441,'A_S',100170);
    insert into test_test2 values('A_S',1001047,'A_S',100441);
    9/code]
    Upon executing the following query , i'm getting the childs of 100001 and the childs of childs of 100001 etc..
    That if fine .But in the output i'm not getting the parent id i.e; 100001 (which is in the where condition)
    How to get the parenet id along with the childs id.( without writing the UNION select 100001 from dual)SELECT do_id
    FROM (
    SELECT d.do_id, d.do_up_id
    FROM test_test2 d
    WHERE d.do_up_tp = 'A_S' ) m
    CONNECT BY NOCYCLE PRIOR m.do_id = m.do_up_id
    START WITH m.do_up_id =100001
    Edited by: smile on Jan 12, 2012 6:50 PM

    If you wish the root parent as a column in your select, you can use CONNECT_BY_ROOT:
    SELECT
    connect_by_root(do_up_id) root,
    do_up_id parent,
    do_id
    FROM (
       SELECT  d.do_id, d.do_up_id
       FROM test_test2 d
       WHERE    d.do_up_tp = 'A_S'
    ) m
    CONNECT BY NOCYCLE PRIOR m.do_id = m.do_up_id
    START WITH m.do_up_id =100001;But if you really wish an extra row in your output with 100001, then your problem is that you do not have a record in your data with do_id = 100001.
    Then you either need such a record in your data, or you need to create such a row with for example union all - something like this:
    SELECT
    do_id
    FROM (
       SELECT  d.do_id, d.do_up_id
       FROM test_test2 d
       WHERE    d.do_up_tp = 'A_S'
       UNION ALL
       SELECT 100001 do_id, NULL do_up_id
       FROM DUAL
    ) m
    CONNECT BY NOCYCLE PRIOR m.do_id = m.do_up_id
    START WITH m.do_up_id IS NULL;

  • If client uses all the APO modules along with ECC then what is the CIF role in DP

    Hi All,
      As per my knowledge if the client is using only SAP ECC and DP then CIF does not play any role but what about if client uses all the APO modules along with ECC then what is the CIF role in DP ?
    Thanks in advance ..

    Hi Vinod,
      i am aware all the above details what u mentioned.
    Generally  i am extracting the historical data from Excel to BI in DP- @ my project.
    But if the data is in SAP ECC then do we need to use CIF to extract the data to BI in DP... so what is the role of CIF in DP if client uses only DP module? and if the client uses all the APO modules then what is the role of CIF in DP especially ?....awaiting for ur response....
    Thanks.

  • How to retrieve all the users along with their password from LDAP

    Hello,
    Can anyone let me know how to retrieve and list all the user along with their password from LDAP.
    Thanks

    Hi Prashant,
    I have limited experience with Synchronization, but I agree with you - if you need to synchronize Passwords, you need to have the Password in clear Text.
    If you trying to build your own Synchronization Solution using any of the avaliable LDAP APIs, I don't think you can ever retrieve a user's Password in clear text.
    However, I did come across an interesting article & I hope you find it useful :-
    http://www.oracle.com/technology/obe/obe_as_10g/im/configssl/configssl.htm
    I am not sure if SSL is necessary - If you have a look at Metalink Note 277382.1 ( How to Configure OID External Authentication Plug-In for Authentication Via Microsoft Active Directory (MS AD) ), teh question asked by oidspadi.sh for the same is asnwered as "N".
    Regards,
    Sandeep

  • I had a drive failure and lost the iWeb file along with other things.   I did manage to save a lot of user file documents but I don't see or   recognize the my iWeb site file. It was on a 15" G4 Titanium pb. I'm trying to find a way, using version 2.0.4

    I had a drive failure and lost the iWeb file along with other things. 
    I did manage to save a lot of user file documents but I don't see or 
    recognize the iWeb site file. It was on a 15" G4 Titanium pb.
    I'm trying to find a way, using version 2.0.4 of iWeb on a different 
    pb to recover the file into the iWeb app or a way to download the site into iWeb.
    There are 6 pages of images and text, and it 
    would be a task for me to recreate the whole thing again. I did 
    download the site but I don't know how or if I can get iWeb to see it and open it.
    Does anyone have any knowledge about this? The link to my site:
    <http://web.mac.com/danauerbach>
    Any suggestions will be most appreciated.
    dan auerbach
    [email protected]

    Unfortunately iWeb cannot read or import previously published files, only generate them.  You'll have to recreate your site from scratch.
    However, Chapter 2.3 on the iWeb FAQ.org site has tips on using some of the existing files, image, audio, video, etc., from the published site in the recreation of the site.
    OT

  • If I do a clean install on my MacBook Pro will I be able to re-install apps (FCP, Aperture, MS Office etc.) from a Time Machine backup, or will I need the original install DVDs with authorization codes?

    I have two questions...
    1) If I do a clean install on my MacBook Pro will I be able to re-install apps (FCP, Aperture, MS Office etc.) from a Time Machine backup, or will I need the original install DVDs with authorization codes? (because I don't have them)
    2) Has anyone ever seen anything like this before on their computers?
    The Apple Genius' were stumped by my laptop issues and said they'd never seen anything like it before and recommended I did a clean install. Below you can see my trash bin, and if you look at the "Empty" button it reads "N201" and then there's the "N39" to the left of it. You can also see these numbers over by the folder area--"SD5, SD6, SD7." But that's not all...
    When I right click on items I see the numbers again. Instead of "Open with" I get "N152" and there's an "N35" and "LB1" towards the bottom.
    I have no idea what's going on so I'm just going to do a clean install on my machine but I don't want to lose my apps. I don't have the original install DVDs for them anymore. If you have any suggestions please let me know. Thanks!

    You don't lose them.  You can always redownload them from the app store after you log back in with your Apple ID.
    "Buy, download, and even redownload.
    You can install apps on every Mac you use and even download them again. This is especially convenient when you buy a new Mac and want to load it with apps you already own."

  • I had Firefix, however I downloaded the newest Firefox along with all plugins. Now when I click in the desktop icon firefox refuses to open my default webpage. Why?

    I run Windows 7. I downloaded Firefox 6.0 for Windows which resulted in the following which I cannot fix:
    "I had Firefix, however I downloaded the newest Firefox along with all plugins. Now when I click in the desktop icon firefox refuses to open my default webpage. Why?....How do I fix this"
    I can go to internet explorer or AOL and it opens right up to my homepage but not when I click on Firefox.

    That problem can be caused by the Yahoo! Toolbar that extents too much downwards and covers the top part of the browser window and thus makes links in that part of the screen not clickable.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • How to make plant default on the line item along with the item category

    Hi All,
    I want to default Plant on the line item along with the item category.In order to meet the following scnario.
    1. I have two plants,first plant is maintained for the valuated item and the second plant is maintained for the non valuated item (Free Goods).
    Whenever user is entering an item in the sales order for which corresponding free goods item is maintained in the master record.System is proposing two lines items in the sales order.
    First line item is the main item which appears along with the Plant 1 which contains valuated items
    Second line item is for the Free of charge item which is being proposed from Plant 2, which contains the non valuated items.
    I want that the system should always propose Plant 1 with main item and Plant 2 with the Free of Charge item by default. (Along with the item category TAN and TANN)
    Rahul

    Delivering Plant is determined in the following order
    1. Customer material info record.
    2. Customer master
    3. Material master.
    Use one of them an default your plant.
    I think in your case you can use the materila master which will give an item level plant different. The other two will default the plant at the header level.
    regards
    jude

  • After upgrading Lightroom on a mac. Deleting the older version along with old catalogs and files?

    Can I delete the older version along with old catalogs and files? and what is the best way to go about this? Thankyou : )

    manually uninstall then, Manually uninstall Lightroom

  • What's Impact of changing the customer Name(along with Bill To and Ship To) at the header level after book

    Dear All,
    Revision: 11.5.10.2
    We have a case where some of the orders we have created have incorrect customer name along with incorrect Bill To Ship To.
    All these orders are booked. And their Line Status is either Awaiting Shipping or Supply Eligible.
    What Impact of changing the customer Name(along with Bill To and Ship To) at the header level.
    Thanks,
    Helen

    Hi Helen-Oracle
    As said above there should not be an impact if the warehouse on the order before and after changing the customer, ship to and bill to remains same.
    Additionally, if the item on-hand qty is sufficient to reserve the item and there is no B2B internal requisition kicked off.
    As long as the above conditions are fine, I don't see any impact of changing the customer, bill to and ship to.
    Also, you can run a complete wing to wing cycle in case you really want to test the behavior of the system in such scenario.
    Please feel free to mark the response as helpful or correct if you think it is helpful and to help people easily find help and answered responses.
    Thanks
    Mirza Tanzeel

  • Display more than one Graph in the same page along with report datails

    Hi,
    I have  to display 3 lines out put along with the 3 GRAPH’s  below corresponding to the 3 lines  in the same page of a the report output. .How do i achieve this?  The function modules like ‘GRAPG_2D’,   ‘GRAPG_3D’ brings the graph in separate pop up, but I want all the 3 graphs in the same page along with the some text above those graphs (ie my report details in 3 lines).
    Could you please let me know how to achieve this?
    Waiting fro your kind suggestions,
    Regards,
    Steve

    Hi,
    Refer to the following code to display graphs in report.
    DATA: BEGIN OF ITAB_DATA OCCURS 0,
    DATANAME(15),
    QUANTITY1 TYPE I,
    QUANTITY2 TYPE I,
    QUANTITY3 TYPE I,
    END OF ITAB_DATA,
    BEGIN OF ITAB_OPTIONS OCCURS 0,
    OPTION(20),
    END OF ITAB_OPTIONS.
    ITAB_DATA-DATANAME = 'Electricity'.
    ITAB_DATA-QUANTITY1 = 55.
    ITAB_DATA-QUANTITY2 = 62.
    ITAB_DATA-QUANTITY3 = 59.
    APPEND ITAB_DATA.
    ITAB_DATA-DATANAME = 'Gas'.
    ITAB_DATA-QUANTITY1 = 35.
    ITAB_DATA-QUANTITY2 = 52.
    ITAB_DATA-QUANTITY3 = 44.
    APPEND ITAB_DATA.
    ITAB_DATA-DATANAME = 'Water'.
    ITAB_DATA-QUANTITY1 = 18.
    ITAB_DATA-QUANTITY2 = 22.
    ITAB_DATA-QUANTITY3 = 19.
    APPEND ITAB_DATA.
    CALL FUNCTION 'GRAPH_MATRIX_3D'
    EXPORTING
    COL1 = 'Jan'
    COL2 = 'Feb'
    COL3 = 'Mar'
    TITL = 'Utility Expenses in US$.'
    TABLES
    DATA = ITAB_DATA
    OPTS = ITAB_OPTIONS
    EXCEPTIONS
    OTHERS = 1.
    Hope this helps.
    Reward if helpful.
    Regards,
    Sipra

Maybe you are looking for