Assigning a value to a number field through a button

11gxe , apex 4.x ,
hi all ,
i am trying to assign value to a number field through a button ,
i created a button , then a dynamic action for this button , when it is clicked ,
the dynamic action is based on Pl\Sql code , and the code is
begin
:p2_assign := 455 ; -- where the page is "p2" and the number field is "assign"
end ;
but it does not work , why ?

I can see the toolbar now from the last link you provided me with ,
but you showed me the way to use the static assigning , and assigning with sql , and i want to do it with "Pl\Sql"
in order to know why my way of writing the code does not work , although it is written properly , and should work .
every input item is a variable , and i am doing so
begin 
:p2_assign := 455 ; -- where the page is "p2" and the number field is "assign" 
end ;
to assign a value to a variable ,
and
doing this
begin 
select 455 into :p2_no from dual ; 
end ;  
to select a value into a variable , then
why does not it work ??
and how to do it with pl\sql ?
thanks

Similar Messages

  • How to execute a string formula and assign the result to a number field

    How to execute a string formula and assign the result to a number field
    Hi,
    we have a function that returns a string like this:
    '(45+22)*78/23'
    After we should calculate this string and assign the value to a numeric block field
    Example:
    k number(16,3);
    k:=fun1('(45+22)*78/23'); where fun1 execute and translate to number the string.
    Does exist a function like fun1 ??
    How can we do ?
    Regards

    Hello,
    this is the code that does the job:
    SQL> set serveroutput on
    SQL> DECLARE
    2 ch VARCHAR2(20) :='22+10' ;
    3 i NUMBER ;
    4 BEGIN
    5 EXECUTE IMMEDIATE 'select ' || ch || ' from dual' INTO i;
    6 dbms_output.put_line ('i = ' || TO_CHAR(i));
    7 END ;
    8 /
    i = 32
    Procédure PL/SQL terminée avec succès.
    SQL>
    just you have to do is to create a small stored function that take the string to calculate and return the number result
    Francois

  • Assigning Default value to a Infotype Field

    Hi,
    My requirement is to assign default value to the loan amount field of the loans infotype(0045).
    I am using the PBAS0001 user exit program ZXPADU01 and taking the basic pay amount for the employee from infotype 8 and assigning it to pa0045-dabrt(loan amount)field in infotype 45. But the problem is the loan amount field in 45 infotype is of the type currency(13 characters) and if i assign a value 2000 to the field its displaying as 20,000,000.00. That is the value is being multiplied by 10000 and is displayed. When i tried to divided the value by 10000 and pass it, for odd numbers its not working.Can Some one provide the solution for this problem.

    Try using simple Formula at field level insted of field routine.
    there is IF( <condition>, <result when true>, <result when false> ) option avaialble in formula
    Regards
    Sudeep

  • How do you assign a value to the APEX field APP_USER

    Application Express 4.0.2.00.07
    Hi
    Is there a special function/procedure to assign a value to the APP_USER field
    or a simple APP_USER := :P1_LOGIN_NAME would do
    Z

    Hello Zac,
    >> or a simple APP_USER := :P1_LOGIN_NAME would do
    The APEX engine is already doing it for you after a successful login – setting the value of APP_USER as the user login name. You can use it as a substitution string or with the bind variable notation (:APP_USER).
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

  • How to assign the Value to the Particular field-Text field

    Hi all,
    My requirement is to call the Web service with input from the ADF page.
    Steps I have done:
    1. I have created a Web service data control based on the WSDL file.
    2. Just drag and drop the Process, It is automatically created the form with the Input fields and then the Process button
    3. When I entered the values and then process button it will pass the values corretly.the web service is invoked correctly with the values entered.
    4. But when I try to assign the value from the some other field that is not working.
    I am assigning the Value to the field by go to the properties of the Particular field value =”CREATE”
    When I do like this that value is showing in the screen. But it will not pass the value to the web service.
    I think the value is only displaying in the screen. Not stored at bindings level. Kindly guide me in this.
    Thanks in Advance
    C.Karukkuvel

    If you want to have the value that is returned displayed in a field that has binding to another item and not the WS result item then the way to do this would be to override the method that is invoked with the button that calls the web service - you then take the result and assign it to the item you want.
    See the way it is done here:
    http://blogs.oracle.com/shay/2009/07/java_class_data_control_and_ad.html
    While this sample uses a simple method it would be basically the same for a Web service.

  • How to delete values from extension collection field through importer?

    Hi Experts,
    We have created one extension collection field in Master Agreement.
    We are able to add values to that collection field using Extension collection template CSV file through importer.
    Now we have a requirement to delete values from the Extension collection field through importer using CSV file.
    If anyone have template or idea please share with us.
    Thanks in advance!!
    Regards,
    Lava.

    Hi Agrawal,
    Thanks for you helpful information.
    Regards,
    Lava.

  • How to assign money value to CRM money field in Script component?

    Hi All,
    Can anyone please help me with below issue?
    I have a money value (eg. 25.00) in the SQL table (Source) of type string which I am reading it in script component and want to push that same to MS CRM(destination) currency field.
    I have used Money class but still it is throwing the exception "System.InvalidCastException: Microsoft Dynamics CRM has experienced an error. Reference number for administrators or support: #444AFC47"
    Used this lines of code. Please let me know if I am doing anything wrong and help with resolution.
                    if (!Row.Amount_IsNull)
                        Money Amount = new Money();
                        Amount.Value = Convert.ToDecimal(Row.Amount);
                        newTbldetails["new_amount"] = Amount.Value;
    Note: new_amount is the attribute in MS CRM (destination) with type Currency.
    Thanks,
    Sri

    This below code worked. There was a mistake in the assignment.
                    if (!Row.Amount_IsNull)
                        Money Amount = new Money();
                        Amount.Value = Convert.ToDecimal(Row.Amount);
                        newTbldetails["new_amount"] =
    Amount;
    Thanks,
    Sri

  • How to assign a value(populate) a custom field in a PCUI page ?

    Hi
    I am working in SAP CRM on its web interface PCUI.
    I have created a custom field "ZZ_NEWFIELD" through EEWB in Business Partner. It is visible in accounts transaction header (crmm_account).
    Now if I create an opportunity for this business partner, I want to fetch the value of "ZZ_NEWFIELD" from BP Master and display it in opportunity(header) transaction.
    Can someone tell me how to go about it ? I am novice to BSP applications.
    Regards
    Vishal

    Thanks Francisco for your reply.
    I have already posted it in the CRM forum as well but thought to place it here also.
    As for the weblog you menioned, it just details the method of extending the field and placing it in the IView. I have done it already.
    The problem I am facing is to how to populate this field ? I know the source field from where it has to get the data but I dont know the method/code to enable the value in new field placed in the Opportunity header.

  • Assign a value to a table-field  within a field symbol

    Hi gurus,
    probably a small question but I don't get it :-(.
    To explain my problem I give you a simplyfied example:
    I want to fill a workarea of a table in a dynamic way that is defined as followed:
    The TABLE1: has 3 fields:
    FIELD1
    FIELD2
    FIELD3
    data: i type i,
            c type c,
            fieldname type text30,
            workarea type table1.
    field symbol: <f1> type text30.
    while i le 3.
    move i to c.
        concatenate 'workarea-FIELD'  c  into fieldname.   "ex.  fieldname = 'workarea-FIELD1'
        assign (fieldname) to <f1>.                                  " <f1> = workarea-FIELD1.
    Now I want to fill this <f1> with a value
    in a way like  (<f1>) = '12345MyValue'.
    In the end I want a dynamic assignment of 
    workarea-FIELD1 = '12345MyValue'.
    workarea-FIELD2 = '12345MyValue'.
    workarea-FIELD3 = '12345MyValue'.
    endwhile.
    Any hint is appreciated :-).
    Regards,
    Stefan

    Hi *,
    I got the solution by my self...it's so easy I am already ashamed I posted my question... but there are days in live of a programmer...
    assign (fieldname) to <f1>.                       " <f1> = workarea-FIELD1.
    <f1> = '12345MyValue'.
    modify table from workarea.
    Have fun.
    regards,
    Georg

  • Number Field Issue in IPM11g!!

    Hi,
       I have created an application in IPM11g and it contains Number type field. During the content upload through Input Agent or UI if I don't pass any value for that Number field then '0' is populated for this field. In my scenario if I don't pass any value for that Number field then the field should be empty. Please help me to fix this.
    Thanks

    If i understand your question well, you could try this:
    In the querygroup (datamodel) of your first query you create a formula column : CF_payment_or_overriding_date
    In the PL/SQL Formula of your formula column you add code like this:
    function CF_payment_or_overriding_dateF return DATE
    is
    ld_return DATE;
    begin
    IF 'overriding'
    THEN
    use your criteria to retrieve the overriding_dd_date from paa via select into or a cursor construction
    ld_return := ppa_overriding_dd_date;
    ELSE
         -- empl.payment_date is fine do not replace
         ld_return := :payment_date;
    END IF;
    RETURN (ld_return);
    end;
    And in your layout section,
    for your field F_Payment_date1 set your source column to
    your formula column CF_payment_or_overriding_date
    Hope this helps,
    Greetings,
    Emiel

  • How to add a value table to a field in database table?

    Dear Experts,
    Normally a value table can be added in the domain.
    And the field of the database table will have the value table, to which this domain is assigned.
    My question is.. Is it possible to assign a value table to any field ina database table, directly?(i.e. <b>without assigning to that domain</b>)
    If yes.. please let me know the <b>step-by-step</b> procedure clearly.
    Thanks to U in advance.

    Hi sr,
    1. what is the purpose of your value table ?
      -- so that the user can select values
       from some master table , for that field !!!!
    2. This is done by
        CHECK TABLE (foreign key concept)
       (and not value table)
    3. When we create a check table for a field,
       then
       some DEFAULT table is PROPOSED
       . that DEFAULT table is nothing
      but PICKED up from the domain of that field,
      and shown from the value of VALUE TABLE.
      (we can change it however)
    4. so for your purpose,
       just create a CHECK TABLE.
    regards,
    amit m.

  • How to select number field starting with 99

    Hi Freinds-
    I have to pick values for a number field  but  i want only those values which starting with 99 
    how i can put code in select query for this ?
    Regards
    Meeta & Ruby

    Hi,
    Use the query as:-
    select
       <field1>
       <field2>
    from <database_table>
    into table <internal_table>
    where
       <field_name> like '99%'.
    Hope this solves your problem.
    Thanks & Regards,
    Tarun Gambhir

  • Assignment number Field in sales order header

    Hi All,
    Can anyone let me know the ORDERS05 IDoc segment that corresponds to the Assignment number field in sales order header Accounting tab?
    I need to specify the assignment number while creating a new order through IDoc.
    Thanks.
    Regards,
    Riyaz

    Hi,
    Use transaction we60 to find the relevant documentation for your idoc type.
    regards,
    Jakub

  • Not allows to assign default value to input field using values in datastore

    Hi Masters,
    Consider that I have one input field in a form. I should assign default value to it. I should assign to it, the value which i have stored in a datastore. When i run the application, if i give default value as 123 ,then it is working fine i.e., it is showing 123 in the textfield in form , but if i give the default value as STORE@ProductId, then it is not displaying that value in the form.
    Please help me out.
    Thanks & Regards,
    Kaushik Sreeram

    Hi,
    i faced this problem and here's what i concluded:
    There's no way you can set default value for input field dynamicly, since the default value of input control is caculated only once (i think on initializing of the iView). The input control and the data store are initialized at the same time, STORE@productID is empty that time...
    If you don't need to recieve value through the input field you're trying to initialize, but just to display the value from the store - I suggest you try using another control - Expression Box. It's value is calculated continiously, just like the Label's, and you can refere to it later.
    Regards,
    Yulia

  • Getting a value in a field through sequence

    Hi,
    I have created a sequence in db
    Now for a field on UI i need to get the sequence number automatically
    For this what do i need to do
    Thanks,
    Akash

    ENTITYIMPL.JAVA
    package model.entity;
    import oracle.jbo.AttributeList;
    import oracle.jbo.Key;
    import oracle.jbo.domain.BlobDomain;
    import oracle.jbo.domain.Date;
    import oracle.jbo.domain.Number;
    import oracle.jbo.server.AttributeDefImpl;
    import oracle.jbo.server.EntityDefImpl;
    import oracle.jbo.server.EntityImpl;
    import oracle.jbo.server.TransactionEvent;
    import oracle.jbo.server.SequenceImpl;
    // --- File generated by Oracle ADF Business Components Design Time.
    // --- Thu Mar 03 16:12:53 IST 2011
    // --- Custom code may be added to this class.
    // --- Warning: Do not modify method signatures of generated methods.
    public class VleCustChaakriAddlInfoEOImpl extends EntityImpl {
    private static VleCustChaakriAddlInfoEODefImpl mDefinitionObject;
    * AttributesEnum: generated enum for identifying attributes and accessors. Do not modify.
    public enum AttributesEnum {
    VleCustomerId {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getVleCustomerId();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setVleCustomerId((Number)value);
    VleCustChaakriAddlInfoId {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getVleCustChaakriAddlInfoId();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setVleCustChaakriAddlInfoId((Number)value);
    BplFlag {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getBplFlag();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setBplFlag((String)value);
    BplNo {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getBplNo();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setBplNo((Number)value);
    SahajCourseCompletedFlag {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getSahajCourseCompletedFlag();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setSahajCourseCompletedFlag((String)value);
    SahajCourseDtls {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getSahajCourseDtls();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setSahajCourseDtls((String)value);
    OtherCertifications {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getOtherCertifications();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setOtherCertifications((String)value);
    Experience {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getExperience();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setExperience((Number)value);
    Languages {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getLanguages();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setLanguages((String)value);
    WillingToRelocate {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getWillingToRelocate();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setWillingToRelocate((String)value);
    PostAppliedFor {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getPostAppliedFor();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setPostAppliedFor((String)value);
    Height {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getHeight();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setHeight((String)value);
    Weight {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getWeight();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setWeight((String)value);
    OtherPost {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getOtherPost();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setOtherPost((String)value);
    Resume {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getResume();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setResume((BlobDomain)value);
    CreatedBy {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getCreatedBy();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setAttributeInternal(index(), value);
    CreatedDate {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getCreatedDate();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setAttributeInternal(index(), value);
    LastModifiedBy {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getLastModifiedBy();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setAttributeInternal(index(), value);
    LastModifiedDate {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getLastModifiedDate();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setAttributeInternal(index(), value);
    VleCustAcctProfileEO {
    public Object get(VleCustChaakriAddlInfoEOImpl obj) {
    return obj.getVleCustAcctProfileEO();
    public void put(VleCustChaakriAddlInfoEOImpl obj, Object value) {
    obj.setVleCustAcctProfileEO((EntityImpl)value);
    private static AttributesEnum[] vals = null;
    private static int firstIndex = 0;
    public abstract Object get(VleCustChaakriAddlInfoEOImpl object);
    public abstract void put(VleCustChaakriAddlInfoEOImpl object,
    Object value);
    public int index() {
    return AttributesEnum.firstIndex() + ordinal();
    public static int firstIndex() {
    return firstIndex;
    public static int count() {
    return AttributesEnum.firstIndex() + AttributesEnum.staticValues().length;
    public static AttributesEnum[] staticValues() {
    if (vals == null) {
    vals = AttributesEnum.values();
    return vals;
    public static final int VLECUSTOMERID = AttributesEnum.VleCustomerId.index();
    public static final int VLECUSTCHAAKRIADDLINFOID = AttributesEnum.VleCustChaakriAddlInfoId.index();
    public static final int BPLFLAG = AttributesEnum.BplFlag.index();
    public static final int BPLNO = AttributesEnum.BplNo.index();
    public static final int SAHAJCOURSECOMPLETEDFLAG = AttributesEnum.SahajCourseCompletedFlag.index();
    public static final int SAHAJCOURSEDTLS = AttributesEnum.SahajCourseDtls.index();
    public static final int OTHERCERTIFICATIONS = AttributesEnum.OtherCertifications.index();
    public static final int EXPERIENCE = AttributesEnum.Experience.index();
    public static final int LANGUAGES = AttributesEnum.Languages.index();
    public static final int WILLINGTORELOCATE = AttributesEnum.WillingToRelocate.index();
    public static final int POSTAPPLIEDFOR = AttributesEnum.PostAppliedFor.index();
    public static final int HEIGHT = AttributesEnum.Height.index();
    public static final int WEIGHT = AttributesEnum.Weight.index();
    public static final int OTHERPOST = AttributesEnum.OtherPost.index();
    public static final int RESUME = AttributesEnum.Resume.index();
    public static final int CREATEDBY = AttributesEnum.CreatedBy.index();
    public static final int CREATEDDATE = AttributesEnum.CreatedDate.index();
    public static final int LASTMODIFIEDBY = AttributesEnum.LastModifiedBy.index();
    public static final int LASTMODIFIEDDATE = AttributesEnum.LastModifiedDate.index();
    public static final int VLECUSTACCTPROFILEEO = AttributesEnum.VleCustAcctProfileEO.index();
    * This is the default constructor (do not remove).
    public VleCustChaakriAddlInfoEOImpl() {
    * @return the definition object for this instance class.
    public static synchronized EntityDefImpl getDefinitionObject() {
    if (mDefinitionObject == null) {
    mDefinitionObject = (VleCustChaakriAddlInfoEODefImpl)EntityDefImpl.findDefObject("model.entity.VleCustChaakriAddlInfoEO");
    return mDefinitionObject;
    * Gets the attribute value for VleCustomerId, using the alias name VleCustomerId.
    * @return the VleCustomerId
    public Number getVleCustomerId() {
    return (Number)getAttributeInternal(VLECUSTOMERID);
    * Sets <code>value</code> as the attribute value for VleCustomerId.
    * @param value value to set the VleCustomerId
    public void setVleCustomerId(Number value) {
    setAttributeInternal(VLECUSTOMERID, value);
    * Gets the attribute value for VleCustChaakriAddlInfoId, using the alias name VleCustChaakriAddlInfoId.
    * @return the VleCustChaakriAddlInfoId
    public Number getVleCustChaakriAddlInfoId() {
    return (Number)getAttributeInternal(VLECUSTCHAAKRIADDLINFOID);
    * Sets <code>value</code> as the attribute value for VleCustChaakriAddlInfoId.
    * @param value value to set the VleCustChaakriAddlInfoId
    public void setVleCustChaakriAddlInfoId(Number value) {
    setAttributeInternal(VLECUSTCHAAKRIADDLINFOID, value);
    * Gets the attribute value for BplFlag, using the alias name BplFlag.
    * @return the BplFlag
    public String getBplFlag() {
    return (String)getAttributeInternal(BPLFLAG);
    * Sets <code>value</code> as the attribute value for BplFlag.
    * @param value value to set the BplFlag
    public void setBplFlag(String value) {
    setAttributeInternal(BPLFLAG, value);
    * Gets the attribute value for BplNo, using the alias name BplNo.
    * @return the BplNo
    public Number getBplNo() {
    return (Number)getAttributeInternal(BPLNO);
    * Sets <code>value</code> as the attribute value for BplNo.
    * @param value value to set the BplNo
    public void setBplNo(Number value) {
    setAttributeInternal(BPLNO, value);
    * Gets the attribute value for SahajCourseCompletedFlag, using the alias name SahajCourseCompletedFlag.
    * @return the SahajCourseCompletedFlag
    public String getSahajCourseCompletedFlag() {
    return (String)getAttributeInternal(SAHAJCOURSECOMPLETEDFLAG);
    * Sets <code>value</code> as the attribute value for SahajCourseCompletedFlag.
    * @param value value to set the SahajCourseCompletedFlag
    public void setSahajCourseCompletedFlag(String value) {
    setAttributeInternal(SAHAJCOURSECOMPLETEDFLAG, value);
    * Gets the attribute value for SahajCourseDtls, using the alias name SahajCourseDtls.
    * @return the SahajCourseDtls
    public String getSahajCourseDtls() {
    return (String)getAttributeInternal(SAHAJCOURSEDTLS);
    * Sets <code>value</code> as the attribute value for SahajCourseDtls.
    * @param value value to set the SahajCourseDtls
    public void setSahajCourseDtls(String value) {
    setAttributeInternal(SAHAJCOURSEDTLS, value);
    * Gets the attribute value for OtherCertifications, using the alias name OtherCertifications.
    * @return the OtherCertifications
    public String getOtherCertifications() {
    return (String)getAttributeInternal(OTHERCERTIFICATIONS);
    * Sets <code>value</code> as the attribute value for OtherCertifications.
    * @param value value to set the OtherCertifications
    public void setOtherCertifications(String value) {
    setAttributeInternal(OTHERCERTIFICATIONS, value);
    * Gets the attribute value for Experience, using the alias name Experience.
    * @return the Experience
    public Number getExperience() {
    return (Number)getAttributeInternal(EXPERIENCE);
    * Sets <code>value</code> as the attribute value for Experience.
    * @param value value to set the Experience
    public void setExperience(Number value) {
    setAttributeInternal(EXPERIENCE, value);
    * Gets the attribute value for Languages, using the alias name Languages.
    * @return the Languages
    public String getLanguages() {
    return (String)getAttributeInternal(LANGUAGES);
    * Sets <code>value</code> as the attribute value for Languages.
    * @param value value to set the Languages
    public void setLanguages(String value) {
    setAttributeInternal(LANGUAGES, value);
    * Gets the attribute value for WillingToRelocate, using the alias name WillingToRelocate.
    * @return the WillingToRelocate
    public String getWillingToRelocate() {
    return (String)getAttributeInternal(WILLINGTORELOCATE);
    * Sets <code>value</code> as the attribute value for WillingToRelocate.
    * @param value value to set the WillingToRelocate
    public void setWillingToRelocate(String value) {
    setAttributeInternal(WILLINGTORELOCATE, value);
    * Gets the attribute value for PostAppliedFor, using the alias name PostAppliedFor.
    * @return the PostAppliedFor
    public String getPostAppliedFor() {
    return (String)getAttributeInternal(POSTAPPLIEDFOR);
    * Sets <code>value</code> as the attribute value for PostAppliedFor.
    * @param value value to set the PostAppliedFor
    public void setPostAppliedFor(String value) {
    setAttributeInternal(POSTAPPLIEDFOR, value);
    * Gets the attribute value for Height, using the alias name Height.
    * @return the Height
    public String getHeight() {
    return (String)getAttributeInternal(HEIGHT);
    * Sets <code>value</code> as the attribute value for Height.
    * @param value value to set the Height
    public void setHeight(String value) {
    setAttributeInternal(HEIGHT, value);
    * Gets the attribute value for Weight, using the alias name Weight.
    * @return the Weight
    public String getWeight() {
    return (String)getAttributeInternal(WEIGHT);
    * Sets <code>value</code> as the attribute value for Weight.
    * @param value value to set the Weight
    public void setWeight(String value) {
    setAttributeInternal(WEIGHT, value);
    * Gets the attribute value for OtherPost, using the alias name OtherPost.
    * @return the OtherPost
    public String getOtherPost() {
    return (String)getAttributeInternal(OTHERPOST);
    * Sets <code>value</code> as the attribute value for OtherPost.
    * @param value value to set the OtherPost
    public void setOtherPost(String value) {
    setAttributeInternal(OTHERPOST, value);
    * Gets the attribute value for Resume, using the alias name Resume.
    * @return the Resume
    public BlobDomain getResume() {
    return (BlobDomain)getAttributeInternal(RESUME);
    * Sets <code>value</code> as the attribute value for Resume.
    * @param value value to set the Resume
    public void setResume(BlobDomain value) {
    setAttributeInternal(RESUME, value);
    * Gets the attribute value for CreatedBy, using the alias name CreatedBy.
    * @return the CreatedBy
    public String getCreatedBy() {
    return (String)getAttributeInternal(CREATEDBY);
    * Gets the attribute value for CreatedDate, using the alias name CreatedDate.
    * @return the CreatedDate
    public Date getCreatedDate() {
    return (Date)getAttributeInternal(CREATEDDATE);
    * Gets the attribute value for LastModifiedBy, using the alias name LastModifiedBy.
    * @return the LastModifiedBy
    public String getLastModifiedBy() {
    return (String)getAttributeInternal(LASTMODIFIEDBY);
    * Gets the attribute value for LastModifiedDate, using the alias name LastModifiedDate.
    * @return the LastModifiedDate
    public Date getLastModifiedDate() {
    return (Date)getAttributeInternal(LASTMODIFIEDDATE);
    * getAttrInvokeAccessor: generated method. Do not modify.
    * @param index the index identifying the attribute
    * @param attrDef the attribute
    * @return the attribute value
    * @throws Exception
    protected Object getAttrInvokeAccessor(int index,
    AttributeDefImpl attrDef) throws Exception {
    if ((index >= AttributesEnum.firstIndex()) && (index < AttributesEnum.count())) {
    return AttributesEnum.staticValues()[index - AttributesEnum.firstIndex()].get(this);
    return super.getAttrInvokeAccessor(index, attrDef);
    * setAttrInvokeAccessor: generated method. Do not modify.
    * @param index the index identifying the attribute
    * @param value the value to assign to the attribute
    * @param attrDef the attribute
    * @throws Exception
    protected void setAttrInvokeAccessor(int index, Object value,
    AttributeDefImpl attrDef) throws Exception {
    if ((index >= AttributesEnum.firstIndex()) && (index < AttributesEnum.count())) {
    AttributesEnum.staticValues()[index - AttributesEnum.firstIndex()].put(this, value);
    return;
    super.setAttrInvokeAccessor(index, value, attrDef);
    *protected Number nextVal(String s1) {*
    SequenceImpl s = new SequenceImpl(s1, getDBTransaction());
    return s.getSequenceNumber();
    * @return the associated entity oracle.jbo.server.EntityImpl.
    public EntityImpl getVleCustAcctProfileEO() {
    return (EntityImpl)getAttributeInternal(VLECUSTACCTPROFILEEO);
    * Sets <code>value</code> as the associated entity oracle.jbo.server.EntityImpl.
    public void setVleCustAcctProfileEO(EntityImpl value) {
    setAttributeInternal(VLECUSTACCTPROFILEEO, value);
    * @param vleCustChaakriAddlInfoId key constituent
    * @return a Key object based on given key constituents.
    public static Key createPrimaryKey(Number vleCustChaakriAddlInfoId) {
    return new Key(new Object[]{vleCustChaakriAddlInfoId});
    * Add attribute defaulting logic in this method.
    * @param attributeList list of attribute names/values to initialize the row
    protected void create(AttributeList attributeList) {
    super.create(attributeList);
    * Add entity remove logic in this method.
    public void remove() {
    super.remove();
    * Add locking logic here.
    public void lock() {
    super.lock();
    * Custom DML update/insert/delete logic here.
    * @param operation the operation type
    * @param e the transaction event
    protected void doDML(int operation, TransactionEvent e) {
    super.doDML(operation, e);
    }

Maybe you are looking for

  • RAW files not opening

    There must be some folder on my system (OSX 10.6.8) that is missing or corrupted because I cannot open RAW files. Here's what happens: When I try to open RAW files on Computer 1, they won't open. When I tried reinstalling PS and the RAW converters, s

  • Publish options

    I'm reading about flash on the adobe site and they indicate that flash can be added to a web page using Adobe Dreamweaver®. Is this my only option? I know this is a basic question, probably answered a thousand times! Is there a good site to get this

  • Limits on jump from BW to R/3

    We have set up a jump to R/3 from a BW report that is working both in BEx and on the web. We pass two parameters, one of which is billing document. In BEx, we are able to pass a number of billing documents at once to the R/3 transaction. From the web

  • How to download updates for OS Lion without Software Update center

    hello guys im in Iran  and i want to update my Lion OS but the download size is 1.24 GB and the internet speed in here is awful , how can i dowload the updates without software update? because its cant be resume ( the internet link is going down hour

  • Make Tray Icon in Java

    Hello Friends I am working on Windows OS. I have made an Application in Java. I want to crete its icon in the System Tray like comes the icon of various application like SQL Server and of System Clock. Does Java Support making such icons. If yes then