2kbushaw | 1 Jun 2007 02:17
Picon

Re: Unable to delete operation

If its name is unique do select r_object_id from dm_sysobject where 
object_name = '<the_name>'

However, you may find the document is corrupt.
That can cause errors like this.

Run the Docbase Consistency Checker job and examine the results to see 
if you have
any such problems.

Ken

parinita patley wrote:
>
> The  owner just  created  a pdf  file and  wants  to  delete  it.  
> How  do  i  figure  out  the  valid  Id and  where  do  i  specify  it?
>
>
>     ------------------------------------------------------------------------
>     To: documentum-users@...; parinita98@...
>     From: sag3112@...
>     Date: Thu, 31 May 2007 20:14:18 +0100
>     Subject: Re: [documentum-users] Unable to delete operation
>
>     Parinita,
>
>     I guess you are trying to delete same file with an
>     invalid id.(ie..You have specified an invalid id)
>
>     Try deleting with a valid id definition.
(Continue reading)

eisi55 | 1 Jun 2007 15:13

Consistency Error

The consistency checker report states

  ERROR CC-0056: dmi_dd_type_info object with 
r_object_id '6900bc3c80000d0c' is missing an entry in the 
dmi_dd_common_info_s table
  ERROR CC-0056: dmi_dd_type_info object with 
r_object_id '6900bc3c80000d12' is missing an entry in the 
dmi_dd_common_info_s table

Does anyone know, what kind of problem this is and how it could be 
solved?

Solaris 8, Sybase 12.5.1 and Documentum 5.2.5

Thanks,
Stefan

 
pawank | 1 Jun 2007 18:46
Picon
Favicon

Re: Consistency Error

This seems to imply that some data dictionary information is missing.
Using the object ID you may try to identify the particular type. Then
open the type in DAB using edit and then check it back in. This may
fix the issue though I am not completely sure.

--- In documentum-users@..., "eisi55"
<stefan.eisentraeger <at> ...> wrote:
>
> The consistency checker report states
> 
>   ERROR CC-0056: dmi_dd_type_info object with 
> r_object_id '6900bc3c80000d0c' is missing an entry in the 
> dmi_dd_common_info_s table
>   ERROR CC-0056: dmi_dd_type_info object with 
> r_object_id '6900bc3c80000d12' is missing an entry in the 
> dmi_dd_common_info_s table
> 
> Does anyone know, what kind of problem this is and how it could be 
> solved?
> 
> Solaris 8, Sybase 12.5.1 and Documentum 5.2.5
> 
> Thanks,
> Stefan
>

 
M.L.Narasimha Charyulu | 2 Jun 2007 07:21
Picon
Favicon

Re: search question

Sharma,
 
Why don't you try creating and watch it for yourself..I think virtual document is returned but i cannot confirm you on this
 
thanks,
Chary

Ashutosh Sharma <ashu_2001-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote:
Let's say we create a 3 virtual documents. There
is a simple document that is embedded in the
first 2 virtual
document. All the documents are stored at one
repository only.
Let's say when user perform a full text search
"some text"(some text is there in simple
document)-what all
results will be returned-simple document or all
the virtual documents where simple document is a component?

With best regards from
Ashutosh Sharma

__________________________________________________________Building a website is a piece of cake. Yahoo! Small Business gives you all the tools to get online.
http://smallbusiness.yahoo.com/webhosting

Don't pick lemons.
See all the new 2007 cars at Yahoo! Autos. __._,_.___


SPONSORED LINKS
Database marketing software Database management software Online database software
Customer database software Act database software

Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___
Raja | 4 Jun 2007 09:02
Picon
Favicon

Check-in customization

Hi,

I have a requirement where I need to truncate few
properties of an object if the object is checked-in as
next minor version. For this i need to have
customization on top of webcompoment libry check-in.
Has any body done this kind of rquirement before? Any
solution highly appreciated.

Thanks
Raja

       
____________________________________________________________________________________
Got a little couch potato? 
Check out fun summer activities for kids.
http://search.yahoo.com/search?fr=oni_on_mail&p=summer+activities+for+kids&cs=bz 

 
Purushothaman_Venkatesh | 4 Jun 2007 09:33

RE: Check-in customization

DFC BOF-TBO could possibly help you to achieve this

