Expected type [NUMBER] found [STRING] (["member"]) in function[operator@div

Hi,
I am trying to recalculate a figure based on an annual percentage. The script is
FIX(yr2011, Plan, CC_4363,draft)
"AC_&&&&&& Salary" ="AC_&&&&&&Salary"* ("pay increase%"/100)
endfix
endexclude
I receive the error "expected type [NUMBER] found [STRING] (["AC_&&&&&&"]) in function[operator@div"
I looked at this forum and someone suggested using the @match function. I tried
"AC_&&&&&& Salary" ="AC_&&&&&& Salary"* (@match(Accounts," pay increase%")/100);
This validated but the salary figure disappeared.
The reason I am not loading at monthly (level zero) is due to a business requirement. I am having to spread the figures down the months from the total year but if the total year is wrong or missing the montly data obviously disappears too.
Thanks,
Nathan

A few questions:
1) I see an ENDEXCLUDE, but no starting EXCLUDE. How does that relate to the code?
2) Do you really have member names with six ampersands in them? Is that even an allowed character? I guess it is but it looks odd as & is the character used to define the usage of an Essbase Substitution Variable. Okay, that was a comment, not a question, I guess.
3) Do you have a Pay Increase% in every month? Or is it annual?
3) Why don't you stick the salary value to be allocated into another Account, e.g., "Annual Salary" and place it in a single month. Then your code could look like:
FIX(yr2011, Plan, CC_4363,draft, "Jan":"Dec")
"AC_&&&&&& Salary" ="Annual Salary"->"BegBalance" * ("pay increase%"->"BegBalance" / 100)
endfix
I created a BegBalance member which you may not have -- chose Dec or Jan as your home for Annual Salary and Pay Increase and go from there. I also forced the calc to happen at the month level -- I am assuming you have months in your app, but maybe not. Salt to taste.
Regards,
Cameron Lackpour

