Missing declared association property

A fill command like so:
<mx:Button label="Fill" click="{se.fill(entitymaps)}"/>
In this data service:
<mx:DataService id="se" destination="entityds"/>
Gives the following stack trace:
Error: Item added to destination: entityds of type: maps::EntityMap is missing declared association property: children
    at mx.data::ConcreteDataService/http://www.adobe.com/2006/flex/mx/internal::checkAssociations()[C:\depot\DataServices\bran ches\lcds26_hotfixes\frameworks\projects\data\src\mx\data\ConcreteDataService.as:2154]
    at mx.data::DataList/http://www.adobe.com/2006/flex/mx/internal::processSequence()[C:\depot\DataServices\branch es\lcds26_hotfixes\frameworks\projects\data\src\mx\data\DataList.as:2060]
    at mx.data::DataList/http://www.adobe.com/2006/flex/mx/internal::processSequenceResult()[C:\depot\DataServices\ branches\lcds26_hotfixes\frameworks\projects\data\src\mx\data\DataList.as:2284]
    at DataListRequestResponder/result()[C:\depot\DataServices\branches\lcds26_hotfixes\framewor ks\projects\data\src\mx\data\ConcreteDataService.as:7283]
    at mx.rpc::AsyncRequest/acknowledge()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\ AsyncRequest.as:74]
    at NetConnectionMessageResponder/resultHandler()[C:\autobuild\3.2.0\frameworks\projects\rpc\ src\mx\messaging\channels\NetConnectionChannel.as:515]
    at mx.messaging::MessageResponder/result()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx \messaging\MessageResponder.as:199]
When the 'children' property of EntityMap is not declared, EntityMap looks like this:
package maps
    import mx.collections.ArrayCollection;
    [Managed]
    [RemoteClass(alias="alex.onetomany.Entity")]
    public class {   
        public function EntityMap() {}      
        public var name:String;
        public var identity:String;
Despite the fact that the entityds destination looks like this......
<destination id="entityds">
        <properties>
            <source>alex.onetomany.EntityAssembler</source>
            <scope>application</scope>
            <metadata>
                <identity property="identity"/>
            </metadata>
            <network>
                <paging enabled="false" pageSize="10" />
            </network>
        </properties>
    </destination>
...the problem still seems to occour. The strangest thing is when I rename the destination from entityds to 'blah' (on the server in data-management-config.xml and on the client in my MXML file OneToManyTest.mxml) the error no longer happens.
Questions:
1) When exactly is the missing declared association property: supposed to appear? Is it when you add some associated property in data-management-config.xml, if so....
2) How come it does not appear for the nodeds data service when I give it a similar children property on-to-many configuration in data-management-service.xml like so:
    <destination id="nodeds">
        <properties>
            <source>alex.onetomany.NodeAssembler</source>
            <scope>application</scope>
            <metadata>
                <identity property="identity"/>
                <one-to-many property="children" destination="nodeds"
                    load-on-demand="true"
                    read-only="true"
                    lazy="false"/>
            </metadata>
            <network>
                <paging enabled="false" pageSize="1" />
            </network>
        </properties>
    </destination>
3) Most importantly: why does it appear for entityds and only when the destination is called entityds and nothing else.

Do you have the XML request that you are sending?

