Duplicate Data Fields Help Needed

We have a 9 page Word form that has some duplicate information, have converted it to LiveCycle but am stuck on finding out how to have the data from one field also show in another so the user does not have to enter twice.  Eventually we will remove the duplicate fields, but for many reasons, right now they must remain.  I don't want a Contractor to have to enter their Company name twice, etc., and have my main data collection form in the front of the 9 pages, and then when they get to the last page with sigs, etc., I would like what they've already entered for their Company information to show.
I am very new to Designer ES, and when I did some forms in Adobe 9.0 Forms awhile back, all I needed to do was to name the fields the same and if I entered info in one it would show in the other.  ES does not seem to do that, and I can't seem to find out how to add any code to the field.  Don't know why but alot of my options are grayed out.
Anyway, would very much appreciate help, thank you.

Giving them the same name is only one part of the solution ....you have to change the binding (on the Object palette/binding tab) to Global.
Paul

Similar Messages

  • Date Format help needed

    Hello Friends,
    I need to mormat my date valye to get something like the following:
    Sunday December 3rd, 2006 OR
    Tuesday December 5th, 2006
    I understand that one can give a custom format for date as per the SimpleDateFormat symbols. However, I did not find anything for achieveing the pattern in bold
    Can you please help?
    Regards,
    Leena

    umm.. did not think about it..
    I thought on it after reading your post.
    My first thoughts for writing my own formatter are that I will have to extend the SimpleDateFormat class, right?
    Not sure what do I do next.. :(
    Regards,
    Leena

  • Trying to update Project scheduled finish date - newbie help needed!

    Guys, I am super new to Oracle Projects, I have never used it before.  I've just learned a few things in the UI and read through the docs documenting the stored procs.  My question is simple (hopefully)   In the UI I choose a responsibility, then under "Projects : Delivery" I choose "Search Projects", I enter the Project ID in the field and click Go, I am able to see all the project details and the Tasks.  No problem there!  What I would like to do through the Update_Project API is to change the "Scheduled Finish Date" of the Project.
    I have the following information that I have managed to scrape up:
    Project_id, Responsibility_id, User_id, Resp_Appl_Id
    I retrieved the project id using:
             Select project_id,name from pa_projects_all
              where name = 'My Project';
    So first I call set_global_info with the appropriate parameters, then this:
        -- SET GLOBAL VALUES
         pa_interface_utils_pub.set_global_info(
         p_api_version_number => 1.0,
         p_responsibility_id => fnd_profile.value('57203'),
         p_user_id => fnd_profile.value('1013415'),
         p_msg_count => l_msg_count,
         p_msg_data => l_msg_data,
         p_return_status => l_return_status);
         l_project_in.pa_project_id := 4608;
         l_project_in.scheduled_finish_date := to_date('2008-02-27', 'YYYY-MM-DD');
      --UPDATE_PROJECT
              pa_project_pub.UPDATE_project(
                        l_api_version_number,
                        p_commit => l_commit,
                        p_init_msg_list => l_init_msg_list,
                        p_msg_count => l_msg_count,
                        p_msg_data => l_msg_data,
                        p_return_status => l_return_status,
                        p_workflow_started => l_workflow_started,
                        p_pm_product_code => null,
                        p_project_in => l_project_in,
                        p_project_out => l_project_out,
                        p_key_members => l_key_members,
                        p_class_categories => l_class_categories,
                        p_tasks_in => l_tasks_in,
                        p_tasks_out => l_tasks_out);
    What I am getting is the message "error :Project ID is invalid" and the status is "E"
    I'm not sure why it is invalid as it is the exact Project ID from the projects table.  The only thing I can think of is that the p_pm_product_code is set to null but I am not sure where this value comes from and why it even matters.  I checked the documents and it says it refers to some external system.  Why does the external system code matter if I am changing data within Oracle Projects?

    Hello,
    Looks like you are not setting the Initialization values correctly. Oracle Project APIs are Org specific and require proper initialization before being called for them to work.
    Few things i noticed from the code is :
    1.  The following is being used to set the User ID and Responsibility ID  :
         p_responsibility_id => fnd_profile.value('57203'),
         p_user_id => fnd_profile.value('1013415'),
    I think the call should be like this. This should be used only if you are going to call the API through a concurrent program from the submit request window (Oracle Apps environment). fnd_profile.value will get the responsibility id and the used id of the user running the program and assign it to the variables.
         p_responsibility_id => fnd_profile.value('RESP_ID'),
         p_user_id => fnd_profile.value('USER_ID'),
    Or If you are directly passing the IDs hardcoded then, This can be used if you are running the script from a Non-Oracle Applications environment, for example from SQL*Plus.
         p_responsibility_id => 57203
         p_user_id => 1013415
    2. I notice that you are not passing P_OPERATING_UNIT_ID parameter in the call to pa_interface_utils_pub.set_global_info. This is fine if you are not using MOAC  and you have set MO: Operating Unit profile for the responsibility being passed.  If you are using MOAC or are not sure, then it is always a good practice to explicitly  pass the P_OPERATING_UNIT_ID parameter in the call to pa_interface_utils_pub.set_global_info.
    Note :  DO NOT use fnd_profile.value('ORG_ID') to set the P_OPERATING_UNIT_ID parameter. In a MOAC environment this may not work.
    3. Always ensure you check the return status of the pa_interface_utils_pub.set_global_info for success before calling the Project APIs. This will save you a lot of frustration when testing.
    4. You might find the following note useful
    Project API Overview and Reference (Doc ID 1424156.1)
    Regards,
    Raghavan Gopalakrishnan

  • Making IP Address field - help needed

    Hi All,
    Can anyone tell me how to make the IP Address field as displayed in windows operating system network settings.
    Actually I have made one IP field using JFormattedTextField and MaskFormatter class.
    code is given below:
    private MaskFormatter getMf2() {
    if (mf2 == null) {
    try {
    mf2 = new MaskFormatter(" *** . *** . *** . *** ");
    mf2.setValidCharacters(" 0123456789");
    } catch (Exception e) {
    JOptionPane.showMessageDialog(null, e.toString());
    return mf2;
    jTextField = new JFormattedTextField(getMf2());
    Am I doing anything wrong here?
    Problem is its not behaving in the way windows operating system IP field behaves?
    Actually I am unable to display 3 dots(.) in the field which look like they are with regular space gap in the jformattedtextfield?
    In windows OS, dots in the IP address field will remain static, but with my IP field, they are moving when I am adding values into the field? How to solve this problem?
    I have given three spaces in the mask formatter initially? so if I click on the first place, I am unable to type at that place? how to rectify this problem?
    Please anyone help me to solve this problem and make proper IP field as it looks in windows operating system. If Any code is available in the web, please provide the link here.

    Answered in cross posting.

  • Recive deleted pictures with out icloud or any back up from last restore date please help need to find a very important picture

    i have problems with spelling
    There surely has to be a way to recive my pictures from deleted memory on my iphone 4
    i deleted my pictures from this weekend and need to view them but i deleted them with out having icloud or any back up app
    is there ANY one who know's how to get around this there has to be a way like a computer like a restore factor settings that lets you go back to the last time you took a picture
    Please Help Driving me insane

    Richie K wrote:
    im still not conviced i might go to the iphone store tomorrow and see there has to be a way thank you for you help if you come across anything like this please let me know
    Good luck, but they will tell you the same thing that anyone here will tell you.
    Unless the device was backed up (via iTunes or iCloud) after the pictures were taken but prior to deleting them on the device, they are gone.  There is no way to recover them once deleted without a backup.

  • Need to add superscript for text field--HELP NEEDED.

    Hi Friends,
    Is there any way to implement superscript and subscript text in Crystal?  For example, I would like to superscript the portion (1) of the following string:
    "Buy(1) or Sell(1)"
    The only way I have found to do this is to put the "235" in a separate text field that uses a smaller font size, and overlay it into the gap that I intentionally left in the larger text field.  For display and printing purposes, this works OK, but if a report containing these strings is exported to Excel, the text fields are exported as separate cells, which makes the exported report look funny.
    I can create this string in Word, then cut and paste it into a text field in Crystal (which initially seems to work), but as soon as I click off the field, all the characters in it are converted to the same font size.
    If this can't be done in the current version of Crystal, are there any plans for it to be implemented in future versions?

    hello all,
    the text interpretation for html or rtf in fields will not render superscript or subscript. the basic rule is that whatever you can format directly in a crystal reports text object, that's what you can have interpreted.
    look up "text interpretation html" in kbase for a full list.
    one option is to turn html passthrough on the server in question if this is a huge deal for you...if you want instructions on how to turn html passthrough on, they are located in the webelements user guide at
    http://diamond.businessobjects.com/node/255
    after doing so, you'd drop the database field into a formula and any html in the database field would be interpreted.

  • Data format - Help needed!!!!!

    I have a String with this value:"Thu Dec 19 09:23:49 2002" ;
    is there a java method to convert it automatically in another string to this format: "19/12/2002" or "12/19/2002" (it depends on italian date)
    thanks all!!

    As dateString does not seem to be a proper Java term (unless Mr sssako knows something I do not) I would be a string.
    You could do it with two instances of SimpleDateFormat, one set up for the format of the string you have and one set up for the format you want.
    You then call parse() on the first one to get a date and use that date as the parameter to a call to format on the second one.
    String s = "Thu Dec 19 09:23:49 2002";
    SimpleDateFormat input = new SimpleDateFormat("E MMMM d HH:mm:ss yyyy");
    SimpleDateFormat output = new SimpleDateFormat("dd/MM/yyyy");
    try
        s = output.format( input.parse(s) );
        System.out.println(s);
    catch ( ParseException e )
        e.printStackTrace();
    }

  • Duplicate ID`s help need

    I have an issue where an MEMBER ID is duplicated due to primary status column, I have few rcords which can have status 'P" primary and 'S" for secondary..
    I am trying to find all those members who have both statuses , members with either or status.
    I have following columns
    Memid,Primarystaus,,Line of Business and ServiceArea
    I`m trying to find all members who have either 'P' or 'S' Status or any ID`s who have both statuses, How can i see all of this in one resultset?
    Any help appreciated
    FM

    As you've seen, there's more than one way to do this.  Here's another, just the bolded part.
    With EXAMPLEDATA as
    Select *
    From ( Values
    (01, 'A', 0101, 010101)
    , (02, 'A', 0202, 020202)
    , (02, 'P', 0202, 020202)
    , (03, 'A', 0303, 030303)
    , (03, 'S', 0303, 030303)
    , (04, 'P', 0404, 040404)
    , (04, 'S', 0404, 040404)
    , (05, 'A', 0505, 050505)
    , (06, 'A', 0606, 060606)
    , (07, 'A', 0707, 070707)
    , (08, 'A', 0808, 080808)
    , (09, 'P', 0909, 090909)
    , (10, 'S', 1010, 101010)
    ) as VT(Memid, PrimaryStaus, LOB, ServiceArea)
    Select Memid
    , count(case when PrimaryStaus = 'P' then 'x' else null end) as CtStatusP
    , count(case when PrimaryStaus = 'S' then 'x' else null end) as CtStatusS
    , Case when count(case when PrimaryStaus = 'P' then 'x' else null end) > 0
    and count(case when PrimaryStaus = 'S' then 'x' else null end) > 0 then 'T' else 'F' End InStatusBOTH
    From Exampledata
    Where PrimaryStaus in ('P', 'S')
    Group by MemID
    Results:
    Memid CtStatusP CtStatusS InStatusBOTH
    2 1 0 F
    3 0 1 F
    4 1 1 T
    9 1 0 F
    10 0 1 F
    The final Case to compute StatusBoth is almost superfluous.  You already have CtStatusP and CtStatusS, so you could skip double-computing it if you wanted.

  • Need help on How to delete duplicate data

    Hi All
    I need your help in finding the best way to delete duplicate data from a table.
    Table is like
    create table table1 (col1 varchar2(10), col2 varchar2(20), col3 varchar2(30));
    Insert into table1 ('ABC', 'DEF','FGH');
    Insert into table1 ('ABC', 'DEF','FGH');
    Insert into table1 ('ABC', 'DEF','FGH');
    Insert into table1 ('ABC', 'DEF','FGH');
    Now I want a sql statement which will delete the duplicate rows and leaves 1 row of that data in the table. ie.in the above example delete 3 rows of duplicate data and leave a row of that data in the table. My oracle version is 8i.
    Appreciate your help in advance.

    Either of these will work, the best approach will depend on how big the table is, and how many duplicates there are.
    SQL> SELECT * FROM table1;
    COL1       COL2                 COL3
    ABC        DEF                  FGH
    ABC        DEF                  FGH
    ABC        DEF                  FGH
    ABC        DEF                  FGH
    ABC        DEF                  IJK
    BCD        EFG                  HIJ
    BCD        EFG                  HIJ
    SQL> DELETE FROM table1 o
      2  WHERE rowid <> (SELECT MAX(rowid)
      3                  FROM table1 i
      4                  WHERE o.col1 = i.col1 and
      5                        o.col2 = i.col2 and
      6                        o.col3 = i.col3);
    4 rows deleted.
    SQL> SELECT * FROM table1;
    COL1       COL2                 COL3
    ABC        DEF                  FGH
    ABC        DEF                  IJK
    BCD        EFG                  HIJ
    SQL> ROLLBACK;
    Rollback complete.
    SQL> CREATE TABLE table1_tmp AS
      2  SELECT DISTINCT * FROM table1;
    Table created.
    SQL> TRUNCATE TABLE table1;
    Table truncated.
    SQL> INSERT INTO table1
      2  SELECT * FROM table1_tmp;
    3 rows created.
    SQL> SELECT * FROM table1;
    COL1       COL2                 COL3
    ABC        DEF                  FGH
    ABC        DEF                  IJK
    BCD        EFG                  HIJThere are other approaches as well (e.g. see the EXCEPTIONS INTO clause of the ALTER TABLE command), but these are the most straightforward.
    HTH
    John

  • I am working in Adobe Acrobat 9 Pro and just created a pdf form from a MS Word document. I need to find out how to have a date field in my form which will update automatically. Can some one out there help me?

    I am working in Adobe Acrobat 9 Pro and just created a pdf form from a MS Word document. I need to find out how to have a date field in my form which will update automatically.

    Update automatically under which circumstances, exactly?

  • Need help on date field

    hai,
    in selection screen, i am having the date field as select-options.
    if i give low value, it should automatically display the high value, how to do this.
    thanks.

    Hi,
    U can use AT SELECTION-SCREEN event as follows :
    AT SELECTION-SCREEN on S_DATE
    if not S_DATE-LOW is initial.
    S_DATE-OPTION = 'BT'.
    S_DATE-HIGH = SY-DATUM.
    MODIFY S_DATE.
    Endif.
    This shud help u.
    Regards,
    Himanshu
    Message was edited by:
            Himanshu Aggarwal
    Message was edited by:
            Himanshu Aggarwal

  • Help needed please -Master data loading- error with text loading.

    Hi,
    Iam S.Sushma. Iam getting error while loading master data from flat file- attributes and texts.
    I have loaded attribute data successfully. But when iam monitoring the text data then iam getting following error.
    ""SET THE LANGUAGE FIELD IN THE SOURCE SYSTEM-LONG TEXT.""
    ""RECORD1: SRPID_1:DATA RECORD 1(EN S):DUPLICATE DATA RECORD.
    "ERROR 4 IN UPDATE"
    I took 2flat files for attributes and texts.
    SRPID is key field.(sales representative id)
    attributes:- SRPID, NAME1, AGE1, ADD1,PHONE1.
    text:-  SRPID,LANG,SHTXT,MDTXT,LGTXT.
    Iam just a begginer so need your guidence. Thank you in advance.
    Message was edited by: sushma sandepogu
    Message was edited by: sushma sandepogu

    Hi Eugene,
    Thank you for your guidence. I have changed the order in flat file and got the results successfully. But when iam viewing the Master data text the S10 in coming in 2nd position  in maintain master data-list screen i mean :-
    SRPID LANG NAME AGE ADD PHONE SHTXT MDTXT LGTXT
    S1         EN  ABC   34  GDS 1234  AS    ASD   ASDDF
    S10
    S2
    S3
    S9.
    Iam not understading why. Hope yu can help me. I have assigned full points to you for your previous solution.
    Thank you in advance.
    S.Sushma.

  • Mapping conversion help needed for date

    Hi Experts,
    I need help in message mapping convesion for date field
    The source date field can have value '2010-06-04T02:09:59.610-07:00' or 2010-06-04T02:09:60.610-07:00
    I have to change it to '2010-06-04T02:09:59.000-07:00'. ie, if the seconds are 59.XXX, or 60.XXX, then change to 59.000.
    Please let me know the best way to do this
    Thanks
    Mike

    Again, to make it more clear
    The source date field can have any date value such as
      2010-06-04T02:09:59.610-07:00 -
    This needs to be changed to 2010-06-04T02:09:59.000-07:00
      2010-06-04T02:09:60.610-07:00 -- This needs to be changed to 2010-06-04T02:09:59.000-07:00
    2010-06-04T02:09:60.000-07:00 -- This needs to be changed to 2010-06-04T02:09:59.000-07:00
    2010-06-04T02:09:59.000-07:00  - This need not be changed
    2010-06-04T02:09:58.610-07:00 -- This need not be changed
    2010-06-04T02:09:57.610-07:00  etc etc - These need not be changed.
    The only change using date function is for the first two dates, in which 59.XXX and 60.XXX need to be replaced with  59.000
    Using the above date function, all the seconds 59.XXX, 58.XXX, 60.XXX, etc etc,,, are converted to 59.000, 58.000 and 60.000
    I dont need this as per the requirement. So looks like the UDF needs to be altered a little to accomodate my requirement.
    Please help me.
    Thanks
    Mike

  • Date field input help - changing first day of the week

    Hi,
    I need to change the starting day of the week  in a date field value help. I also need to change the days name in this calender.
    Thanks in Advance,
    Dekel.

    I found how to change the first day of the week, through BAdi calendar_definition.
    Can anyone help me locate the day names? (I checked - FM day_names_get dosen't get the names of the UI search help).
    Thanks,
    Dekel.
    Edited by: dekel31 on May 29, 2011 1:17 PM

  • I need to pass value for Actual GI date field in VL01N t code, I am using BAPI_DELIVERYPROCESSING_EXEC. can any one tell me how can i pass vaule ?

    I need to pass value for Actual GI date field in VL01N t code, I am using BAPI_DELIVERYPROCESSING_EXEC. can any one tell me how can i pass vaule ?

    Hi Abdul,
    Sorry for my unprecise answer, but you talk about a tcode, but you're using a BAPI Call. Maybe you want to call the transaction in batch mode?
    http://help.sap.com/saphelp_erp60_sp/helpdata/de/fa/09715a543b11d1898e0000e8322d00/content.htm
    Regards,
    Franz

Maybe you are looking for

  • Suunto Ambit not working after upgrade to OS 10.9 / Safari 7.0

    after upgrading to OS 10.9 and Safari 7.0 (9537.71) my Suunto Ambit watch and movescount.com does something strange. 1. the  usb port on my monitor is not alwas connecting to the watch... the usb on the mac mini appears to be working correctly 2. cad

  • BPC unable to merge cells and fill the required colour in EVDRE report

    Hi BPC folks, We are developing an EVDRE report.In that we are trying to merge some cells and fill the required colour. after saving the BPC excel we are clicking on "expand all" button.It is going back to it's original format.ie without merging and

  • Http.keepAlive does not turn off SSL session cache?

    Hi there, I have a web service client that uses JSSE for making web service calls via https. In an effort to debug problems, I set http.keepAlive to false, I can see from the SSL debug output that KeepAlive timer messages no longer shows up, but I st

  • TS3897 where do you find serial number for iWork

    I have installed iWork 09 .. and it is promting me to enter my serial number, however I dont know where to locate this.. can anyone help ?

  • PPro CS3 Crash help

    Hello, I am trying to import avi clips taken on a Cannon Camera, sometimes all clips load in, but then upon trying to make any action in Premiere the program crashes. Other times Half of the files import while the others come up with an error, saying