Similar Messages

  • Expected type [STRING] found [MEMBER] ([Average]) in function [@ISACCTYPE]

    Hi
    We've upgraded from 11.1.1.0 to 11.1.2.1.
    The following member formula worked previously:
    if(@ismbr(YearTotal));
    +     Jun;+
    ELSEIF(@ISACCTYPE(Average));
    +     @AVGRANGE(SKIPNONE,@CurrMbr(Measures)->Month,@ILSIBLINGS(@CurrMbr(Period)));+
    ELSE
    +     @ACCUM(Month,Jul:Jun);+
    Endif;
    Now get the following error:
    +Error(1200354) - Error compiling formula for [YTD] (line 3): expected type [STRING] found [MEMBER] ([Average]) in function [@ISACCTYPE]+
    There is no member or member alias called 'Average' (I did a search).
    I refered to this forum item, but no solution was provided: @ISACCTYPE formula error
    Your assistance is appreciated.
    Cheers

    Hold on!
    I thought to query the SQL repository and got some help from this dodgy blog:
    http://camerons-blog-for-essbase-hackers.blogspot.com.au/2011/07/stupid-planning-queries-3-accounts.html
    For reference purposes, here's what I ran:
    select               
                   hspo.object_name
    from               hsp_object     hspo
    INNER JOIN          HSP_ACCOUNT     hspa     on hspo.object_id = hspa.ACCOUNT_ID
    where               1=1
    and               hspo.OBJECT_TYPE = '32' --Account dimension
    and               hspa.TIME_BALANCE = 3 --Time Balance = Average
    TIME_BALANCE
    WHEN 0 THEN 'None'
    WHEN 1 THEN 'First'
    WHEN 2 THEN 'Last'
    WHEN 3 THEN 'Average'
    ELSE ''
    Edited by: user964802 on Jan 17, 2013 11:19 AM
    Edited by: user964802 on Jan 17, 2013 12:07 PM

  • Expected value type: end-of-string infopath configuing the main submit button on the form.

    Hi Everyone,
    so I have run into this very odd problem. When I am trying to configure my main submit for my infopath 2010 form, and it says File Name, I put in concat(field 1, field 2, field 3), and when the form submits, I get the following as a name for my form: field
    1, field 2, field 3, exactly like that. so I went back into the main submit and typed concat( and then used the function button, which brought up the list of controls to choose from, so I choose field 1, field 2, field 3 and when I hit ok, I keep getting this
    error:
    Expected value type: end-of-string
    Actual value: ,
    my:secReqMetaData/my:field 1-->,<-- my:secReqMetaData/my:field 2,my:secReqMetaData/my:field 3
    does anyone have any idea why this is happening?
    Best regards, Mike

    Thanks for sharing the answer here, it would be helpful for others with similar issue.
    Qiao Wei
    TechNet Community Support

  • How to use type cast change string to number(dbl)?can it work?

    how to use type cast change string to number(dbl)?can it work?

    Do you want to Type Cast (function in the Advanced >> Data Manipulation palette) or Convert (functions in the String >> String/Number Conversion palette)?
    2 simple examples:
    "1" cast as I8 = 49 or 31 hex.
    "1" converted to decimal = 1.
    "20" cast as I16 = 12848 or 3230 hex.
    "20" converted to decimal = 20.
    Note that type casting a string to an integer results in a byte by byte conversion to the ASCII values.
    32 hex is an ASCII "2" and 30 hex is an ASCII "0" so "20" cast as I16 becomes 3230 hex.
    When type casting a string to a double, the string must conform the the IEEE 32 bit floating point representation, which is typically not easy to enter from the keyboard.
    See tha attached LabView 6.1 example.
    Attachments:
    TypeCastAndConvert.vi ‏34 KB

  • Incompatible types required boolean found string

    I am trying to set a value for a variable called Location when ever the value for the location is "AFRICA"
    I need to reset it to be "55555".
    What I am getting is that 'Incompatible types required boolean found string' under the if statemant. Can anyone shade some light on this?
    String Location = filename.substring(12,17);
    String AP = "AFRICA";
    System.out.println(Location);
    if (Location = AP)
    System.out.println(Location);
    Location = "55555";
    thanks

    rp0428 wrote:
    The IF condition needs to be a BOOLEAN. The '=' is used to do an assignment. The boolean would be '=='.
    But to compare strings why aren't you using
    if (Location.equalsIgnoreCase(AP) {
    To stress this a little more:
    <tt>==</tt> applied between References will compare the Adresses they point to. This means this will only be true if both References point to the identical Object. @Test
    testStringEquality(){
       String s1 = "my Test"
       String s2 = "Test"
      Assert.assertTrue("This strings are equal",s1.equals("my "+s2));
      Assert.assertFalse("This strings are not identical",s1 == ("my "+s2));
    }So use <tt>==</tt> only for primitive number types (those starting with a lower case letter).
    bye
    TPD

  • The operator " " expects a number, but cell contains a string

    Error message: The operator "+ " expects a number, but cell contains a string. I imported data from a csv file. One column which I would like to sum has data in the following format 17:00
    How can I convert this into numerical data that can be summed?

    Hi Robert,
    What does 17:00 represent? Is it a Time of Day or a Duration, or something else entirely? Would 5:00 be represented as I wrote it, or would it be 05:00?
    Jerry

  • Error: unexpected XML reader state. expected: END but found: START:

    I am getting following error while invoking method 'GetVersionInfo' (.net web service over dll) which takes one input parameter(string) and gives two output parameters(both short):
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception: deserialization
    error: unexpected XML reader state. expected: END but found: START:
    {UPPLink}pnVersionMajor
    ORA-06512: at "SYS.UTL_DBWS", line 388
    ORA-06512: at "SYS.UTL_DBWS", line 385
    ORA-06512: at line 40
    Expected Request is as follows:
    POST /UPPLink/UPPLink.asmx HTTP/1.1
    Host: 172.16.1.38
    Content-Type: text/xml; charset=utf-8
    Content-Length: length
    SOAPAction: "UPPLink/GetVersionInfo"
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
    <GetVersionInfo xmlns="UPPLink">
    <ignore>string</ignore>
    </GetVersionInfo>
    </soap:Body>
    </soap:Envelope>
    EXpected Response is as follows:
    HTTP/1.1 200 OK
    Content-Type: text/xml; charset=utf-8
    Content-Length: length
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
    <GetVersionInfoResponse xmlns="UPPLink">
    <GetVersionInfoResult>
    <pnVersionMajor>short</pnVersionMajor>
    <pnVersionMinor>short</pnVersionMinor>
    </GetVersionInfoResult>
    </GetVersionInfoResponse>
    </soap:Body>
    </soap:Envelope>
    The PL/SQL code I am using is as follows:
    DECLARE
    service_ sys.utl_dbws.SERVICE;
    call_ sys.UTL_DBWS.call;
    service_qname sys.utl_dbws.QNAME;
    port_qname sys.utl_dbws.QNAME;
    operation_qname sys.utl_dbws.QNAME;
    string_type_qname sys.utl_dbws.QNAME;
    number_type_qname sys.utl_dbws.QNAME;
    retx ANYDATA;
    strEntry VARCHAR2(100);
    retx_string VARCHAR2(100);
    majorVersion NUMBER;
    minorVersion NUMBER;
    params sys.utl_dbws.ANYDATA_LIST;
    v_outputs sys.utl_dbws.anydata_list;
    BEGIN
    dbms_output.put_line('Starting Function');
    service_qname := sys.utl_dbws.to_qname(null, 'UPPLink');
    strEntry := 'vab';
    dbms_output.put_line('Creating Service');
    service_ := sys.utl_dbws.create_service(HTTPURITYPE('http://172.16.1.38/UPPLink/UPPLink.asmx?WSDL'), service_qname);
    dbms_output.put_line('Creating Operation');
    operation_qname := sys.utl_dbws.to_qname(null, 'GetVersionInfo');
    dbms_output.put_line('Calling Service');
    call_ := sys.utl_dbws.create_call(service_, null, operation_qname);
    sys.utl_dbws.set_property(call_, 'SOAPACTION_USE', 'true');
    sys.utl_dbws.set_property(call_, 'SOAPACTION_URI', 'UPPLink/GetVersionInfo');
    sys.utl_dbws.set_property(call_, 'OPERATION_STYLE', 'rpc');
    string_type_qname := sys.utl_dbws.to_qname('http://www.w3.org/2001/XMLSchema', 'string');
    number_type_qname := sys.utl_dbws.to_qname('http://www.w3.org/2001/XMLSchema', 'short');
    sys.utl_dbws.add_parameter(call_, 'ignore', string_type_qname, 'ParameterMode.IN');
    sys.utl_dbws.add_parameter(call_, 'pnVersionMinor', number_type_qname, 'ParameterMode.OUT');
    sys.utl_dbws.set_return_type(call_, number_type_qname);
    params(0) := ANYDATA.convertvarchar2(strEntry);
    dbms_output.put('Invoking with Input Parameter: ');
    dbms_output.put_line(ANYDATA.ACCESSVARCHAR2(params(0)));
    retx := sys.utl_dbws.invoke(call_, params);
    dbms_output.put_line('Invoke complete');
    majorVersion := retx.accessnumber;
    dbms_output.put_line('Major Version ' || majorVersion);
    v_outputs := SYS.utl_dbws.get_output_values(call_);
    minorVersion := ANYDATA.AccessNumber(v_outputs(1));
    dbms_output.put_line('Minor Version ' || minorVersion);
    sys.utl_dbws.release_service(service_);
    END;
    /

    Actually, the name needs to match what is specified in the WSDL file.

  • "Expected a number object" error/warning.

    Hey Guys, I am using LiveCycle 8 and Adobe Pro 8.
    I have an 8 page form that I started in Pro 8, and now I have
    tweaked in LiveCycle.
    Everything is "almost perfect" for what I want.
    Only problem is now I get an error that says,
    Expected a number object
    Expected a number object
    This gives me two errors. Thus, I can't save the document either.
    All I need to do to finish is resolve this, and then
    Re-Do the Tab Order for it to be complete.
    The thing is, it doesn't tell me WHERE
    the error is, or otherwise I'd fix it.
    I've already gone through the 500+ fields,
    and can't figure it out.
    It's not a Javascript error either.
    Any help on this would be great help.
    Thanks.

    JavaScript is very lose in type checking, that is, JS does not verify or keep the type the same for an item and JS will change the type of an item form number to string if it looks like that should be done. You can use the "Number(cSting)" constrictor to force an item to a number in JS and might be able to format a number with the "Format(s1, s2)" function in FormCalc.

  • Flash CS5 [Inspectable type="Number"] wont work

    Hi!
    I am expecting problems while creating components.
    I've defined property
    [Inspectable(type="Number", defaultValue="12")]
    public function get size():*{
         return isNaN(Number(this._format.size)) ? 0 : Number(this._format.size);
    public function set size(value:*):void{
         trace('VALUE:', value);
         this._format.size = value;
    Flash will convert any user defined value to 0.
    But if I'll change type to String
    [Inspectable(type="String", defaultValue="12")]
    public function get size():*{
         return isNaN(Number(this._format.size)) ? 0 : Number(this._format.size);
    public function set size(value:*):void{
         trace('VALUE:', value);
         this._format.size = value;
    Expected value will be passed. How to fix Number type?

    I've disabled update feature, looks like this is my problem. Just updated and problem fixed now.

  • Error message "No internal transfer number found"

    Hi everyone,
    I'm trying to setup the self-billing- (ERS)-functionality for scheduling agreements.  The problem I'm currently facing is that I created a test-iDoc which while being processed causes an error.
    The test-iDoc is sent out with the basic type GSVERF03 (I just tried the same using type GSVERF01). On my customer's side the reception is configured to use the message type SBWAP.
    I also did the customizing-settings from within the ERS-monitor for the partner function (TCodes OVD5 & OVD7.... with reference number "E" & Delivery Note Number to Determine Sales Document), but in the end I still receive the error-message:"No internal transfer number found" even though it's available in the iDoc.
    Does anybody have any ideas on this?!?
    Any help greatly appreciated!
    Thx & regards,
    Bobby

    Hi Boban,
    I had same issue I solved   creating  number range in SNRO for object TRMNO_INT,
    Regards

  • Splitting and type casting huge string into arrays

    Hello,
    I'm developing an application which is supposed to read measurement files. Files contain I16 and SGL data which is type casted into string. I16 data is data from analog input and SGL is from CAN-bus data in channel form. CAN and analog data is recorded using same scan rate.
    For example, if we have 6 analog channels and 2 CAN channels string will be (A represents analog and C represents CAN):
    A1 A2 A3 A4 A5 A6 C1 C2 A1 A2 A3 A4 A5 A6 C1 C2 A1 A2 .... and so on
    Anyway, I have problems reading this data fast enough into arrays. Most obvious solution to me was to use shift registers and split string in for loop. I created a for loop with two inner for loops. Number of scans to read from string is wired to N terminal of the outermost loop. Shift register is initialized with string read from file.
    First of the inner loops reads analog input data. Number of analog channels is wired to its N terminal. It's using split string to read 2 bytes at a time and then type casts data to I16. Rest of the string is wired to shift register. When every I16 channel from scan is read, rest of the string is passed to shift register of the second for loop.
    Second loop is for reading CAN channels. It's similar to first loop except data is read 4 bytes at a time and type casted to SGL. When every CAN channel from scan is read, rest of the string is passed to shift register of the outermost loop. Outputs of type cast functions are tunneled out of loops to produce 2D arrays.
    This way reading about 500 KB of data can take for example tens of seconds depending on PC and number of channels. That's way too long as we want to read several megabytes at a time.
    I created also an example with one inner loop and all data is type casted to I16. That is extremely fast when compared to two inner loops!
    Then I also made a test with two inner loops where I replaced shift register and split string with string subset. That's also faster than two inner loops + shift register, but still not fast enough. Any improvement ideas are highly appreciated. Shift register example attached (LV 7.1)
    Thanks in advance,
    Jakke Palonen
    Attachments:
    String to I16 and SGL arrays.vi ‏39 KB

    OK, there is clearly room for improvement. I did some timing and my two above suggestions are already about 100x faster than yours. A few teeaks led to a version that is now over 500x faster than the original code.
    A few timings on my rather slow computer (1GHz PIII Laptop) are shown on the front panel. For example with 10000 scans (~160kB data as 6+2) my new fastest version (Reshape II) takes 14 ms versus the original 7200ms! It can do 100000 scans (1.6MB data) in under 200 ms and 1000000 scans (15MB data) in under 2 seconds.
    I am sure the code could be further improved. I recommend the Reshape II algoritm. It is fastest and can deal with variable channel counts. Modify as needed.
    Attached is a LabVIEW 7.1 version of the benchmarking code, containing all algorithms. I have verified that all algorithms produce the same result (with the limitation that the cluster version only works for 6*I16+2*SGL data, of course). Remember that the reshape function is extremely efficient, because it does not move the data in memory. I have some ideas for further improvements, but this should get you going.
    Message Edited by altenbach on 08-05-2005 03:06 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    StringI16SGLCastingTimer.png ‏48 KB
    StringtoI16andSGLArraysMODTimer.vi ‏120 KB

  • Searching strings in procedures, function and packages (OWB)

    Hi all,
    I'm working on an OMB script to look for a string in procedures, function and packages in OWB. So far, I found how to do it for functions and procedures:
    string match -nocase \*text_to_find* [OMBRETRIEVE FUNCTION 'my_function' GET PROPERTIES(IMPLEMENTATION)]
    string match -nocase \*text_to_find* [OMBRETRIEVE PROCEDURE 'my_procedure' GET PROPERTIES(IMPLEMENTATION)]
    I have tried something similar for packages but it didn't work. Does someone know how to do this search in packages? Any help will be appreciated.
    Regards,
    Mauricio

    Of course, if you are looking for a match in any source - including procedures and packages not imported into OWB, then OMB+ isn't going to be a ton of help as it won't be aware of those other packages.
    In that case, you can always find those dependencies by doing a standard select owner, name, type, text from all_source where text like '%YOUR_SEARCH_CRITERIA%' query.
    and you can embed that in your OMB+ using the Java/SQL library: How to run SQL from OMB+
    Cheers,
    Mike

  • Embedding with JPA annot: column "is not compatible with expected type"

    I have the following embed case (things I guess to be inessential omitted):
    @Entity
    public class Container {
    @Id
    @GeneratedValue
    @Column(name="ID")
    private long id;
    @Embedded
    @AttributeOverride(name="value", column=@Column(name="UID"))
    private Uid uid;
    @Embeddable
    public class Uid {
    private String value;
    When I run this through the mapping tool to build the schema, it correctly builds the UID column in the MySQL Agreement table as a VARCHAR.
    However, when I try to access the table, I get the following error (I've edited class names to match my simplified example):
    RROR_SYSTEM_FAILED:
    <4|true|4.0.0> kodo.persistence.ArgumentException: "Uid.value" declares a column that is not compatible with the expected type "varchar". Column details:
    Full Name: Agreement.UID
    Type: blob
    Size: 0
    Default: null
    Not Null: false
         at kodo.jdbc.meta.MappingInfo.mergeColumn(MappingInfo.java:720)
         at kodo.jdbc.meta.MappingInfo.createColumns(MappingInfo.java:567)
         at kodo.jdbc.meta.ValueMappingInfo.getColumns(ValueMappingInfo.java:143)
         at kodo.jdbc.meta.strats.StringFieldStrategy.map(StringFieldStrategy.java:52)
         at kodo.jdbc.meta.FieldMapping.setStrategy(FieldMapping.java:101)
         at kodo.jdbc.meta.RuntimeStrategyInstaller.installStrategy(RuntimeStrategyInstaller.java:75)
         at kodo.jdbc.meta.FieldMapping.resolveMapping(FieldMapping.java:497)
         at kodo.jdbc.meta.FieldMapping.resolve(FieldMapping.java:456)
         at kodo.jdbc.meta.ClassMapping.resolveNonRelationMappings(ClassMapping.java:930)
         at kodo.jdbc.meta.ClassMapping.resolveMapping(ClassMapping.java:886)
         at kodo.meta.ClassMetaData.resolve(ClassMetaData.java:1761)
         at kodo.jdbc.meta.ValueMappingImpl.resolve(ValueMappingImpl.java:541)
         at kodo.jdbc.meta.strats.EmbedFieldStrategy.map(EmbedFieldStrategy.java:62)
         at kodo.jdbc.meta.FieldMapping.setStrategy(FieldMapping.java:101)
         at kodo.jdbc.meta.RuntimeStrategyInstaller.installStrategy(RuntimeStrategyInstaller.java:75)
         at kodo.jdbc.meta.FieldMapping.resolveMapping(FieldMapping.java:497)
         at kodo.jdbc.meta.FieldMapping.resolve(FieldMapping.java:456)
         at kodo.jdbc.meta.ClassMapping.resolveMapping(ClassMapping.java:890)
         at kodo.meta.ClassMetaData.resolve(ClassMetaData.java:1761)
         at kodo.meta.MetaDataRepository.processBuffer(MetaDataRepository.java:683)
         at kodo.meta.MetaDataRepository.resolveMapping(MetaDataRepository.java:635)
         at kodo.meta.MetaDataRepository.resolve(MetaDataRepository.java:518)
         at kodo.meta.MetaDataRepository.getMetaData(MetaDataRepository.java:288)
         at kodo.meta.MetaDataRepository.getMetaData(MetaDataRepository.java:352)
         at kodo.kernel.QueryImpl.classForName(QueryImpl.java:1879)
         at kodo.kernel.ExpressionStoreQuery$1.classForName(ExpressionStoreQuery.java:74)
         at kodo.kernel.jpql.JPQLExpressionBuilder.getClassMetaData(JPQLExpressionBuilder.java:151)
         at kodo.kernel.jpql.JPQLExpressionBuilder.resolveClassMetaData(JPQLExpressionBuilder.java:119)
         at kodo.kernel.jpql.JPQLExpressionBuilder.getCandidateMetaData(JPQLExpressionBuilder.java:203)
         at kodo.kernel.jpql.JPQLExpressionBuilder.getCandidateMetaData(JPQLExpressionBuilder.java:176)
         at kodo.kernel.jpql.JPQLExpressionBuilder.getCandidateType(JPQLExpressionBuilder.java:167)
         at kodo.kernel.jpql.JPQLExpressionBuilder.access$500(JPQLExpressionBuilder.java:30)
    ===
    I can't figure out why it thinks something should be a blob. Any thoughts?
    Thanks,
    -- Bryan Loofbourrow

    Ok, I found the problem. I hadn't added the Uid.java to the persistence.xml file, so although the mapping tool correctly recognized this as a varchar situation, the execution environment did not, taking Uid to be a nonpersistent class that it must treat as a blob.
    -- Bryan

  • How to convert number to string in java

    hi how can i convert number to string in java
    something like
    public void Discription(Number ownerName){
    String.valueOf(ownerName);Edited by: adf009 on 2013/04/08 7:14 PM

    Yet another way of doing it is: ownerName.toString().
    If you are working in and IDE such as Netbeans or Eclipse, type a period after the object name. Wait a second or so. Eclipse/Netbeans Intellisense will show you a list of functions that object provides that you can choose from. toString() is one of them.

  • Set attribute to a Jfield to return type number from Lov

    in my lov , i need to return type number and put it in the Jfield . after doin some search , i found the method to set the attribute on that field. PLease and need to send me any URL of doing that method if there is one. (returning type number from LOV)
    i have tried this method but it didn't work!!!
    Return object from List of values page:
    FacesContext fctx = FacesContext.getCurrentInstance();
    Application app = fctx.getApplication();
    ValueBinding vb = app.createValueBinding("#{bindings}");
    DCBindingContainer dc = (DCBindingContainer) vb.getValue(fctx);
    DCIteratorBinding dciter = (DCIteratorBinding)dc.get("PrcPartiesLawer1Iterator");
    id = (Number)dciter.getCurrentRow().getAttribute("Id");
    Name = (String)dciter.getCurrentRow().getAttribute("FullNameN");
    setId(id);
    setName(Name); AdfFacesContext.getCurrentInstance().returnFromDialog(this,null);
    return listener to assign value to Number field:
    LawyerReturnOject b = (LawyerReturnOject)returnEvent.getReturnValue();
    if(b==null)return;
    Number i = b.getId();
    getIii().setSubmittedValue(null);
    getIii().setValue(i);
    String f = b.getName();
    getInputText1().setSubmittedValue(null);
    getInputText1().setValue(f);
    AdfFacesContext af = AdfFacesContext.getCurrentInstance();
    af.addPartialTarget(getLawyerLov());
    af.addPartialTarget(getInputText1());
    and the number type is oracle.jbo.domain.number

    Hi,
    its easier to set the returned value on the ADF binding then on the component directly (at least this is less error prone)
    FacesContext fctx = FacesContext.getCurrentInstance();
    Application app = fctx.getApplication();
    ValueBinding vb = app.createValueBinding("#{bindings}");
    DCBindingContainer dc = (DCBindingContainer) vb.getValue(fctx);
    FacesCtrlAttrsBinding the_attribute = (FacesCtrlAttrsBinding ) dc.get("nameOfAttributeToUpdate");
    the_attribute.set...
    Frank

Maybe you are looking for

  • Windows Vista Computer not showing up in finder

    Hi, my WIndows Vista computer is not showing up in finder under Shared. I can connect to my PC from my mac by clicking on finder, go, connect to server and typing in the PC's IP Address, Username and Password. I can also see my Mac computer from my P

  • Can't post to Blog from iOS

    I set up a blog using iWeb on my iMac with the intention of posting pics and text while abroad on vacation. Since I plan to travel without my laptop, taking only my iPhone and iPad, I hoped to be able to post comments and attachments to the blog remo

  • How to intantiate Stateful session bean in EJB 3 ?

    In EJB 2.x, to instantiate a Stateful Session bean the process was: 1. Lookup Home object 2. call create(args) method on Home, that in turn would call corresponding ejbCreate(args) on the bean implementation. Now, in EJB 3, there is no concept of Hom

  • GetNodes returing Mulitple nodes error

    Hi All, I am trying to use xpath query getNodes to get the each node from the xml and assign to the variable of type element. When i ran it i am ending with error as below. I am sure what have give is correct. XPath query string returns multiple node

  • Can't install the latest build

    Seriously guys, help me out here, I had to download the file three times now and it's not cool because I live in Mexico and my internet is like really slow, REALLY SLOW. So when the download finishes and after like 10 minutes it shows me this code: 0