| 1234567891011121314151617181920212223242526272829303132333435 |
- /*------------------------------------------------------------------------
- File : start_ybm_programm.p
- Purpose :
- Syntax :
- Description :
- Author(s) : walter.riechsteiner
- Created : Sun May 08 18:59:17 CEST 2022
- Notes :
- ----------------------------------------------------------------------*/
- /* *************************** Definitions ************************** */
- /* ******************** Preprocessor Definitions ******************** */
- /* *************************** Main Block *************************** */
- { propertiesYBM.i }
- { ttArtst.i }
- DEFINE TEMP-TABLE tWarenGrp LIKE WarenGrp.
- /* RUN ybmputcategories.p. */
- /* RUN ybmgetcategories.p ( OUTPUT TABLE tWarenGrp ). */
- /* FOR EACH twarengrp: */
- /* DISPLAY twarengrp EXCEPT bezl. */
- /* END. */
- /* RUN ybmgetProductList.p (OUTPUT TABLE ttArtst). */
- RUN ybmputProducts.p.
|