How to set the args.dataset()

I want to set args in order to set the value of the dataset. I know it’s the tableid of the caller but I want to set it on myself ? Any idea ? Regards. Thierry

Hi, You can try this in the caller form: Args args = new Args(); FormRun formRun; ; args.caller() args.record(); formRun = ClassFactory.FormRunClass(args); formRun.init(); formRun.run(); Then in the called screen init: Common common; // should replace this with the table used as datasource in your caller if (element.args().dataset() == ) { common = element.args.record(); // use common as needed } Hope this helps. Cip