Set Attribute Values for Object in Documentum

ro3er
edited September 29, 2008 in Documentum #1

Hi,

I am new to Documentum and was wondering if anyone could help me with the following problem:

I need to set the attribute values of an object in documentum programmically. How should I come about doing it? Is there any function in WDK or DFC which I can use to do this?

Thanks in advance.

Best Answer

  • Francois Dauberlieu
    edited August 25, 2008 #2 Answer ✓

    Check the methods of the IDfPersistentObject, you'll find what you need in there.

    Also, this is very basic stuff and I stringly suggest that you bug your boss untill he/she sends you to a good ol' training. As far as I'm concerned, it's still the best way to get started.

Answers

  • Francois Dauberlieu
    edited August 25, 2008 #3 Answer ✓

    Check the methods of the IDfPersistentObject, you'll find what you need in there.

    Also, this is very basic stuff and I stringly suggest that you bug your boss untill he/she sends you to a good ol' training. As far as I'm concerned, it's still the best way to get started.

  • ro3er
    edited August 25, 2008 #4

    Ok, thanks.

  • Lamine
    edited August 25, 2008 #5

    Hi ro3er,

    You can update your (IDfPersistentObject) object with

    different methods (setString, setTime, set RepeatitingString, ...).

    Do not forget to save your object to the end.

    Good Luck.

    +Lamine +

  • ro3er
    edited September 29, 2008 #6

    Oh ok. Thanks.