App for creating complex and data-enclosed forms

Hello guys,
This may be a wrong place to ask this but hey i don't know where to go, so here goes:
I'm looking for an app (OSX) with which i can create quite complex forms, and with that i mean the following example:
Like in Acrobat Reader Pro you can create forms, you can leave some text that is considered basic text and non-changeable and some fields in which users can fill up their own data. Better yet i'm looking to allow the user to only fill in the particular fields with only a few options.
For example: Let's say i want to create a mailing form in which the 'TO' field can only be filled up by a pop-up of selectable choices. I've seen this in some PDFs but i'm not sure Acrobat can do that. A friend of mine recommended SQL but that's a pain to install in OSX. So back to the example, when the user selects the TO field to fill up the destination of the letter, i would like to allow him to only fill up let's say one of 10 destinations (with complete address). So the 10 options pop-up in a menu from the field and he selects the destination and then the app does the rest by filling the street name, number etc...
How can i do that? In what program?
Thank you!
Andrei Dica from Bucharest Romania (pround Apple user )

Ok here is what i want to do:
I want to simplify and optimize the work in my office. Most of the times we have to create reports or letters which share a common body text. That body text should remain unchanged but there are fields that i want to create to allow all the employees to fill up them depending on their needs. BUT not just fill up by typing because that would be the same as if it would have opened the document (.doc or .pages) delete and type what they want.
I want to create fields but with options poping out of them when the user clicks on it. For example: let's say an employee wants to do a report about a company, and he already has the data in other documents about the company name, identification codes, address etc...Usually you work with multiple opened documents and copy/paste the required contents from one document to another. But i figured there has to be an easier way if a system can be implemented when the user can work on directly made templates for each task and type only the fields that need to be changed. I vision the process as a user completes some fields in a browser. When you type in the address bar of your browser "you" it automatically pops out a list of possible sites from which i can mention youtube.com and others. Now i understand that there has to be created a database first so that my employees and colleagues can fill 'from' but i'm willing to do that if on the long term it speeds up the work flow.
Another example is body text that need to be changed only by two values (words) much like numeric values 1 and 0. For example yes or no. Click on the field, pops up yes or no option. Click on the desired option and you're done. Print it, email it and job well done.
Is this a bit more clear about what i'm trying to achieve?

