Allow users to add dynamically to the lines - data form

Hello

In some ways, I do not understand how to use this function to "allow users to dynamically add rows. When I check this option in the online form, where and how can a user add the lines? I understand that users with write access can do it, but I have write access, but I don't see any button Add or any possibility of adding the lines from the form online.

Please let me know.

Thank you

Hello-

Have you tried Edit > Add Row?

Thank you!

Tags: Business Intelligence

Similar Questions

  • Is there a a way to users to add products in the front-end, using a Web - App?

    I'm racking my brains trying to find a way to allow users to add products to the front-end servers on their own.


    I'm building a site for a client who needs of users are able to create its own window, a bit like ebay. This is exactly the feature I want: Provider Frontend products - download Magento Connect


    There MUST be a way to do this with a web application, even if it means writing in code... someone can suggest a way to do?

    In short, case No., but is possible.

    Solution 1: Hosted on BC, external interface which means that interface with the BC APIs, externally hosted server.

    Solution 2: Wait for the API v3 comes out... no timeline given Adobe. This would eliminate the need for external API server.

    Can do the two solutions for you, but the 2 will not work until adobe allows it.

  • Allow users to add documents

    Hello

    I'm really new to this kind of things site... so if I posted in the wrong place, I apologize...

    I'm building a site using CS5, PHP and MYSQL.

    I am trying to find a way to allow users to add documents to the site via the Web page, they should be able to navigate (I can at least find the field of file in a form), and then attach the document they select. then have a list of attached documents, they can click on (as in the example below)

    Anyone have an idea how I could go about this?

    Thank you

    KK

    example.jpg

    It may be better for you to go to a commercial product like the one found here http://www.dmxzone.com/go?4509

    If this isn't what you want, you can learn more here http://www.php.net/manual/en/features.file-upload.php

    GRAMPS

  • Allow users to add the caption of the checkbox

    I created a sform which includes a standard set of checkboxes with most of the items that users would be able to select, what I would do is allow users to add another check box and then enter the legend, or default provide empty check boxes and allow users to add the caption in this way.

    Hello

    The easiest way would be to have a checkbox without legend and then place a textfield to the right. Optionally set the border of the textfield none or a continuous line.

    You could have the box and textfield in a repetitive subform, with a button add a checkbox.

    Hope that helps,

    Niall

  • I use creative cloud of Adobe Premiere Pro and it does not allow me to drag. In the line of time, only the audio files of the video MXF files. Plays in the video source, but does not allow me to change on the time line with the. MXF files.

    I use creative cloud of Adobe Premiere Pro and it does not allow me to drag. In the line of time, only the audio files of the video MXF files. Video plays in the source window, but does not to drag me and thenedit on the time line with the. MXF files. audio will slide to the time line, but not the video. Interestingly, not later than end of December 2015 it allowed me to change with .mxf files, but no, it won't. Any help out there?

    Neil, get it fixed, I do not have the video channels set correctly on the left

    side of the line of the time. Learn the new adobe; Thank you

    Monday, February 15, 2016 13:20, R Neil Haugen [email protected]>

  • procedure that will dynamically build the query data and table Medallion

    Hi people,

    I write a procedure that dynamically build the query data and insert in the table "dq_summary".
    enforcement procedure with success and data not inserted into the table 'dq_summary '.

    I have thin problem in code attached below
    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    FOR rep IN cur_di_attr
          LOOP
            dbms_output.put_line ('d: ');   
            
            BEGIN
              EXECUTE IMMEDIATE 'SELECT table_name FROM ' || sum_tab || ' WHERE id = ' || rep.attribute_id INTO rep_tab;
              dbms_output.put_line ('rep_tab: '||rep_tab);
              run_query := run_query || ' ' || rep_tab || ' WHERE ' || nvl(wh_cond, '1 = 1');
              EXECUTE IMMEDIATE run_query INTO end_rslt;
            
              EXECUTE IMMEDIATE 'UPDATE dq_summary SET ' || prop || '_' || p_code || ' = ' || end_rslt || ' WHERE attribute_id = ' || rep.attribute_id;
              dbms_output.put_line ('e: ');      
              dbms_output.put_line ('rep_tab: '||rep_tab);
              dbms_output.put_line ('end_rslt: '||end_rslt);
              dbms_output.put_line ('f: '); 
            EXCEPTION
              WHEN no_data_found THEN
                rep_tab := '';
                sum_tab := '';
            END;  
          
          END LOOP;    
    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    but in the procedure below must be run several times
    create or replace
    PROCEDURE DQ_REPORT_PROC
    AS
      prop                              di_proposition.pro_name%type;
      col_var                           VARCHAR2(100);
      p_code                            dq_parameter.para_code%type;
      sum_tab                           di_proposition.summary_table%type;
      run_query                         dq_parameter.run_query%type;
      wh_cond                           dq_parameter.where_cond%type;
      end_rslt                          VARCHAR2(20);
      rep_tab                           VARCHAR2(50);
      v_error_msg                       VARCHAR2(200);   
      v_error_code                      VARCHAR2(200);  
      v_object_name                     VARCHAR2(50)                          DEFAULT 'DQ_REPORT_PROC';
      v_iss_no                          VARCHAR2(20)                          DEFAULT NULL;
      CURSOR cur_di_prop IS 
        SELECT upper(replace(replace(pro_name, ' '),'-')) pro_name
          FROM di_proposition;
      
      CURSOR cur_di_para IS
        SELECT upper(para_code) para_code, run_query, where_cond
          FROM dq_parameter;
      
      CURSOR cur_di_attr IS 
        SELECT attribute_id
          FROM dq_summary;
    BEGIN
      
      DELETE FROM dq_summary;
    
      INSERT INTO dq_summary (attribute_id, entity_name, attribute_name, data_champ) 
        SELECT a.attribute_id, b.entity_name, a.attribute_name, a.data_champ
          FROM di_attribute_master a, di_entity_master b
         WHERE a.entity_id = b.entity_id;
    
      FOR c_prop IN cur_di_prop
      LOOP
        prop := c_prop.pro_name;
        
        BEGIN
          SELECT distinct SUBSTR(column_name, 1, INSTR(column_name, '_')-1), summary_table
            INTO col_var, sum_tab
            FROM user_tab_cols a, di_proposition b
           WHERE a.table_name = 'DQ_SUMMARY'
             AND upper(replace(replace(b.pro_name, ' '),'-')) = prop
             AND SUBSTR(a.column_name, 1, INSTR(a.column_name, '_')-1) = upper(replace(replace(b.pro_name, ' '),'-'))
             AND upper(b.status) = 'Y';
             
             dbms_output.put_line ('col_var: '||col_var);
             dbms_output.put_line ('sum_tab: '||sum_tab);
             
        EXCEPTION
          WHEN no_data_found THEN
            col_var := '';
            sum_tab := '';
        END;
    
        dbms_output.put_line ('a: ');
    
        FOR para IN cur_di_para
        LOOP
         dbms_output.put_line ('b: ');
          p_code := para.para_code;
          run_query := para.run_query;
          wh_cond := para.where_cond;
          dbms_output.put_line ('c: ');
          FOR rep IN cur_di_attr
          LOOP
            dbms_output.put_line ('d: ');   
            
            BEGIN
              EXECUTE IMMEDIATE 'SELECT table_name FROM ' || sum_tab || ' WHERE id = ' || rep.attribute_id INTO rep_tab;
              dbms_output.put_line ('rep_tab: '||rep_tab);
              run_query := run_query || ' ' || rep_tab || ' WHERE ' || nvl(wh_cond, '1 = 1');
              EXECUTE IMMEDIATE run_query INTO end_rslt;
            
              EXECUTE IMMEDIATE 'UPDATE dq_summary SET ' || prop || '_' || p_code || ' = ' || end_rslt || ' WHERE attribute_id = ' || rep.attribute_id;
              dbms_output.put_line ('e: ');      
              dbms_output.put_line ('rep_tab: '||rep_tab);
              dbms_output.put_line ('end_rslt: '||end_rslt);
              dbms_output.put_line ('f: '); 
            EXCEPTION
              WHEN no_data_found THEN
                rep_tab := '';
                sum_tab := '';
            END;  
          
          END LOOP;    
        END LOOP;
      END LOOP; 
      COMMIT;   
    EXCEPTION
          WHEN OTHERS THEN
             v_error_msg   := SQLERRM;
             v_error_code  := SQLCODE;  
             TRACKER_LOG_EXECEPTION(v_iss_no, v_object_name, CURRENT_TIMESTAMP, v_error_msg, v_error_code);
          COMMIT;        
      
    END DQ_REPORT_PROC;
    Published by: BluShadow on February 7, 2012 12:04
    addition of {noformat}
    {noformat} tags.  Please read {message:id=9360002} and learn to do this yourself in future.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

    903830 wrote:

    I write a procedure that dynamically build the query data and insert in the table "dq_summary".
    enforcement procedure with success and data not inserted into the table 'dq_summary '.

    I'm sorry. But there is no kind of say that way. The code is undesirable. The approach is wrong. This will not happen. This will cause the fragmentation of memory in the shared Pool. This will lead to another session being impossible to analyze the sliders because of the fragmented memory.

    Not only that. The underlying data model is questionable.

    All this seems a candidate perfect as an example of how NOT to design and code and use Oracle.

  • Allowing users to add additional lines in a PDF form?

    I use Adobe acrobat X Pro to create PDF forms to capture billing information. Yet, I can not understand how to allow a user to add extra charges. I could create a form that just had a large amount of load lines which could be left blank, but was hopeing to allow a dynamic form of setting where someone can click on a button to just add a new entry of line in the form and the form would settle down and enter in a new series of line entries. Is it possible to do it in Acrobat X Pro?

    For the foorm to automatic adjustment in response to the addition of a new line, you should examine what can offer a dynamic XFA form that you create with LiveCycle Designer. LiveCycle Designer ships with Acrobat Pro as a separate application. More information is in the Designer Help documentation, in the LiveCycle Designer forum here and in a number of tutorials to acrobatusers.com

  • Add ToolTip to the line of the selected table

    Hi all

    I would like to add a ToolTip to a selected line to display by hovering or clicking on a line. Wondering if someone could point me to the documentation on how to do it. I was able to add a ScreenTip to a table column header, but I would like to as that is more dynamic and change based on the line currently being flown (for example display an information column field of a line that is currently be flown over).


    Any help is appreciated,
    Wraith

    Hello
    Hope useful suite

    http://www.Oracle.com/technetwork/developer-tools/ADF/learnmore/35-passing-values-to-popup-169177.PDF

  • CS6 AE does not allow me to add items to the timeline

    V11.04.2 AE CS6 / Mac OS10.8.5

    Working in a new publication, I can only add 1 point to the timeline. After that it is no longer allows me to drag anything to the timeline.

    This is after several previous accidents that happened while making minor changes to the items in the timeline panel.

    Your screenshot shows the film Panel and not the composition Panel. You can't drag additional items in the footage Panel. I think that this is your problem. What happens when you drag additional items to the timeline? What happens when you open the composition Panel?

  • Allow users to upload documents to the server

    Hello everyone,

    I'm working on a Flex app where I allow users to open/save documents as Word document, spreadsheet Excel, PDF, Jpeg media files (any document in digital format) when a user clicks on a link in a Flex application. To do this, I'm using the navigateToURL() method and simply by passing the URL as a URLRequest string to the navigateToURL method. It works fine but whenenver the link is called and the user chooses to save him or any Excel sheet, it displays a unwanted browser window behind the open/save/Cancel dialog box saying action cancelled.

    I can't use "_self" I need to run as it is the Flex application. I tried to use the javascript:window.open() but it did not work.

    (1) is there a process to prevent the open browser window?
    (2) how can we invoke a javascript by using navigateToURL(), I tried to call javascript.alert ('Ok') and also javascript:window.open() both have not worked.
    (3) are there other classes method or flex etc to call external applications (allow to upload documents to the server)?

    Please help me.

    Thank you and best regards,
    Paromita

    Aurélie,

    You can use the file upload feature. This is the documentation:

    You can allow users to download files from a server using the FileReference.Download () method, which takes two parameters: request and defaultFileName. The first parameter is the URLRequest object that contains the URL of the file to download. The second parameter is optional - it allows you to specify a default file name that appears in the download file dialog box. If you omit the second parameter, defaultFileName, the file name of the specified URL is used.

    Following code downloads a file named index.xml from the same directory as the SWF document:

    var request: URLRequest = new URLRequest ("index.xml");
    var fileRef:FileReference = new FileReference();
    fileRef.download (request);

    To set the name by default currentnews.xml instead of index.xml, specify the parameter, defaultFileName, as shown in the following code snippet:

    var request: URLRequest = new URLRequest ("index.xml");
    var fileToDownload: FileReference = new FileReference();
    fileToDownload.download (request, "currentnews.xml");

    I think that it will accomplish what you're trying to do.
    Vygo

  • Failed to add files to the DEP (data execution prevention) on the server terminal server 2008 r2 64-bit

    Hello

    I use the terminal server server 2008 r2 64 bit for 35 users, we have recently updated our ERP software.

    Since then, we meet a few software crashes.

    When we talked with the software they told us to add several of the software files to the DEP (data execution prevention).

    When I tried to add I got this message: "this program must run with enabled data execution protection."

    How can u add these files to the DEP?

    (I tried on another server that is running the software and no problem)

    b.r

    Ronen malka

    Hello

    Your question of Windows is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please post your question in the Technet Windows Forums. Here is the link:
    http://social.technet.Microsoft.com/forums/en-us/winservergen/threads

  • Add PS6110 with the existing data to the existing group

    Hello world

    Is it possible to add a PS6110 with the existing volumes and connections to an existing uninterrupted group iSCSI?

    Thank you!

    Sven

    Hello Sven,

    No sorry.  There is no possibility of group "fusion".  In addition, discovery addresses are different for servers must be updated.

    If you have enough space, you can migrate the data to a group.  I.e. through Storage vMotion from VMware, then reset the released members and add it to the group.

    Any solution you are looking for will be based on the host.

    Kind regards

  • Users of readers to save the xml data file

    Hello
    We can e-mail through the form xml data file without its extension drive. It is very good. Instead of emailing, I want just to save the xml data file in my local system.
    What is the syntax to get it? To send email, I usually create a "submit" button and the area of the submittoURL write us mailto:[email protected].
    What to write to save it on the local computer instead of emailing? I tried saveto: C:\NewFolder or fileto:C:\NewFolder. Nothing works. I think I'm missing the good syntax here.
    I know its possible by RE the pdf, you can get using savedataXML(). I want to achieve this goal without the form.
    Thanks in advance,

    Chaitanya

    The best you can do is set up a submitForm action and uses a type mailto URL. This will prompt the user to attach to an e-mail message using their email client or save it to a file.

  • Allow users of readers to save the form in pdf with data

    I want to create a form that a user of adobe reader can open and save a copy as a pdf with the form data. I know that requires the reader extensions - what I can't understand is if I already have this included and how. I have LiveCycle Designer ES 8.2 - which is the download that I find myself searching LC with the reader extensions.

    Does anyone have instructions on how to do this or know if the feature is available in the version I am running?

    You can add the right to drive Extesnion to save the form with the data locally in two different ways.

    1. in Acrobat Pro allows to open the screen and under the guise of Advanced/extend in Adobe Reader will guide you through a wizard. Once the wixard is finished, save the file and use that one. This technique is limited to 500 users per license.

    2 LiveCycle Reader Extensions Server has a User Interface that best you select the rights you want. There are no imitations luser to this option.

    If you do not have to either option 1 is much simpler. You can download a trial version of Acrobat Pro and try it out.

    Paul

  • In Firefox (Windows) 30 "Style Editor" adds triggered between the lines in the CSS files.

    Hello
    After Firefox update to v30 Style Editor started adding line breaks in CSS files.
    It allows to work with the very annoying CSS files.

    Screenshot:
    http://S10.postimg.org/5v6kd7cw9/firefox_style_editor_went_wrong.PNG

    Version got 31.0 fixed this issue! Thank you!
    Now FF Style Editor is once more useful!

