How to assign Array/collection of data payload Humantask

Hi guys,.

I have an obligation to pass a collection of DBAdapter data for a payload of humantask which also has the collection type.

but I can't give the collection to the collection.

If I tried to pass of each column to the variable of the payload, then it will affect only the first data in the collection.

I have attached the screenshot.

Thank you

I addressed this in a recent post: Re: store multiple values in a process data object

Dan

Tags: Fusion Middleware

Similar Questions

  • How to assign array of Boolean values in LabVIEW?

    I want to assign array of Boolean values. IAM not able to do. For each Boolean I want to assign each value. Please help me...

    Thank you Mr President... He worked.but I'm stuck with the other problem.i created a 4-page tab control. How is it possible to change the 1 tab to Page 2 and page 3 page, etc. by using a Boolean control?

  • How can, during the collection of data, start a new column in my table every 100 data points?

    Hello! I have a problem with my data - I get in a wide range of 1 x 1000, but it's the repeated measures, each taking about 500 data points. I want to break this table for this data string start a new column in my table every 500 points given. I don't know how to do it-please help!

    datacompiler100 wrote:

    Hey thanks for the sponsor and the first off I must apologize for the State, I am attaching my VI. I put the part of the VI that I am working on (my team has access, so didn't post everything here) and also attached the data file (when just written in a spreadsheet file, not through the attached VI). I want to convert the long row of data and then start a new column every 50, 100, 5 points (user-defined).

    Using the data from the file, you can reshape everything simply (as you already!), followed by transposition (since you want columns instead of rows). 2D arrays must always be rectangular, so the last column is filled with zeros if necessary. Is that what you want?

    Of course if you try to add a new column in a file, that will not work. You can only add lines in an existing file because of the way the data is organized. To add columns, the entire file must be read, intertwined and all re-written new data in the file.

  • How to pass Array Collection to the test?

    Hello

    I'm going through the c# collection (ArrayList) of application object in TS. I output value assigned in TS container, but when executing end of sequence, then an error occurred: "value specified to not the expected type".

    What should I do to get full access to my ArrayList? What kind of type of variables should I assigned ArrayList?

    Thanks for the help anyway.

    Piotr

    Hello

    It should work if you use ObjectReference rather a container

    Discover this simple example

    Concerning

    Jürgen

  • average of k: how to find the data clustred; : or how to assign number t0 each data group

    Hi Member

    I have download the LabVIEW Machine https://decibel.ni.com/content/docs/DOC-19328 learning package

    I want to run the K average algorithm to group the image in a group of two or three or more

    the problem is how to find the result I mean the image of clustred', the image that contain 2 or three threatened value only

    or how aasign a 1 value for all the intesity who

    belong to the cluster a and 255 for data that belongs to group 2

    for the look of the image as binary image?

    a my vi below

    Best regards

    my post before shows how to set the threshold manually using the slider of the graph.

    Here is the version k-means automated help .vi box tools

    Alex

  • How to get an array of SQL data

    Hello

    I need to get a say DBMS output output of a SQL SELECT query say * OF EMP in the form of a table (with borders and titles).

    Is this possible in Oracle to return a table with borders and titles?

    user13410062 wrote:

    Hi all

    I don't know what am I missing in my question, which is confusing. The only thing I'm looking for is invoking a procedure/function of TOAD/SQLPLUS that can turn a TABLE formatting based on a query (SELECT * from insert_table where insert_table is-)
    CREATE TABLE insert_table
    (
    Number of S_No
    Varchar2 (128) of the player.
    Number of Ranking_Points
    Country varchar2 (128)
    );
    Now the output is visible in the result of the query or DBMS_OUTPUT as

    >> > >

    S_NO PLAYERNAME RANKING_POINTS COUNTRY
    1 Rafael Nadal 12390 Spain
    2 Roger Federer 7965 Switzerland
    3 Novak Djokovic 7880 Serbia

    To add to what anton said...

    When you submit a SQL query to the database, the statement is executed and the data is returned to the calling program.  The database has no awareness of what this program is, or how this program can restore the data on the screen, and the database itself is not any output device to display data.

    Thus, the data can be returned to various programs for example

    SQL * Plus - a terminal/command line screen, which usually uses a font to fixed width and standard characterset

    TOAD - a windows based application that has a "data grid" to display the data, you get

    SQL * Developer - windows-based application

    Oracle APEX - one based on web front end that makes HTML given to it, or can take the data and rendered in the HTML form for you.

    PowerBuilder - an application environment that could choose to display the data in DataWindow, store the data in data warehouses, be an intermediary providing data as a web service or be rendered web pages with data, etc..

    .NET - like PowerBuilder, it might choose to make the data are however required.

    Java - like Powerbuilder and .NET, it might choose to make the data are however required.

    etc.

    Thus, each of these environment renders data on the screen but he wants and will do it in a style that suits.  Some methods that work in an environment do not work in another environment, for example, you could provide data with the tab character included in the data and SQL * Plus can restore data with tags in it, but something like TOAD, perhaps will not and displays a character box indicating an "unprintable" character etc..

    That's why you can't just ask a question say you want to provide a query and get a table with headings etc. displayed, because the table with headings etc. depends entirely on the final user interface until you choose to use.

  • How to assign values to the nested table and passes as a parameter for the procedure?

    How to assign values to the nested table and passes as a parameter for the procedure?

    Here are the object and its type

    create or replace type test_object1 as an object
    (
    val1 varchar2 (50).
    val2 varchar2 (50).
    VARCHAR2 (50) val3
    );


    create or replace type test_type1 is table of the test_object1;


    create or replace type test_object2 as an object
    (
    val1 varchar2 (50).
    val2 varchar2 (50).
    VARCHAR2 (50) val3
    );


    create or replace type test_type2 is table of the test_object2;


    GRANT ALL ON test_object1 to PUBLIC;


    GRANT ALL ON test_type1 to PUBLIC;


    GRANT ALL ON test_object2 to PUBLIC;


    GRANT ALL ON test_type2 to PUBLIC;

    Here is the table object type:

    create the table test_object_tpe
    (
    sl_num NUMBER,
    Description VARCHAR2 (100),
    main_val1 test_type1,
    main_val2 test_type2
    )


    NESTED TABLE main_val1 STORE AS tot1
    NESTED TABLE main_val2 STORE AS earlier2;


    -----------------------------------------------------------------------------------------------------------

    Here is the procedure that inserts values into the nested table:

    PROCEDURE INSERT_TEST_DATA (sl_num in NUMBER,
    Description in VARCHAR2,
    p_main_val1 IN test_type1,
    p_main_val2 IN test_type2
    )
    IS
    BEGIN

    FOR rec in p_main_val1.first... p_main_val1. Last
    LOOP

    INSERT INTO xxdl.test_object_tpe
    (
    sl_num,
    Description,
    main_val1,
    main_val2
    )
    VALUES
    (
    sl_num
    description
    test_type1 (test_object1)
    p_main_val1 .val1 (CRE),
    p_main_val1 .val2 (CRE),
    p_main_val1 .val3 (rec)
    )
    )
    test_type2 (test_object2 (p_main_val2 .val1 (CRE),
    p_main_val2 .val2 (CRE),
    p_main_val2 .val3 (rec)
    )
    )

    );

    END LOOP;

    commit;

    END INSERT_TEST_DATA;

    -------------------------------------------------------------------------------------------

    Here are the block anonymoys what values attributed to the object type and pass values in the procedure:

    Set serveroutput on;

    declare

    p_sl_num NUMBER: = 1001;
    p_description VARCHAR2 (50): = 'Test Val1;

    inval1 test_type1: = test_type1();
    inval2 test_type2: = test_type2();

    Start


    inval1 (1) .val1: = "testx1";
    inval1 (1) .val2: = "testx2";
    inval1 (1) .val3: = "testx3";

    inval2 (1) .val1: = "testy1";
    inval2 (1) .val2: = "testy2";
    inval2 (1) .val3: = "testy3";

    CSI_PKG. INSERT_TEST_DATA (sl_num = > p_sl_num,)
    Description = > p_description,
    p_main_val1 = > inval1,
    p_main_val2 = > inval2
    );

    end;
    /
    Someone can correct me.

    Thank you
    Lavan

    Thanks for posting the DOF and the sample code but whenever you post provide your Oracle version 4-digit (result of SELECT * FROM V$ VERSION).
    >
    How to assign values to the nested table and passes as a parameter for the procedure?
    >
    Well you do almost everything bad that could be hurt.

    Here is the code that works to insert data into your table (the procedure is not even necessary).

    declare
    p_sl_num NUMBER := 1001;
    p_description VARCHAR2(50) := 'Testing Val1';
    inval1 test_type1 := test_type1();
    inval2 test_type2 := test_type2();
    begin
    inval1.extend();
    inval1(1) := test_object1('testx1', 'testx2', 'testx3');
    inval2.extend();
    inval2(1) := test_object2('testy1', 'testy2', 'testy3');
    
    INSERT INTO test_object_tpe
    (
    sl_num,
    description,
    main_val1,
    main_val2
    )
    VALUES
    (p_sl_num, p_description, inval1, inval2);
    commit;
    end;
    /
    

    See example 5-15 making reference to an element of nested Table Chapter 5 using PL/SQL collections and records in the PL/SQL doc
    http://docs.Oracle.com/CD/B28359_01/AppDev.111/b28370/Collections.htm#CJABEBEA

    1. you don't even have the procedure because it is a simple INSERTION in the table you can do directly (see my above code)

    inval1(1).val1 := 'testx1';
    

    Since you have not yet created all the elements, there is no element 1 "inval1". You need EXTEND the collection to add an element

    inval1.extend();
    

    And then, there is an empty element, but "inval1" is a container for objects of type 'test_object1' not for scalars as "val1", "val2", and "val3".
    If you can not do

    inval1(1).val1 := 'testx1';
    

    You must create an instance of 'test_object1 '.

    inval1(1) := test_object1('testx1', 'testx2', 'testx3');
    

    And so on for the other collection

    You don't need the procedure (as my code example shows), but once you fill in the variables correctly it will work.

  • How to retrieve a collection of http.solve?

    How to select an item in the collection of data analyzed?

    For example, I have a variable:

    http. Solve ("idPlano", "\\?method=descargarPlanoTienda & da =(.+?) "------" «(, null, false, Source.Html); "

    As you can see that I didn't not told the parameter "resultIndex' for the http.solve function, so the first scanned item is selected all the time.
    How can I get all the items?


    API Oracle says:
    * resultIndex: *.
    If the model corresponds to a value greater than 1, specify the 0-based index specific to retrieve result. If not specified, all results will be added to the variables collection.
    where is the collection?

    Ok

    So the challenge here is that we need to get all the values corresponding to a regular expressive in a page, the page can contain a number of links with an ID, for example:

    method = descargarPlanoTienda & da = 3
    method = descargarPlanoTienda & da = 2
    method = descargarPlanoTienda & da = 1

    and we need to retrieve all the values, below is the code which allows you to do:

    http.solve ('idPlano', '\\?method=descargarPlanoTienda&idDocumento=(.?) ------"(, null, null Source.Html, false);" +
    + String [] lsVar = getVariables () .getAll ("idPlano"); +
    + for (int i = 0; i)
    + getLogger () .info ("var =" + lsVar) +;
    +}+

    The + String [] lsVar = getVariables () .getAll ("idPlano"); + Returns an array containing all the values contained in this page.

    Concerning

    Alex

  • How to access objects collection

    How to access the collections of objects for example ReportSections report? I can access ReportSection, but not his collection...

    Reference: http://www.ni.com/pdf/manuals/372844e.pdf

    Maybe you don't understand exactly what section of the report is. According to the help:

    Use this class objects to store, update and transfer reports. You typically use the ReportSection objects to avoid creating copies of a report that the report is transferred between the generator of reports, process, Report and ReportView control object models. You can create a new ReportSection object by calling the Report.NewReportSection method. ReportSection objects can contain other ReportSection objects.

    As a general rule, a process template creates and updates the ReportSection object and assigns to the report object by setting the Report.ReportSection property.

    It has a sub-property called ReportSubsections , which specifies a reference to the ReportSections object, which is a collection that contains a list of child ReportSection objects to the current object. Looking at this object, it's a list of items that you can index through to get each.

  • Problem of collecting usage data with advanced BES application on the workspace

    Hi I have a bb10 application that collect usage data. It work propaply when it is on the store and my personal space of peripheral company.

    I used to get the use of the data as the sum of

    msm0, msm1, msm2, msm3, msm4, msm5, msm6, msm7 interfaces. And it was good.

    Now I push through BES application on my workspace. The problem is that I do not have access to these interface more.

    The interface only 3 I have now are lo0, lo2 and pflog

    LO2 give me the use of the data that consumed by the application running in the workspace, but it only gives me something on the use of the data consumed in personal space.

    How I verefied is playing a video in the workspace youyube, he loged in the use of the data. then I played the same video in personal space he connect anything.

    Any help please.

    I don't think that you can solve with a single application, as work and private space are separated.

  • Error renaming dates to an associative array of type date

    Hi all

    I am facing issue while assigning dates in an associative array of type date:

    Oracle version:

    SQL > select * from v version $;

    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    AMT for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production

    Stored procedure, I try to write is as follows

    1. create or replace procedure (jp1)
    2. p_start_date default date trunc(sysdate,'MM')
    3. p_end_date date default trunc (sysdate)
    4. )
    5. is
    6. number of l_no_of_days;
    7. type t_date_id is table of date
    8. index by pls_integer;
    9. l_date_id_arr t_date_id;
    10. Start
    11. l_no_of_days: = p_end_date - p_start_date;
    12. for i from 0
    13. .. l_no_of_days - 1
    14. loop
    15. l_date_id_arr: = p_start_date + i;
    16. dbms_output.put_line (p_start_date + i);
    17. end loop;
    18. end;
    19. /

    I get error on line 14 when compiling it. and the error message is as follows:

    JP1 PROCEDURAL errors:

    LINE/COL ERROR
    -------- -----------------------------------------------------------------
    14/5 PL/SQL: statement ignored
    14/22 PLS-00382: expression is of the wrong type

    While studying this, I tried the value of (p_start_date + i) using dbms_output.put_line and the output is so date itself.

    1. create or replace procedure (jp1)
    2. p_start_date default date trunc(sysdate,'MM')
    3. p_end_date date default trunc (sysdate)
    4. )
    5. is
    6. number of l_no_of_days;
    7. type t_date_id is table of date
    8. index by pls_integer;
    9. l_date_id_arr t_date_id;
    10. Start
    11. l_no_of_days: = p_end_date - p_start_date;
    12. for i from 0... l_no_of_days-1

    13. loop
    14. -l_date_id_arr: = p_start_date + i;
    15. dbms_output.put_line (p_start_date + i);
    16. end loop;
    17. end;
    18. /

    output of the

    1. exec jp1

    is as follows:

    1ST DECEMBER 13

    2 DECEMBER 13

    3 DECEMBER 13

    DECEMBER 4, 13

    5 DECEMBER 13

    DECEMBER 6, 13

    7 DECEMBER 13

    DECEMBER 8, 13

    9 DECEMBER 13

    DECEMBER 10, 13

    DECEMBER 11, 13

    DECEMBER 12, 13

    13 DECEMBER 13

    14 DECEMBER 13

    15 DECEMBER 13

    16 DECEMBER 13

    17 DECEMBER 13

    18 DECEMBER 13

    I see the release date itself. so why he throws error while the same assignment to an associative array of type date.

    I tried Google too for the same but without success.

    Any help is appreciated in this regard not or any pointer another thread on the internet or in this forum.

    Thanks in advance

    Jagdeep Seven

    Read associative arrays:

    1. create or replace procedure (jp1)
    2. p_start_date default date trunc(sysdate,'MM')
    3. p_end_date date default trunc (sysdate)
    4. ) is
    5. number of l_no_of_days;
    6. type t_date_id is table of date
    7. index by pls_integer;
    8. l_date_id_arr t_date_id;
    9. Start
    10. l_no_of_days: = p_end_date - p_start_date;
    11. because me in 0.l_no_of_days - 1
    12. loop
    13. l_date_id_arr (I): = p_start_date + i;
    14. dbms_output.put_line (p_start_date + i);
    15. end loop;
    16. end;

    ----

    Ramin Hashimzade

  • How to fill a collection?

    Hello

    I need to know how to fill a collection which I will later use to insert into the database. The following is an excerpt from the code I'm writing and please assume that all variables are correct except for the part in question.

    declare

    R_ipm_ip_addr RECORD TYPE IS
    (ip_addr_id, ipm_ip_addr.ip_addr_id%TYPE,
    ip_dec ipm_ip_addr.ip_decimal%TYPE,
    ip_addrr ipm_ip_addr.ip_address%TYPE,
    Comments ipm_ip_addr.comments%TYPE,
    own_orgid ipm_ip_addr.owner_organization_id%TYPE,
    sharing of ipm_ip_addr.sharing%TYPE,
    block_id ipm_ip_addr.block_id%TYPE);

    TYPE t_ipm_ip_addr IS TABLE OF THE r_ipm_ip_addr;
    l_ipm_ip_addr t_ipm_ip_addr: = t_ipm_ip_addr (r_ipm_ip_addr);

    BEGIN

    .......

    FOR indx IN 1... l_ipm_stat_host. Count

    LOOP

    ipm_net_index: = l_ipm_net. FIRST;

    While (ipm_net_index IS NOT NULL)

    LOOP

    IF l_ipm_stat_host (indx) .ip_addr_int .start_ip_int l_ipm_net (ipm_net_index) and l_ipm_net (ipm_net_index) .end_ip_int

    THEN

    dbms_output.put_line (l_ipm_stat_host (indx) .ip_addr |) » --> ' || l_ipm_net (ipm_net_index) .start_ipadd | » /'|| l_ipm_net (ipm_net_index) .cidr_size);

    v_ipnet_ipadd: = l_ipm_net (ipm_net_index) .start_ipadd;

    v_ipnet_cidr: = l_ipm_net (ipm_net_index) .cidr_size;

    OPEN c_get_block_id.

    EXTRACT c_get_block_id INTO v_parent_blkid, v_parent_orgid;

    CLOSE C_get_block_id;

    l_ipm_ip_addr.extend;

    l_ipm_ip_addr (l_ipm_ip_addr.last): = t_ipm_ip_addr (gen_uuid () l_ipm_stat_host (indx) .ip_addr_int, l_ipm_stat_host (indx) .ip_addr, .attr1 l_ipm_stat_host (indx) | l_ipm_stat_host (indx) .attr2, v_parent_orgid, 'sharing', v_parent_blkid); < < <-this is the part that gives me an error (PLS-00306: wrong number or types of arguments in the call to 'T_IPM_IP_ADDR')

    EXIT;

    END IF;

    ipm_net_index: = l_ipm_net. Next (ipm_net_index);

    y_ctr: = y_ctr + 1;

    END LOOP;

    -dbms_output.put_line (l_ipm_stat_host (indx) .ip_addr);

    v_ctr: = v_ctr + 1;

    END LOOP;

    END;

    Help you enjoy! Thank you!

    I got it!

    I added another variable to record and the values assigned to it before passing it to the table. See below for more details.

    declare

    R_ipm_ip_addr RECORD TYPE IS
    (ip_addr_id, ipm_ip_addr.ip_addr_id%TYPE,
    ip_dec ipm_ip_addr.ip_decimal%TYPE,
    ip_addrr ipm_ip_addr.ip_address%TYPE,
    Comments ipm_ip_addr.comments%TYPE,
    own_orgid ipm_ip_addr.owner_organization_id%TYPE,
    sharing of ipm_ip_addr.sharing%TYPE,
    block_id ipm_ip_addr.block_id%TYPE);

    TYPE t_ipm_ip_addr IS TABLE OF THE r_ipm_ip_addr;

    rec_ipm_ip_addr r_ipm_ip_addr;
    l_ipm_ip_addr t_ipm_ip_addr: = t_ipm_ip_addr();

    BEGIN

    .......

    FOR indx IN 1... l_ipm_stat_host. Count

    LOOP

    ipm_net_index: = l_ipm_net. FIRST;

    While (ipm_net_index IS NOT NULL)

    LOOP

    IF l_ipm_stat_host (indx) .ip_addr_int .start_ip_int l_ipm_net (ipm_net_index) and l_ipm_net (ipm_net_index) .end_ip_int

    THEN

    dbms_output.put_line (l_ipm_stat_host (indx) .ip_addr |) » -->'|| l_ipm_net (ipm_net_index) .start_ipadd | » /'|| l_ipm_net (ipm_net_index) .cidr_size);

    v_ipnet_ipadd: = l_ipm_net (ipm_net_index) .start_ipadd;

    v_ipnet_cidr: = l_ipm_net (ipm_net_index) .cidr_size;

    OPEN c_get_block_id.

    EXTRACT c_get_block_id INTO v_parent_blkid, v_parent_orgid;

    CLOSE C_get_block_id;

    l_ipm_ip_addr.extend;

    rec_ipm_ip_addr.ip_addr_id: = gen_uuid();

    rec_ipm_ip_addr.ip_dec: = l_ipm_stat_host (indx) .ip_addr_int;

    rec_ipm_ip_addr. IP_ADDR: = l_ipm_stat_host (indx) .ip_addr;

    rec_ipm_ip_addr.comments: = l_ipm_stat_host (indx) .attr1 | » -'|| l_ipm_stat_host (indx) .attr2 | » -'|| l_ipm_stat_host (indx) .attr3 | » -'|| l_ipm_stat_host (indx) .attr4 | » -'|| .attr5 l_ipm_stat_host (indx);

    rec_ipm_ip_addr.own_orgid: = v_parent_orgid;

    rec_ipm_ip_addr. Sharing: = 'shared ';

    rec_ipm_ip_addr.block_id: = v_parent_blkid;

    l_ipm_ip_addr (l_ipm_ip_addr. (Last): = rec_ipm_ip_addr;

    EXIT;

    END IF;

    ipm_net_index: = l_ipm_net. Next (ipm_net_index);

    y_ctr: = y_ctr + 1;

    END LOOP;

    -dbms_output.put_line (l_ipm_stat_host (indx) .ip_addr);

    v_ctr: = v_ctr + 1;

    END LOOP;

    END;

  • Create table with several Collections of data control

    Hello

    I have a requirement about to display data in a table. It shows simple, but certain columns in the table are within a collection, and the others are in another collection. I read this chapter Creation of ADF Databound Tables - 11 g Release 1 (11.1.1.7.0), and she explains to create the table with a collection.

    I have no knowledge on the model, I know just as control data, so what should I do? :

    -Ask for the template designer to redraw the control of data to include a collection with all the data?

    -Try to work with the actual data control? If so, how can I create the table several Collections of data control?

    Plese let me know if there is another solution. I work with JDeveloper 11.1.1.7.

    Thank you!

    AAPDL

    Hello

    You can have a managed bean that e... g exposes an ArrayList of objects. This can then binds to the value property of the table. If the object sets the information of table row combination that you get multiple iterators (collections), then the table will display the joined data.

    Frank

  • Collection of data in an Excel worksheet

    I have created a form that I want to host on an internal Web site. Now, I want to collect the data entered in this form, and save this data on a spreadheet Excel. Is there anywhere you can find instructions on how to do it? Thank you.

    -Very well,.

    First step is to make sure that your form is set up to export xml data correctly. Things to check:

    -All the fields that will be exported data are given a specific name. You can do so by renaming everything in the hierarchy pane, or by setting the name on the binding tab.

    -Subforms correspond to a group of items in the exported xml file. For example, presence of a text field called 'Name' with a value of "Scott" within a subform called "People" would result in the following XML:

    Scott

    -You can control which fields/subforms will not appear in the exported data by setting the property of data binding on the subform/field None.

    -Setting data to none on a field binding will prevent her from appearing on the exported data.

    -Setting of the binding of data to none on a subform will exclude the subform (but not the child elements) to appear on the xml.

    For example, imagine I have a subform called 'FormInfo', a subform inside so-called "FileNumbers" and two text fields inside which called "FileNumber1" (with a value of 123) and "FileNumber2" (with a value of 345). Now if the data binding on all this is the default 'name to use (...)' value, the XML would look like this:

    123

    345

    using the above example, if you set the data binding on the text field 'FileNumber1' to zero, you would end up with:

    345

    Using the same example, if we define the data binding in the subform "FileNumbers' votes to zero, you would end up with:

    123

    345

    As you can see, the subform itself is no longer provided, and all child elements (such as text fields) appear under the next linked subform, in this case "FormInfo.

    If you have a repeating subform, the exported xml file will have as many copies of the repeated item that must include all the information. Using the example above, if we were doing the repeatable subform "FileNumbers", open the form and adds two instances of it, then export data (again... asuming all is using the default binding of "Name to use (...)") We would see the following:

    123

    345

    567

    789

    Therefore, I would wrap my repeating subforms in a subsorm container to group the section to repeat. The example above only illustate the usefulness of this, so consider a form that includes a section that collects a list of locations and a second section which includes a list of people. Without the container subforms, the XML would look like this:

    Scott

    usuggestaname

    123 Any Street

    456 Other Ave

    When you have a lot of repeating subforms, I think it's easy to get lost. As I mentioned above, I would like to wra repeatable sections in a subform, of everything. In the exaple above, I would wrap the subform "Person" repeated in a subform called 'People'... and I would wrap the 'Place' subform within a subform called "Locations". Would result it in the following:

    Scott

    usuggestaname

    123 Any Street

    456 Other Ave

    It is not mandatory, but I find that it helps to make it more readable, the XML.

    -All right, so the tips above should help you produce a form that has a well structured xml document to export. Another method would be to define the external xml schema, link the pdf file to this specification, and then map the fields in Livecycle. Some people prefer this method, but I find that it is felt more than work, whereas I just format my form well and do dictate the exported XML schema.

    The next step is to export the xml file.

    -In your version of Acrobat, you go to forms > manage form data > export. It invites you to provide a location name/save file for the xml file.

    -If I'm wrong, you cannot export the form data in Adobe Reader, even if you drive to extend your form. I could be wrong, and I don't have Reader on your computer in order to test this. If it is blocked, you can create a send by email button, drive to extend your form and use this feature to get the xml file. Send by email button will open your e-mail client defult with XML as an attachemtn. In Outlook, you can click right/save slot to catch it this xml file, without never send it. There is a possible workaround solution, if, in fact, you cannot export via the player. You need to test yourself using the player.

    From there, you can link the xml file to an Excel workbook. I do not have 2003, but this article goes into details about it. The simple version is that you add to your xml file the Workbok Excel via the XML Source pane (accessible through data > XML > XML Source). This will open a heirarchial on your xml schema view. From there, it's as simple as drag and droping a group xml in a white sheet. For example, my hierarchy of person/location form would look like:

    Formula 1

    -People

    -Nobody

    * Name

    -Locations

    -Map

    * Address

    If I wanted to have a spreadsheet listed all persons, I click and drag 'People' of this XML hierarchy and drop it on a place of the Bank. This action maps the fields. The final step is to start the import. This is done by clicking data > XML > Import.

    That should cover all your bases. If you have any specific questions, or if I have not answered something clearly, do not hesitate to respond to this and I'll try to get back to you as soon as POSSIBLE.

    In addition, the instructions to link to your XML file in excellent 2003 have been described of memory, as I haven't used in years 2003. The linked tutorial runs through everything in a lot of depth, but I'm fairly certain I got the basics right here.

    Good luck!

    -Scott

  • How to assign variables itemrender in a global public variable of my application.


    Hi friends,

    How to assign values to render internal elements in a global public variable. You can see example below.

    List an itemrender, the itemrender breast I use the data grid. The dataGrid control have itemrender.now I tried the values to assign public variable in my application data grid itemrender, but is it from the error... How can I slove u this problem Any One can help me.

    Example:

    public var myData:arrayCollection;

    < mx:List variableRowHeight = "true" dataChange = "validateNow ()" width = "900" id = "Lst_userlist" verticalScrollPolicy = "off" horizontalScrollPolicy = "off" "
    buttonMode = "true" >

    < mx:itemRenderer >

    < fx:Component >

    < mx:VBox paddingTop = "-5" horizontalScrollPolicy = "off" verticalScrollPolicy = "off" >

    < fx:Script >
    <! [CDATA]

    override public function set data(value:Object):void
    {
    ------

    -----
    }

    []] >

    < / fx:Script >

    < mx:VBox id = "vbox_grid" horizontalScrollPolicy = "off" verticalScrollPolicy = "off" width = paddingLeft '890' = "10" paddingTop = "5".

    backgroundColor = "#317152" color = "#FFFFFF" >

    < mx:DataGrid visible = "false" includeInLayout = "false" height = "100%" id = "membershipGrid" alternatingItemColors = "[#DCDCDC, F8F8FF #]".

    "5" paddingLeft = horizontalScrollPolicy = "off" color = 'black '.
    horizontalGridLines = "false" verticalScrollPolicy = 'auto' verticalGridLines = "false" rowHeight = "25".
    borderSkin = "{null}" showHeaders = 'true' borderVisible = "false" dataProvider = "{data.dataCollection}" width = "900" > "

    < mx:columns >

    < mx:DataGridColumn width = "180" headerText = "Name" minWidth = "150" sortable = "true" wordWrap = "true" >
    < mx:itemRenderer >
    < fx:Component >

    < mx:HBox horizontalScrollPolicy = "off" >

    < fx:Script >
    <! [CDATA]

    override public function set data(value:Object):void
    {
    -----

    -----

    }

    function Click_Name (): void
    {

    outerDocument.myData = data;  Here the error came

    }

    []] >

    < / fx:Script >
    < mx:Image id = "fileimg" buttonMode = "true" toolTip = "This is organization at the home page of the user" / >
    < s:Label id = "lbl_Gridcloumn_name" width = "200" buttonMode = "true" textDecoration = "underline" click = "Click_Name ()" / > "

    < / mx:HBox >
    < / fx:Component >

    < / mx:itemRenderer >
    < / mx:DataGridColumn >

    < / cloumn >

    < / datagrid >

    Error:

    MyData property possibly access not defined through a reference with static type com.istmanagement.views:ProgramAcessRights_ComponentInnerClass3.

    Thank you

    Mamoudou R.

    Have you tried outerDocument.outerDocument.myData?

Maybe you are looking for

  • Why PDF files linked on my website appear off-center opening?

    I created a website (not yet published), in which I have linked some of the PDF files. When I discovered these files in preview mode, the file pages all appear biased, that is, they are positioned right on the page with a large, empty margin on the l

  • haaaaaaa BIOS password

    I forgot my bios password... No way to remove... Help me pleaseCNU9512ZHPCompaq mini Cq10-130sf

  • Re: Battery discharged on Satellite L500

    I just bought a satellite L500 and find low battery. On average how long should the laptop run on battery, when you use it for basic internet research or work? I have the installation program for the use of the optimized battery and it still works th

  • Time real ADC/DAC for SMPS by using Labview and USB

    Hi all I asked the Sales Department of this same question, so here's a two-pronged approach: I am reserching a control algorithm for power switching, and so far, its performance simulations seem to be good.  Now, the goal is to implement the circuit

  • Call APP_TYPE_CAMERA on 4.5 os RuntimeException

    try { Invoke.invokeApplication(Invoke.APP_TYPE_CAMERA, new CameraArguments()); } catch (Exception e) { Dialog.inform("Could not start camera."); } Hello! Such a code, I try to start on 4.5 JDE (8700g Simulator). EI As RuntimeException exception with