Listing 15.1 Object Declaration in Implementation Program
This document declares a data object structure with private members that can only be inserted into the private section. The structure includes a key composed of an ID field, a total price field, an optional list of cost centers, an owner field, and a link to a ZWIDGETS structure.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
19 views
Listing 15.1 Object Declaration in Implementation Program
This document declares a data object structure with private members that can only be inserted into the private section. The structure includes a key composed of an ID field, a total price field, an optional list of cost centers, an owner field, and a link to a ZWIDGETS structure.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
BEGIN_DATA OBJECT. " Do not change.. DATA is generated.
* only private members may be inserted into structure private
DATA: begin of private, " to declare private attributes remove comments and " insert private attributes here ... accountlist type standard table of zwidget_account, end of private, BEGIN OF KEY, ID LIKE ZWIDGETS-ID, END OF KEY, TOTAL LIKE ZWIDGETS-PRICE, COSTCENTERLIST LIKE ZWIDGET_ACCOUNT-COST_CENTER OCCURS 0, OWNER TYPE SWC_OBJECT, _ZWIDGETS LIKE ZWIDGETS. END_DATA OBJECT. " Do not change.. DATA is generated
Listing 15.1 Object Declaration in Implementation Program