Hello
I have to export some data to a csv file. Therefore I need to collect data across several BO's. All these 'collected' attributes reside as shortcuts in my BO. Now I execute
FIND Bestelldetail WHERE Bestelldetail.Bestellung.Tour=ThisTour
CREATE KHKExport FOR EACH Bestelldetail WITH KHKExport.Datum=Bestelldetail._Bestelldatum,KHKExport.KdNr=Bestelldetail._KundenNr,KHKExport.LKW=Bestelldetail._LKW,KHKExport.Menge=Bestelldetail.Menge,KHKExport.ProduktNr=Bestelldetail._ProduktNr, KHKExport.BestellID=Bestelldetail._BestellID
EXPORT KHKExport TO SystemSettings.ExportVerzeichnisKHK + ThisTour.ID+'.txt'
When calling the CREATE Function that writes the data into a temporary BO the Log states that
-Create action with multiple parameters not supported yet. Will process the first parameter only
and the result is that my collected attributes (those starting with an underscore) are the same for all records. The others are correct.
Could you please give me a hint where this comes from or how to avoid this ?
Thanks a lot !
Hubertus