|
FUNCTION pudv_get_versions (input : SET [0:?] OF product_view_definition) : SET [0:?] OF product_definition_formation; LOCAL pv : SET OF product_definition_formation := [ ] ; END_LOCAL ; REPEAT i := 1 TO HIINDEX ( input ) BY 1 ; pv := pv + input [ i ] \ product_view_definition . defined_version ; END_REPEAT ; RETURN ( pv ) ; END_FUNCTION; -- pudv_get_versions |
|
public class FPudv_get_versions public static Value run(SdaiContext _context, Value input) |