Creating and releasing (for private use) an app with Adobe DPS

Dear all,
I am creating an app for iOS devices with Adobe DPS.
It will be a private app; I don't want it to be viewable on the app store. I only want to get a .ipa file so that I can send it to my contacts and the can install it on their devices through iTunes.
Honestly I'm a bit lost. It's the first time I'll have to face all of this.
I don't really know how to proceed for a private app. I guess even if it's not available on appstore, the app still have to be approved by Apple ? or am I wrong ? What are the steps to go through in order to get the .ipa file ?
Do I have to follow the same step-by-step tutorial as for a common app ?
Any advice from someone who have already faced the same kind of situation, or from anyone who knows a bit about all of this is very very welcome…
Thanks all for your time.
Best regards.
F.

With a pro account you get a .ipa file and a .zip file. The ipa file is for testing so the devices that you add in the apple developer account ( max 100 in a year ) can all install the ipa file. The .zip is for submitting to apple.
In the enterprise edition for DPS you can create enterprise signed builds that can be installed on any Ipad within the organization. ( no limit to the number of devices you can install it to. )

Similar Messages

  • Creating an app with Adobe DPS

    Dear all,
    I am very familiar with the work flows and processes involved when using DPS. But i have not yet finished and concluded a workflow.
    What I need to know is whether it is possible to create an app that does not neccesarily go into the App store. Is it possible to distribute along other channels. Basically, I need to know the output format of Adobe app builder. What steps are there in this fase of the workflow? And do I end up with an .ipa or how does it wrap up?
    Does this question make sense?
    Than you in advance,
    Kim

    With a pro account you get a .ipa file and a .zip file. The ipa file is for testing so the devices that you add in the apple developer account ( max 100 in a year ) can all install the ipa file. The .zip is for submitting to apple.
    In the enterprise edition for DPS you can create enterprise signed builds that can be installed on any Ipad within the organization. ( no limit to the number of devices you can install it to. )

  • I have always paid for apps with a credit card and now need to use an app store card but I can't get past the point where it keeps wanting my credit card updated.  And can't used the app card number.  Any advice???

    I have always paid for apps with a credit card and now need to use an app store card but I can't get past the point where it keeps wanting my credit card updated.  And can't used the app card number.  Any advice???

    I do NOT like using my credit card if I don't have to, and I went out of my way to go buy an Apple gift card, which I successfully redeemed into my Apple account. However, when I use the Apple "Cards" app, it will not let me use anything other than my credit card. I tried purchasing a card, hopefulling it would come out of my Apple store balance, but no such luck -- it came out of my credit card.
    Apple is becoming more like Microsoft every day.

  • We are trying to implement a process so that any document that needs to be printed through our Java application will be printed as PDF using Adobe Reader. For which, We created and execute the below command line to call Adobe Reader and print the PDF on a

    We are trying to implement a process so that any document that needs to be printed through our Java application will be printed as PDF using Adobe Reader. For which, We created and execute the below command line to call Adobe Reader and print the PDF on a printer."C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe" /T "\\<Application Server>\Report\<TEST.PDF>" "<Printer Name>". Current Situation: The above command line parameter when executed is working as expected in a User's Workspace. When executed in a command line on the Application Server is working as expected. But, the same is not working while executing it from Deployed environment.Software being used: 1. Adobe 11.0 enterprise version. 2. Webshpere Application Server 8.5.5.2. Please let us know if there is a way to enable trace logs in Adobe Reader to further diagnose this issue.

    This is the Acrobat.com forum.  Your question will have a much better chance being addressed in the Acrobat SDK forum.

  • I bought student version for cc and still can't use the apps

    I bought student version for cc and still can't use the apps and when i sign in only the free CC membership appears I also chick the bank the transaction was successful and  i only resieve a confirmation email. i need to work with these apps so badly ... i hope i can fix it asap

    Does your subscription show on your account page? https://www.adobe.com/account.html

  • Has Apple released Sample Code using In-App Purchase?

    The title says it all...
    Does anyone know if Apple has released Sample Code using In-App Purchase?
    I've read through (skimming mostly) the In App Purchase section of the iPhone OS Reference Library
    Thanks to K T I have:
    http://developer.apple.com/iphone/program/sdk/inapppurchase.html
          and
    https://itunesconnect.apple.com/docs/iTunesConnect_DeveloperGuide.pdf
    Check pages 52~71 in the 115 page updated iTunes Connect Developer Guide for all the ugly details...
    This will be part of my weekend project
    -Carl

    I guess I will mark this solved, for the time being.
    I was just hoping that maybe Apple had released some example code in a working program, rather than just the snippets used to explain the process. I haven't had the presence of mind to read and follow the document all the way through and wanted to compare working code if possible.
    Thanks Ray. If all goes well, maybe I'll figure it out by the end of the weekend.
    -Carl

  • Problems in creating and storing new documents using BAPI_DOCUMENT_CREATE2

    Hi experts,
    I'm getting problems in creating and storing new documents using BAPI_DOCUMENT_CREATE2.
    I have a scenario where is defined the document type ZC1, document part 200, authorization group 0002 and for all of these  documents the storage category "Cofre DMS1". And the status which demands the storage category is 'FR'.
    I've been fullfiling the BAPI_DOCUMENT_CREATE2 in this way:
    "Tables
    data: it_doc like bapi_doc_draw2,
          it_return like bapiret2,
          it_files like bapi_doc_files2 occurs 0 with header line,
          it_objs like bapi_doc_drad occurs 0 with header line.
    "Variables
    data: wl_doctype like bapi_doc_draw2-documenttype,
          wl_docnumber like bapi_doc_draw2-documentnumber,
          wl_docpart like bapi_doc_draw2-documentpart,
          wl_docversion like bapi_doc_draw2-documentversion.
    it_doc-documenttype = 'ZC1'.
    it_doc-documentpart = '200'.
    it_doc-documentversion = '00'.
    it_doc-description = 'Test of documents creation via BAPI'.
    it_doc-username = sy-uname.
    it_doc-statusextern = 'FR'.
    it_doc-authoritygroup = '0002'.
    refresh it_files[].
    clear it_files.
    it_files-originaltype = '1'.
    it_files-storagecategory = 'Cofre DMS1'.
    it_files-wsapplication = 'PDF'.
    it_files-docfile = 'c:\110307.pdf'.
    it_files-description = 'Test file'.
    append it_files.
    refresh it_objs[].
    clear it_objs.
    it_objs-objecttype = 'EKPO'.
    it_objs-objectkey = '47000497600010'.
    append it_objs.
    CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
      EXPORTING
        documentdata = it_doc
      IMPORTING
        documenttype = wl_doctype
        documentnumber = wl_docnumber
        documentpart = wl_docpart
        documentversion = wl_docversion
        return = it_return
      TABLES
        objectlinks = it_objs
        documentfiles = it_files.
    After execute the BAPI process I got the following error:
    E26 087 - Data carrier COFRE DMS1 not defined
    Does anybody have a sugestion to help me, please?
    Thks
    David
    Edited by: David Tsutsui on Mar 18, 2010 10:52 AM

    Please refer to this thread, it tells why you need a data carrier you can also configure the same in DC20.
    Data Carriers for Storage the Originals of DMS

  • What's the difference between PNG and JPG for exporting .idea files from the Adobe Ideas app?

    What's the difference between PNG and JPG for exporting .idea files from the Adobe Ideas app?
    What situations are better to export to to .PNG or .JPG?
    J

    iPad apps are designed specifically for the iPad and will not run on the iPhone or iPod Touch. iPhone/iPod apps will run on the iPad, but will only take up an iPhone sized portion of the iPad screen (though you get a 2x button which effectively doubles each pixel in both directions so may appear pixelated). There are also 'universal' apps (which have a '+' symbol against them in the store) which have processing in them to recognise the device that they are on and will tailor the display accordingly (so will make use of the iPad's larger screen).

  • IDOC not visible to import to XI, but on R/3 created and released

    Hi guys!
    I have problem with import IDOC into my repository objects. It is not visible to import, but on the r/3 side it is created and released.. Other IDOCs are visible, but not the one I need.. The IDOC I need is custom, created few moments ago..
    What could be wrong?
    Thanx for answer!
    Olian

    Olian,
    you need to release our IDOC to be visiable for XI.
    goto we60 see if you can find the our ZIDOC if you dont then goto WE30 then type our IDOC then goto Edit tab on top and select set release.
    if you have done this then do this
    T/C Code: WE82
    pass the IDOC type , message type and sap version then save.
    now our output types andIDOC assigments to IDOC types are done
    Regards
    Sreeram.G.Reddy
    Message was edited by:
            Sreeram Reddy

  • BAPI or FM to create and release Physical Sample

    Hi,
    Can anyone suggest a BAPI / Function Module that I can use so I can create and release a Physical Sample?
    Thanks in advance.
    Best regards.
    Brando

    By the way, the creation and realeasing of Physical Sample is similar to that of Transaction QPR1.
    Anyone can suggest an FM / BADI? Thanks in advance.

  • How to Create and Deploy Web Services Using Oracle 9i JDeveloper

    Hi,
    My Question is how to create and deploy Web Services using Oracle 9i JDeveloper.Anybody please give me a detailed Reply.Please Reply to [email protected]
    Hopr to Hear From you,
    Regards,
    G Sreekumar

    You could use datasources. You should do this in your BC4J Configuration. Then when deploying your applicaiton use the command -installDataSource (from admin.jar) to create the right datasource.
    You could probably use the name of your connection + "DS" so you can also use it locally in JDeveloper as JDev seesm to create this automaticly for your Connections.

  • How to create and read text file using LabVIEW 7.1 PDA module?

    How to create and read text file using LabVIEW 7.1 PDA module? I can not create a text file and read it.
    I attach my code here.
    Attachments:
    File_IO.vi ‏82 KB

    Well my acquisition code runs perfect. The problem is reading it. I can't seem to read my data no matter what I do. My data gets saved as a string using the array to string vi but I've read that the string to array vi (which I need to convert back to array to read my data) does not work on the pda. I'm using version 8.0. So I was trying to modify the program posted in this discussion so that it would save data from my DAQ. I did that but I still can't read the data after its saved. I really don't know what else to do. All I need to do is read the data on the pda itself. I can't understand why I'm having such a hard time doing that. I found a possible solution on another discussion that talks about parsing the strings because of the bug in the "string to array" vi. However, that lead me to another problem because for some reason, the array indicators or graphs don't function on the pda. When i build the program to the pda or emulator, the array indicators are faded out on the front panel as if the function is not valid. Does this kind of help give a better picture of what I'm trying to do. Simply read data back. Thanks.

  • Released for external use RFMs

    Hello,
    Is there a comprehensive list of all the RFMs marked as "released for customer/external use" somewhere? If not, is there a way to find if a particular RFM is or not released for external use?
    BTW, SAP Interface Repository was not a great help since it has information only on selected RFMs.
    Thanks.

    Hello,
    Thank you for the answer, Christoph. There is definitely a field in the attributes of a FM which says "Released on" or "Not released". I hope you are talking about this field.
    A couple of more things:
    So, there are very few FMs which are actually released for external use - most of these being BAPIs. Is that right?
    (ii) I can not use an FM which says "Not released" in my app, if I want certification of it - right?? It has to say "Released on: date of release".
    Thanks.

  • What's the difference between task list release for order and release for c

    What's the difference between task list release for order and release for cost?

    Pallavi,
    The status of the task list determines in which other application areas the respective task list may be used.
    Release for costing: means that the task list can be used to calculate costs in Transaction IA16 i.e. the costs for the task list operations would be calculated if released for costing status is set.
    Release for use in the order: Released for Order means that you can use the task list in an order i.e. you could include operations from a task list in an order.
    Regards,
    Usman

  • Single Edition for Private Use Only

    Can the Single Edition be used for private use (i.e., corporate sales team, training team, etc.)?

    Enterprise only…and you’ll need an Enterprise Developer account with Apple, too.
    Bob

Maybe you are looking for

  • How to find out who owns an BGP AS#?

    I'm tracing the AS paths for a particular Internet route. Is there any tool or web site I can use to find out what organization owns a AS#? Thanks Gary

  • Acrobat X v10.0 - cannot Submit Form in Outlook for Mac 2011

    I created a form in Acrobat X v10.  When submitting the form in Windows, it opens the Select Email Client window, user can select Desktop Email Application, click OK and the completed form is sent via Outlook.  When I try to do the same on a Mac, it

  • How do I Start - Run - \\LTVPCvenz001   ??

    Start -> Run -> \\LTVPCvenz001 This in windows would open windows explorer and show my the available folders on device LTVPCvenz001 which in this case is a virtual PC which has some files in a shared directory I want to copy to my Mac. I have tried \

  • Usage of Altova XML Spy

    Hi, My Scenario is IDOC-XI-SOAP Is there any chance to use the XML Spy here, What are all the possibilities to use the XML Spy and in which scenario's Regards Suman

  • Firefox crashes when placing bid on ebay US, not ebay Canada

    I'm using Firefox 3.5.12 in Windows 7. Everytime I confirm a bid in ebay, Firefox crashes. It does not do this if I place the bid through ebay.ca (Canadian ebay). The bid does get placed. I've included the last two crash IDs