&ANALYZE-SUSPEND _VERSION-NUMBER AB_v10r12 GUI ADM2 &ANALYZE-RESUME &Scoped-define WINDOW-NAME CURRENT-WINDOW &Scoped-define FRAME-NAME gDDWerteingabe {adecomm/appserv.i} &ANALYZE-SUSPEND _UIB-CODE-BLOCK _CUSTOM _DEFINITIONS gDDWerteingabe /*------------------------------------------------------------------------ File: Description: from cntnrdlg.w - ADM2 SmartDialog Template Input Parameters: Output Parameters: Author: Created: ------------------------------------------------------------------------*/ /* This .W file was created with the Progress AppBuilder. */ /*----------------------------------------------------------------------*/ /* Create an unnamed pool to store all the widgets created by this procedure. This is a good default which assures that this procedure's triggers and internal procedures will execute in this procedure's storage, and that proper cleanup will occur on deletion of the procedure. */ CREATE WIDGET-POOL. /* *************************** Definitions ************************** */ /* Parameters Definitions --- */ DEFINE INPUT-OUTPUT PARAMETER iocEANKGeb AS CHARACTER. DEFINE INPUT-OUTPUT PARAMETER iocEANVGeb AS CHARACTER. DEFINE INPUT-OUTPUT PARAMETER iocS_Artnr AS CHARACTER. DEFINE OUTPUT PARAMETER oplOK AS LOGICAL. /* Local Variable Definitions --- */ { incl/dlgdefinition.i } { src/adm2/widgetprto.i } /* _UIB-CODE-BLOCK-END */ &ANALYZE-RESUME &ANALYZE-SUSPEND _UIB-PREPROCESSOR-BLOCK /* ******************** Preprocessor Definitions ******************** */ &Scoped-define PROCEDURE-TYPE SmartDialog &Scoped-define DB-AWARE no &Scoped-define ADM-CONTAINER DIALOG-BOX &Scoped-define ADM-SUPPORTED-LINKS Data-Target,Data-Source,Page-Target,Update-Source,Update-Target /* Name of designated FRAME-NAME and/or first browse and/or first query */ &Scoped-define FRAME-NAME gDDWerteingabe /* Standard List Definitions */ &Scoped-Define ENABLED-OBJECTS RECT-2 F_EANKGeb F_EANVGeb F_S_Artnr Btn_OK ~ Btn_Cancel &Scoped-Define DISPLAYED-OBJECTS F_EANKGeb F_EANVGeb F_S_Artnr /* Custom List Definitions */ /* List-1,List-2,List-3,List-4,List-5,List-6 */ &Scoped-define List-6 F_EANKGeb F_EANVGeb F_S_Artnr /* _UIB-PREPROCESSOR-BLOCK-END */ &ANALYZE-RESUME /* *********************** Control Definitions ********************** */ /* Define a dialog box */ /* Definitions of the field level widgets */ DEFINE BUTTON Btn_Cancel AUTO-END-KEY LABEL "abbrechen" SIZE 15 BY 1. DEFINE BUTTON Btn_OK AUTO-GO LABEL "OK" SIZE 15 BY 1. DEFINE VARIABLE F_EANKGeb AS CHARACTER FORMAT "x(13)":U LABEL "EAN KGebinde" VIEW-AS FILL-IN NATIVE SIZE 20 BY 1 BGCOLOR 15 NO-UNDO. DEFINE VARIABLE F_EANVGeb AS CHARACTER FORMAT "x(13)":U LABEL "EAN VGebinde" VIEW-AS FILL-IN NATIVE SIZE 20 BY 1 BGCOLOR 15 NO-UNDO. DEFINE VARIABLE F_S_Artnr AS CHARACTER FORMAT "x(13)":U LABEL "Seine Artikelnummer" VIEW-AS FILL-IN NATIVE SIZE 20 BY 1 BGCOLOR 15 NO-UNDO. DEFINE RECTANGLE RECT-2 EDGE-PIXELS 2 GRAPHIC-EDGE NO-FILL SIZE 60 BY 4.29. /* ************************ Frame Definitions *********************** */ DEFINE FRAME gDDWerteingabe F_EANKGeb AT ROW 2 COL 30 COLON-ALIGNED WIDGET-ID 4 F_EANVGeb AT ROW 3 COL 30 COLON-ALIGNED WIDGET-ID 8 F_S_Artnr AT ROW 4 COL 30 COLON-ALIGNED WIDGET-ID 6 Btn_OK AT ROW 6.52 COL 15.4 Btn_Cancel AT ROW 6.52 COL 36.6 RECT-2 AT ROW 1.48 COL 3 WIDGET-ID 2 SPACE(1.99) SKIP(2.41) WITH VIEW-AS DIALOG-BOX KEEP-TAB-ORDER SIDE-LABELS NO-UNDERLINE THREE-D SCROLLABLE TITLE "Eingabe EAN / Seine Artnr" CANCEL-BUTTON Btn_Cancel WIDGET-ID 100. /* *********************** Procedure Settings ************************ */ &ANALYZE-SUSPEND _PROCEDURE-SETTINGS /* Settings for THIS-PROCEDURE Type: SmartDialog Allow: Basic,Browse,DB-Fields,Query,Smart Container Links: Data-Target,Data-Source,Page-Target,Update-Source,Update-Target Design Page: 1 Other Settings: COMPILE APPSERVER */ &ANALYZE-RESUME _END-PROCEDURE-SETTINGS &ANALYZE-SUSPEND _UIB-CODE-BLOCK _CUSTOM _INCLUDED-LIB gDDWerteingabe /* ************************* Included-Libraries *********************** */ {src/adm2/containr.i} /* _UIB-CODE-BLOCK-END */ &ANALYZE-RESUME /* *********** Runtime Attributes and AppBuilder Settings *********** */ &ANALYZE-SUSPEND _RUN-TIME-ATTRIBUTES /* SETTINGS FOR DIALOG-BOX gDDWerteingabe FRAME-NAME */ ASSIGN FRAME gDDWerteingabe:SCROLLABLE = FALSE FRAME gDDWerteingabe:HIDDEN = TRUE. /* SETTINGS FOR FILL-IN F_EANKGeb IN FRAME gDDWerteingabe 6 */ /* SETTINGS FOR FILL-IN F_EANVGeb IN FRAME gDDWerteingabe 6 */ /* SETTINGS FOR FILL-IN F_S_Artnr IN FRAME gDDWerteingabe 6 */ /* _RUN-TIME-ATTRIBUTES-END */ &ANALYZE-RESUME /* Setting information for Queries and Browse Widgets fields */ &ANALYZE-SUSPEND _QUERY-BLOCK DIALOG-BOX gDDWerteingabe /* Query rebuild information for DIALOG-BOX gDDWerteingabe _Options = "SHARE-LOCK" _Query is NOT OPENED */ /* DIALOG-BOX gDDWerteingabe */ &ANALYZE-RESUME /* ************************ Control Triggers ************************ */ &Scoped-define SELF-NAME gDDWerteingabe &ANALYZE-SUSPEND _UIB-CODE-BLOCK _CONTROL gDDWerteingabe gDDWerteingabe ON END-ERROR OF FRAME gDDWerteingabe /* Eingabe EAN / Seine Artnr */ DO: RUN ENDE. RETURN NO-APPLY. END. /* _UIB-CODE-BLOCK-END */ &ANALYZE-RESUME &ANALYZE-SUSPEND _UIB-CODE-BLOCK _CONTROL gDDWerteingabe gDDWerteingabe ON WINDOW-CLOSE OF FRAME gDDWerteingabe /* Eingabe EAN / Seine Artnr */ DO: RUN ENDE. RETURN NO-APPLY. END. /* _UIB-CODE-BLOCK-END */ &ANALYZE-RESUME &Scoped-define SELF-NAME Btn_Cancel &ANALYZE-SUSPEND _UIB-CODE-BLOCK _CONTROL Btn_Cancel gDDWerteingabe ON CHOOSE OF Btn_Cancel IN FRAME gDDWerteingabe /* abbrechen */ DO: RUN ENDE. RETURN NO-APPLY. END. /* _UIB-CODE-BLOCK-END */ &ANALYZE-RESUME &Scoped-define SELF-NAME Btn_OK &ANALYZE-SUSPEND _UIB-CODE-BLOCK _CONTROL Btn_OK gDDWerteingabe ON CHOOSE OF Btn_OK IN FRAME gDDWerteingabe /* OK */ DO: btnOK = TRUE. DO WITH FRAME {&FRAME-NAME}: ASSIGN {&List-6}. iocEANKGeb = F_EANKGeb. iocEANVGeb = F_EANVGeb. iocS_Artnr = F_S_Artnr. oplOK = TRUE. END. RUN ENDE. RETURN NO-APPLY. END. /* _UIB-CODE-BLOCK-END */ &ANALYZE-RESUME &UNDEFINE SELF-NAME &ANALYZE-SUSPEND _UIB-CODE-BLOCK _CUSTOM _MAIN-BLOCK gDDWerteingabe /* *************************** Main Block *************************** */ { incl/dlgmainblock.i } {src/adm2/dialogmn.i} /* _UIB-CODE-BLOCK-END */ &ANALYZE-RESUME /* ********************** Internal Procedures *********************** */ &ANALYZE-SUSPEND _UIB-CODE-BLOCK _PROCEDURE adm-create-objects gDDWerteingabe _ADM-CREATE-OBJECTS PROCEDURE adm-create-objects : /*------------------------------------------------------------------------------ Purpose: Create handles for all SmartObjects used in this procedure. After SmartObjects are initialized, then SmartLinks are added. Parameters: ------------------------------------------------------------------------------*/ END PROCEDURE. /* _UIB-CODE-BLOCK-END */ &ANALYZE-RESUME &ANALYZE-SUSPEND _UIB-CODE-BLOCK _PROCEDURE disable_UI gDDWerteingabe _DEFAULT-DISABLE PROCEDURE disable_UI : /*------------------------------------------------------------------------------ Purpose: DISABLE the User Interface Parameters: Notes: Here we clean-up the user-interface by deleting dynamic widgets we have created and/or hide frames. This procedure is usually called when we are ready to "clean-up" after running. ------------------------------------------------------------------------------*/ /* Hide all frames. */ HIDE FRAME gDDWerteingabe. END PROCEDURE. /* _UIB-CODE-BLOCK-END */ &ANALYZE-RESUME &ANALYZE-SUSPEND _UIB-CODE-BLOCK _PROCEDURE enableObject gDDWerteingabe PROCEDURE enableObject : /*------------------------------------------------------------------------------ Purpose: Super Override Parameters: Notes: ------------------------------------------------------------------------------*/ F_EANKGeb = iocEANKGeb. F_EANVGeb = iocEANVGeb. F_S_Artnr = iocS_Artnr. oplOK = FALSE. { incl/dlgenableobject.i } END PROCEDURE. /* _UIB-CODE-BLOCK-END */ &ANALYZE-RESUME &ANALYZE-SUSPEND _UIB-CODE-BLOCK _PROCEDURE enable_UI gDDWerteingabe _DEFAULT-ENABLE PROCEDURE enable_UI : /*------------------------------------------------------------------------------ Purpose: ENABLE the User Interface Parameters: Notes: Here we display/view/enable the widgets in the user-interface. In addition, OPEN all queries associated with each FRAME and BROWSE. These statements here are based on the "Other Settings" section of the widget Property Sheets. ------------------------------------------------------------------------------*/ DISPLAY F_EANKGeb F_EANVGeb F_S_Artnr WITH FRAME gDDWerteingabe. ENABLE RECT-2 F_EANKGeb F_EANVGeb F_S_Artnr Btn_OK Btn_Cancel WITH FRAME gDDWerteingabe. VIEW FRAME gDDWerteingabe. {&OPEN-BROWSERS-IN-QUERY-gDDWerteingabe} END PROCEDURE. /* _UIB-CODE-BLOCK-END */ &ANALYZE-RESUME &ANALYZE-SUSPEND _UIB-CODE-BLOCK _PROCEDURE ENDE gDDWerteingabe PROCEDURE ENDE : /*------------------------------------------------------------------------------ Purpose: Parameters: Notes: ------------------------------------------------------------------------------*/ IF btnOK THEN DO: END. { incl/dlgende.i } END PROCEDURE. /* _UIB-CODE-BLOCK-END */ &ANALYZE-RESUME