From: documentum-users-hHKSG33TihhbjbujkaE4pw@public.gmane.org [mailto:documentum-users-hHKSG33TihhbjbujkaE4pw@public.gmane.org] On Behalf Of Raja
Sent: Monday, June 04, 2007 12:32 PM
To: documentum-users-hHKSG33TihhbjbujkaE4pw@public.gmane.org
Subject: [documentum-users] Check-in customization

Hi,

I have a requirement where I need to truncate few
properties of an object if the object is checked-in as
next minor version. For this i need to have
customization on top of webcompoment libry check-in.
Has any body done this kind of rquirement before? Any
solution highly appreciated.

Thanks
Raja

__________________________________________________________
Got a little couch potato?
Check out fun summer activities for kids.
http://search.yahoo.com/search?fr=oni_on_mail&p=summer+activities+for+kids&cs=bz

__._,_.___


SPONSORED LINKS
Database marketing software Database management software Online database software
Customer database software Act database software

Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___
Ridwaan Badoorally | 4 Jun 2007 10:35
Picon
Favicon

Re: Check-in customization

Hello raja,
 
here is a pice of code which i didi for a custom check-in, so u can add on that!
###########
IDfId checkinDocument(IDfSession docbaseSession,SearchAndReplaceResult resultObj,String filename) throws DfException{
//Construct a new checkin operation
IDfCheckinOperation checkin = clientX.getCheckinOperation();
//creating a checkin node
IDfCheckinNode checkinNode=null;
//obtaining an IDfSys object from the object on the file system
IDfId id=resultObj.getId();
IDfSysObject sysObj = (IDfSysObject)docbaseSession.getObjectByQualification(resultObj.getType()+ " where r_object_id='"+ id +"'");
//adding the object to the operation
checkinNode = (IDfCheckinNode)checkin.add(sysObj);
//configuring the settings for the checkin node
checkinNode.setFilePath(filename);
checkinNode.setKeepLocalFile(false);
checkinNode.setCheckinVersion(IDfCheckinOperation.NEXT_MINOR);
checkinNode.setVersionLabels("CURRENT,WIP");
checkinNode.setRetainLock(false);
if(checkinNode == null ){
return null;
}
//Execute the operation
if( !checkin.execute() ) {
return null;
}
sysObj.refreshReference();
return checkinNode.getNewObjectId();
}
 
#########3


Raja <bhanuar-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote:
Hi,

I have a require ment where I need to truncate few
properties of an object if the object is checked-in as
next minor version. For this i need to have
customization on top of webcompoment libry check-in.
Has any body done this kind of rquirement before? Any
solution highly appreciated.

Thanks
Raja

__________________________________________________________
Got a little couch potato?
Check out fun summer activities for kids.
http://search.yahoo.com/search?fr=oni_on_mail&p=summer+activities+for+kids&cs=bz

Luggage? GPS? Comic books?
Check out fitting gifts for grads at Yahoo! Search. __._,_.___


SPONSORED LINKS
Database marketing software Database management software Online database software
Customer database software Act database software

Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___
Ridwaan Badoorally | 4 Jun 2007 10:41
Picon
Favicon

Re: Check-in customization

Hello raja,

here is a pice of code which i didi for a custom check-in, so u can add
on that!
###########
IDfId checkinDocument(IDfSession docbaseSession,SearchAndReplaceResult
resultObj,String filename) throws DfException{
//Construct a new checkin operation
IDfCheckinOperation checkin = clientX.getCheckinOperation();
//creating a checkin node
IDfCheckinNode checkinNode=null;
//obtaining an IDfSys object from the object on the file system
IDfId id=resultObj.getId();
IDfSysObject sysObj =
(IDfSysObject)docbaseSession.getObjectByQualification(resultObj.getType()+ " where r_object_id='"+ id +"'");
//adding the object to the operation
checkinNode = (IDfCheckinNode)checkin.add(sysObj);
//configuring the settings for the checkin node
checkinNode.setFilePath(filename);
checkinNode.setKeepLocalFile(false);
checkinNode.setCheckinVersion(IDfCheckinOperation.NEXT_MINOR);
checkinNode.setVersionLabels("CURRENT,WIP");
checkinNode.setRetainLock(false);
if(checkinNode == null ){
return null;
}
//Execute the operation
if( !checkin.execute() ) {
return null;
}
sysObj.refreshReference();
return checkinNode.getNewObjectId();
}

#########

Regards,
Ridwaan.

