osdir.com
mailing list archive

Subject: PERMANENT OPENING IN U.S. 4+ YRS(ANY SKILL SET)CANDIDATES SHOULD AVAILABLE IN U. - msg#00130

List: cms.documentum.user

Date: Prev Next Index Thread: Prev Next Index
Hi All,
We are a Leading Resource Consultant catering to various MNCs in
India and Abroad. We are looking for Our PCMM Level 5 Client in U.S.
[CANDIDATES SHOULD BE AVALIABLE IN U.S.]

REQUIREMENT I : ANY KIND OF TECHNOLOGY ANYWHERE IN USA FOR EXAMPLE
(J2EE/DOCUMENTUM/ARCHITECT/TIBCO/WEBMETHOD/C#/.NET/ORACLE
APP11i/CRM/SIEBEL/TESTING/MAINFRAME/TELECOM/EMBEDDED..ETC...)

Skills : We are looking for Candidates right now avaliable in U.S.
willing to relocate within U.S.
EXPERIENCE : 4-15 Years
Position : Senior Software Engineer / Module Leader / Consultant /
Technical Lead / Architect/Project Leader/Project Manager
LOCATION : U.S.

In receipt of your resume we will contact you for discussing on the
Job profile .We assure that your resume will not be processed without
Your consent. WE WILL BE AVALIABLE IN YAHOO CHAT career_impact
Kindly please send as your updated resume at the Earliest.

With best regards,
R.Kalpana Devi
Career Impact consultancy Services

E-Mail: kalpana-mDFDh3lPz6YqdmVocjTtTQC/G2K4zDHf@xxxxxxxxxxxxxxxx
deepa_ci-/E1597aS9LQxFYw1CcD5bw@xxxxxxxxxxxxxxxx
044-52024557
Chennai
India







------------------------ Yahoo! Groups Sponsor --------------------~-->
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/THm4lB/TM
--------------------------------------------------------------------~->




Was this page helpful?
Yes No
Thread at a glance:

Previous Message by Date: click to view message preview

Re: Re: Downloading files bigger than 25MB

I'm very curious about this myself. We are running an app (that uses DFCs) on Weblogic and we get an out.of.memory error when we try to import docs bigger than 10 mb. We have VERY FEW docs this big so we haven't dug into the fix for it yet.   What is the WDK Content Transfer?  On 10/23/05, robineast2004 <robineast2004-/E1597aS9LT10XsdtD+oqA@xxxxxxxxxxxxxxxx> wrote: It would help if you gave some sort of error message that is beingreported. It is also not clear from your description whether the problem is with the Content Server to Web Server or Web server tobrowser. Any reason why you can't use WDK Content Transfer?Robin___________________________________________________________Robin East Xense - Documentum Performance Tuninghttp://www.xense.co.uk --- In documentum-users-hHKSG33TihhbjbujkaE4pw@xxxxxxxxxxxxxxxx, < sreenivasaka@xxxx> wrote:>>  > Dear experts,>                   We are using Documentum 4.2 version to store the> Documents and using a servlet (DFC) to download the files fromDocumentum to > Web server's temp directory then displaying the files to the user. It's> working fine for the files less than 10 MB but not working for the files> more than 10 MB. Can any expert help me out to resolve this issue? > > Thanks in advance> Sreenivasa Kumar.A> YAHOO! GROUPS LINKS  Visit your group "documentum-users" on the web.   To unsubscribe from this group, send an email to: documentum-users-unsubscribe-hHKSG33TihhbjbujkaE4pw@xxxxxxxxxxxxxxxx   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

Next Message by Date: click to view message preview

DQL query for changing the owner ship of the documents

