|
FUNCTION pudv_get_products (input : SET [0:?] OF product_definition_formation) : SET [0:?] OF product_armx; LOCAL p : SET OF product_armx := [ ] ; END_LOCAL ; REPEAT i := 1 TO HIINDEX ( input ) BY 1 ; p := p + input [ i ] \ product_definition_formation . of_product ; END_REPEAT ; RETURN ( p ) ; END_FUNCTION; -- pudv_get_products |
|
public class FPudv_get_products public static Value run(SdaiContext _context, Value input) |