Multiple with ... do use

Firstly, tis not a real problem but question of some interest in my opinion. If we use a pair of variables of the type (e.g.) table “Customer” (Cust1 & Cust2) and write follows <<<WITH Cust1 DO WITH Cust2 DO “Name”:=“Name”;>> what will be the result of this code? I didn’t find any descriptions for this situation in the C/SIDE reference guide. I’d be gratefull for any comments according question. BR, Anthony

AFAIK, the “inner” WITH overrides the outer one, so the result of the assignment will effectively be Cust2.Name := Cust2.Name, i.e. it will be relatively useless [;)]

Thank you