Autopopulate fields need

Hello

I put a link on the page of the task, which allows you to create a CR.

There is an account, contact,... on the task and, after using the link, I would like on behalf of fields and contact on the SR I create, will be filled with the same values as in the task.

If, on my work, the account is a contact 'A' and 'B', when I create an SR through the weblink, fields of the SR 'Account', 'contact' is equal to 'A' and 'B '.

Could you help me?
THX
Jon

Jon,

I have a paper on this topic. Send me an email (see profile) and I'll send it to you.

Good luck
Thom

Tags: Oracle

Similar Questions

  • How to make a checkbox address autopopulate fields in Acrobat Pro?

    I have created a form where the user would fill in their contact information. (address, phone, e-mail, etc.).

    Then, they will have to fill in their shipping address too.  I would like to have a checkbox so when activated, it would be autopopulate the forwarding address in the fields with the coordinated field entries (copy).

    It seems that I have to add javascript somehow, but nothing I found on the forum has helped so far.

    You will need to write custom JavaScript to perform the task, and you will need to know the exact form field names.

    For the box, you'll need to encode a mouse action run JavaScript and you need to add the JavaScript code. The code must check the value of the check box and fill in the fields or clear fields. Without more details, it is hard to tell you how to program your specific form. If the design of the form, I would have used the names of field Manager for the invoice and shipping fields. So we can have "invoice.company", "invoice.contact", 'invoice.address', 'invoice.city', 'invoice.province', 'invoice.postal', 'invoice.phone', 'invoice.fax' and 'invoice.email'. The fields of the expedition would have a highest level of "shipping" name and the same children field names.

    A possible script could then be:

    var oInvoice = this.getField ("invoice"); get the top-level field;
    var aInvoice = oInvoice.getArray (); make table of child fields;
    order var = this.getField ("shipping");
    var aShipping = oShipping.getArray ();
    Console.println (this.getField (Event.Target.Name) .value);
    If (this.getField (event.target.name) .value == 'Yes') {}
    for {(i in aInvoice)
    Copy children Bill in the fields of shipping;
    aShipping [i] .value = aInvoice [i] .valueAsString;
    }
    oShipping.readonly = true; do shipping readonly;
    } else {}
    oShipping.readonly = false; clear readonly
    this.resetForm ([oShipping.name]) / / reset table shipping fields;
    }

  • Autopopulate field of DOB

    Hello

    I have a requirement I need to automatically fill in the field when the field DOB is entered in the page of the OFA. Do I need to write code in the controller or AMImpl...?

    Thank you

    Haja has

    Replace the getAge method in your VORowImpl with this:

    public Number getAge(){
      //return (Number) getAttributeInternal(AGE);
      Date doB = getDOB();  
    
      if(doB != null)
      {
      Calendar dob = Calendar.getInstance();
      dob.setTimeInMillis(doB.getValue().getTime());  
    
      Calendar sysDate = Calendar.getInstance();  
    
      int age = sysDate.get(Calendar.YEAR) - dob.get(Calendar.YEAR);
      if ((dob.get(Calendar.MONTH) > sysDate.get(Calendar.MONTH))
      ||
      (dob.get(Calendar.MONTH) == sysDate.get(Calendar.MONTH) &&
         dob.get(Calendar.DAY_OF_MONTH) > sysDate.get(Calendar.DAY_OF_MONTH))) {
      age--;
      }
      return new Number(age);
      }
      else {
      return (Number) getAttributeInternal(AGE);
      }
    }
    

    Replace getDOB() by the get method correct for the DOB.

    See you soon

    AJ

  • Conditional required field - need help with refresh

    Use this code to require a field if selection #30 is chosen from a drop-down list.  In tests, it works but only after I select things twice, it seems also need refresh/clear the values before it will make the required field.  Example if I select any other choice that the e-mail is going ok and the first time I select #30, it passes through, but if I select #30 a 2nd time, I get a message telling me that at least one of the required fields is not finished... which is a 2nd part to this question.  Is it possible to tell the person what field is missing data, or automatically place the cursor in the field?  It is not as critical in the refreshing part.  Thank you!

     if
    (this.rawValue =='30'){
    Q11_Comments.mandatory 
    = "error";
    }
    else
    {Q11_Comments.mandatory 
    = "disabled";
    }
    

    Selections from drop-down menu only recording not until you exit the field, so your code would probably work on the Exit event.

    To operate when the selection is made, you can use xfa.event.newText so try this like your statement:

    If (this.boundItem (xfa.event.newText) is '30')

  • Field need no text filled with export zeros

    I am working on a form to combine several fields including zeros.

    Using information mainly from this site I put together the following.  It works exactly as I hear it except the MemberNumber field does not on any of the zeros.  I thought the ValueasString would do this for me but does not work.

    Custom calculation script
    (function () {}

    Get the field values as strings
    sdc1 var = getField("ABA").valueAsString;
    sdc2 var = getField("MemberNumber").valueAsString;
    sdc3 var = getField("CheckNo1").valueAsString;

    Set this field value by concatenating the values of field
    Event.Value = (sdc1 sdc2 + "C" + "" + sdc3);

    })();

    The MemberNumber field uses the following (also from here I think) and works very well for this field to fill in zeros.

    Custom Format script

    (function () {}


    Get the character limit for this field

    var event.target.charLimit = max_chars;


    Define the fill character to use

    var pad_char = '0 '.


    If the field is not empty, and there is a character limit, cushion of value with leading zeros

    If (event.value & & max_chars) {}

    Event.Value = (new Array (max_chars + 1) .join (pad_char) + event.value).slice(-max_chars);

    }


    })();

    Thanks for any help. Bill

    The problem is that the value of the current field of MemberNumber field does not include zeroes, just the formatted value displayed. You must pass this script of the event Format and place it as the validation script and the calculation script should work as you wish.

  • Does Autopopulate fields Acrobat other than calculations

    I know that Acrobat 10.0 can perform calculations, but that form can be designed so that when a text field has a selection, another text field will fill based on the information contained in the first field?

    To set the value of a field in the mouse event to the top of a box, do something like this:

    Set the value of a text field to the value of exports of this check box if selected

    var val = event.target.value;

    var f = getField ("Text1");

    If (val! == 'Off') {}

    f.Value = val;

    } else {}

    f.Value = "";

    }

    This code will work with a group of radio buttons, checkbox, drop-down list box (dropdown) and listbox if the value of exports of the box is the value of the key/export in the other field, but the last line should be replaced by:

    f.Value = "Off";

    for check boxes and option buttons and default value for combo boxes and list boxes.

  • VirtualKeyboard and fields

    The Storm, should the virtual keyboard automatically appears when a text entry field is centered?  Should the virtual keyboard will disappear if any other field is concentrated?

    I have a screen with a BasicEditField and an ObjectChoiceField.  If the BasicEditField is the first field on the screen, the virtual keyboard gets displayed when the screen is pushed on the stack.  If I concentrate the ObjectChoiceField, the virtual keyboard remains on the screen.

    If the ObjectChoiceField is the first, the virtual keyboard does not appear when the screen is pressed.  If I concentrate the BasicEditField, the virtual keyboard does not appear.  I choose show keyboard on the menu to see it.

    Should not the virtual keyboard automatically appears based on the ground?  Otherwise, what is the good work around?  Should I really decide if each of my fields need a keyboard and then show and hide in onFocus?

    It's on a Storm 9530-4.7.0.148.

    Thank you.

    The virtual keyboard will be displayed automatically.  I was able to reproduce it and handed the issue to our development team.  Thanks for reporting this!

    To work around the problem, you can manually display the virtual keyboard.

  • Field no autocalculating

    I have a purchase order where the user enters the cost of items he wants to order (in a table with about 10 lines). At the bottom of the table is a TOTAL field which I want to auto calculate.

    But the TOTAL field updates only after you click on another row / cell in the table in the order, which of course is not intuitive. Even in this case, it sometimes takes a few clicks to get the TOTAL field to date.

    How can I get automatically calculate with this extra step?

    In the properties of the field TOTAL to calculate, I use the "value is the sum of the (+) of the following fields: ' (I chose the fields must be added). I also tried using the simplified field notation and manually enter the fields need total. But it has the same problem. With the help of Adobe XI Pro.

    The order of computation of field does not. To all that makes sense depends on which version of Acrobat you are using.

    Acrobat Pro 11:

    Tools > forms > change

    and then: tasks > other tasks > set field calculation order

    Acrobat cc:

    Tools > prepare the form

    and then in the right pane, select: more > set field calculation order

    Acrobat 9 Pro:

    Forms > add or edit fields

    and then: forms > edit fields > set field calculation order

  • Recurrence field of direct debit / automatic debit

    This area should be on 'Credit card' in order to have an existing order marked automatic or is - repeat it enough to just activate recurrence / debit and leave the field to the default value of 'None '.  I don't see any reference to this in the manual.  What happens if recidivism / debit Direct is enabled, but the field of domiciliation is left as none?

    Hi Steve

    Yes, the Direct Debit field need to be set on 'Bank card', in order to load the map. The value 'none' recurring order will be created, but the credit card will not be charged!

    I hope this helps!
    Silviu

  • OBIEE11g - field filtered by other fields

    Hello

    I use OBIEE11g, and I want to build a report in the responses, so a field needs to be filtered by the other domain.

    E.g. my gaze from table database like this

    F1 F2 F3
    -- -- --
    A B A
    B C C
    C A B


    and I would like to build a rapport with the records where F1 = F3, so would my report:

    F1 F2 F3
    -- -- --
    A B A

    How can I do?

    Filters only allow to add values or variables, but not the other fields.

    Thank you

    Hello

    11 g using the case statement in the present can be done.

    for the definition of column filter: "case when F1 = F3 then 't' other end 'F'" and for the filter to say 't'. in total, the expression might look like (case when F1 = F3 then 't' other end 'F') = 't'.

    I have not tried under option but it might work (need to) convert the filter SQL and use both columns F1 = F3.

    Let me know if it worked.

    Kind regards
    Jay

  • How to fill my date fields placed on the Master Page to several pages?

    I have a dynamic form with fields flowing. I inserted date fields using the tab of Master Pages in Adobe LiveCycle Designer ES2, Windows 7 operating system. I have only 1 Master Page. Everything on the form works fine, except when I have several pages, date fields are empty on all except the first page. One of the date fields in the event javascript has exit to calculate the second field. I can manually change the fields of date subsequent page (s), but I don't want the end user to have to do. I want that date fields on the new pages to match the date fields in the first pages. Here's my output with notes to provide a visualization of what I'm looking for.

    IM Question.png

    Thank you very much in advance for anyone who can help me with this problem!

    Caroline

    You set the binding of the two fields date to the ' global mandatory?

    Important each of these fields need to own a meaningful name, for example "date_UserEntry" and "date_Calculate".

  • Error message or an attachment missing in Facebook API publishPost().

    Hi all

    I'm integrating Facebook in my application. I use the source provided on sourceforge.net. Until now, I had problem with FB connect, but now the problem seems to be resolved.

    But now am facing problem with publishPost() API that takes as parameters:

    publishPost (pLink pMessage String, String, String pSource, String pCaption, String pPicture, String pDescription, String pName).

    Since I do not require parameters, pMessage, pLink, pPicture and pSource to be displayed, I leave their empty i.e. sending an empty string(""). But with whom I am getting error "Missing message or attachment. Please someone tell me is Message or an attachment a field needed to be sent for validation. Thanks in advance.

    I got answer to my question. Yes send a link (attachment) for publishPost() the Facebook api, SDK is required. Otherwise, we get an error "Missing message or attachment.

  • How to create the mapping for creation of partner

    Can someone help me how to create a record of partner in the sales cloud Oracle? or can someone help me the soap message to create the partner! I was with ICS to integrate the SFDC to CSOS using ICS I need to map the required fields to create the synchronization partner record. We have mandatory fields for the creation of partner OrgName, address, contact details, but if we see the mappings we have three different complex objects < orgParty >, < primaryLocation >, < partner > but the mandatory fields are available in several complex objects how to identify which fields need to map?

    Wrong forum - try asking on the forums - Cloud Computing SaaS Oracle

  • Download massive updated the planned orders in table msc_supplies

    Hi all

    I need your suggestion below requirement:

    For item RM, we planned order suggested that the CPHA; before releasing it, we want to change Date of implementation and the amount of order, then output the last modified scheduled released automatically to create the PR in purchases & Payables.

    In order to change the planned orders of RM, we export order planned the Workbench of the CPSA in the worksheet and then change dates, quantity, etc. in the worksheet. We want this change data to insert in the table msc_supplies automatically with manually intervene them and followed by releasing these planned automatically orders to create a PR

    We want to know how to achieve this requirement. We want to know the available custom hook and script to insert record in to msc_supplies.

    Have a great day.

    Thank you

    Sanngo

    Hello

    We expect steps below:

    (1) export the planned RM command suggested by the CPSA to the spreadsheet or report.

    (2) prepare the csv file with mandorty field as shown below in the table, i.e. date, quantity, etc. and format the data according to the custom intermediate table created.

    (3) custom concurrent requests created, which is used to locate the data file and upload the data to a custom intermediate table.

    (4) of the intermediate table that we are download the same data in the database MSC_SUPPLIES table (make a validation here check) in the same program. After that a manually scheduled commands added to the table of MSC_Supplies and can be found in the CPSA workbench.

    (4) in the same concurrent application of custom, call "automatic rejection" to release these records of the base table of msc_supplies, where release_flag a value of 1.

    We want to know the required fields need to be updated in the staging table custom and the base table:

    ORGANIZATION_CODE

    ORGANIZATION_ID

    ITEM_SEGMENTS

    INVENTORY_ITEM_ID

    ORDER_TYPE_TEXT

    ORDER_TYPE (5)

    New Date

    FIRM_DATE

    New quantity

    FIRM_QUANTITY

    Argument Plan_ID

    Transaction_id

    RELEASE_STATUS (1)

    SR_INSTANCE_ID

    You can test adding the manually planned adhoc decrees on Workbench CAWC namely, which are updating fields in the MSC_SUPPLIES table.

    Have a great day.

    Thank you

    Sannago

  • Copy of forms radio buttons

    I have a several page form that contains two text fields, and radio buttons.  The fixed text in multiple pages is different on each page, but the data on the first page in the text and radio button fields need to copy in the identical text fields, and radio buttons on every page.  Text fields are no problem, but how I do on the 2nd radio button entries and the following pages copy the entries on the first page?

    First of all, I moved your question to the forum of Acrobat PDF forms .

    To do that right click on one of the radio buttons in the Group and select Properties. Then, on the Options tab, check the box that says 'the buttons with the same name and the choices are selected in unison. You can select several fields at the same time and apply to each of them, too.

Maybe you are looking for