Similar Messages

  • If we upgrade to a Professional Edition DPS license can we create an unlimited number of Single edition apps for iPad, iPhone and Android devices?

    I work for a organisation based in Sydney and we have a team license for creative cloud (single edition).
    We have been producing single folio apps for the iPad and want to continue this through 2015. 
    At the moment we can only create apps for the iPad platform.  If we upgrade to a Professional Edition DPS license can we create an unlimited number of Single edition apps for iPad, iPhone and Android devices?
    We do not need multi-folio apps as we are not a publishing company.  

    Thanks Neil
    I sent an email yesterday and am awaiting a reply.  Here is my email for reference.
    Matt
    I work for a large organisation based in Sydney and we have a team license for creative cloud (single edition).
    We have been producing single folio apps for the iPad through Indesign and the App builder.  We now want to produce apps for iPhone, iPad and Android devices.  
    If we upgrade to a Professional Edition DPS license can we create an unlimited number of apps for iPad, iPhone and Android devices?
    We are not a publishing company so we will produce a small number of the apps.  If you could get back to me with a solution and approx price that would be great.
    Thanks for your time
    Regards,
    Matt

  • Procedure for creating transparent table, data element and domain

    Hi,
    Can anybody let me know the procedure for creating transparent table, data element and domain.
    Thanks,
    Mahathi

    Hi
    Database table and its components
    A database table is the central data structure of the ABAP/4 data dictionary.
    The structure of the objects of application development are mapped in tables on the underlying relational database.
    The attributes of these objects correspond to fields of the table.
    A table consists of columns (fields) and rows (entries). It has a name and different attributes, such as delivery class and maintenance authorization.
    A field has a unique name and attributes; for example it can be a key field.
    A table has one or more key fields, called the primary key.
    The values of these key fields uniquely identify a table entry.
    You must specify a reference table for fields containing a currency (data type CURR) or quantity (data type QUAN). It must contain a field (reference field) with the format for currency keys (data type CUKY) or the format for units (data type UNIT). The field is only assigned to the reference field at program runtime.
    The basic objects for defining data in the ABAP Dictionary are tables, data elements and domains. The domain is used for the technical definition of a table field (for example field type and length) and the data element is used for the semantic definition (for example short description).
    A domain describes the value range of a field. It is defined by its data type and length. The value range can be limited by specifying fixed values.
    A data element describes the meaning of a domain in a certain business context. It contains primarily the field help (F1 documentation) and the field labels in the screen.
    A field is not an independent object. It is table-dependent and can only be maintained within a table.
    You can enter the data type and number of places directly for a field. No data element is required in this case. Instead the data type and number of places is defined by specifying a direct type.
    The data type attributes of a data element can also be defined by specifying a built-in type, where the data type and number of places is entered directly.
    <b>Two Level Domain Example</b>
    A domain defines a field technically and therefore it may
    be used at different business levels.
    A data element describes the meaning of a domain in a certain business context.
    A domain, however, is used for the technical definition of a table field (for example field type and length).
    Therefore, although a take-off airport (data element S_FROMAIRP) would have a different business meaning from an airport where a plane lands (data element S_TOAIRP), they could still have the same domain(here S_AIRPID) because technically we could assign the same number of characters whether the airport is a take-off or a landing airport.
    <b>Definitions of Table in Database</b>
    In SAP R/3 tables are defined as
    A) Transparent tables: All of the fields of a dictionary table correspond to a field in the real database table.
    B) Pooled tables: Different tables which are not linked to each other with a common key are combined into a TABLE POOL. Several logical tables thus exist as a single real database table.
    C) Cluster tables: Several tables linked by a common key may sometimes be combined by the data dictionary and made to exist on the database schema as a single table.
    SAP is evolving R/3 tables in transparent tables.
    <b>Elaboration on each of the definitions</b>
    A transparent table is automatically created on the database when it is activated in the ABAP Dictionary. At this time the database-independent description of the table in the ABAP Dictionary is translated into the language of the database system used.
    The database table has the same name as the table in the ABAP Dictionary. The fields also have the same name in both the database and the ABAP Dictionary. The data types in the ABAP Dictionary are converted to the corresponding data types of the database system.
    The order of the fields in the ABAP Dictionary can differ from the order of the fields on the database. This permits you to insert new fields without having to convert the table. When a new field is added, the adjustment is made by changing the database catalog (ALTER TABLE). The new field is added to the database table, whatever the position of the new field in the ABAP Dictionary.
    Tables can also reside on the database as Pooled tables or cluster tables
    Pooled Tables: Different tables which are not linked to each other with a common key can be combined into a Table Pool. The tables contained within this pool are called Pooled Tables. A table pool is stored in the database a simple table. The table's data sets contain, in separate fields, the actual key for the data set to be stored, the name of the pooled table and the contents of the data set to be stored.
    Using this schema, several logical tables are combined into a single real database table. Although the data structure of each set is lost during the write to the table pool, it is restored during the read by the ABAP/4 Data Dictionary. The ABAP/4 Data Dictionary utilizes its meta-data to accomplish this.
    Since information must be prepared (defined) within the ABAP/4 Data Dictionary when it is read or written to (or accessed), this process itself defines these as not transparent tables
    Cluster Tables: Occasionally, several tables may be linked by a common key. The ABAP/4 Data Dictionary can also combine these tables into a single table. Each data set of the real table within the database contains a key and in a single data field, several data sets of the subsequent table for this key.
    As mentioned above, these table types require special data handling, therefore they are not transparent tables.
    <b>Technical Settings in Dictionary</b>
    The data class logically defines the physical area of the database (for ORACLE the table space) in which your table should be created. If you choose the data class correctly, the table will automatically be created in the appropriate area on the database when it is activated in the ABAP Dictionary.
    The most important data classes are master data, transaction data, organizational data and system data.
    Master data is data that is rarely modified. An example of master data is the data of an address file, for example the name, address and telephone number.
    Transaction data is data that is frequently modified. An example is the material stock of a warehouse, which can change after each purchase order.
    Organizational data is data that is defined during customizing when the system is installed and that is rarely modified thereafter. The country keys are an example.
    System data is data that the R/3 System itself needs. The program sources are an example.
    Further data classes, called customer data classes (USER, USER1), are provided for customers. These should be used for customer developments. Special storage areas must be allocated in the database.
    The size category describes the expected storage requirements for the table on the database.
    An initial extent is reserved when a table is created on the database. The size of the initial extent is identical for all size categories. If the table needs more space for data at a later time, extents are added. These additional extents have a fixed size that is determined by the size category specified in the ABAP Dictionary.
    You can choose a size category from 0 to 4. A fixed extent size, which depends on the database system used, is assigned to each category.
    Correctly assigning a size category therefore ensures that you do not create a large number of small extents. It also prevents storage space from being wasted when creating extents that are too large.
    Modifications to the entries of a table can be recorded and stored using logging.
    To activate logging, the corresponding field must be selected in the technical settings. Logging, however, only will take place if the R/3 System was started with a profile containing parameter 'rec/client'. Only selecting the flag in the ABAP Dictionary is not sufficient to trigger logging.
    Parameter 'rec/client' can have the following settings:
    rec/client = ALL All clients should be logged.
    rec/client = 000[...] Only the specified clients should be logged.
    rec/client = OFF Logging is not enabled on this system.
    The data modifications are logged independently of the update. The logs can be displayed with the Transaction Table History (SCU3).
    Logging creates a 'bottleneck' in the system:
    Additional write access for each modification to tables being logged.
    This can result in lock situations although the users are accessing different application tables!
    <b>Create transparent table</b>
    Go to transaction SE11. Enter name of table you want to create (beginning with Y or Z) and click on create pushbutton
    Enter the delivery class and the table maintenance criteria
    The delivery class controls the transport of table data when installing or upgrading, in a client copy and when transporting between customer systems .
    The display/maintenance indicator specifies whether it is possible to display/maintain a table/view using the maintenance tools Data Browser (transaction SE16) and table view maintenance (transactions SM30 and SM31).
    Enter the name of the table field and the data element. The
    System automatically populates the technical details for
    existing data elements.
    So far as possible it is advisable to use existing data elements which befit the business requirements.
    However, we may create data elements if need be. The same is shown in the next slide.
    To create a data element simply double click on it.
    Alternately create a data element by simply choosing the
    data type radio button on SE11 initial screen.
    <b>Create data element</b>
    The system prompts you to create a new data element.
    Choose the Yes pushbutton.
    Under the data type tab enter the domain name which
    determines the technical characteristics of the field.
    Further characteristics tab: Allows you to specify a search help assigned to the data element.
    It also allows you to specify a parameter id which helps you populate a field from SAP memory.
    Field label: Can be assigned as prefixed text to a screen field referring to the ABAP Dictionary. The text is displayed on the screen in the logon language of the user (if the text was translated into this language).
    <b>Create domain</b>
    If the domain does not exist in the data dictionary the
    system prompts you to create one.
    Give the technical characteristics under the definition
    tab. Value range allows you value restriction at domain
    level.
    Value range tab:
    As explained in the section Consistency through input checks one can restrict the possible values for a field at domain level itself by either entering fixed values or by specifying a value table under the tab Value range.
    <b>Currency/Quantity fields in a table</b>
    A currency or a quantity field must be assigned a reference field from a reference table containing applicable qty unit or currency unit.
    Field of the reference table, containing the applicable quantity unit or currency
    A field containing currency amounts (data type CURR) must be assigned a reference field including the currency key (data type CUKY).
    A field containing quantity specifications (data type QUAN) must be assigned a reference field including the associated quantity unit (data type UNIT).
    <b>Create transparent table continue</b>
    Maintain the technical settings of the table by clicking on the tab

  • Is pages the best app for creating wedding programs? or would you recommend something else?, is pages the best app for creating wedding programs? or would you recommend something else?

    Is pages the best app for creating wedding programs, or would you reccomend something free or cheaper?

    As the question is asked three times, I guess that you wish to marry three times.
    From my point of view, the best app to do this or that is the one with which we are comfortable.
    Every Word processor may be used to achieve your goal.
    Yvan KOENIG (VALLAURIS, France) vendredi 20 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k
    My iDisk is : http://public.me.com/koenigyvan

  • What's the keyboard shortcut for entering time and date?

    Is there a keyboard shortcut for entering time and date?
    Hopefully one which would work in any application.
    Thank you.

    None is built-in. You can use any number of third-party utilities for creating macros. For example:
    1. TypeIt4Me
    2. TextExpander
    3. Typinator
    4. AutoTyper (part of Automaton)
    Any of the above are excellent choices. Demo/Trial downloads are found at CNet Downloads or MacUpdate.

  • Plug-in or app for creating slo-mo?

    Last year I came across a bunch of YouTube clips demonstrating a plug-in or app for creating slow motion from regularly shot material - 24-30 fps.  The plug-in or app was able to someone how extrapolate all the missing frames to get quite a spectacular slo-mo effect.  I've lost the URL I thought I had so carefully saved.
    I'm receiving a whole bunch of footage I have to edit into a film.  The original shooting is erratic, sometimes good, sometimes quite unprofessional.  I need to be able to manipulate the speed of the shots, slow them down or speed them up.  The plug-in or app I remember would have been perfect.
    Does this ring a bell for anyone?  Any suggestions would be most appreciated...
    Thank you,
    Ben

    Thank you guys, most helpful.
    Did I say 'spectacular'?  I'd settle for modestly elegant, or even competent.  You are absolutely right David B.  I'm not looking to improve things like really bad exposure, noise, etc.  But a pan that's two fast for the tempo of a sequence? ... a little slowing, a bit of 'smoothcam' and suddenly the shot looks 'professional' instead of amateur.  I just did a couple of tests using only the speed control in the motion tab of FCP and was pleasantly surprised.  Is the 'speed' control in the motion tab any different than the 'Change Speed' function (Command J)?
    This is a feature film and they plan on a theatrical release.  So something like Twixtor might be the answer for the best quality we can generate, given the limitations of the original media.  But...
    David H, if the only thing I'm really needing is very clean slow-mo (given the limitations of the original media), but not super super slow-mo, would the Optical Flow in Motion give me more-or-less the same quality as Twixtor?  That would be pleasant.
    All ears,
    Ben

  • I tried to download an app for the iPad and was told the file was too large for the iPad; so I tried to download it on the MacBook but it never showed up; any suggestions? PS, I got the receipt from iTunes store so it was paid for

    I tried to download an app for the iPad and was told the file was too large for the iPad; so I tried to download it on the MacBook but it never showed up; any suggestions? PS, I got the receipt from iTunes store so it was paid for

    FOR ASSISTANCE WITH ORDERS - iTUNES STORE CUSTOMER SERVICE
    For assistance with billing questions or other order inquiries, please refer to our online support page by clicking here: http://www.apple.com/support/itunes/store/. If you cannot find the answers you are seeking in our robust knowledge base, you can contact us by visiting the following URL http://www.apple.com/support/itunes/store/, clicking on the appropriate Customer Service topic, then using the contact button or email form at the bottom of the page. Responses to emails will be provided as soon as possible.
     Cheers, Tom

  • Advice on improving graphics for app for both iPad and iPhone

    I am creating an app for both iPad and iPhone 4 and it looks terrible on the iPhone 4.
    I have created the Flash File in Flash CS5.5 IDE with Movie Size 1024 x 768 and I am using the following AIR for IOS settings:
    Rendering: CPU
    Device: iPhone and iPad
    Resolution: High
    All my graphics are vector so I assumed that it would look crisp on both devices. It is not as perfect looking on the iPad as it appears on my PC monitor but I can live with it. I can't however live with the iPhone 4 appearance.
    I am therefore seeking advice on how to improve the iPhone 4 appearance.
    As far as I am aware, there is not a way to use 2 sets of graphics, one for each device. Please correct me if this is wrong and it would offer me a solution.
    Would doing all the graphics as PNG be a solution?
    Btw I am using AIR 3.2 SDK if that has any relevance and my graphics are static.
    Thanks in advance.

    Thank you for the swift reply Colin. I do not recall setting a stage.quality setting - is the default setting low?
    I did a quick google search and see this appears to be the code I need. I assume I put this in the first frame of my Flash movie?
    stage.quality = StageQuality.MEDIUM;
    Thanks
    Paul

  • I am using Numbers app for the ipad and it has been working absolutely fine but now, when I want to email a spreadsheet as a PDF via the 'share and print' option, the file now doesn't appear as an attachment to the recipient. Any ideas please?

    I am using Numbers app for the ipad and it has been working absolutely fine but now, when I want to email a spreadsheet as a PDF via the 'share and print' option, the file now doesn't appear as an attachment to the recipient. Any ideas please?

    Hi mafiose15,
    Thanks for visiting Apple Support Communities.
    Restoring your iPod to factory settings is the best way to try and get it back to working order. You can use the instructions below to restore it:
    How to restore iPod
    Verify that you have an active Internet connection, because you may need to download new versions of the iTunes and iPod Software.
    Download and install the latest version of iTunes if necessary.
    Open iTunes. Connect your iPod to your computer using the USB or FireWire cable that came with your iPod.
    After a few moments, your iPod will appear in the Source panel in iTunes.
    Select your iPod in the Source panel. You will see information about your iPod appear in the Summary tab of the main iTunes window.
    Click Restore.
    If you are using a Mac, you will be asked to enter an administrator’s name and password.
    A progress bar will appear on the computer screen, indicating that stage one of the restore process has begun. When this stage is done, iTunes will present one of two messages with instructions specific to the iPod model you are restoring.
    Disconnect iPod and connect it to iPod Power Adapter (typically applies to older iPod models).
    Leave iPod connected to computer to complete restore (typically applies newer iPod models).
    During stage two of the restore process, the iPod displays an Apple logo as well as a progress bar at the bottom of the display. It is critical that the iPod remain connected to the computer or iPod power adapter during this stage.
    Note: The progress bar may be difficult to see, because the backlight on the iPod display may be off.
    After stage two of the restore process is complete, the iTunes Setup Assistant window will appear. It will ask you to name your iPod and choose your syncing preferences, as it did when you connected your iPod for the first time.
    You can find the instructions in this article:
    Restoring iPod to factory settings
    http://support.apple.com/kb/ht1339
    All the best,
    Jeremy

  • I am looking for an app for my iPhone and iPad, equivalent to Font Book on the iMac. I would like to be able to download a variation of fonts to use in Pages. Does this exist?

    I am looking for an app for my iPhone and iPad, equivalent to Font Book on the iMac. I would like to be able to download a variation of fonts to use in Pages. Does this exist?

    You can't add fonts to an iOS device.
    To let Apple know you want this feature, use
    http://www.apple .com/feedback

  • Looking for a Dictation App for my Iphone and MacBook Pro. Want to send all dictation to Word. I have Dragon.  Should I purchase Dragon Premium or Dragon for Mac?

    Looking for a Dictation App for my Iphone and MacBook Pro.
    Want to send all dictation to Word.
    I have Dragon.  Should I purchase Dragon Premium or Dragon for Mac?

    Care to share which OS you are using?
    OS has its own dictation program. 
    Should I purchase Dragon Premium or Dragon for Mac?
    Only you can make that determination.  Read the system requirements for both and read the reviews.

  • I bought "Pages" "Keynote" and "Numbers" Apps for my iPad and iPhone

    I bought "Pages" "Keynote" and "Numbers" Apps for my iPad and iPhone and now I have a new iMac but the Apps didn't install? I thought when you bought an App that is on one device it would be available on all other devices? The App store is now wanting me to pay for the Apps again? Is this right? Do I have to buy another  version of these Apps for the iMac?

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico my first language is Spanish. I do not speak English, however I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    That is determined by what type of disk that it is. It may be a disk that only allows you to install Windows on your Dell computer and would not allow Windows to be installed on a Boot Camp partitition or as a virtual machine in an app such as VirtualBox on your Mac. If that is the case, you would need to purchase a retail Windows install disk.

  • Why do we have separate apps for phone, messages, and contacts?

    I'm trying to reduce the number of apps that I need to run, and this one just boggles my mind.
    Why do we have separate apps for phone, messages, and contacts?
    The messages is to tightly coupled to the phone, that it doesn't make any sense for them to be separate.
    The contacts app is nothing more then looking at the contacts from the phone app.
    What's the story here?
    Does it have something to do with the contacts also being part of email app?
    Actually, that's my other biff... why are they entangled as such?
    Phone contacts should have phone#, email contacts should have email addresses.
    If you want a contact to have both phone# and email address, then the two apps (phone/email) should be combined.

    The contacts app is nothing more then looking at the contacts from the phone app.
    What's the story here?"
    The forums would be full of people complaining that you had to go through an additional step ( opening the phone app) to get to contacts.  I use the contacts app from the home screen far more often then I use it in relation to calling someone.
    I like the way it is far more than the way you propose.
    You can leave feedback for Apple at:
    http://www.apple.com/feedback

  • Integration for Business Workflow and SAP Interactive forms by Adobe

    Hi
    Is any of you able to watch the following SDN eLearning Session ?
    <i>Integration for Business Workflow and SAP Interactive forms by Adobe (RIG session 7)</i>
    I can play nearly all the other eBooks, but not this one. Any idea ???
    Regards, bernhard

    I solved the problem.
    It is not possible to view the ebook with IE 7.0. So I removed the new Internet Explorer and everythink is working fine.
    Greetings, Bernhard

  • Expert secrets for using RMAN and Data Pump by kamran agayev and Aman Sharm

    Hi ,
    Is this book available in INDIA:
    Expert secrets for using RMAN and Data Pump by kamran agayev and Aman Sharma
    How can i get this book in India.
    Thanks,
    Alok
    Edited by: user12141893 on 6 Apr, 2012 11:25 AM
    I tried to buy this book online from rampant's official site but shipping cost was more than cost of book.
    Book is not available on Flipkart and Amazon also

    Helios,
    OP can send a mail to me too :-) .
    OP,
    We are in talks with the publisher. In India, the book would be by another partner publisher and details of it I shall be updating when would be available. Thanks for the interest in our book.
    Aman....
    PS: This is a technical forum and is not meant for such topics. Please discuss by communicating with Kamran and me over email personally. Let's keep the forum for the very purpose it is meant for-technical discussions.

Maybe you are looking for

  • Image creation failed?

    Trying to create a NetRestore image. Used SuperDuper to repair peremissions and create DMG of Client Zero HD Ran SIU. Log Follows. Seemed to be going OK but hung at this point, or was I too impatient to wait any longer? had been sitting there for 20+

  • Suppress Target structure based on condition

    Hi How to suppress target structure based on condition Example: Source is like: <Details> <Name>abdc</Name> <ID>234</ID> <Address>US</Address> </Details> I have two target structures 1: <Details> <Name>abdc</Name> <ID>234</ID> <Address>US</Address> <

  • Purchases from my iPhone are not showing up in my iTunes 11 library?

    They show up in playlists, such as one I created and my recently played and purchased playlists, but they are absent from my library. They are on my computer under itunes, but they just won't show up on my itunes library. I have the newest iTunes, an

  • Moving the ZENworks Mobile Management Database

    So, as a test, I wanted to check if I could move the DB from one (internal SQL Express) server to another regular SQL 2008R2 Server. The DB was before on the same server as the Web/HTTP feature was installed. Now I moved the DB and I can't login as t

  • GP process action details in Web dynpro

    Hi I want to get the list of action  and the actions details for a GP Process in web dynpro callable object. Can anyone please help me.