Hi All,I am using TS6.7.1 Sp1 workflow modeller 1.0.0.1.I have created a custom instantion screen using clt.I had tried using callserver in it but it gave:- "Error :'fw_url_bean' is undefined."When i read in forums it said callserver is no longer supported on instantion screen.I had used callserver for followiing requirement:There is a date field (e.g date: 06/04/2008).now there are two more date fields but here the value am populating depends on the date selected by user(former date field). e.g date will be populated as 07/04/2008 and 08/04/2008 i.e. difference of "1day" and "2day".(It can be manually edited too.)Now here scenario is i am reading this differnce from an "xml" file since client want this as configurable. Initially i had used callserver and poulated it easily.But now since callserver is not suppported what should i use.If i use preprocessor than i will have to use lot of workflow variables which is not good. So can ne one help me on this.
Ya it is like field affecting values of field "B" and "C" but in my case, the logic on base of which field should be affected must be retrieved from an xml file. Like i explained in my example the date differences should come from a "flat file" and should not be hard coded in FormApi javascript.i.e in java script i dont want field B.val = field A.val + ' 1' and field c.val = field A.val + ' 2' here '1' and '2' should come from an xml file. So that client can modify this according to their need. So for achieving this i had used a callserver which calls an ipl reads an xml file retireves the value and sets in those fields.Do you have anyother suggestion??..