Move Data Between 2 xfaForms

Assume I have process with 2 xfaForm variables, Form A (a PDF) and Form B (a PDF). A user fills out Form A. I want to populate values in Form B with the data from Form A.
When I try to assign a value (using SetValue) directly from form A to form B, it doesn't seem to work. That is ...
Location: /process_data/form_B/object/data/xdp/datasets/data/FormB/Value1
Expression: /process_data/form_A/object/data/xdp/datasets/data/FormA/Value1
It does work however when I use a temporary XML variable, say xml_data. That is, I move the data from Form A to xml_data, and the move the data from xml_data to Form B.
Why would this be? What is wrong with directly moving data between my xfaForms? What am I missing?

Hi Brad Steele,
I'm new in ES, n have experienced the same problem that u had sometime ago of trying to pass values from FormA to FormB, can you please help me out on this one

Similar Messages

  • Best way to move date between LabVIEW 7.1 and 2010

    We have a large LabVIEW based control and data acquisition system that for reasons beyond the scope of this post is at and needs to stay at LabVIEW version 7.1 for the forseeable future...  We are soon to add a camera diagnostic to this system that, again for reasons beyond the scope of this post, needs to be written in LabVIEW 2010...  The 2010 piece of code will run and need to receive some information such as shot number, when to trigger, etc. from the 7.1 side of the system...  Then after a shot has occurred and a camera image has been acquired, the 2010 code will do some on the fly processing of this image and within a few seconds will need to send back some results data to the 7.1 side... 
    The 7.1 code uses a tag engine approach to sharing data among different codes running on different machines...  I think now that more modern versions of LabVIEW use a shared variable approach...  But I need to communicate as I've described above between the two versions, 7.1 and 2010 (or it could be 2011 if that would offer some advantage)... 
    I'm new at this moving of data between versions like this so if something could offer some advice, especially if there is some tutorial information on this topic, that would be much appreciated...  Thanks in advance for any help that you might be able to offer...  thanks...  bob...

    It really depends if your tag engine like communication approach is a home brown solution or something like the LabVIEW DSC engine. If homebrown and well written you should be able to reuse the client library part of it in newer LabVIEW versions without to many hassles. If it is LabVIEW DSC it may be a bit more complicated since the only means to share DSC tags in version 7.1 was as far as I can remember their proprietary TCP/IP tag interface, which was replaced in newer versions with he shared variable engine.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Cann't move data between two internal table in Unicode program

    Hello expert,
    I import a program from old sap system to new system, but syntax error occurred --- ' L_T_S776[] = T_DATA_RECORDS[]. ',
    it is said ' internal table L_T_S776 and T_DATA_RECORDS are not mutually convertible, in unicode program, two internal tables must have the same structure layout'.
    The coding is:
    DATA: L_T_S776 LIKE S776 OCCURS 0 WITH HEADER LINE.
    DATA: L_T_S777 LIKE S777 OCCURS 0 WITH HEADER LINE.
    FIELD-SYMBOLS: <F_S776> TYPE S776.
    FIELD-SYMBOLS: <F_S777> TYPE S777.
    IF NOT ZCL_USEREXIT=>IS_ACTIVE( PROJN = 11 EXITN = 34 ) IS INITIAL.
      CASE I_RMCP2-SCTYP.
        WHEN 'Z776'.
          L_T_S776[] = T_DATA_RECORDS[].
          LOOP AT L_T_S776 ASSIGNING <F_S776>.
            <F_S776>-ZZCUSER = SY-UNAME.
            <F_S776>-ZZCDATE = SY-DATUM.
            <F_S776>-ZZCTIME = SY-TIMLO.
          ENDLOOP.
         T_DATA_RECORDS[] = L_T_S776[].
        WHEN OTHERS.
      ENDCASE.
    internal table T_DATA_RECORDS is defined to like INDX.
    this program is in function module EXIT_SAPMMCP6_011, it is a user_exit.
    I also confuse the meaning of this part of coding, could anybody help me?
    reward if got useful reply, thank you.
    H.B

    Hi,
    The structure are different thats why you getting this error. But there must be some fields common to which you want to move data. So you change in that way.
    And there will be no impact whatsoever because of such change.
    Regards,
    Atish

  • Best way to move data between instances

    I currently have a procedure that updates our data tables between instances... I would normally do a clone but since developers use this instance to do their work in, it's not a viable option.
    The past few times, I've scheduled the procedure to run via the Oracle Scheduler and it's bombed... This time, it updated 72/433 tables. I'm going to try and run it manually to see if it bombs again, but does anyone have any recommendations?
    Oracle 11.1.0.6 on AIX 6.1
    Non-Rac | All instances on same host
    Any help or ideas would be great!

    You can try EXP/IMP to do this and is the easiest method
    --SVMG                                                                                                                                                                                           

  • How to move data between two similar tables?

    Hi All,
    I have two tables with almost the same columns. Table A has 50 columns, Table B has 51 columns, which are defined exactly the same except one more column as LOAD_TIME.
    Is there any easy way for me to move the data from Table A to B? the Extra column LOAD_TIME will be set as current system time. All I want is to avoid list all 50 column names. The following SQL has error ORA-00923 error.
    INSERT INTO TB_B
    SELECT *, sysdate from TB_A;
    Thanks,

    939569 wrote:
    Hi All,
    I have two tables with almost the same columns. Table A has 50 columns, Table B has 51 columns, which are defined exactly the same except one more column as LOAD_TIME.
    Is there any easy way for me to move the data from Table A to B? the Extra column LOAD_TIME will be set as current system time. All I want is to avoid list all 50 column names. The following SQL has error ORA-00923 error.
    INSERT INTO TB_B
    SELECT *, sysdate from TB_A;
    Thanks,You could create a view based on TB_A.
    However i don't understand why you feel the need to avoid specifying the columns. That's a better way to code.
    Granted, i also don't understand why you'd have 2 copies of the same data, the only differentiation being when you copied the data from the source to the redundant table.
    Cheers,

  • Move Data Between Databases

    Dear All,
    I have 2 databases one of them in Egypt and the other in USA.
    I want to transfer data of one schema between the 2 databases.
    I currently use export and import utility to do this action but the size of data is very large so I want an automatic way to do this action.
    what can I use to solve this problem?
    can I use advanced replication or dataguard or what.
    if I use advanced replication data will be transferred through a database link over the internet which will be a very slow operation.
    what can I do,please help.

    Hello Airtifa,
    The main reasons to use a VPN would be
    a) dedicated connection, so more reliable
    b) no or little need to encrypt data, as data doesn't travel across the public Internet
    It should have a positive effect on performance, though you may be suffering from high latency in the network.
    What I'm trying to say is:
    there is not much to tune in a sqlnet connection of whatever type (database links are just ordinary connections), apart from the Session Data Unit, which should be a multiple of the MTU of the network card (so the card doesn't have to fragment packets).
    You are really at the mercy of the (bandwith of the) connection.
    If the connection is slow, the link will be slow.
    If the connection is fast, the link shouldn't pose extra problems.
    Database links aren't slow. Networks can be.
    Also not using the array interface in an efficient way can be a killer.
    Sybrand Bakker
    Senior Oracle DBA

  • Move data between internal tables

    Hi,
    . Hi !!
    i want to get result GT_ITEM02 from GT_ITEM01.
    please help me with my sample source.
    GT_ITEM01
    WERKS MAKTL MENGE,
    ================================
    1100 100 100.00
    1100 100 50.00
    1100 200 10.00
    1200 100 200.00
    1200 100 50.00
    result GT_ITEM02
    ================================
    1100 100 150.00
    1100 200 10.00
    1200 100 250.00
    DATA: LV_PRDQTY LIKE MSEG-MENGE.
    LOOP AT GT_ITEM01 WHERE BWART = '101' OR BWART = '102'.
    AT NEW MATKL.
    LV_PRDQTY = LV_PRDQTY + GT_ITEM01-MENGE.
    ENDAT.
    ENDLOOP.
    MOVE-CORRESPONDING GT_ITEM01 TO GT_ITEM02.
    MOVE LV_PRDQTY TO GT_ITEM02-MENGE1.
    Cheers....
    Edited by: Alvaro Tejada Galindo on Feb 22, 2008 4:13 PM

    Hi Mukesh,
    Use the following code.
    sort GT_ITEM01 by WERKS MAKTL.
    loop at GT_ITEM01.
    at end of MAKTL.
    sum.
    MOVE-CORRESPONDING GT_ITEM01 TO GT_ITEM02
    endat.
    endloop.
    Regards,
    Yellappa.

  • Move data between tables

    I use SQL*Loader to load data into a interface table where I do some data cleaning.
    Is there a easy way of moving the data from the interface table to a target table inside the same database, keeping in mind that the target table already contains data.
    I normally export the data from the interface table, create a data and control file and use SQL*Loader again, but this seems like such a long way, surely there should be a easier way??
    Thank you in advance

    It's not a problem that the target table contains more columns, you can either do ...
    insert into my_target (col1, col2, col3, col4,col5)
    select col_a, col_b, 'my_default_value',null, sysdate
    from my_source;
    ... or ...
    insert into my_target (col1, col2)
    select co;l_a, col_b
    from my_source;
    The second statement will automatically put NULL into columns not listed after my_target, the first statement allows you to specify NULL explicitly or specify some static or dynamic default value.
    I guess you have to find out why it's taking so long to insert the values. My guess would be that you have indexes on the table that are slowing things up. You may find it beneficial to drop the indexes, load the new data, rebuild the indexes.
    You could also add the APPEND hint to the insert ...
    insert /*+ append */ into my_target ...
    ... which might speed things up a little. Also check that your pctfree value for the table is set very low (0) and pctused is very high (99) if you are not going to be updating these rows in future -- this will pack more rows into each block.
    Another option is to partition your target table, and use the EXCHANGE PARTITION mechanism to get data into it.

  • Move data between tables with INSERT-LOOP?

    Greetings
    I need to move all the contact information (contained in 5
    fields- call it the address table) into the table (call it the main
    table) that contains all the other associated information. Tables
    are related via the "vendor_ID" key field.
    There are about 7000 records.
    I tried the attached code- with no luck- am I in the
    ballpark?
    Thanks!
    newportri

    Sorry- yes the tables are in the same DB because I imported
    them together.
    I am trying to clean this DB up for eventual porting to SQL
    Server (it is in Access now) - I saw no good reason why the
    designer used 2 separate tables- one with most info on each vendor,
    but split the addresses off in another table?
    I guess there are lumpers and splitters- but I can't see the
    point of inserting/updating/deleting form 2 tables vs 1?
    ERROR: The field 'Vendor1.vendor_ID' cannot contain a Null
    value because the Required property for this field is set to True.
    Enter a value in this field.
    Thanks for your quick response.

  • XWRITE to move data between databases - what about block creation?

    Hi, all.
    We have this Essbase script calculating data in one database, and in the end saving data in another database in the same application.
    Data transfer is performed by the XWRITE function.
    Problem is that the Entity dimension, which is common to both databases, is constantly updated.
    Block creation in source is taken care of, but I am a little conserned that data in some cases will not be saved to the target database because there are no active blocks.
    I have two questions regarding block creation in this respect:
    1) Does the XWRITE command create new blocks in the target database?
    2) If I put SET CREATEONMISSINGBLK ON in the script in the source database, will blocks then be created in the target database as well?
    By the way: It's version 11.1.2.1
    Best regards,
    Ann-Margareth

    @XWRITE creates blocks at the target. There is no need to use SET CREATENONMISSINGBLK ON on the source database.

  • How to move data from one database to another oracle database

    Hi
    All,
    AIX 5.3
    Oracle 10.2.0.3
    I want to move data between one oracle database to another oracle database.
    I know two method those are
    export/import
    dblink
    is there any other way I can move data?
    Thanks,
    Vishal

    I know below methods. However, using a perticular method is based on volume and type of data.
    1. imp/exp
    2. impdp/expdp
    3. SQL COPY command
    4. Transportable tablespace mathod
    5. dblink
    6. Export to flatfile and then use SQL Loader
    7. Oracle Migration Workbench
    Cheers
    Sameer

  • Moving data between two schemas

    I need to move data between to schemas. I have a created packaged code to accomplish this. The problem is the execution time. When running the insert statements from the source schema to insert data into the target schema, it takes considerably longer to complete the statement than if I copied the tables from the source schema into the target schema and executed the same statement in the target schema. Any insight as to why this might be?
    Also all data resides on the same physical disk, running version 10g on a W2K server.
    Thanks in advance
    Here is a sample of one of the insert statements:
    INSERT INTO target_table(tt_id, tt_disp, tt_date, tt_emp_1, tt_emp_2, tt_emp_3)
    SELECT src_tab.src_id,
    src_tab.scr_disp,
    src_tab.scr_date,
    src_tab.scr_emp_1,
    src_tab.scr_emp_2,
    src_tab.scr_emp_3
    FROM
    (SELECT
    row_number() over(
    ORDER BY SUBSTR(fn_cil_sort_format(SUBSTR(src_cil,
    1, 8)), 1, 4), SUBSTR(src_cil, 4, 8)) AS src_id,
    scr_disp,
    fn_date_format(date_time) AS scr_date,
    v_convert AS scr_emp_1,
    v_convert AS scr_emp_2,
    v_convert AS scr_emp_3
    FROM source_table
    ORDER BY SUBSTR(fn_sort_format(SUBSTR(src_cil, 1, 8)), 1, 4),
    SUBSTR(src_cil, 4, 8)) src_tab
    WHERE scr_disp IS NOT NULL;

    In addition to the above post, you should create the table initially with NOLOGGING. create table as select has the ability to bypass logging. This should increase performance very much. No log writes will have to be taking place.
    Lee

  • When I move files between mac the creation date changes, I want to keep the original dates.

    When I move files between a couple of Macs the creation date etc chnges to the time I'm moving them.
    I need to keep the original details.

    Well it now looks like it has sorted it's self out, all working fine now.

  • This message is used to carry data between the BlackBerry handheld and an associated server. Please do not delete, move or respond to this message - it will be processed by the server.

    I have a client with a BlackBerry Pearl 8110. It was (is) configured to receive email from a Microsoft Exchange Server via his Outlook account.  I have uninstalled the Desktop Manager and re-installed ensuring the computer transmits his email via the Re-Director. All settings in the Desktop Manager are correct. The phone was working fine for over 5 years. Now he is getting emails both on his phone and in Outlook saying:
    This message is used to carry data between the BlackBerry handheld and an associated server. Please do not delete, move or respond to this message - it will be processed by the server.
    I have verified that his phone is not attempting to perform the Enterprise Activation process by checking :
    Options > Advanced Options > Enterprise Activation.
    He does however have a Service Book entitled "CMIME"
    How can I resolve this issue?

    Is the user needing the Redirector service?
    Step 1: If you're not using Redirector or Enterprise, you should uninstall Desktop Manager and then reinstall it using the BlackBerry Internet Service option.
    Step 2: On your device, go to: Options > Advanced > Service Book, and delete all service books for [Desktop]
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to move data from a staging table to three entity tables #2

    Environment: SQL Server 2008 R2
    I have a few questions:
    How would I prevent duplicate records, when/ IF SSIS is executed many times?
    How would I know that all huge volume of data being loaded in the entity tables?
    In reference to "how to move data from a staging table to three entity tables ", since I am loading large volume of data, while using lookup transformation:
    which of the merge components is best suited.
    How to configure merge component correctly. (screen shot is preferred) 
    Please refer to the following link
    http://social.msdn.microsoft.com/Forums/en-US/5f2128c8-3ddd-4455-9076-05fa1902a62a/how-to-move-data-from-a-staging-table-to-three-entity-tables?forum=sqlintegrationservices

    You can use RowCount transformation in the path where you want to capture record details. Then inside rowcount transformation pass a integer variable to get count value inside
    the event handler can be configured as below
    Inside Execute SQL task add INSERT statement to add rowcount to your audit table
    Can you also show me how to Check against destination table using key columns inside a lookup task and insert only non
    matched records (No Match output)
    This is explained clearly in below link which Arthur posted
    http://www.sqlis.com/sqlis/post/Get-all-from-Table-A-that-isnt-in-Table-B.aspx
    For large data I would prefer doing this in T-SQL. So what you could do is dump data to staging table and then apply
    T-SQL MERGE between tables (or even a combination of INSERT/UPDATE statements)
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

Maybe you are looking for