Form fields values level how chang

Hi...........

I want to change the values of the fields

Here the name of the field-> mtl_eam_asset_attribute_values Depr_method (table name)

Values-> DB, SLN (methods)

I want to change DB to "Depreciation_method", another a SLN to 'Method of the Stright line' at the form level how
Please give me a solution.
Forms 10g


Concerning
Maha

Hello
I think that you posted the same question in another thread. Its best to maintain a single thread for the same topic.
you have block db?
If yes then you have two options
1 item in the list as suggested earlier.
2 control point. While in the post and when-validate-point of the iem, you can assign the corresponding description.
If your block is not a db block, then you can use decode function when filling the data in blocks.

Tags: Oracle Development

Similar Questions

  • ActionScript & amp; change form field values

    I am building a form using flash forms. I have a particular field by default the value is 0.00. I want to make an onchange actionscript that will dynamically change the value of form field to 0.00 if the user deletes the value out of the field and leave empty.

    Please be nice... I know that my actionscript'ing is poor (and probably looks a little bit more JS what did) LOL

    < cfsavecontent variable = "zero_myfield >"
    If (myfield.text == ") {}
    MyForm.MyField.Text == "0.00";
    }
    < / cfsavecontent >

    < cfinput type = "text" name = "MyField" onchange = "zero_myfield" >

    I know that you can manipulate the value of a field to form easily with javascript, but how to do the same thing with actionscript? Pointers would be appreciated!

    Thank you!!

    No need for a function, don't do it in the tag

    Ken

  • Get the names and form field values

    Hi everyone please help me

    I tried the following code, but it returns me the result as ("found no fields")

    I'm not able to reach my pdf here, I tried with a method more evenly, always it returns nothing.

    When I went through the Forum, I heard about LiveCycle Form. If my pdf is Livecycle form based so please give me the code to reterive the form fields names and values,

    method 1:

    ' / / Let's start

    Set WshShell = CreateObject ("Wscript.Shell")
    WshShell.run "c:\F4.pdf Acrobat.exe.
    While not WshShell.AppActivate ("Adobe Acrobat"): 1000 Wscript.Sleep: Wend


    ' / / Set/Get Acrobat objects
    The App value = CreateObject ("AcroExch.App")
    Set AVDoc = App.GetActiveDoc
    Set PDDoc = AVDoc.GetPDDoc
    Define the JSO = PDDoc.GetJSObject

    ' / / Search fields and extract the Name value +.
    txt = «»
    If jso.numFields then
    for i = 0 to jso.numFields-1
    FN = jso.getNthFieldName (i)
    ' msgbox (x)
    the value of f = jso.getField (fn)
    F.value = FV
    txt = txt & fn & "=" & fv & ";"
    next
    MsgBox (txt)
    on the other
    MsgBox ("no fields found")
    end if

    Set AVDOC = Nothing
    Set PDDoc = Nothing
    Define the JSO = Nothing

    Method2:

    MyFile = "C:\output.pdf".
    Set AcroExchApp = CreateObject ("AcroExch.App")
    Set AcExAVDoc = CreateObject ("AcroExch.AVDoc")
    bOK = AcExAVDoc.Open (myFile, "")
    AcExAVDoc.BringToFront

    sMsg = «»

    If (bOK) then
    Set AFormAut = CreateObject ("AFormAut.App")

    If AFormAut.Fields.Count = 0 Then
    sMsg = "No there there no field (s) to read this PDF file"
    On the other
    sMsg = "There are" & AFormAut.Fields.Count & "fields in this PDF document.
    End If


    For every FormField in AFormAut.Fields
    FieldName = FormField.Name
    FieldValue = FormField.Value
    ' MsgBox AFormAut.Fields (Fieldname). Value
    sMsg = sMsg & vbLf & "," & Fieldname & "," & AFormAut.Fields (Fieldname). Value & "," & FormField.IsTerminal
    MsgBox SMsg

    Looks like there is no form field.

    Could you please tell me, how we can attach files in this forum. While I will attach my Pdf file

    You can put the file on acrobat.com ( https://acrobat.com/ ).

  • Bulk change the form field values?

    Hello

    Throughout our Eloqua installation, we have a couple of forms of adding contacts to our facility without a family name or the company. As a result, we are unable to sync these contacts to Salesforce so that we can make on them. I would like to change these contacts in bulk so that we can give them a name placeholder and company and then push them to Salesforce.

    I have heard that you can bulk edit things by going to settings-> fields and views, and there is an option within the Population of details field, but because we have more than 1000 unique values in these areas (most of our contacts have correctly added data), we can not view the values or change through this screen. What other options are there for safely editing these values on these contacts and then pushing just such contacts to Salesforce?

    Thank you!

    Brian

    Proceed to the step that you want to add and click on the black arrow down. Choose 'add members at this stage. " You will have the possibility to add a contact group at this time.

  • How to create a script for the calculation of the VO2max using text on a pdf form field values.

    I'm trying to create a script that calculates the VO2max based on user input in several text fields.

    My form is set up so that the user can enter values in the 4 fields of text:

    1 weight = weight in kilograms

    2. age = age in years

    3 time = time to walk 1 mile in decimal

    4. the heart rate (HR) = heart rate recovery immediately after you have finished walking 1 mile

    The VO2max equation that I use is:

    VO2max = 132.853 - (0.1692 * weight)-(0.3877 * Age) + (6,315) - (3.2649 * time)-(0.1565 * HR)

    After the user enters values in 4 text fields, I want the text of VO2max field automatically calculate the above equation and display the result to the user so that the user doesn't have to get all those numbers into a calculator.

    Any suggestions on how to write the script?

    Assuming that your domain names are what you entered in the formula, you can use the simplified field notation:

    132.853 - (0.1692 * weight)-(0.3877 * Age) + (6,315) - (3.2649 * time)-(0.1565 * HR)

    If you want the value to display only after al the data fields are complete you need to use a JavaScript calculation:

    function GetField (cName) {}
    oField var = this.getField (cName);
    if(oField == null) app.alert ("field of error for access to the" cName + "\nPlease verify the name of the field.", 1, 0 ");
    return oField;
    }

    var weight = GetField ("Weight");
    var Age is GetField ("Age");.
    var time = GetField ("Time");
    var h = GetField ("HR");

    Event.Value = "";
    If (Weight.value! = 0 & Age.value! = 0 & Time.value! = 0 & HR.value! = 0) {}
    Event.Value = 132.853 - (0.1692 * Weight.value)-(0.3877 * Age.value) + (6,315) - (3.2649 * Time.value)-(0.1565 * HR.value);
    }

  • To access the form field values

    Hi all

    I have a form with several fields. I need to change the value of a field as 'Y' and send the form in the java code.
    I used the following
    FacesContext fctx = FacesContext.getCurrentInstance ();
    RichInputText = (RichInputText) fctx.getViewRoot (.findComponent("pt1:r1:Active1")) active1;
    If (active1. GetValue(). ToString(). Equals("Y"))
    active1. SetValue ("N");
    on the other
    active1. SetValue("Y");
    This changes the value, but if I run "Commit" operation using
    bindings.getOperationBinding("Commit").execute ();
    its not saving in dB.

    My usecase:
    By clicking on the button, need to change the value of the indicator (field) and submit the form that has to go to DB.

    Please suggest me the right way.

    Concerning
    Suresh Camille

    can you explain your case to use a little?
    Your first message, I understand you want to access the value of Active1
    You can use this code:

    // get the binding container
    BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
    
    // get an ADF attributevalue from the ADF page definitions
    AttributeBinding attr = (AttributeBinding)bindings.getControlBinding("test");
    //set the val
    attr.setInputValue("newval");
    //get the val
    String val = (String)attr.getInputValue();
    

    your second post, I see that you are editing the text. So I'm a bit confused.

    Timo

  • MM_Username as default form field value?

    I have a table main 'CONTACTS' identified by "CONTACTID".

    I also have a table relational 'CONTACTNOTES' identified by "NOTEID" and related ID 'NOTESCONTACTID '.

    I created a page of note insertion, pulling CONTACTID and insert a default value for a field in the Insert page.

    Also on this note insert page, I would like to be able to insert a default value of "MM_Username" for one of the fields. How do I get there?

    Second, for the field CONTACTID by default, how can I do this protected so that no one can change it accidentally (of course if it has changed, he wouldn't wear the good record of CONTACTS)?

    First of all, try changing the ContactID in a hidden field and only for the user
    Perhaps display it on the page also.

    Regarding the username in your Application panel under click links the +.
    and choose Variable Session and type MM_Username. Drag it where ever you
    want it to appear, including the default value for a field.

    HTH

    Piers

  • Passing form field values, to an external script, in a URL

    We have a dynamic, Reader Extended form Livecyce where we have to pass two values selected by the user to an external script. The values should be passed via a URL and static entries, but needed to change can be based on user input.

    I tried variations on the following example, without success.

    Form1.Page1.button::click - (JavaScript, client)

    var userselected1;

    userselected1 = form1.page1.field1.rawValue;

    var userselected2;

    userselected2 = form1.page1.field2.rawValue;

    xfa.host.gotoURL ("http://ourdomain.com/script.php?selected1=userselected1 & selected2 = userselected2" "");

    Thank you

    Ron

    I have it! There is probably a more elegant method to achieve, but the script below works for us. A new page opens in a browser and displays information related to the variables passed to the script.

    Form1.Page1.button::click - (JavaScript, client)

    newURL1 = 'http://ourdomain.com.com/script.php?selected1=';

    newURL2 = userselected1;

    newURL3 = "& selected2 =";

    newURL4 = userselected2;

    myNewURL = newURL1 + newURL2 + newURL3 + newURL4;

    app.launchURL (myNewURL, true);

    Hope this helps someone else!

  • Field values for text changes 'true' when I click on submit by e-mail button

    I have a logic in my button send email to determine who should receive the form based on the information contained in the form.  Based on my sample code, when I click the submit by e-mail button and TextFiel4.rawValue's D781008CX03, it will really change the value in TextField4 to "true" when you submit the form.  What can I do to solve this problem?

    If

    (TextField4.rawValue = 'D781008CX03' & & CheckBox10.rawValue == true) { }

    var myDoc = event.target;

    () myDoc.mailDoc

    false,

    [email protected]

    , "" , "" ,

    "Add request of.

    + FuelRating.rawValue

    "You have a new industrial request to add.

    + FuelRating.rawValue

    );}

    Hello

    In your test for TextField4 you are missing a second equal sign:

    if (TextField4.rawValue == "D781008CX03" && CheckBox10.rawValue == true) {
         // script
    }
    

    Hope that helps,

    Niall

  • How to change the color of form fields

    I don't know how to change the color of form fields. They default to gray, but I don't know how to make a different color.

    Gray does not match the color scheme of my landing page!

    Thank you!

    I think you have two options when you are working on a landing page with an embedded format:

    • You can change the background color of the entire form field set by selecting the shape, and then clicking on the Toolbox. In the window that opens go to the second (on a paint brush icon) and select the background color you want.
    • You can change the background color of the actual fields in the form by adding CSS styles. Select the Toolbox, go to the last tab (Tools Extract page) and in the middle of this window, you will see "head | CSS | JS"- select this average CSS tab and enter the style code to get the color you want. Here is an example of code you can put in it. Note that #000000 is the color code for black. Here is more information about the code: css - background in the input fields and text color? - stack overflow

  • How can I prevent the text fields and drop downs changed after the form has been signed using a digital certificate? Thank you.

    Hi all

    How can I prevent the text fields and drop downs changed after the form has been signed using a digital certificate? Thank you.

    There is also a checkbox on the dialog box 'Sign' to lock document after signing.

  • How can I change the font in the form fields to fill

    I have already set the fields of a font, but want to change after I test filled in the fields of text in preview mode. but now when I highlight the fields and select properties and select a different font and size, it shows the new selection of fonts but the fields will not change what has already been entered. I tried to change the field and delete the text and Fain same original font type and size is still there

    Hello.

    I guess that these areas use the option 'allow formatting of the rich text.

    Thus, it is not Properties: aspect which resulted in implementing in the form of text, thetext in the form field"' bar (CTRL-E or CMD-E).

    Uncheck the option 'Allow rich text formatting' to return to this behavior.

  • How can you change the name of the custom form fields?

    I made a form that required me to add a few custom fields.  When the form sends an email, custom fields appear as "Custom".  I need them to say what is the form field.  Can we achieve this by Muse?

    I tried to change the name of the script in DreamWeaver, but it caused the form to fail.

    Any ideas would be great.

    Thank you.

    You are not able to just type the new name in and on "Custom" label above it and see it changed in your email automatically?

  • How can I change the pdf file cannot be modified, but hold down the scroll button for the form fields with multiple lines?

    I need all the information to display so I need the scroll key to work, but it is not editable.

    Thanks for the help!

    Tania

    You can define a field with strike and validate to prevent the user from changing the value of the field. First, set the field to multiline and 'Scroll long text' and the default value for the text to display in the field. Then add a custom script to strike which is:

    Custom keystroke script

    Event.RC = false;

    and to be complete, the validation script customized according to:

    Custom validation script

    If (event.value! == event.target.defaultValue) event.rc = false;

    These scripts will prevent the value to be changed, at least in Acrobat and Reader if JavaScript is enabled.

  • How to put the form fields (items) to the header level

    Hi all

    I have a requirement in which i need to display a few fields on each page of the report as a header, it's like

    Page 1 of 4

    column name ColDate


    Other fields in page 1


    Page 2 of 4

    column name ColDate


    Other fields on the page 2

    so, how can I manage display the name column and field ColDate on every page. Any advice would be very helpful.

    Thanks in advance.

    Thank you
    Pratap

    You can not form fields in the header/footer section. You must place the actual tag there as

Maybe you are looking for