Similar Messages

  • Custom Tag is missing required attribute property

    Hello,
    Here is my struts config file source;
    <global-forwards>
              <forward name="mainpage" path="/index.jsp">
              </forward>
              <forward name="CustomerDetailsForward" path="/GoToCustomerPage.do">
              </forward>
         </global-forwards>
         <!-- Action Mappings -->
         <action-mappings>
              <action path="/SubmitCustomerForm" type="action.SubmitCustomerForm" name="CustomerForm" scope="request" validate="true" input="/CustomerDetails.jsp">
                   <forward name="success" path="/Success.jsp">
                   </forward>
                   <forward name="failure" path="/Failure.jsp">
                   </forward>
              </action>
              <action path="/GoToCustomerPage" type="org.apache.struts.actions.ForwardAction" parameter="/CustomerDetails.jsp">
              </action>
         </action-mappings>
    And my index.jsp source;
    <html:html>
    <head>
    <html:base/>
    </head>
    <body>
    <html:button></html:button>
    <html:link forward="CustomerDetailsForward">Go To Customer Form </html:link>
    </body>
    </html:html>
    And here is the error;
    Error Message:JSPG0227E: Exception caught while translating /index.jsp: /index.jsp(13,1) --> JSPG0006E: Custom Tag is missing required attribute property
    Root Cause:com.ibm.ws.jsp.translator.JspTranslationException: JSPG0227E: Exception caught while translating /index.jsp: /index.jsp(13,1) --> JSPG0006E: Custom Tag is missing required attribute property     at com.ibm.ws.jsp.translator.visitor.validator.ValidateVisitor.visitCustomTagStart(ValidateVisitor.java:304)     at com.ibm.ws.jsp.translator.visitor.JspVisitor.processJspElement(JspVisitor.java:267)     at com.ibm.ws.jsp.translator.visitor.JspVisitor.processChildren(JspVisitor.java:309)     at com.ibm.ws.jsp.translator.visitor.JspVisitor.processJspElement(JspVisitor.java:268)     at com.ibm.ws.jsp.translator.visitor.JspVisitor.processChildren(JspVisitor.java:309)     at com.ibm.ws.jsp.translator.visitor.JspVisitor.processJspElement(JspVisitor.java:139)     at com.ibm.ws.jsp.translator.visitor.JspVisitor.visit(JspVisitor.java:121)     at com.ibm.ws.jsp.translator.JspTranslator.processVisitors(JspTranslator.java:121)     at com.ibm.ws.jsp.translator.utils.JspTranslatorUtil.translateJsp(JspTranslatorUtil.java:181)     at com.ibm.ws.jsp.translator.utils.JspTranslatorUtil.translateJspAndCompile(JspTranslatorUtil.java:83)     at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper.translateJsp(AbstractJSPExtensionServletWrapper.java:349)     at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper._checkForTranslation(AbstractJSPExtensionServletWrapper.java:317)     at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper.checkForTranslation(AbstractJSPExtensionServletWrapper.java:226)     at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper.handleRequest(AbstractJSPExtensionServletWrapper.java:131)     at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionProcessor.handleRequest(AbstractJSPExtensionProcessor.java:270)     at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:308)     at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java:472)     at com.ibm.ws.wswebcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java:111)     at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3129)     at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:238)     at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:811)     at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1433)     at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:93)     at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)     at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)     at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:274)     at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)     at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)     at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)     at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)     at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)     at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)     at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:194)     at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:741)     at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:863)     at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1510)

    volkov wrote:
    Error Message:JSPG0227E: Exception caught while translating /index.jsp: /index.jsp(13,1) --> JSPG0006E: Custom Tag is missing required attribute propertyWhich is line 13 then? And check the syntax for that tag.

  • Missing required input property error in insert attachment

    Hi,
    Im getting this following error some times not all times when i tring to insert attachment files to campaign object
    <ErrorMessage>Missing required input property &quot;Handle&quot;(SBL-ODS-00242)</ErrorMessage>
    please give some solution
    Thanks,
    Sathis Kumar P

    Do you have the XML request that you are sending?

  • No declaration of property 'imageview' found in the interface

    i am having trouble with these two errors i have tried many ideas but still no luck, here is how it looks
    #import "IntroViewController.h"
    @implementation IntroViewController
    @synthesize imageview; <no declaration of property 'imageview' found in the interface
    -(void)viewDidLoad {
    imageview.animationImages = [NSArray arrayWithObjects: <' undeclared (first use in this function)
    [UIImage imageNamed:@"Logo 1.jpg"],
    [UIImage imageNamed:@"Logo 2.jpg"],
    [UIImage imageNamed:@"Logo 3.jpg"],
    [UIImage imageNamed:@"Logo 4.jpg"],
    [UIImage imageNamed:@"Logo 5.jpg"],
    [UIImage imageNamed:@"Logo 6.jpg"],
    [UIImage imageNamed:@"Logo 7.jpg"],
    [UIImage imageNamed:@"Logo 6.jpg"],
    [UIImage imageNamed:@"Logo 5.jpg"],
    [UIImage imageNamed:@"Logo 4.jpg"],
    [UIImage imageNamed:@"Logo 3.jpg"],
    [UIImage imageNamed:@"Logo 2.jpg"],
    [UIImage imageNamed:@"Logo 1.jpg"], nil];
    imageview.animationduration = 6.00;
    imageview.animationRepeatCount = 1;
    [imageview startAnimating];
    [self.view addSubview:imageview];
    the < represent the errors, please help and thanks!

    thank you that was what the error was, but now i am having a new issue that i can't find an answer for. When the program runs and builds it brings up a black screen then just closes without any of the images ever showing up. any ideas?

  • What is associative property and Dependency ?

    I want to know what is associative property between two classes?
    What is called dependency between two classes?
    regards,
    namanc

    Is this about different forms of dependecies?
    Well, two classes can be associated by fields, like for example both stores a name. You can use the name stored in an object of one class to get the corresponding object of the other class. The name forms an association between the classes. This is a very loose dependency. A tighter dependency is when one class uses another class, meaning one class is part of another class' definition. Even tighter still is when a class extends another class so they become part of the same class hierarchy.

  • Declaring Navigation Property in Entity Framework

    Hi,
    I developed a sample application in EF which has 3 tables 
    PersonDetails, BankDetails and FixedDepositDetails. Please find the table structure below
    create table PersonDetails
    (PersonId int Primary Key,
    PersonName varchar(30))
    create table BankDetails
    (BankId int Primary Key,
    BankName varchar(100),
    BankBranch varchar(100),
    BankLocation varchar(100))
    create table FixedDepositDetails
    Id int Primary Key,
    FixedDepositNo varchar(30) not null,
    Bank_Id int, -- references Bank Details
    Person_Id int, -- references Person Details
    DOD datetime,
    DOM datetime,
    DepositAmount decimal(9,2),
    MaturityAmount decimal(9,2),
    ROI decimal(3,2),
    Period varchar(20),
    Parent_Id int,
    Constraint fk_BankId Foreign Key(Bank_Id) references BankDetails(BankId),
    Constraint fk_PersonId Foreign Key(Person_Id) references PersonDetails(PersonId),
    Constraint fk_ParentId Foreign Key(Parent_Id) references FixedDepositDetails(Id)
    Now in the Entity framework I have specified as given below
    [Serializable]
    public class PersonDetails
    [Key]
    public int PersonId { get; set; }
    public String PersonName { get; set; }
    [Serializable]
    public class BankDetails
    [Key]
    public int BankId { get; set; }
    public String BankName { get; set; }
    public String BankBranch { get; set; }
    public String BankLocation { get; set; }
    [Serializable]
    public class FixedDepositDetails
    [Key]
    public int Id { get; set; }
    public String FixedDepositNo { get; set; }
    [ForeignKey("Bank_Id")]
    public int? Bank_Id { get; set; }
    public BankDetails BankDetails { get; set; }
    [ForeignKey("Person_Id")]
    public int? Person_Id { get; set; }
    public PersonDetails PersonDetails { get; set; }
    public DateTime DOD { get; set; }
    public DateTime DOM { get; set; }
    public decimal DepositAmount { get; set; }
    public decimal MaturityAmount { get; set; }
    public decimal ROI { get; set; }
    public String Period { get; set; }
    [ForeignKey("Parent_Id")]
    public int? Parent_Id { get; set; }
    public FixedDepositDetails FixedDepositDetail { get; set; }
    } public class BaseDBContext : DbContext
            public BaseDBContext(string ConnectionString)
                : base(ConnectionString)
            public DbSet<PersonDetails> PersonDetails { get; set; }
            public DbSet<BankDetails> BankDetails { get; set; }
            public DbSet<FixedDepositDetails> FixedDepositDetails { get; set; }
            protected override void OnModelCreating(System.Data.Entity.DbModelBuilder modelBuilder)
                modelBuilder.Entity<FixedDepositDetails>()
                    .HasRequired(x => x.BankDetails)
                    .WithMany()
                    .HasForeignKey(y => y.Bank_Id);
                modelBuilder.Entity<FixedDepositDetails>()
                   .HasRequired(x => x.PersonDetails)
                   .WithMany()
                   .HasForeignKey(y => y.Person_Id);
    But when I run the application I get an error as
    The navigation property 'Bank_Id' is not a declared property on type 'FixedDepositDetails'. Verify that it has not been explicitly excluded from the model and that it is a valid navigation property.
    If I am not wrong I think I have made some mistakes when creating the model. Can some some please let me know where I am doing the mistake? If some one is able to provide me with a solution Please explain me as what you are doing and why that solution needs
    to be done?
    Regards,
    Raghul

    I know this is an old thread, but when doing it either way you guys described, I get:
    "The foreign key component 'FixedDepositDetail' is not a valid navigation property on type 'PersonDetails'.
    Verify that it has not been explicitly excluded from the model and that it is a valid primitive property."
    I had my own one-to-many relationship, but for the sake of not involving new items, it mirrors this setup from above:
    public class PersonDetails
    { [Key]
    public int PersonId { get; set; }
    public String PersonName { get; set; } public virtual ICollection<FixedDepositDetails> FixedDepositDetail { get; set; }
    } public class FixedDepositDetails
    [Key]
    public int Id { get; set; } public int? Person_Id { get; set; } [ForeignKey("Person_Id")]
    public PersonDetails PersonDetails { get; set; } public FixedDepositDetails FixedDepositDetail { get; set; }
    Any ideas on how this setup should work, or is this what you guys have?

  • Missing file association that obviously exists

    i've been trying to download a .rar file all day (that is associated with winzip in options -> applications), but when FF finishes downloading it, a pop up comes up saying something like "firefox could not open this file. please check your preferences."
    ok, first of all, i'm DOWNLOADING it, not OPENING it.
    secondly, what the Hell?

    Are you running on Vista?
    If so, I believe this issue was covered here: Vista Problems
    There are a couple of things you can do.
    1) Run SqlDeveloper one time as Administrator
    or
    2) Edit sqldeveloper.conf and add: AddVMOption -Dno.shell.integration=true

  • Missing "Step Result Property" when configure multiple numeric limit database statement

    In the NI article "Creating a TestStand Database Schema from Scratch" (http://www.ni.com/white-paper/6484/en/), it mentioned option "Apply To: Step Result Property" for statement "MEAS_NUMERIC_LIMIT". But I could not find "Step Result Property" in TestStand 4.2.1 as shown below:
    Is there a workaround for this issue?
    Thanks

    Step Result is for operating on the step result itself if the required criteria is met, so this can occurs only once per step result. Property Result is evaluated on all subproperties of the step result and is processed if the required criteria is met, so this could occur more than once per step result.
    Scott Richardson
    National Instruments

  • ArticleStartDateOWSDATE missing in Managed Property list

    Hi,
    I'm using an out-of-the-box managed property "ArticleStartDateOWSDATE" in my Content Search webpart. My problem is I didn't know how this property been added in my Managed Property list under Search Service Application. When I look on the machines
    of my colleagues, they don't have that property. Do you know how this property been added in my ManagedProperty list? Thanks.
    Regards,
    Napster

    You must have created any 'Publishing Site' or activated Publishing feature which adds these field. 
    If you go to your site and check the 'Site Columns' and filter on 'Publishing Columns', you will find the 'Article Date' which get added when you activate publishing feature on the  site. And its a Site Columns so crawl creates Managed property for
    it automatically.
    Your colleague, must not have activated that feature so don't have these fields.
    get2pallav
    Please click "Propose As Answer" if this post solves your problem or "Vote As Helpful" if this post has been useful to you.

  • Declare Property

    i have Procedure that get Value from List to Change Font Style and Font Weight ,
    the problem that the Property for this not Character .
    For example :
    SET_ITEM_PROPERTY('ITEM_NAME',FONT_STYLE,'FONT_ITALIC'); => is Wrong
    SET_ITEM_PROPERTY('ITEM_NAME',FONT_STYLE,FONT_ITALIC); => is Correct
    Help:
    How i can declare Property to Get Value from List and Replace it with the specific Property .
    For example :
    Declare
    V_FONT_STYLE PROPERTY;
    BEGIN
    IF :LIST = 'FONT_ITALIC' THEN
    V_FONT_STYLE := FONT_ITALIC;
    END IF;
    SET_ITEM_PROPERTY('ITEM_NAME',FONT_STYLE,V_FONT_STYLE);
    END;

    What do you see when you try the following:
    message( 'FONT_ITALIC : ' || FONT_ITALIC );I think you will get a number, since most of the properties are just numbers. So the following could work (didn't test it):
    DECLARE
      V_FONT_STYLE NUMBER;
    BEGIN
      IF :LIST = 'FONT_ITALIC' THEN
        V_FONT_STYLE := FONT_ITALIC;
      END IF;
      SET_ITEM_PROPERTY('ITEM_NAME',FONT_STYLE,V_FONT_STYLE);
    END;Regards
    Markus

  • Newbie question - "no property of label2 found in the interface"

    In the HelloWorld sample application, I added a second label.
    Then, in MyController.h, inside "@interface MyViewController", where label was defined as
    IBOutlet UILabel *label;
    I added a line below that
    IBOutlet UILabel *label2;
    After doing that, in the Interface Builder, I was able to connect a line from the label to File's Owner and "label2" appeared amongst the selection there, so I made the connection. I figure I did that right.
    As far as that goes, the app built and ran ok with no errors.
    In MyViewController.m, however, I noticed there was a line:
    @synthesize label;
    I still don't understand what that means, but figured if there was one for label I ought to add one for label2 as well, so I added a 2nd line
    @synthesize label2;
    However, if I do that, I get a compile-time error: "no declaration of property "label2" found in the interface.
    My questions are:
    (1) Why do I get that error if I did, in fact, declare label2 in the interface?
    (2) What does @synthesize mean anyway?
    Thanks,
    doug

    Thanks, g.difalco.
    Yes, that what was missing. When I added
    @property (nonatomic,retain)UILabel *label2;
    the compile error went away even with the @synthesize label2 in the MyViewController.m file. Thanks. While looking for "symmetry" with the label definition on the MyViewController.h file I overlooked that one.
    Now let's see if I can wrap my mind around the rest of what you said. I am new to Objective-C, but I did read that the "dot syntax" for properties that I have been used to for years in JavaScript is a relatively recent addition to the language.
    So you are saying that the @synthesize line allows that new, convenient syntax to be used.
    OK. I'll go along with that. I don't know why the word "synthesize" is use for that purpose, but I will let that sink in.
    Is there a reason the @synthesize line goes in the @implementation inside MyController.m rather than in the @interface in MyController.h?
    Thanks,
    doug

  • Problem searching non-string values within property bundles

    Platform: Windows NT 4.00.1381
    Ifs version: 1.1
    The documents I want to search on have an associated property bundle containing properties of type String, Integer, Date...
    A. OK: When I search on a property of type String, correct documents are returned successfully.
    B. OK: When I search on a property of type Integer, but specifying a String as query value, no documents are returned, as expected.
    C. BAD: When I search on a property of type Integer, specifying an Integer as query value, an exception is thrown, describing that the SQL query is invalid because of a missing right parenthesis.
    Here is the exception stack trace, with Verbose set to ON:
    oracle.ifs.common.IfsException: IFS-22012: Search failed. Invalid query may have been specified
    java.sql.SQLException: ORA-00907: missing right parenthesis
    at oracle.jdbc.oci8.OCIDBAccess.parseExecuteDescribe(OCIDBAccess.java:740)
    at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:1674)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1870)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:363)
    at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:314)
    at oracle.ifs.server.S_Search.open(S_Search.java:277)
    at oracle.ifs.server.S_LibrarySession.DMOpenSearch(S_LibrarySession.java:4589)
    at oracle.ifs.beans.LibrarySession.DMOpenSearch(LibrarySession.java)
    at oracle.ifs.beans.Search.open(Search.java:472)
    at oracle.ifs.beans.Search.open(Search.java:401)
    at com.karat.dms.ifs.issues.query.IfsQueryTest.testQuery(IfsQueryTest.java:144)
    at com.karat.dms.ifs.issues.query.IfsQueryTest.main(IfsQueryTest.java:209)
    And here is the snippet of code:
    public static void testQuery(LibrarySession lib) throws Exception
    // Create FolderRestrictQualification
    FolderPathResolver resolver = new FolderPathResolver(lib);
    Folder searchFolder = (Folder)resolver.findPublicObjectByPath("/home/myfolder");
    FolderRestrictQualification frq = new FolderRestrictQualification();
    frq.setStartFolder(searchFolder);
    // Create PropertyQualification
    PropertyQualification pq = new PropertyQualification();
    pq.setPropertyName("issueNumber");
    pq.setValue(AttributeValue.newAttributeValue(1234));
    pq.setOperatorType(AttributeQualification.EQUAL);
    // Create SearchQualification
    SearchQualification sq = new SearchClause(
    frq, pq, SearchClause.AND);
    // Create SearchClassSpecification
    String cls = "DOCUMENT";
    SearchClassSpecification cs = new SearchClassSpecification();
    cs.addSearchClass(cls);
    cs.addResultClass(cls);
    // Create AttributeSearchSpecification
    AttributeSearchSpecification ss = new AttributeSearchSpecification();
    ss.setSearchClassSpecification(cs);
    ss.setSearchQualification(sq);
    // Perform search
    Search search = new Search(lib, ss);
    search.open();
    SearchResultObject[] res = search.getItems();
    if (res == null)
    System.out.println("No match.");
    // Display results
    for (int i=0; i<res.length; i++)
    LibraryObject lo = res.getLibraryObject();
    long id = lo.getId().longValue();
    String name = lo.getName();
    System.out.println("<publicObject name='"+name+"'>");
    PublicObject po = (PublicObject)lo;
    // Retrieve and display property bundle
    PropertyBundle pb = po.getPropertyBundle();
    if (pb != null)
    Property[] props = pb.getProperties();
    for (int j=0; j<props.length; j++)
    Property prop = props[j];
    AttributeValue val = prop.getValue();
    System.out.println(" <property name='"+prop.getName()+"' type='"+val.getClass().getName()+"' value='"+val.getObject(lib)+"'/>");
    else
    System.out.println(" <noPropertyBundle/>");
    System.out.println("</publicObject>");
    search.close();
    Any help would be greatly appreciated...
    Best Regards...

    Hi Mathieu,
    Looks like this is a bug. Here's why
    you are getting the exception.
    Search API generates SQL based on your
    search constructs. It uses the LibrarySession's Localizer to get String
    representations of values in the search.
    In this case, after converting 1234 to
    string, it ended up with 1,234 which is
    confusing the SQL parser.
    I will look into what we need to do this.
    In the meanwhile, there is a workaround.
    If you can set the NumberFormat on
    LibrarySession's Localizer object to
    setGroupingUsed(false) and that should make
    your searches work.
    Try by inserting this code prior to
    running the search.
    LibrarySession sess;
    Localizer loc = sess.getLocalizer();
    NumberFormat nf = loc.getNumberFormatter();
    nf.setGroupingUsed(false);
    loc.setNumberFormatter(nf);
    I have not tested the side effects of doing
    this on other parts of iFS. You could
    do the reverse to reset the NumberFormat
    right after the search, so that these
    changes do not affect other aspects of
    iFS.
    Let me know if this helps your search run.
    Thanks for finding an interesting issue.
    Vijay
    null

  • What is use of content-property in itemdescriptor

    Hi
    what is use of content-property in item descriptor? In which scenario it is used? Found below from ATG Docs, but still not clear.
    http://docs.oracle.com/cd/E24152_01/Platform.10-1/ATGRepositoryGuide/html/s1403contentattributesandproperties01.html
    Thanks In Advance.
    Gopi

    content-property is used in case of content repositories which has content repository items. Content repository is used just like regular SQL repositories. A content repository item can be thought as consisting of some content and its metadata. The content-property attribute is used in the content item-descriptor and is usually the name of the property that holds the content itself.
    E.g. "media" as you mentioned. Here the metadata might include properties like name, description, type, date of creation, keywords etc. while the content would include the binary-data of the media itself (in case of internal media type). So the declaration content-property="data" in the media item descriptor signifies that property called "data" in the media item will be holding the actual content. You can find more details about it and content repositories in the ATG Repository documentation.
    Edited by: Nitin Khare on Aug 16, 2012 6:59 AM

  • Item descriptor property attribute ?

    Hi
    In Item Descriptor I have Declared one property with required="true" But while creating that Table I didnt use Not Null constraint to that Column.
    If I declare like this is it throw any Error , where exactly it will effect I mean while server start up or at that time of Inserting Data ?
    Thanks
    user8729783

    You should either make required="false" or put a not null constraint on DB column.
    You should put the property and column in sync.
    The issue will not come in startup, but definitly when you will be updating the data from BCC and trying to save.
    It will give you exceptions and not save data.
    It will not give you problem when you are having only one item present in BCC and trying to save it.
    The issue will come when you have multiple items of the above type, and you are trying to save one item, then it will give exception.
    As a workaround, In that case you ll have to update all items at once via import XL, otherwise you ll not be able to do directly via BCC.
    But this is not recommended that you have one property as required and in DB you have no not null constraint.
    ~Gurvinder

  • POs not showing up in Iprocurement after the PO(associated with Req) import

    I have imported requisitions using Req interface. Also POs with the PO interface. And have linked the POs to the requisition in th ePO distribution interface.
    When i query the PO i see the associated Requisition.
    But when i query the requisition in the Iprocurement. I dont see the associated PO. So that i can receive it.
    Can anyone help me wiht this. I think i'm missing the association some place
    Thanks in Advance
    Edited by: user532091 on Jan 3, 2012 5:37 PM

    Review this note, may help you.. Requisition Details Do Not Show Associated Purchase Order Receipts For Manually Linked Purchase Order [ID 306434.1]

Maybe you are looking for

  • TS1424 Can l transfer money from my itunes account to my bank account account?

    Can l transfer money from my itunes account to my bank account?

  • How to extract data in a webpage to a excelsheet or back end DB

    Hi folks I'm kiran and i'm working as technical recruiter. previously i worked as a shadow associate with National Informatics center (A govt of india IT department) where i first tried my hands on JAVA and was amazed with the things which i could do

  • Indesign PDF convertable to .jnt file?

    I have a client who wants me to convert all my Indesign PDF files to .jnt files so they can be viewed in Microsoft Journal on a tablet. I am not sure if this is possible (I don't think it is). I converted the Indesign PDF to a .JPG and .PNG file so t

  • Can you do anything after sendRedirect()

    I'm not able to test this myself as I don't have a development environment set up, but this is my question. Is it possible to do anything after a call to sendRedirect(), e.g. setting cookies, additional checking? The javadocs say that if the response

  • Lines moving through picture and video

    Just bought this I Mac with built in camera. My wife bought a Macbook also with built in camera. hers works great with a good quality picture and video. Mine has lines that constantly move downward across the picture or video. Is it a bad camera or s