In my run() I have this little codes:
public void run()
{
SysDataExpImpBase import;
SysExpImpGroup sysExpImpGroup;
Args args;
if (! this.validate())
throw error(""); try
{
ttsbegin; while (queryRun.next())
{
sysExpImpGroup = queryRun.get(tableNum(SysExpImpGroup));info(strfmt("Importing Customer profiles from definition group of : %1", sysExpImpGroup.GroupId));
args = new Args();
args.record(sysExpImpGroup); import = SysDataExpImpBase::construct(args);
import.run();
}ttscommit;
}
catch (Exception::Deadlock)
{
retry;
}}
and my queryRun return results from the query in which only one row of record associated to the 'EXCEL' definition group (groupId = EXCEL) is returned.
Can anyone tell me why the system does not import correctly ??
Yahoo! Groups Sponsor ADVERTISEMENT
click here
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

