Indicates its a metastorm select Query |
Thursday, March 4, 2010
%SelectSQL
Posted by
Mr.Late
at
3:36 AM
0
comments
How to fetch Errors in Metastorm
Go to Metastorm BPM from start Menu >> Service Manager >> Connect Metastorm Database >> Diagonostics >> Designer Log >> Procedure Maps |
Posted by
Mr.Late
at
3:36 AM
0
comments
Tips to remember
While designing maps, don’t give roles to Actions instead keep (tick) ‘to do list’ |
Posted by
Mr.Late
at
3:35 AM
0
comments
SQL - Metastorm
What ever tables come with prefix ‘e’ in table name inside Metastorm database are system tables. Don’t play with that tables, it may corrupt Metastorm suite. |
Posted by
Mr.Late
at
3:35 AM
0
comments
Basic Things in Metastorm
There are three basic things :-Stage, Action and Role. |
Posted by
Mr.Late
at
3:34 AM
0
comments
How To Install LiveCycle 8.2.2 with MSSQL 2005
This article is designed to aid in the manual installation of LiveCycle 8.2.2 with MSSQL 2005. Attached is a zip file with all the files that I reference that should be easily dropped. This article was intended to create development environments. LiveCycle-JBoss-MSSQL -Install.zip
courtsey : Brad White |
Posted by
Mr.Late
at
3:28 AM
0
comments
Generate XSD from XML
There are several tools out there to create (or to infer) an XSD schema from XML document. I liked trang command line tool the most. Found it first when reading about Spring web services in Spring in Action book (very good book btw). Here are four simple steps how to create XSD from XML* using trang: Step 1. Get trang Download trang.zip from here (at the moment of writing “trang-20030619.zip”) Step 2. Extract it Use “unzip trang-version.zip”, or just winzip/winrar/7z etc.. if on windows Step 3. Make an alias This step is optional, but makes it extremely easy to run the tool with a single command. Make an alias to the “trang.jar” by (in my case Ubuntu/Linux) editing “~/.bashrc” and adding the following: # execute trang.jar (create XSD from XMLs) above “~/soft/utils/trang” is the directory where “trang” was unzipped to. Step 4. Create XSD from XML Let’s look at the XML file we need an XSD for: $ ls -l <?xml version="1.0" encoding="UTF-8"?> now run the tool against it: $ xml2xsd holiday-request.xml hr.xsd <?xml version=”1.0″ encoding=”UTF-8″?> done! $ * – NOTE: “trang” can create an XSD from multiple XML documents, not just one. List of other tools to use as an alternative to trang:
XSD away, Good Luck! Courtsey: dotkam |
Posted by
Mr.Late
at
3:26 AM
0
comments