Module SALESP.VW
1//********************************************************************************
2// SALESP
3//
4// Author :
5// Originally created : 01/07/99
6// Last Update :
7//
8//********************************************************************************
9
10Use ALLENTRY
11Use CONFIRM
12Set Class_Colors to U_TEXT_WINDOW 0 0
13
14// Data Set Class Inclusions
15
16Use SALESP.DD
17
18Activate_View Activate_SALESP For SALESP_View
19
20Object SALESP_View is an Entry_View_Client No_Image ;
21 Action_Bar (Main_Menu(self))
22
23 // Define Default Confirmation Messages
24 Set Verify_Save_MSG to GET_Save_Confirmation
25 Set Verify_Delete_MSG to GET_Delete_Confirmation
26 Set Verify_Data_Loss_MSG to GET_Data_loss_Confirmation
27 Set Verify_Exit_MSG to GET_Exit_loss_Confirmation
28
29 Object SALESP_DD is a SALESP_DataDictionary
30 End_Object // SALESP_DD
31
32 Set Server to (SalesP_DD(self))
33 Set Main_DD to (SalesP_DD(self))
34
35/SalesP_EF_Image
36┌─ Sales Person Entry: ──────────────────────────┐
37│ │
38│ Sales Person ID: ____ │
39│ Sales Person Name: _________________________ │
40│ │
41└────────────────────────────────────────────────┘
42/*
43
44 Object SalesP_EF is an Entry_Form SalesP_EF_Image
45
46 Set Location to 5 10 Relative
47 Set Allow_Move_State to True
48
49 Item_List
50 Entry_Item SALESP.ID
51 Entry_Item SALESP.NAME
52 End_Item_List
53
54 End_Object // SalesP_EF
55
56End_Object // SALESP_View
57