Hi Folks.   Can anyone please tell me the DQL query for changing the owner ship of the documents.Here one person is going out of office on 30th october so i would like to transfer all of his documents to the other person(Colleague).   Can anyone help me.   Thanks a lot   Regards....Sudhakar RavellaJoe Bacom <joe-P6su6aJo9I9l57MIdRCFDg@xxxxxxxxxxxxxxxx> wrote: You must me a superuser or the lock owner to remove a lock.  Here's the api command:unlock,c,<r_object_id>JoeOn Thursday 20 October 2005 10:38 am, sudhakar chowdary wrote:> Many Thanks Oscar>> Do you know the command for "how to unlock a document">> Once again Thanks a lot>> Regards....Sudhakar Ravella>> Oscar Garin <oscargarin-Re5JQEeQqe8AvxtiuMwx3w@xxxxxxxxxxxxxxxx> wrote:> DQL>> select r_object_id from dm_document where object_name='<your_object_name>'>> Oscar Garin>>> 2005/10/20, sudhakar chowdary <ravella99-/E1597aS9LQAvxtiuMwx3w@xxxxxxxxxxxxxxxx>:Hi Folks>> Can anyone please tell me how will you get the object ID of the document> from DQL/API&n bsp; .Actually i tried to get it manually from the properties but> i can't.The document was locked by someone.so i want to know the object ID> and later i will unlock it.>> and also please send me the command for unlocking the document.>> chris mithiyas <mithiyes-/E1597aS9LQxFYw1CcD5bw@xxxxxxxxxxxxxxxx > wrote:> Hi Vish,>> Below is an example, using IAPI to create a 4 state lifecycle with states> s1,s2,s3,s4.>> The primary type is dm_sysobject and the acceptable subtype is dm_document.>> After the lifecycle is created, it then validates and installs the> lifecycle as well. The name of the lifecycle is called 'testcycle'>> create,c,dm_policy> set,c,l,object_name> testcycle> appendstate,c,l> set,c,l,state_name[0]> s1> appendstate,c,l> set,c,l,state_name[1]> s2> appendstate,c,l> set,c,l,state_name[2]> s3> app endstate,c,l> set,c,l,state_name[3]> s4> set,c,l,allow_attach[0]> T> set,c,l,allow_attach[1]> T> set,c,l,allow_attach[2]> T> set,c,l,allow_attach[3]> T> set,c,l,included_type[0]> dm_sysobject> set,c,l,include_subtypes[0]> false> set,c,l,included_type[1]> dm_document> set,c,l,include_subtypes[1]> true> save,c,l> fetch,c,l> validate,c,l> install,c,l>> hope this helps>> Cheers> chris.>>> yuvarani_ramamoorthy <yuvarani_ramamoorthy-/E1597aS9LQxFYw1CcD5bw@xxxxxxxxxxxxxxxx> wrote:> Hi Vish,>> Here is the list of APIs to be executed to create lifecyle.>> 1.create,c,dm_policy --- This returns the <object_id>.>> 2.set,c,<object_id>,object_name --- Put the actual object name in the> data line>> 3.appendstate,c,<object_id& gt;>> 4.set,c,<object_id>,state_name[0] --- Put state name value in the> data line.>> 5.Repeat step 3 & 4 for each state you wish to create in lifecycle.>> 6.set,c,<object_id>,included_type[0] --- Put the primary type>> 7.save,c,<object_id>>> Thanks and Regards> yuva>>>> --- In documentum-users-hHKSG33TihhbjbujkaE4pw@xxxxxxxxxxxxxxxx, vishwanath jayaraman>> <vishwanathj@g ...> wrote:> > Hi all,> >  Is it possible to create a life cycle using a DQL or an API ? if>> somebody>> > has done it , please share the dql query.> >  Thanks> > Vish>> ---------------------------------> Yahoo! India Matrimony: Find your partner now.>>>>> ---------------------------------> Yahoo! Music Unlimited - Access over 1 million songs. Try it free.>> SPONSORED LINKS> Membership database software Database mortgage software Document management> system software Documentum Pda database software Database management> software>> ---------------------------------> YAHOO! GROUPS LINKS>>>     Visit your group "documentum-users" on the web.>>     To unsubscribe from this group, send an email to:>   documentum-users-unsubscribe-hHKSG33TihhbjbujkaE4pw@xxxxxxxxxxxxxxxx>>     Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.>>> ----------------------------------- Microsoft (MS), like the disease it shares the acronym with, is a gradual loss of primary functions augmented with spastic jerks.Penguin: Linux version 2.6.8-24 on a dual i686 (combined 7951.42 BogoMips)Skype: deamon1002AOL: joeb1002Yaho o: joebacomJabber: bacomj Yahoo! FareChase - Search multiple travel sites in one click. SPONSORED LINKS Membership database software Database mortgage software Document management system software Documentum Pda database software Database management software YAHOO! GROUPS LINKS  Visit your group "documentum-users" on the web.   To unsubscribe from this group, send an email to: documentum-users-unsubscribe-hHKSG33TihhbjbujkaE4pw@xxxxxxxxxxxxxxxx   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

Previous Message by Thread: click to view message preview

creating documentum jobs

hi, instead of using cron to run a few jobs, i'd like to create jobs which run with documentum. if anyone has created jobs within documentum, i would greatly appreciate any tips or snippets you can share. thanks, kristin ------------------------ Yahoo! Groups Sponsor --------------------~--> Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/THm4lB/TM --------------------------------------------------------------------~->

Next Message by Thread: click to view message preview

PERMANENT OPENING IN U.S. 4+ YRS(ANY SKILL SET)CANDIDATES SHOULD AVAILABLE IN U.

Hi All, We are a Leading Resource Consultant catering to various MNCs in India and Abroad. We are looking for Our PCMM Level 5 Client in U.S. [CANDIDATES SHOULD BE AVALIABLE IN U.S.] REQUIREMENT I : ANY KIND OF TECHNOLOGY ANYWHERE IN USA FOR EXAMPLE (J2EE/DOCUMENTUM/ARCHITECT/TIBCO/WEBMETHOD/C#/.NET/ORACLE APP11i/CRM/SIEBEL/TESTING/MAINFRAME/TELECOM/EMBEDDED..ETC...) Skills : We are looking for Candidates right now avaliable in U.S. willing to relocate within U.S. EXPERIENCE : 4-15 Years Position : Senior Software Engineer / Module Leader / Consultant / Technical Lead / Architect/Project Leader/Project Manager LOCATION : U.S. In receipt of your resume we will contact you for discussing on the Job profile .We assure that your resume will not be processed without Your consent. WE WILL BE AVALIABLE IN YAHOO CHAT career_impact Kindly please send as your updated resume at the Earliest. With best regards, R.Kalpana Devi Career Impact consultancy Services E-Mail: kalpana-mDFDh3lPz6YqdmVocjTtTQC/G2K4zDHf@xxxxxxxxxxxxxxxx deepa_ci-/E1597aS9LQxFYw1CcD5bw@xxxxxxxxxxxxxxxx 044-52024557 Chennai India ------------------------ Yahoo! Groups Sponsor --------------------~--> Most low income households are not online. Help bridge the digital divide today! http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/THm4lB/TM --------------------------------------------------------------------~->
Sign up for updates to this mailing list. email:
Loading Comments...
Home | News | Patents | Sitemap | FAQ | advertise

Advertising by