Maybe you are looking for

  • Acer extensa with XP (SP3). Driver Realtek. No sound! Help.

    OS: XP Professional (5.1) Build 2600 BIOS: Version InsydeH2O V1.23 Processor: Intel Core 2 Duo CPU T6400 Direct X 9.0 c Used to be a Realtek Sound Manager in the system tray. No more I started the issues with sounds 2 weeks ago. I noticed when I hear

  • HP m6 for laptop docking station

    Bought a new m6 HP Best Buy released an unbeatable price on Black Friday.  Can anyone recommend a docking station that will support an external monitor with keyboard and wireless mouse, audio, printer, etc.?  Thank you.

  • HP Deskjet 3050 tri color cartridge problem

    I bought genuine HP ink cartridges to replace those I used quickly to the top. That black worked fine, but when I later put the tri color in the 'tri color cartridge problem' message came, and when I tried to print it stated that he was "damaged or d

  • CMYK symbol value

    A problem that I meet all working with symbols, is that when I have a symbol on my work and I want to take a certain color of this symbol, the CMYK values are different from CMYK values inside the symbol.So let's say I have create a circle with a fil

  • How to compile one of the examples of C/C++ Oracle? (Windows)

    Is it simple? Can I create a Console API in Visual Studio, and plant the headers required for chain click on compile? Or he needs a more specialized procedure?