Raja <bhanuar-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote:
Hi,

I have a requirement where I need to truncate few
properties of an object if the object is checked-in as
next minor version. For this i need to have
customization on top of webcompoment libry check-in.
Has any body done this kind of rquirement before? Any
solution highly appreciated.

Thanks
Raja

__________________________________________________________
Got a little couch potato?
Check out fun summer activities for kids.
http://search.yahoo.com/search?fr=oni_on_mail&p=summer+activities+for+kids&cs=bz

Don't pick lemons.
See all the new 2007 cars at Yahoo! Autos. __._,_.___


SPONSORED LINKS
Database marketing software Database management software Online database software
Customer database software Act database software

Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___
Raja | 4 Jun 2007 13:08
Picon
Favicon

RE: Check-in customization

Hi, 

Thanks for the reply.  In the TBO how do I  Pass the
user input that whether user has selected next minor
version or same version from the webtop UI? Also which
method of check-in component(web component) to be
customized? 

Cant we acheive this using only customizing the libary
component check-in?

Thanks
Raja
--- Purushothaman_Venkatesh@... wrote:

> DFC BOF-TBO could possibly help you to achieve this
> 
> 
> ________________________________
> 
> 	From: documentum-users@...
> [mailto:documentum-users@...] On Behalf
> Of Raja
> 	Sent: Monday, June 04, 2007 12:32 PM
> 	To: documentum-users@...
> 	Subject: [documentum-users] Check-in customization
> 	
> 	
> 
> 	Hi,
> 	
> 	I have a requirement where I need to truncate few
> 	properties of an object if the object is checked-in
> as
> 	next minor version. For this i need to have
> 	customization on top of webcompoment libry
> check-in.
> 	Has any body done this kind of rquirement before?
> Any
> 	solution highly appreciated.
> 	
> 	Thanks
> 	Raja
> 	
> 
>
__________________________________________________________
> 	Got a little couch potato? 
> 	Check out fun summer activities for kids.
> 	
>
http://search.yahoo.com/search?fr=oni_on_mail&p=summer+activities+for+ki
> ds&cs=bz
>
<http://search.yahoo.com/search?fr=oni_on_mail&p=summer+activities+for+k
> ids&cs=bz>  
> 	
> 
> 	 
> 
> 

      ____________________________________________________________________________________
Park yourself in front of a world of choices in alternative vehicles. Visit the Yahoo! Auto Green Center.
http://autos.yahoo.com/green_center/ 

 
m.lakshmi | 4 Jun 2007 15:26

FullText Server 5.3 SP4 on Linux:Process Indexer getting terminated

Hi,

I installed Full Text Server 5.3 SP4 on Linux where the content server 5.3 SP4 is installed. But when try to start the Index server, it shows the following message:
"Process indexer terminated shortly after starting"

The status of the index server is:
Connecting to Node Controller at localhost:18015..
Issuing 'sysstatus' request to Node Controller..

Status for node : ISLCH-226.XXX.com

FASTSEARCH : /uo1/app/documentum/fulltext/IndexServer
Disk status : 83% used - 4.01 GB free - 18.90 GB used - 22.92 GB total

Module Name Process Name PID Status
------------------------------ -------------------- -------- --------------

Content Distributor contentdistributor 3531 Running
Web Server httpd 3945 Running
J2EE j2ee 3949 Running
Name Service nameservice 3521 Running
Status Server statusserver 3582 Running
RTS Indexer indexer Dead
RTS Top Dispatcher topfdispatch 3559 Running
Node Controller nctrl 3599 Running
Log Server logserver 3523 Running
Document Processor procserver_1 3598 Running
QRServer qrserver 3578 Running
RTS Search search-1 3567 Running
Storage Service storageservice 3979 Running
Config Server configserver 3524 Running

I understand that all the processes should be running before configuring a index agent. What could be the reason for this? how to solve this?

Regards,

Lakshmi

DISCLAIMER:
This message contains privileged and confidential information and is intended only for an individual named. If you are not the intended recipient, you should not disseminate, distribute, store, print, copy or deliver this message. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete or contain viruses. The sender, therefore, does not accept liability for any errors or omissions in the contents of this message which arise as a result of e-mail transmission. If verification is required, please request a hard-copy version. __._,_.___


SPONSORED LINKS
Database marketing software Database management software Online database software
Customer database software Act database software

Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___

Gmane