Coping/Prioritize Fields to another

Hello, im not sure if this is possible. I fill out rebate applications for my work.To simplify things i always write an Address in Field Number 1 and this copies over to field number 3 which is on a different page , this part i dont need help with its the next part.sometimes i need to write a Mail To address in field 2 and have it copy over to field 3 because the page field 3 is on is a cover sheet that i print and fold so the address shows in an envelope. Is there a way to have field 1 copy over to field 3 unless i write something in field 2, then field 2 copies over to field 3?

There are a number of ways you can do this. Probably the easiest is to give each field a different name, and for field 1 and field 2 to use the following custom validate JavaScript:
// Validate script for field 1 & field 2
getField("field3").value = event.value;
where "field3" is the actual name of that field. It will get set to the last field value that the user enters for either field 1, field 2, or field 3.

Similar Messages

  • Adobe Bridge CC : metadata copy from one field to another for multiple files

    So I am using Bridge CC for managing audio files and have many many MP3's that I need to copy or move one field of metadata to another.
    ie:  copy "Audio Artist" field to "IPTC Core Creator" Field
         move "IPTC Core Description" to "Video Log Comment" field
    Is there a script I can add that will let me select multiple files, and have it copy or move all the info from one of these fields to another?
    Thanks
    Scott
    [email protected]

    Scott, I did have a go at this but I can't get the right path to the logComment in the XMP…
    Coping artist to creator works fine… If I find the solution I will post back…

  • Hi I've a big problem with adobe acrobat reader XI pro and I hope you can help me. The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reade

    Hi
    I've a big problem with adobe acrobat reader XI pro and I hope you can help me.
    The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reader (adobe pdf reader, internet browsers, ...etc.).
    This problem started to happen since yesterday when I installed adobe acrobat reader XI pro to try it before I buy it, and before that when I was using the free adobe pdf reader I was totally able to copy any text from any pdf and past it anywhere with nothing wrong.
    What can I do?
    thank you a lot.

    There is no product called Adobe Acrobat Reader Pro. There is
    - Adobe Acrobat Pro ($$)
    - Adobe Reader (free)
    Which do you have? And are you a programmer?

  • MM - Material master data - move standard field to another view

    Hi everyone,
    ÉCC 6.0 - release 7.0.
    I've been adding many custom fields in Material master data MM01/02/03. Now I got a problem because we have to use a standard field in another view.
    The field MARA-HERKL is set up to 'SV'(attribute V_130F-PSTAT):
    Warehouse management = S
    Sales = V
    I want to add 'K - Basic data' in this field's attribute at OSMR Tcode , but this attribute is disactivated. I can not change this value.
    I've check this note 306966 that mention: You cannot create new entries and delete entries in client 000. This client contains only the entries delivered by SAP which are used for distinguishing customer-specific fields and SAP standard during the maintenance of the other clients.
    Is there any problem whether I delete this field and afterwards create it with the new values?
    I'm not in client 000. So, I want to just make sure I will do a legal change.
    thank you in advance,
    Alexandre

    None tips, Closed.

  • Can Acrobat be made to verify one form field against another?

    Here is an interesting problem, and I'm wondering if Acrobat has the functionality to solve it.
    The sales department is holding up application processing time.  They either forget to fill in blocks of information, or they misspell the buyer's name (Billy on page 1 and William on page 4). 
    Can Acrobat be programmed to verify one form field against another in order to eliminate these errors?
    Thank you.

    I had considered this as well.
    That solution would work in an ideal situation.  In this situation, however, it would probably not be a final workable solution.  Consider the case above.  This organization needs the full legal name on the application.  However, in the first field our friendly sales department enters Billy (instead of William).  If the "duplicate field" solution was embraced, Billy would automatically be embedded and a denial instantly triggered.
    If one form field can be verified against another, then can I assume various formulas could be generated from that?
    If field A then (B and C and D)
    If not field E (then no B and no C)
    Is this also correct?

  • Select a number of fields between one field and another

    Hello,
    Is there any way to make a SELECT to show a number of fields between one field and another,
    without writting all the fields one by one ?
    For example, I have one table with these fields:
    TABLE EMPLOYEE:
    ID_EMPLOYEE NAME PHONE CAR AGE MARRIED
    and I just want to make a SELECT who shows only fields from NAME to AGE, but i don't want to
    write in the SELECT all the fields one by one.
    Is this possible?
    Thank you very much.
    Sorry for my english it's not very good.

    Swam wrote:
    Hello,
    Is there any way to make a SELECT to show a number of fields between one field and another,
    without writting all the fields one by one ?
    For example, I have one table with these fields:
    TABLE EMPLOYEE:
    ID_EMPLOYEE NAME PHONE CAR AGE MARRIED
    and I just want to make a SELECT who shows only fields from NAME to AGE, but i don't want to
    write in the SELECT all the fields one by one.
    Is this possible?
    Thank you very much.
    Sorry for my english it's not very good.If you use the DBMS_SQL package to execute your query you can reference the columns by position rather than name.
    One examples of using DBMS_SQL package:
    SQL> ed
    Wrote file afiedt.buf
      1  DECLARE
      2    cur       PLS_INTEGER := DBMS_SQL.OPEN_CURSOR;
      3    cols      DBMS_SQL.DESC_TAB;
      4    ncols     PLS_INTEGER;
      5    v_min_col NUMBER := 2;
      6    v_max_col NUMBER := 4;
      7    v_val     VARCHAR2(4000);
      8    v_bindval VARCHAR2(4000);
      9    v_ret     NUMBER;
    10    d         NUMBER;
    11  BEGIN
    12    -- Parse the query.
    13    DBMS_SQL.PARSE(cur, 'SELECT * FROM emp', DBMS_SQL.NATIVE);
    14    -- Retrieve column information
    15    DBMS_SQL.DESCRIBE_COLUMNS (cur, ncols, cols);
    16    -- Display each of the column names and bind variables too
    17    FOR colind IN v_min_col..v_max_col
    18    LOOP
    19      DBMS_OUTPUT.PUT_LINE ('Column:'||colind||' : '||cols(colind).col_name);
    20      DBMS_SQL.DEFINE_COLUMN(cur,colind,v_bindval,4000);
    21    END LOOP;
    22    -- Display data for those columns
    23    d := DBMS_SQL.EXECUTE(cur);
    24    LOOP
    25      v_ret := DBMS_SQL.FETCH_ROWS(cur);
    26      v_val := NULL;
    27      EXIT WHEN v_ret = 0;
    28      FOR colind in v_min_col..v_max_col
    29      LOOP
    30        DBMS_SQL.COLUMN_VALUE(cur,colind,v_bindval);
    31        v_val := LTRIM(v_val||','||v_bindval,',');
    32      END LOOP;
    33      DBMS_OUTPUT.PUT_LINE(v_val);
    34    END LOOP;
    35    DBMS_SQL.CLOSE_CURSOR (cur);
    36* END;
    SQL> /
    Column:2 : ENAME
    Column:3 : JOB
    Column:4 : MGR
    SMITH,CLERK,7902
    ALLEN,SALESMAN,7698
    WARD,SALESMAN,7698
    JONES,MANAGER,7839
    MARTIN,SALESMAN,7698
    BLAKE,MANAGER,7839
    CLARK,MANAGER,7839
    SCOTT,ANALYST,7566
    KING,PRESIDENT,
    TURNER,SALESMAN,7698
    ADAMS,CLERK,7788
    JAMES,CLERK,7698
    FORD,ANALYST,7566
    MILLER,CLERK,7782
    PL/SQL procedure successfully completed.
    SQL>Of course, if you were going to do this properly you would bind the correct datatypes of variables based on the types of the columns (the type information is also available through the describe information)

  • Can a field validation point to fields of another record type?

    Field Validation based on another Record Type Field
    I am trying to build validation into a custom object that sums fields under the Account record type.
    The names of the fields from OBI (the table location and field name):
    "- Account Custom Metrics".S_INT_13+"- Account Custom Metrics".S_INT_14+"- Account Custom Metrics".S_INT_11
    My questions: can a field validation point to fields of another record type? My thought was that if OBI can look across record types than all of CRM should be able to, including field validations.
    Thank you,
    David

    Hi !
    I'm afraid this is not possible for the moment. You'll have to wait for the Release 16 I think to have such possibilities.
    The R16 will allow you to create workflow rules accross different record types (e.g. Create a task on the Account linked to the service request when a new service request is created). I hope there will be the same possibilities with the validation rules...
    Hope this will help, feel free to ask more.
    Max

  • Summing a field if another field = scrap

    I'm working on a SSRS report where I need to sum a field if another field=scrap. I have multiple fields with 2 parameters and a sum on 1 field already in this report. I have tried to make it work a couple of other ways(expressions and query) but have
    had no luck. Any suggestions would be appreciated, since I'm new to sql and visual studio.
    Shi Rumptz

    I'm working on a report where I need to sum a field if another field=scrap.
    Hello,
    Did you want to get the sum value in the total row in the report? Which report did you designed?
    If you are use SSRS report, you can try to use the following expression to get the specify value:
    =SUM(IIF(Fields! product_code.value='scrap', Fields!desired_qty.value, 0.0),"Scope")
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Best practice to code Lookup Field to another list

    Hello All,
    Wanted to check what is the best way to create lookup field to another list. I have seen blog posts to create using feature receiver and using declarative way, but not able to find out pros and cons for the same. Want this answer urgently.
    Rohit Pasrija

    Hi,
    Per my understanding, you might want to find a better way to create Lookup field.
    Though there are different ways to create Lookup field(declaratively or programmatically), there would be no much difference between them in performance or maintenance.
    If going in the declarative way, the whole definition of the field will be hardcoded, user simply need to deploy the solution, Lookup field to a specific list will be there.
    If creating the field programmatically, there would be great flexibility when provisioning a field as we will be able to specify the properties dynamically.
    Thus, you might need to make a choice depends on the scenario in the actual production environment.
    Thanks
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Is it possible to set a field in another item/list in a workflow?

    I've created a list workflow to add a task after a new client is added to my client list. I am trying to create a pre-determined due date, so that the workflow works out the due date so that it's 2 days from today. So I decided to use the 'Add time to date'
    function and selected two days. I then figured that I could add these 2 days to the due date field in the task list by using the set field in current item to the 'add time to date' variable. However as this is a list workflow using my 'Cllients list' and not
    my events list when I select 'field' in the hope that due date from my events list pops up to select, obviously only the fields in my clients list come up. Therefore is there a way to set the field in another list to a value?
    Thanks in advance!

    Hi,
    According to your post, my understanding is that you want to make the Workflow Tasks work out with a pre-determined due date that it's 2 days from today in your client list workflow.
    I recommend that you can create this client list workflow as below in your environment.
    Then, you can go to “Start Options” to check “Start workflow automatically when an item is created”, publish this workflow and test if it works.
    When an new item is added in the client list, its corresponding Workflow Task is shown as below:
    Best Regards,
    Yumi Fu

  • Can one clip in a sequence have "display first field" and another one  "display both fields"?

    Is it possible that one clip in a sequence will have "display first field" and another one
    "display both fields"?
    My problem is that I have a split screen. One part is a clip of still
    image with text and the text is seen good with "both fields" and a
    little bit blurred with "first field". The second part is a PAL clip
    and it is seen bad with "both" and good with "first".
    The pixel-ratio is 1.094 for both clips. Playback resolution is "full".

    I have an Eizo calibrated monitor.
    Hooked up how?  If in use as the main computer monitor, no this isn't sufficient.  You need a real TV or production monitor connected via HDMI, component, S-video or the like, so that it displays only the video signal and no part of the Desktop.
    (And if you're working in interlaced, it really needs to be a CRT that can properly display an interlaced signal.)

  • Using Like to compara one db field to another

    I'm having trouble with the syntax for comparing one database
    field to another using the like statement. I've found plenty of
    examples using db field to variable or string, but can't find any
    with db field to db field.
    For example
    Where dbField1 Like %dbField2%
    What would be the proper syntax for this?
    Thanks,

    I successfully tried the following:
    ORACLE: WHERE column1 LIKE '%'||column2||'%'
    SQL Server: WHERE column1 LIKE '%'+column2+'%'
    Don't forget, the % characters go on the column with the
    "short" string. For example, if column1 contains the string 'this
    is a test' and column2 contains 'is', this row would be returned
    when the %'s are on column 2 as in the examples.
    Phil

  • Javascript to copy input fields to another input field..

    Hi,
    I have Permanent address fields(input text fields) (address line 1,2,city, state , country,zip code)  and present address fields with same input fields as premanent address
    and i have a check box is present address different with value Y when checked and N when unchecked
    so based on the check box checked and unchecked the permanent address should copy to present address.
    i dont know how to use java script in adf
    so some one  please help me to do this.
    thanks in advance
    cheers

    Hi Suchith,
    I will tell you how to achieve your case using the framework itself;
    1.- Add to your checkbox a setPropertyListener for each field you want to copy. So for the first one addressLine1 I assume the component value resides in your binding layer, you do
    from=#{bindings.yourCheckBox.inputValue eq 'Y' ? bindings.addressLine1.inputValue : null}
    to=#{bindings.otherAddressLine1.inputValue}
    type='valueChange'
    And the same for each field. All in the checkbox component.
    Since this is a business rule, you should always aim to write this kind of logic in the model layer so you can create a method in your ViewObjectRowImpl named copyAddress() and in there you copy the values from one field to another field. Then you expose this method in the client interface and execute it when clicking the checkbox. Add autosubmit=true and partialTrigger to the panel containing your other fields to be refreshed.
    Once again I am making a lot of assumptions about your model, but that is why you always need to first state the version of your JDeveloper, then give a clue about your model and where are the fields being stored and so on. So people can help you better.
    Regards

  • Click on f4  of  standard field it should show fields of another table

    Hi all,
            it's Urgent, Plz,  tell me in edit mode of ooalv when i  click on f4  of particular standard field it should have feature to show fields of another table which are corresponding to this particular field.
                   thanks in Advance .
          good answer will be Rewarded.

    have a look at demo report BCALV_TEST_GRID_F4_HELP.
    I couldn't explain it any better than this.

  • How can I have text from multiple fields on one layer, copy to one field on another layer?

    A little help please as it's been years since I've done any coding of any sort.
    So I have a 4 page document with various field types.  I have a document script that gets "TodaysDate" that works perfectly and a few other scripts as well.
    So what I'm trying to do is find a work around for the following:
    I have 3 fields - SURNAME, FIRSTNAME & dob.
    And I want what is typed into these fields to populate into 1 field.  And according to this tutorial (http://acrobatusers.com/tutorials/how-save-pdf-acrobat-javascript) it's not exactly possible.  At least I think that's what it says.
    However I'm hoping that maybe I could have a Submit button at the end of that document that when clicked would copy the text from those 3 fields (that I would have on 1 layer) into 1 field on a 2nd layer.  Is that even possible??
    I'd also like to have the document Print, Save (using the text in the field on the 2nd layer as the file name), Email (using the text in the field on the 2nd layer as the subject line) and Export to a specific Excel spreadsheet. 
    I don't want much do I?
    I'm using Acrobat 9 Pro on a Windows PC but also have access to Acrobat 8 Professional.  And I'm going to want the form to run in Acrobat Reader X.
    So far I have for the 3 fields into 1 on another layer:
    function buttonClick(){
    if(buttonClick==false)
    event.value=this.getField("SURNAME"+"-"+"FIRSTNAME"+"-"+"dob").valueAsString;
    But I have no idea how to call the event.value from 1 layer to another or if any of that code above would even work at all.
    I have a script that I believe will work perfectly for the Save and Email function:
    Using the “doc.submitForm()” function
    // This is the form return e-mail. Its hardcoded
    // so that the form is always returned to the same address
    // Change address on your form
    var cToAddr = "[email protected]";
    // First, get the client CC e-mail address
    var cCCAddr = this.getField("ClientEmail").value;
    // Now get the beneficiary e-mail only if it is filled out
    var cBenAddr = this.getField("BennyEmail").value;
    if(cBenAddr != "") cCCAddr += ";" + cBenAddr;
    // Set the subject and body text for the e-mail message
    var cSubLine = "Form X-1 returned from client"; var cBody = "Thank you for submitting your form.\n" + "Save the mail attachment for your own records";
    //** Send the form data as an XML attachment on an e-mail
    // Build the e-mail URL
    var cEmailURL = "mailto:[email protected]?cc=" + cCCAddr + "&subject=" + cSubLine + "&body=" + cBody;
    this.submitForm({
                cURL: cEmailURL,
                cSubmitAs:"XML",
                cCharSet:"utf-8"
    I'll work out the Export to Excel thing later as I've seen many tutorials on that.  But can I do the 3 fields to 1 thing at all?
    Please Help!!!

    Sorry Gilad.  I hope I'm not getting on your nerves (too much) but as I said it's been a while since I did any formal code. And I'm trying to do this code for a work document but I'm doing it in amongst so many other things I do for my job that it's difficult to get the time to concentrate for longer than 5 mins.
    I didn't get a chance to try that code until just now.  I guess I asked again as I thought (from what I'd read) that it wouldn't be that simple.
    So I've added that code and I get no errors.  But it doesn't appear to be doing anything either.  I've added the code like this in the Custom calculation script of a separate field I've called FileName.  And on the Button i'm using I've added:  buttonClick()
    function buttonClick(){
    if(buttonClick==false)
              event.value=this.getField("SURNAME").valueAsString + "-" + this.getField("FIRSTNAME").valueAsString + "-" + this.getField("dob").valueAsString;
    So now I'm guessing that becasue i'm not getting an error or a result that I've screwed it up still.  Have I put the code in the correct area?  Have I assigned a the buttonClick() function correctly?

Maybe you are looking for

  • A2109 tablet autorotate does not work

    The autorotation on my recently purchased tablet A2109 does not work. I look in settings and the auto rotate field is not highlighted, I therefore cannot choose to turn it on.The tablet has the Android jellybean OS and I did update it but to no avail

  • Creating GTC in OIM 11g (11.1.1.3.0)

    Hi, I'm trying to install Generic Technology Connector (Database_App_Tables_9.1.0.5.0) and to configure the target sysatem as a trusted source reconcilation task in OIM 11g 11.1.1.3 but I get a lot of problems. I used the following quides to do that:

  • How to setup hp photosmart 5520 two side printing on Windows 8.1

    How to setup hp photosmart 5520   two side printing on Windows 8.1

  • 3rd Gen Nano Pregancy?

    Anyone any ideas what can be done about my 3rd Gen Nano, i recently found it with a swollen battery and the back hanging off after putting it in a drawer a year ago in good condition. I've no idea what to do with it, is there anyway of fixing it? I w

  • Can't get on internet!!!

    I hope someone can help...I have the AEBS 802.11n and used several cable modems to connect. There's a green light from both the modem and the BS, but when I try to pull up Safari, it's blank. I've done a hard reset on the modem and cycled through, tu