Creating additional input areas as required

Good Day;
I have been asked to design a form using Livecycle that will replace an existing MS Word form. The form will be used to grant access to a total of 42 information systems.
At first glance this did not seem to be a problem until I stated to design the layout. For the most part the form is more or less straight forward. Where I ran into design problems was with the best way to have the user fill in what systems they were requesting. A user could request anywhere from 1 to 42 of the information systems.
The initial design had all 42 systems listed with option required. This, (I thought) was way to long.
Example: These field are inside a table.
System Name                     | Requested View    | Domain Requested
AAAAA -AAAAAAAA    |  Select 1 or all of 5|  Select 1 or all of 3
What I would like to do is create this part of the form as a “as required”. The way I envision this working is to have a dropdown for the first system and then the user can request request another entry (using a button etc..), a blank row would come up and from a drop down they would be able to pick the system name and then be able to select the Request View and Domain Requested. I hope I have explained this well enough
Does anyone know if this is possible?
Thanks
Chomp

Thank you very much Paul. This gets me pointed in the right direction. Now I just need to put the
full form together.
Thanks Again
Chomp

Similar Messages

  • If I buy Microsoft office for MacBook pro will I be able to use diacritical marks for Welsh input? Welsh requires a circumflex sometimes on a,e,i,o,w and y, in addition to a diaeresis. An acute accents are not a problem as they occur in other languages.

    If I buy Microsoft office for MacBook pro will I be able to use diacritical marks for Welsh input? Welsh requires a circumflex sometimes on a,e,i,o,w and y, in addition to a diaeresis. An acute accents are not a problem as they occur in other languages.

    You can add in System Preferences, Language & Text, Input Sources, Welsh keyboard

  • Required BAPI for CK74N Transaction - Creating Additive Costs

    Hi Experts, Good Day.
    My functional guy has given a requirement to create BDC for transaction CK74N. But as it is an 'Enjoy' Transaction I thought to opt BAPI instead of BDC. But in the forum I did not find exact BAPI for this and also found some suggestions to develop BDC for old transaction CK74.
    So, as of now I have return BDC for CK74. Here also I have a doubt. When I am executing BDC with 'N' - No-Screen mode I am getting an error like "No batch data found for this field" for some materials. This message is raised only those materials for which Costs has not maintained even for once. In this case at one screen the BDC_CURSUR is showing in some other field instead of Pricing field. So, I am getting error. But same BDC is fine with materials for those Costs has been maintained at-least one time.
    So, I hope with BAPI I can overwrite this error. Can anyone please let me know a BAPI for creating Additive Costs (CK74N).
    Regards,
    Vijay

    Vijay
    If you will pass data to above mentioned function module the SAP standard code will make sure BDC is coded in correct way. Please try to use it..Else you will have to determine via code in your BDC whether its first time or not..if first time means a new subscreen will come.
    Nabheet

  • What additional resources are required to do the TestStand training courses I and II?

    I have the TestStand course manuals for courses I and II and am currently trying to refresh what I learned a couple of months ago when I took the courses.  I'm at the point where almost every VI required comes up broken because additional libraries are required in LabVIEW.  Why aren't the additional required libraries listed in the course documentation?  What are the additional libraries and how do I get them?

    Hi there!
    If I had to guess I would say that you're missing the TS support API libraries for LabVIEW... Since those are the only 'special' libraries used by any of the examples in the TestStand 3.x or 4.x training manuals.
    I'm going to assume that you have some recent version of LabVIEW (8.x?) and some recent version of TestStand (3.x) installed? Unless you took the NI training course more than a few years ago, in which case you might need earlier version of TS, LabVIEW version really shouldn't matter. Evaluation copies ought to be sufficient so I wouldn't blame those... 
    (If you don't have LabVIEW at all. Make sure you have the correct LabVIEW Run Time Engine version, as that's a pretty common source of TS errors... But without LabVIEW half of the exercises in the training manual are moot anyway...)
    In your LabVIEW install path, (C:\ program files etc...\LabVIEW 8.x\)  look for the folder path "vi.lib\addons\TestStand\", it ought to be full of a few *.llb files that TS would furnish to LabVIEW when the product is installed.  Sometimes when you install things in an unexpected order, or if you have multiple LVs installed, these items don't get put where you expect.
    If the folder is empty, copy what you need from... the TestStand install path (C:\ program files etc...\TestStand x.x\) folder "AdapterSupport\LabVIEW" and restart LV. This might get you up and running.
    If the folder is not empty. Try running a MassCompile from your LabVIEW Tools ->Advanced menu, there might be a version incompatibility issue...
    Feel free to send me an email if you're still stuck. But there aren't any external dependencies/hardware drivers needed for the TS training sequences...
    Cheers!
    --Elaine R.
    www.bloomy.com
    Cheers,
    Elaine R.
    www.bloomy.com

  • Addition doesn't work until both inputs are initialized?

    I'm using a Logitech web camera to take pictures. I want to operate in either of two modes:
    1) Overwrite - each picture taken replaces the previous one
    2) Accumulate - each picture taken is added to the previous one (pixel by pixel)
    The attached .doc shows a simplified version of the VI
    It's working fine except for one thing ... I can't start out in "accumulate" mode. I have to take one picture in "overwrite" mode before "accumulate" mode will begin to work. If I try to begin in "accumulate" mode, the display just sits there blank regardless of how many pictures I take, until I take one in "overwrite" mode.
    Does this must mean that the addition function doesn't work until both inputs are initialized? If I initialized the shift register to an array of zeros would that fix it? I tried it and it didn't seem to help, but maybe I need to make sure the initialization array is the same size as the picture array?
    Thanks
    Eric Coppock
    [email protected]
    Ball Aerospace & Technology Corp
    Attachments:
    accumulate example.doc ‏47 KB

    Look up the rules for addition and you will find that when you add two arrays, you can only add elements that exist(in both arrays). Otherwise, there is nothing to add. If your shift register is uninitialized, then that's your problem.
    Two solutions:
    1... If you know the size ahead of time, then initialize an array of that size with zeroes, and wire that to the outside of your shift reg.
    2... You could detect I = 0, and replace the array with your new data on the 0th iteration, regardless of the mode switch. In other words do not perform an ADD if there's nothing there yet.
    Either one of these is preferable to using the data from an uninitialized Shift reg. The data might not exist, or it might be leftover from your last run an hour ago.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

  • Additional plugins are required to display all the media on this page

    I realize plugins are not part of Mozilla, but Mozilla is giving me a looping error message that something is missing when I don't see at all that anything is.
    I receive this message when I am trying to play an audio file for transcription. "Additional plugins are required to display all the media on this page". I know the program uses QuickTime, and that is up-to-date, but not sure what other plugins it would need.
    There is an "Install Missing Plugins" button. When I click that, a Plugin Finder Service window opens and the message "No suitable plugins were found".

    Do you have the Windows Media Player plugin?
    * https://support.mozilla.org/kb/Using+the+Windows+Media+Player+plugin+with+Firefox
    * http://kb.mozillazine.org/Windows_Media_Player#Missing_plugin
    * http://www.interoperabilitybridges.com/windows-media-player-firefox-plugin-download
    * http://www.interoperabilitybridges.com/wmpff/wmpfirefoxplugin.exe
    * http://windows.microsoft.com/en-US/windows/downloads/windows-media-player (see Firefox)

  • It says "additional plugins are required to display all media.... " but when I click "Install Additional Plugins" they're not found ?? helppp

    It says "additional plugins are required to display all media.... " but when I click "Install Additional Plugins" they're not found ??
    All I'm trying to do is play a video but It won't let me.. any help??

    Can you post a link to the page where you have that problem?

  • Formula that creates additional rows

    Greetings everyone. I am fairly new to Apple numbers. I have a spreadsheet that calculates an investment return for clients year by year based on their age. I need the spreadsheet to go out to the clients age 100. There is an input page that I put in the clients age as well as additional information that it uses to calculate the investment return. It then takes the clients age and starts off the first column (client age) with that value. Each row has about 5 columns with different information being displayed. I am looking for a way for numbers to take the clients age column and automatically continue to create additional rows until it gets to the clients age 100. I would want each additional row to have the same formatting, formulas, and color scheme as the row before it. Is their a formula that would do this or do I need to create some sort of script?
    Thank you,
    Matt S.

    You can put the last row (the totals) in a footer and it will always be there or it can be a regular row that is TRUE so it is not hidden.
    If you make the table 125 years in length and automatically hide the unnecessary rows as I have outlined, you won't have to add rows, subtract rows, or tailor it in any other way for each client. It will tailor itself to the correct length based on the age you specify on the client's input page. And next year, when they are a year older, you can change their age in the client input page and the table will change accordingly.
    Depending on how you handle the formulas within the spreadsheet, you can sum things up the normal way with the SUM function or you can sum them up with SUMIF where the "if" is "if the row is TRUE". In other words, if every row that is FALSE has zeros, you can use SUM; if the rows that are FALSE have nonsensical numbers, you could use SUMIF. Formulas for things like rate of return might take some finessing but they too can be done. Any charts you might have can be made to not show hidden data (it's a checkbox), so they too are not a problem.
    I guess I'm from the school of "if it can be done within Numbers, then do it within Numbers" versus throwing scripts into the mix. It will be more versatile and portable if it does not require a script because a script is a separate entity, not part of the spreadsheet. Also, if you make changes to the spreadsheet, you may have to make corresponding changes to the script. That's just my opinion. It's your call. I'm sure Yvan can set you up with a terrific script.

  • Input file missing required key: [Distribution] GUID.

    Hi,
    I freshly converted a .bld (LV7.1) file to .lvproj (LV11) through Tools > Convert Build Script. It ran well.
    Opening the .lvproj, I then successfully build the .exe but failed on the Installer :
    Visit the Request Support page at ni.com/ask to learn more about resolving this problem. Use the following information as a reference:
    CDK_Build_Invoke.vi.ProxyCaller >> CDK_Build_Invoke.vi >> CDK_Engine_Main.vi >> IB_MSI.lvclass:Build.vi >> IB_MSI.lvclass:Engine_Build.vi >> NI_MDF.lvlib:MDFBuildDist_Build.vi
    Loading product deployment information
    Adding files to installer
    Validating...
    Copying files...
    Scanning files...
    Updating files...
    Build complete successfully.
    Done adding files
    Preparing to build deployment
    Copying products from distributions
    Building deployment
    Copying setup files
    Setting merged database information
    Setting product information
    Setting developer part information
    Starting final build
    *** Error: An internal tool or library returned an error. (Error code -21)
    Error Messages
    Input file missing required key: [Distribution] GUID.
    *** Error Details:
    Error in MDF API function: _MDFBuildDist_Build
    Error List
    .\InputParser.cpp(5420): InstallerError 105
    Input file missing required key: [Distribution] GUID.
    <No Debug Message>
    *** End Error Report
    Done building deployment
    Any idea ?
    Many thanks

    Not too sure... Is your installer supposed to create any keys in the registry?
    Anyway, open your installer's build specification and check all the sections, I would suggest to bring specific attention to the following sections :
    - "Source Files", because here, all the "extra files you want you installer to place in specific format have to be included/referenced in the project (.lvproj)
    - "Registry", that's only if the installer is supposed to create keys in the registry
    - "Additional installers", make sure you only tick the boyes corresponding to drivers/module that are required for you application and also make sure that when building, the installer you used to install those drivers/modules on your computer are still available.
    Hope this helps
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • How to create additional Line in file based on condition available as part of ZINVOIC02 Idoc segment

    Scenario Details:
    Receiving Zinvoic02 Idoc in PI. Idoc to file translation creates comma separated file with .csv extn
    The logic was kept in such a way that how many E1EDP01 (items) are available in IDoc that many no of records will be created in csv file.
    The file logic for some the fields is as below:
    No of records
    InvNumber
    InvDate
    CusNumber
    LineitemDesc
    Tax1Type
    Tax1%
    for 1st E1EDP01
    E1EDK01-BELNR
    E1EDK03-DATUM
    E1EDK01-PARTN
    Populate when E1EDP04/MSKWZ=O2 or O4 with E1EDP19/KTEXT
    Hardcode when E1EDP04/MSKWZ=O2 or O4
    Sum all E1EDP04 /MSATZ when E1EDP04/MSKWZ=O2 or O4
    for 2nd E1EDP01
    E1EDK01-BELNR
    E1EDK01-DATUM
    E1EDK01-PARTN
    same as above
    same as above
    same as above
    for 3rd E1EDP01
    E1EDK01-BELNR
    E1EDK03-DATUM
    E1EDK01-PARTN
    same as above
    same as above
    same as above
    Additional Line to be created when one or more of E1EDP01 is having E1EDP04/MSKWZ = O3
    same as above
    same as above
    same as above
    Hardcode "REIM for USE TAX"
    Hardcode ""
    Hardcode ""
    Now we have got addition requirement to add a new lineitem when tax code is equal to O3 for any of the E1EDP01.
    Is it possible to create additional lineitem based on condition. If yes, please share what should be the approach.
    How we can create the additional lineitem?
    Currently we are using E1EDP01 to do context handling.
    The target structure is :
    MT_FILE
         INVOICE     0..unbounded
              InvNumber     0..1
              InvDate          0..1
              CusNumber     0..1
              LineitemDesc     0..1
              Tax1Type          0..1
              Tax1%               0..1

    Hello,
    Please add one extra field in the data structure of the target mapping and let its occurrence be 0..unbounded under the root node 'MT_ADP_Invoice'.
    Apply the condition, if tax code MSKWZ (with its context changed to E1EDP01) equalsS to '03', then map it to the newly created target field whose occurrence is 0..unbounded.
    This will then create an additional field which is your requirement.
    The above is one way.
    But if you want to have the same target field name as ADP_File appended for tax field being '03'.
    Then in that case you can you two message mapping for one common operational mapping / interface.
    In the first message mapping you need to have one target data structure created with the source data structure remaining the same as the one shown by you in scrn shot. Now this target data structure will be similar to the source, except that you need to add one more field at the end(name different from other fields) in target (whose occurrence should be 0..unbounded), and it needs to be mapped to E1EDP01 provided the tax code field MSKWZ(its context changed to E1EDP01) equalsS to constant '03'.
    In the second message mapping you need to map the target structure of previous message mapping to the actual required structure. The newly added field should be mapped to ADP_File of your final target structure.
    This will then create the same structure as required.
    Note : Please change the occurence of ADP_File to 0..unbounded.
    Regards,
    Souvik

  • Use E-commerce Attributes to create an input text field

    Hey BC Community,
    Wondering if anyone has been able to create any specialized code to use an e-commerce attribute field as a input text field?
    I have a clients that needs to capture various input fields from the customer on the Large Product view.  Unfortunately I have no more open slots (yup - used up all 4 custom slots, unit type, product meta, etc.) so I can use the "How to Set Up Special Instructions Box" idea, as I need to put the <input> fields in a Content Holder, as not all of these products have this required input fields.
    Long story short, does anyone know how to use the {tag_attributes} area of the e-commerce platform to create user input fields, which will of course, populate into the Shopping Cart as well?
    Thanks,
    Aaron

    Your the third person to ask about this today:
    Open Field Attribute

  • OTL (Additional Input Value) help greatly appreciated

    Hi there,
    I have a requirement where we wish to use OTL for a front end to a number of allowances which require the population of additional input values on the element. These could be for example miles travelled or the method of travel.
    Does anyone know how this can be done?
    I am envisaging creating an element with the following input values :-
    Hours
    Multiple
    Rate
    Rate Code
    Miles
    I need the additional field to be displayed on the timecard. Does this require custom timecard templates? How do I make the additional field on the timecard populate the Miles input value when the time entry is transferred from OTL to BEE.
    Any advice on this would be very greatly appreciated.
    Many Thanks and have a great week
    Kev

    You need to follow these steps:
    1. Add the input values to your Element, check element link, include the element to your element set, run "generate flexfield process" with the above element set.
    2. Create mapping components for each of the new fields which you want to show on the timecard to let system know which column these attributes will get mapped to.
    3. Add the mapping components to your receiving application's Retrieval and Deposit process.
    4. Now modify your timecard layouts to show the additional fields you want to show.
    For detailed information, please ,follow the Note:207333.1
    Oracle Time & Labor Implementation and User Guide, Release 11i, September 2006

  • OTL: Additional Input Values on Timekeeper

    Hello team,
    I have a requirement where I need to have an additional field on Timekeeper form called "Unique Hours". For this I did the following steps:
    1. Created this additional input value in the relevant element.
    2. Added to element set and ran Generate... process.
    3. Created a value set.
    4. Registered the input value + value set in Alternate Name Mapping and then with Alternate Name Definition.
    5. Also put in the Alternate Names Definition for timekeeper.
    After doing this, I can see the new field on the TK screen and enter value in it but it doesnt transfer to BEE.
    I need some real help on this please.
    Thanks in advance...

    Have you defined the mapping component for the new input value and added it to the retrieval process?
    --Shiv                                                                                                                                                                                                                               

  • Flash Pro CC  dynamically create an input field problems?

    I dynamically created an input TextField and designated a TextFormat object that is a Thai Font. The difficulty I have is the superscript above the Thai letters will not display. These tone marks are cut off by the uppermost dimension of the field.
    The following is an example of the problem   "   นี้  "
    The tone mark "  ้  "does not display
    If there are multiple lines the tone marks are obscured by the line above.
    I have fooled around with carriage returns and RegExp as a work around but this is torture.
    Any ideas?
    thanks

    Thank you Rob for your help. The  leading property will add whatever space I require between lines. So  the response was helpful there. However it does not apply to the first line.I have worked around this by adding a  carriage return as the initial line of text. This is working for me

  • Create additional message control

    Hi all
    We intend to create additional message controls for customers / vendors etc however, we are unable to find any transaction for this purpose. Transaction OBA5 only allows to select pre-defined messages but we need to create new ones with specific requirements.
    Can anyone help in this regard.
    Thanks
    Noman

    Hi,
    Please do the steps as given below :
    1. Go to transaction code SE93.
    2. Enter Message class.
    3. Enter Message number.
    4. Go to transaction code OBMSG.
    5. Double Click on Messages
    6. Enter Application Area (same as Message class).
    7. Enter Message number..
    8. Enter Message type i.e. I (Information), W (Warning) or E (Error).
    This will be applicable for all. In case you want to restrict to certain user
    9. Go to transaction code OBA5.
    10. Enter Application Area.
    11. Enter Message number.
    12. Enter User name (User code).
    13. Enter message type for him i.e. I (Information), W (Warning) or E (Error).
    Hope, this solves your issue.
    Regards,
    Tejas

Maybe you are looking for

  • Unable to create a new view for SAP UI5 in NWDS

    Hi UI5 Profis, I'm just getting started with SAP UI5 and wanted to create and run my first application using the UI5 Tools wirh NWDS. After having installed NWDS and the UI5 Tools I create new SAP ui5 project, but the wizard always run into error, wh

  • Changing file extension default application

    Hello, I periodically change my .avi and .mpg movies default "open with" application to VLC, but although the association change in first place, in a few days the default application mysteriously turn back to QuickTime. Is this a bug or an Apple Quic

  • Cannot find bean  in html:write

    hi everybody i am new to struts in my application i am getting the following error Cannot find bean error in any scope in my code in jsp i have given logic:messagesPresent> <UL> <html:messages id="error" message="false"> <LI><bean:write name="error"/

  • Help on JDBC Date type

    How do I retrieve and set a date type in Microsoft Access?

  • CRM 2015 + IFD Error when i add new User

    Hi all member, I have a CRM 2015 Server on-premise after installing and configuring IFD + ADFS, when i want to add a new user i have this error :  InnerException: System.DirectoryServices.DirectoryServicesCOMException (0x80072032): An invalid DN synt