It is a suite which helps us to automate the processes happening inside a business environment. |
Thursday, March 4, 2010
What is Metastorm?
Posted by Mr.Late at 3:44 AM 127 comments
Labels: Metastorm
Metastorm BPM is not working with browser or iis
I have faced this issue, Meta storm is not working with IIS but at the same time its working well with Microsoft Outlook.Could anyone have the idea on how to rectify this issue?.
Comments Saurabh said... |
Posted by Mr.Late at 3:43 AM 8 comments
How to call Javascript on "When Stage Completed" stage?
Is it possible to call Javascript on "When Stage Completed" stage?
Comments Paul said... |
Posted by Mr.Late at 3:42 AM 3 comments
Metastorm Provision
How the Metstorm BPM differs from Metastorm Provision? |
Posted by Mr.Late at 3:41 AM 1 comments
Is it possible to integrate a Document Management System with Metastorm?
I have a DMS system, which i want to integrate with Metastorm. How can i integrate a Document Management System with Metastorm using Active Application Integration (AAI) ? Comments Anonymous said... |
Posted by Mr.Late at 3:40 AM 4 comments
Forms in Metastorm
Form Types in Metastorm |
Posted by Mr.Late at 3:38 AM 0 comments
Javascript Issue
function ValidateLeave() { var LeaveCount=document.getEl("txtTotalLeaves"); var Days=document.getEl("txtDays"); if( LeaveCount.value==0) { alert("Sorry You Have No Leaves Available"); return false; } else if (LeaveCount.value < Days.value) { alert(LeaveCount.value); alert(Days.value); alert("Sorry!Check your available leaves!"); return false; } else { return true; } } The above code throws error for me, the issue came because of wrong type casting.Here is an useful link for type casting www.jibbering.com#tcInt The below code will work fine. function ValidateLeave() { var LeaveCount=document.getEl("txtTotalLeaves"); var Days=document.getEl("txtDays"); if( LeaveCount.value*1==0) { alert("Sorry You Have No Leaves Available"); return false; } else if (LeaveCount.value*1 < Days.value*1) { alert(LeaveCount.value); alert(Days.value); alert("Sorry!Check your available leaves!"); return false; } else { return true; } } |
Posted by Mr.Late at 3:37 AM 2 comments