Hello everyone,
Following an example given on the Cloud Applications Studio help pages, I've managed to reference an extension field on a screen in a client's ByDesign system and print the value on a form, by creating the .ref file and typing:
this.zTaskID = this.ID.RemoveLeadingZeroes().content;
This works fine because I'm pulling the task ID using an ABSL script in the Production Task .xbo I've created. However, the screen also contains fields from other business objects --- namely, Production Order and Material --- but I can't use the above method because it won't let me write:
this.zProductionOrderID = this.ToProductionOrder.ID;
or this.zProductionOrderID = ProductionOrder.ID;
even if I import AP.LogisticsExecution.Global. So my question is: how do I reference fields from other business objects on my form?
Many thanks, Lewis