247
Points
Questions
16
Answers
34
-
- 1826 views
- 2 answers
- 0 votes
-
Hi Surya,
User would receive notifications if
1. Notifications Are turned On(under database Node in Java Client)
2. System Notification has Email and Inbox selected(Check the Notification specific to action under Notifications node)
3.User Profile Preference is set to receive Email Notifications.
4. Email Id should be valid.Thanks,
Karthik- 1343 views
- 3 answers
- 0 votes
-
- 1316 views
- 3 answers
- 0 votes
-
- 1616 views
- 3 answers
- 0 votes
-
- 1557 views
- 2 answers
- 0 votes
-
- 2403 views
- 2 answers
- 0 votes
-
Hi Reo,
We can validate the information before object is created
void invokeScript(IBaseScriptObj obj)
{ICreateEventInfo info=obj.getPXEventInfo();
IEventDirtyCell date=(IEventDirtyCell )info.getCell(2002);
//Validate the value from cell
If(invalid case)
{
throw new AgileDSLException(“Enter Valid Data”);
}Get the object Number by below code
String number=info.getNewNumber();
- 1694 views
- 3 answers
- 0 votes
-
- 1289 views
- 1 answers
- 0 votes
-
- 1583 views
- 4 answers
- 0 votes
-
Hi Matt,
Please try the below code. It sets all the list values to inactive.IAdmin admin=session.getAdminInstance();
IListLibrary listLibrary=admin.getListLibrary();
IAdminList adminlist = listLibrary.getAdminList(“Product Line”);
IAgileList values = adminlist.getValues();
IAgileList[] arr=(IAgileList[]) values.getChildren();for(int i=0;i
- 2138 views
- 5 answers
- 1 votes