This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

DEVELOPERS FORUM - Life Cycle State

akshay kadam - Tuesday, August 6, 2013 3:27 AM:

Hi,

i want to add a new life cycle state and in that state user can update the document but the revision of the document should not be changed after updating. So what i can do for this, please help me i am beginner to Aras.

Thanks in advance.



[email protected] - Monday, August 12, 2013 4:30 PM:

Hello Akshay,

you will have a lot of different options, e.g.:

- using manual versioning within your item => result: end user has to use context menu "version" before creating a new version.
- defining lifecycle state as "not released" => result: system will change generation - not major.rev

Please ready configuring guide to get and understand these options.

Regards, Jens

NTT DATA Germany



akshay kadam - Friday, August 23, 2013 5:51 AM:

 

 

HI Jens,

Thanks for your help.

I have some issue related to search dialog. I am showing a search dialog from code and i want to get selected result. But i am unable to get hat selected file object, please help me if you can. Below is the code that i have use for populating search box,

 var param = { aras: top.aras, itemtypeName: 'File', multiselect: false }; 

 var dlgRes = showModalDialog('searchDialog.html', param, 'dialogHeight:450px; dialogWidth:700px; status:0; help:0; resizable:1;');

 if(!dlgRes)

{

 return;

}

Thanks.



[email protected] - Monday, August 26, 2013 3:15 AM:

My opinion is that you shouls have the selected item ob dlgRes.

Have you checked this?



akshay kadam - Monday, August 26, 2013 3:42 AM:

Thank you Jens,

Yes i have checked that dlgRes and selected item is in dlgRes.

Thanks.



[email protected] - Thursday, August 29, 2013 4:41 AM:

If you like to allow multiselect, dlgRes will contain a ItemCollection.

Therefore you have to check: if(dlgREs.isCollection) to be sure.

Jens Rollenmüller, NTT DATA Germany