Posts

Showing posts from April, 2015

IBM BPM Interview Questions

IBM BPM Interview Questions: 1. What is difference between Coach and Coach Views? 2. What is difference between EPV and Environment variable? Which is good performance wise? 3. What is shared object? 4. How many types of gateways? Explain them? 5. How many services available? (Integration service/ General service) 6. In production one instance has been failed due to some business object has bad data or null values, How will you inject data on runtime in production? Ans: IBPM provide some rest api which operation name is setData through that we can inject values. 7. How will you handle exception in BPM? 8. What is durable and consume in UCA? 9. What is synchronus and unsynchronus? 10.Difference between Sub Process and Linked Process? 11. I have one screen which has 3 radio button and based on click button, I want to display different different pallet/widget or coachview. how will you do that? 12. I have one BPD, which has multiple tasks. How will you identify user in run-...

XML Parsing in IBM BPM

Suppose I have following XML and I want to parse this xml and store these variable to in list: <record> <column name="ID">1</column> <column name="MANIFACTURERNAME">Dell</column> <column name="MODELNAME">Latitute</column> <column name="RAMSIZE">8 GB</column> <column name="HDDSIZE">1 TB</column> <column name="SCREENSIZE">15 Inch</column> <column name="PROCESSORNAME">Intel i7</column> <column name="PRICE">850</column> </record> <record> <column name="ID">3</column> <column name="MANIFACTURERNAME">Latitude</column> <column name="MODELNAME">ideaBook</column> <column name="RAMSIZE">8 GB</column> <column name="HDDSIZE">300 GB</column> ...

Type conversion in IBM BPM

Convert Any() type to XmlElementType in IBM BPM : Here tw.local.results variable is ANY Type and tw.local.xmlElementResult is XMLElement Type var x = tw.system.serializer.toXml(tw.local.results); tw.local.xmlElementResult = tw.system.serializer.fromXml(x); Convert String type to Integer in IBM BPM : Here tw.local.results variable is StringType and tw.local.age is IntegerType tw.local.age = Number(tw.local.results);