I want to search a document in livelink through my .Net application and the Livelink query which i have used is like this --
where = (OTLocation : location) AND (OTName : somename);
It is working fine..
now i have to change the search criteria to custom attribute.
i.e. if the document have a category "SOURCE" which has an attribute "Name", then i want to search on the basis of this attribute . I have seen in the database that the region name of this attribute is Attr_22222_2 . Now the value for which i have to search is "InitDoc" and so i am using the query --
where = (OTLocation : location) AND (Attr_22222_2 : InitDoc);
But the query is not returning anything . I have verified this query on Livelink and its working there but not through LAPI.
Kindly suggest
where = (OTLocation : location) AND (OTName : somename);
It is working fine..
now i have to change the search criteria to custom attribute.
i.e. if the document have a category "SOURCE" which has an attribute "Name", then i want to search on the basis of this attribute . I have seen in the database that the region name of this attribute is Attr_22222_2 . Now the value for which i have to search is "InitDoc" and so i am using the query --
where = (OTLocation : location) AND (Attr_22222_2 : InitDoc);
But the query is not returning anything . I have verified this query on Livelink and its working there but not through LAPI.
Kindly suggest