Where is Sporting Goods Application sample code?

I'm using Oracle Forms 6i and I can't find the sample application in OTN. Is there anyone who can send me the code or link to it?
Best regards

OK,
here it is (it's pretty long, you mind):
DROP TABLE CUSTOMERS;
DROP SEQUENCE CUSTOMERS_SEQ;
DROP TABLE EMPLOYEES;
DROP SEQUENCE EMPLOYEES_SEQ;
DROP TABLE DEPARTMENTS;
DROP SEQUENCE DEPARTMENTS_SEQ;
DROP TABLE INVENTORIES;
DROP TABLE PRODUCT_INFORMATION;
DROP TABLE PRODUCT_DESCRIPTIONS;
DROP TABLE ORDER_ITEMS;
DROP TABLE ORDERS;
CREATE TYPE CUST_ADDRESS_TYP AS OBJECT
(STREET_ADDRESS VARCHAR2(40),
POSTAL_CODE VARCHAR2(10),
CITY VARCHAR2(30),
STATE_PROVINCE VARCHAR2(10),
COUNTRY_ID CHAR(2));
CREATE TABLE CUSTOMERS
(CUSTOMER_ID NUMBER(6) NOT NULL,
CUST_FIRST_NAME VARCHAR2(20) CONSTRAINT
CUST_FNAME_NN NOT NULL,
CUST_LAST_NAME VARCHAR2(20) CONSTRAINT
CUST_LNAME_NN NOT NULL,
CUST_ADDRESS CUST_ADDRESS_TYP,
PHONE_NUMBERS VARCHAR2(30),
NLS_LANGUAGE VARCHAR2(3),
NLS_TERRITORY VARCHAR(30),
CREDIT_LIMIT NUMBER(9,2),
CUST_EMAIL VARCHAR2(30),
ACCOUNT_MGR_ID NUMBER(6),
CONSTRAINT CUSTOMER_CREDIT_LIMIT_MAX
CHECK (CREDIT_LIMIT <= 5000),
CONSTRAINT CUSTOMER_ID_MIN
CHECK (CUSTOMER_ID > 0));
CREATE UNIQUE INDEX CUSTOMERS_PK
ON CUSTOMERS (CUSTOMER_ID);
ALTER TABLE CUSTOMERS
ADD (CONSTRAINT CUSTOMERS_PK
PRIMARY KEY (CUSTOMER_ID));
ALTER TABLE CUSTOMERS
ADD (CONSTRAINT CUSTOMERS_ACCOUNT_MANAGER_FK
FOREIGN KEY (ACCOUNT_MGR_ID)
REFERENCES EMPLOYEES(EMPLOYEE_ID)
ON DELETE SET NULL);
INSERT INTO customers VALUES (
101,'Constantin','Welles',
CUST_ADDRESS_TYP('514 SUPERIOR ST','46901','KOKOMO','IN','US'),
'+1 317 123 4104','us','AMERICA',100,'[email protected]',null);
INSERT INTO customers VALUES (
102,'Mary','Doe',
CUST_ADDRESS_TYP('514 SUPERIOR ST','46901','KOKOMO','IN','US'),
'+1 317 123 4104','us','AMERICA',100,'[email protected]',null);
INSERT INTO customers VALUES (
103,'Marty','Dill',
CUST_ADDRESS_TYP('514 SUPERIOR ST','46901','KOKOMO','IN','US'),
'+1 317 123 4104','us','AMERICA',100,'[email protected]',null);
INSERT INTO customers VALUES (
104,'Bill','Smith',
CUST_ADDRESS_TYP('514 SUPERIOR ST','46901','KOKOMO','IN','US'),
'+1 317 123 4104','us','AMERICA',100,'[email protected]',null);
COMMIT;
CREATE SEQUENCE CUSTOMERS_SEQ
START WITH 982
INCREMENT BY 1
NOCACHE
NOCYCLE;
CREATE TABLE DEPARTMENTS
(DEPARTMENT_ID NUMBER(4),
DEPARTMENT_NAME VARCHAR(30)
CONSTRAINT DEPT_NAME_NN NOT NULL,
MANAGER_ID NUMBER(6),
LOCATION_ID NUMBER(4));
CREATE UNIQUE INDEX DEPT_ID_PK
ON DEPARTMENTS (DEPARTMENT_ID);
ALTER TABLE DEPARTMENTS
ADD (CONSTRAINT DEPT_ID_PK
PRIMARY KEY (DEPARTMENT_ID));
CREATE SEQUENCE DEPARTMENTS_SEQ
START WITH 280
INCREMENT BY 1
MAXVALUE 9990
NOCACHE
NOCYCLE;
CREATE TABLE EMPLOYEES
(EMPLOYEE_ID NUMBER(6),
LAST_NAME VARCHAR2(25)
CONSTRAINT EMP_LAST_NAME_NN NOT NULL,
FIRST_NAME VARCHAR2(20),
EMAIL VARCHAR2(25)
CONSTRAINT EMP_EMAIL_NN NOT NULL,
PHONE_NUMBER VARCHAR2(20),
HITE_DATE DATE
CONSTRAINT EMP_HIRE_DATE_NN NOT NULL,
MANAGER_ID NUMBER(6),
DEPARTMENT_ID NUMBER(4),
SALARY NUMBER(8,2),
COMMISSION_PCT NUMBER(2,2),
CONSTRAINT EMP_SALARY_MIN
CHECK (SALARY > 0),
CONSTRAINT EMP_EMAIL_UK
UNIQUE (EMAIL));
CREATE UNIQUE INDEX EMP_EMP_ID_PK
ON EMPLOYEES (EMPLOYEE_ID);
ALTER TABLE EMPLOYEES
ADD (CONSTRAINT EMP_EMP_ID_PK
PRIMARY KEY (EMPLOYEE_ID),
CONSTRAINT EMP_DEPT_FK
FOREIGN KEY (DEPARTMENT_ID)
REFERENCES DEPARTMENTS,
CONSTRAINT EMP_JOB_FK
FOREIGN KEY (JOB_ID)
REFERENCES JOBS (JOB_ID),
CONSTRAINT EMP_MANAGER_FK
FOREIGN KEY (MANAGER_ID)
REFERENCES EMPLOYEES);
ALTER TABLE DEPARTMENTS
ADD (CONSTRAINT DEPT_MGR_FK
FOREIGN KEY (MANAGER_ID)
REFERENCES EMPLOYEES (EMPLOYEE_ID));
CREATE SEQUENCE EMPLOYEES_SEQ
START WITH 200
INCREMENT BY 1
NOCACHE
NOCYCLE;
CREATE TABLE INVENTORIES
(PRODUCT_ID NUMBER(6),
WAREHOUSE_ID NUMBER(3)
CONSTRAINT INVENTORY_WAREHOUSE_ID_NN NOT NULL,
QUANTITY_ON_HAND NUMBER(8)
CONSTRAINT INVENTORY_QOH_NN NOT NULL,
CONSTRAINT INVENTORY_PK
PRIMARY KEY (PRODUCT_ID,WAREHOUSE_ID));
ALTER_TABLE INVENTORIES
ADD (CONSTRAINT INVENTORIES_WAREHOUSES_PK
FOREIGN KEY (WAREHOUSE_ID)
REFERENCES WAREHOUSES (WAREHOUSE_ID)
ENABLE NOVALIDATE);
ALTER TABLE INVENTORIES
ADD (CONSTRAINT INVENTORIES_PRODUCT_ID_FK
FOREIGN KEY (PRODUCT_ID)
REFERENCES PRODUCT_INFORMATION (PRODUCT_ID));
CREATE TABLE PRODUCT_INFORMATION
(PRODUCT_ID NUMBER(6),
PRODUCT_NAME VARCHAR2(50),
PRODUCT_DESCRIPTION VARCHAR2(2000),
CATEGORY_ID NIMBER(2),
WEIGHT_CLASS NUMBER(1),
WARRANTY_PERIOD NUMBER(5),
SUPPLIER_ID NUMBER(6),
PRODUCT_STATUS VARCHAR2(20),
LIST_PRICE NUMBER(8,2),
MIN_PRICE NUMBER(8,2),
CATALOG_URL VARCHAR2(20),
CONSTRAINT PRODUCT_STATUS_LOV
CHECK PRODUCT_STATUS IN ('ORDERABLE',
'PLANNED','DEVELOPMENT','OBSOLETE')));
ALTER TABLE PRODUCT_INFORMATION
ADD ( CONSTRAINT PRODUCT_INFORMATION_PK PRIMARY KEY (PRODUCT_ID));
CREATE TABLE PRODUCT_DESCRIPTIONS
(PRODUCT_ID NUMBER(6),
LANGUAGE_ID VARCHAR2(3),
TRANSLATED_NAME NVARCHAR2(50)
CONSTRAINT TRANSLATED_NAME_NN NOT NULL,
TRANSLATED_DESCRIPTION NVARCHAR2(2000)
CONSTRATINT TRANSLATED_DESC_NN NOT NULL);
CREATE UNIQUE INDEX PRD_DESC_PK
ON PRODUCT_DESCRIPTIONS(PRODUCT_ID,LANGUAGE_ID);
ALTER TABLE PRODUCT_DESCRIPTIONS
ADD (CONSTRAINT PRODUCT_DESCRIPTIONS_PK
PRIMARY KEY (PRODUCT_ID, LANGUAGE_ID);
CREATE OR REPLACE VIEW PRODUCTS AS
SELECT I.PRODUCT_ID,
D.LANGUAGE_ID,
CASE WHEN D.LANGUAGE_ID IS NOT NULL
THEN D.TRANSLATED_NAME
ELSE TRANSLATE(I.PRODUCT_NAME USING NCHAR_CS)
END AS PRODUCT_NAME,
I.CATEGORY_ID,
CASE WHEN D.LANGUAGE_ID IS NOT NULL
THEN D.TRANSLATED_DESCRIPTION
ELSE TRANSLATE(I.PRODUCT_DESCRIPTION USING NCHAR_CS)
END AS PRODUCT_DESCRIPTION,
I.WEIGHT_CLASS,
I.WARRANTY_PERIOD,
I.SUPPLIER_ID,
I.PRODUCT_STATUS,
I.LIST_PRICE,
I.MIN_PRICE,
I.CATALOG_URL
FROM PRODUCT_INFORMATION I, PRODUCT_DESCRIPTIONS D
WHERE D.PRODUCT_ID(+) = I.PRODUCT_ID
AND D.LANGUAGE_ID(+) = SYS_CONTEXT('USERENV','LANG');
CREATE TABLE ORDER_ITEMS
(ORDER_ID NUMBER(12),
LINE_ITEM_ID NUMBER(3) NOT NULL,
PRODUCT_ID NUMBER(6) NOT NULL,
UNIT_PRICE NUMBER(8,2),
QUANTITY NUMBER(6));
CREATE UNIQUE INDEX ORDER_ITEMS_PK
ON ORDER_ITEMS (ORDER_ID, LINE_ITEM_ID);
CREATE UNIQUE INDEX ORDER_ITEMS_UK
ON ORDER_ITEMS (ORDER_ID, PRODUCT_ID);
ALTER TABLE ORDER_ITEMS
ADD (CONSTRAINT ORDER_ITEMS_PK
PRIMARY KEY (ORDER_ID,LINE_ITEM_ID));
ALTER TABLE ORDER_ITEMS
ADD (CONSTRAINT ORDER_ITEMS_ORDER_ID_FK
FOREIGN KEY (ORDER_ID)
REFERENCES ORDERS (ORDER_ID)
ON DELETE CASCADE ENABLE NOVALIDATE);
ALTER TABLE ORDER_ITEMS
ADD (CONSTRAINT ORDER_ITEMS_PRODUCT_ID_FK
FOREIGN KEY (PRODUCT_ID)
REFERENCES PRODUCT_INFORMATION(PRODUCT_ID));
CREATE OR REPLACE TRIGGER INSERT_OLD_LINE
BEFORE INSERT ON ORDER_ITEMS
FOR EACH ROW
DECLARE
NEW_LINE NUMBER;
BEGIN
SELECT (NVL(MAX(LINE_ITEM_ID),0)+1) INTO NEW_LINE
FROM ORDER_ITEMS
WHERE ORDER_ID = :NEW.ORDER_ID;
:NEW.LINE_ITEM_ID := NEW_LINE;
END;
CREATE TABLE ORDERS
(ORDER_ID NUMBER(12),
CUSTOMER_ID NUMBER(6)
CONSTRAINT ORDER_CUSTOMER_ID_NN NOT NULL,
ORDER_DATE DATE
CONSTRAINT ORDER_DATE_NN NOT NULL,
ORDER_MODE VARCHAR2(8),
SALES_REP_ID NUMBER(6),
ORDER_TOTAL NUMBER(8,2),
ORDER_STATUS NUMBER(2),
PROMOTION_ID NUMBER(6),
CONSTRAINT ORDER_MODE_LOV CHECK (ORDER_MODE IN('DIRECT','ONLINE')),
CONSTRAINT ORDER_TOTAL_MIN CHECK (ORDER_TOTAL >= 0));
CREATE UNIQUE INDEX ORDER_PK
ON ORDERS (ORDER_ID);
ALTER TABLE ORDERS
ADD (CONSTRAINT ORDER_PK
PRIMARY KEY (ORDER_ID));
ALTER TABLE ORDERS
ADD (CONSTRAINT ORDERS_SALES_REP_FK
FOREIGN KEY (SALES_REP_ID)
REFERENCES EMPLOYEES(EMPLOYEE_ID)
ON DELETE SET NULL);
ALTER TABLE ORDERS
ADD (CONSTRAINT ORDERS_CUSTOMER_ID_FK
FOREIGN KEY (CUSTOMER_ID)
REFERENCES CUSTOMERS(CUSTOMER_ID)
ON DELETE SET NULL);
INSERT INTO DEPARTMENTS VALUES (
100, 'Finance', 108,1700);
INSERT INTO DEPARTMENTS VALUES (
80, 'Sales', 145,2500);
INSERT INTO DEPARTMENTS VALUES (
20, 'Marketing', 201, 1800);
INSERT INTO DEPARTMENTS VALUES (
40, 'Human Resources', 203,2400);
INSERT INTO DEPARTMENTS VALUES (
90, 'Executive', 100,1700);
INSERT INTO DEPARTMENTS VALUES (
110, 'Accounting', 205,1700);
INSERT INTO DEPARTMENTS VALUES (
50, 'Shipping', 121,1500);
INSERT INTO DEPARTMENTS VALUES (
30, 'Purchasing', 114,1700);
INSERT INTO DEPARTMENTS VALUES (
60, 'IT', 103,1400);
INSERT INTO DEPARTMENTS VALUES (
170, 'Manufacturing', NULL,1700);
INSERT INTO DEPARTMENTS VALUES (
200, 'Operations', null,1700);
INSERT INTO DEPARTMENTS VALUES (
10, 'Administration', 200, 1700);
COMMIT;
INSERT INTO EMPLOYEES VALUES (
1, 'Velasquez', 'Carmen', '[email protected]',NULL,
to_date('03-MAR-90 8:30', 'dd-mon-yy hh24:mi'), NULL,
90, 2500, NULL);
INSERT INTO EMPLOYEES VALUES (
2, 'Ngao', 'LaDoris', '[email protected]',NULL,
'08-MAR-90', 1,
20, 1450, NULL);
INSERT INTO EMPLOYEES VALUES (
3, 'Nagayama', 'Midori', '[email protected]',NULL,
'17-JUN-91', 1,
31, 1400, NULL);
INSERT INTO EMPLOYEES VALUES (
4, 'Quick-To-See', 'Mark', '[email protected]',NULL,
'07-APR-90', 1,
10, 1450, NULL);
INSERT INTO EMPLOYEES VALUES (
5, 'Ropeburn', 'Audry', '[email protected]',NULL,
'04-MAR-90', 1,
50, 1550, NULL);
INSERT INTO EMPLOYEES VALUES (
6, 'Urguhart', 'Molly', '[email protected]',NULL,
'18-JAN-91', NULL, 2,
40, 1200, NULL);
INSERT INTO EMPLOYEES VALUES (
7, 'Menchu', 'Roberta', '[email protected]',NULL,
'14-MAY-90', 2,
40, 1250, NULL);
INSERT INTO EMPLOYEES VALUES (
8, 'Biri', 'Ben', '[email protected]',NULL,
'07-APR-90', 2,
43, 1100, NULL);
INSERT INTO EMPLOYEES VALUES (
9, 'Catchpole', 'Antoinette', '[email protected]',NULL,
'09-FEB-92', 2,
80, 1300, NULL);
INSERT INTO EMPLOYEES VALUES (
10, 'Havel', 'Marta', '[email protected]',NULL,
'27-FEB-91', 2,
80, 1307, NULL);
INSERT INTO EMPLOYEES VALUES (
11, 'Magee', 'Colin', '[email protected]',NULL,
'14-MAY-90', 3,
80, 1400, 10);
INSERT INTO EMPLOYEES VALUES (
12, 'Giljum', 'Henry', '[email protected]',NULL,
'18-JAN-92', 3,
50, 1490, 12.5);
INSERT INTO EMPLOYEES VALUES (
13, 'Sedeghi', 'Yasmin', '[email protected]',NULL,
'18-FEB-91', 3,
200, 1515, 10);
INSERT INTO EMPLOYEES VALUES (
14, 'Nguyen', 'Mai', '[email protected]',NULL,
'22-JAN-92', 3,
200, 1525, 15);
INSERT INTO EMPLOYEES VALUES (
15, 'Dumas', 'Andre', '[email protected]',NULL,
'09-OCT-91', 3,
200, 1450, 17.5);
INSERT INTO EMPLOYEES VALUES (
16, 'Maduro', 'Elena', '[email protected]',NULL,
'07-FEB-92', 6,
61, 1400, NULL);
INSERT INTO EMPLOYEES VALUES (
17, 'Smith', 'George', '[email protected]',NULL,
'08-MAR-90', 6,
50, 940, NULL);
INSERT INTO EMPLOYEES VALUES (
18, 'Nozaki', 'Akira', '[email protected]',NULL,
'09-FEB-91', 7,
1102, 1200, NULL);
INSERT INTO EMPLOYEES VALUES (
19, 'Patel', 'Vikram', '[email protected]',NULL,
'06-AUG-91', 7,
110, 795, NULL);
INSERT INTO EMPLOYEES VALUES (
20, 'Newman', 'Chad', '[email protected]',NULL,
'21-JUL-91', 8,
10, 750, NULL);
INSERT INTO EMPLOYEES VALUES (
21, 'Markarian', 'Alexander', '[email protected]',NULL,
'26-MAY-91', 8,
20, 850, NULL);
INSERT INTO EMPLOYEES VALUES (
22, 'Chang', 'Eddie', '[email protected]',NULL,
'30-NOV-90', 9,
40, 800, NULL);
INSERT INTO EMPLOYEES VALUES (
23, 'Patel', 'Radha', '[email protected]',NULL,
'17-OCT-90', 9,
20, 795, NULL);
INSERT INTO EMPLOYEES VALUES (
24, 'Dancs', 'Bela', '[email protected]',NULL,
'17-MAR-91', 10,
50, 860, NULL);
INSERT INTO EMPLOYEES VALUES (
25, 'Schwartz', 'Sylvie', '[email protected]',NULL,
'09-MAY-91', 10,
170, 1100, NULL);
COMMIT;
INSERT INTO INVENTORIES VALUES (
10011, 101, 650);
INSERT INTO INVENTORIES VALUES (
10012, 101, 600);
INSERT INTO INVENTORIES VALUES (
10013, 101, 400);
INSERT INTO INVENTORIES VALUES (
10021, 101,250);
INSERT INTO INVENTORIES VALUES (
10022, 101,115);
INSERT INTO INVENTORIES VALUES (
10023, 101,78);
INSERT INTO INVENTORIES VALUES (
20106, 101);
INSERT INTO INVENTORIES VALUES (
20108, 101,852);
INSERT INTO INVENTORIES VALUES (
20201, 101,1258);
INSERT INTO INVENTORIES VALUES (
20510, 101, 1389);
INSERT INTO INVENTORIES VALUES (
20512, 101, 850);
INSERT INTO INVENTORIES VALUES (
30321, 101, 2000);
INSERT INTO INVENTORIES VALUES (
30326, 101, 2100);
INSERT INTO INVENTORIES VALUES (
30421, 101, 1822);
INSERT INTO INVENTORIES VALUES (
30426, 101, 2250);
INSERT INTO INVENTORIES VALUES (
30433, 101, 650);
INSERT INTO INVENTORIES VALUES (
32779, 101, 2120);
INSERT INTO INVENTORIES VALUES (
32861, 101, 505);
INSERT INTO INVENTORIES VALUES (
40421, 101, 578);
INSERT INTO INVENTORIES VALUES (
40422, 101, 0);
INSERT INTO INVENTORIES VALUES (
41010, 101, 250);
INSERT INTO INVENTORIES VALUES (
41020, 101, 471);
INSERT INTO INVENTORIES VALUES (
41050, 101, 501);
INSERT INTO INVENTORIES VALUES (
41080, 101, 400);
INSERT INTO INVENTORIES VALUES (
41100, 101, 350);
INSERT INTO INVENTORIES VALUES (
50169, 101, 2530);
INSERT INTO INVENTORIES VALUES (
50273, 101, 233);
INSERT INTO INVENTORIES VALUES (
50417, 101, 518);
INSERT INTO INVENTORIES VALUES (
50418, 101, 244);
INSERT INTO INVENTORIES VALUES (
50419, 101, 230);
INSERT INTO INVENTORIES VALUES (
50530, 101, 669);
INSERT INTO INVENTORIES VALUES (
50532, 101, 0);
INSERT INTO INVENTORIES VALUES (
50536, 101, 173);
INSERT INTO INVENTORIES VALUES (
20106, 201, 220);
INSERT INTO INVENTORIES VALUES (
20108, 201, 166);
INSERT INTO INVENTORIES VALUES (
20201, 201, 320);
INSERT INTO INVENTORIES VALUES (
20510, 201, 175);
INSERT INTO INVENTORIES VALUES (
20512, 201, 162);
INSERT INTO INVENTORIES VALUES (
30321, 201, 96);
INSERT INTO INVENTORIES VALUES (
30326, 201, 147);
INSERT INTO INVENTORIES VALUES (
30421, 201, 102);
INSERT INTO INVENTORIES VALUES (
30426, 201, 200);
INSERT INTO INVENTORIES VALUES (
30433, 201, 130);
INSERT INTO INVENTORIES VALUES (
32779, 201, 180);
INSERT INTO INVENTORIES VALUES (
32861, 201, 132);
INSERT INTO INVENTORIES VALUES (
50169, 201, 225);
INSERT INTO INVENTORIES VALUES (
50273, 201, 75);
INSERT INTO INVENTORIES VALUES (
50417, 201, 82);
INSERT INTO INVENTORIES VALUES (
50418, 201, 98);
INSERT INTO INVENTORIES VALUES (
50419, 201, 77);
INSERT INTO INVENTORIES VALUES (
50530, 201, 62L);
INSERT INTO INVENTORIES VALUES (
50532, 201, 67);
INSERT INTO INVENTORIES VALUES (
50536, 201, 97);
INSERT INTO INVENTORIES VALUES (
20510, 301, 69);
INSERT INTO INVENTORIES VALUES (
20512, 301, 28);
INSERT INTO INVENTORIES VALUES (
30321, 301, 85);
INSERT INTO INVENTORIES VALUES (
30421, 301, 102);
INSERT INTO INVENTORIES VALUES (
30433, 301, 35);
INSERT INTO INVENTORIES VALUES (
32779, 301, 102);
INSERT INTO INVENTORIES VALUES (
32861, 301, 57);
INSERT INTO INVENTORIES VALUES (
40421, 301, 70);
INSERT INTO INVENTORIES VALUES (
40422, 301, 65);
INSERT INTO INVENTORIES VALUES (
41010, 301, 59);
INSERT INTO INVENTORIES VALUES (
41020, 301, 61);
INSERT INTO INVENTORIES VALUES (
41050, 301, 49);
INSERT INTO INVENTORIES VALUES (
41080, 301, 50);
INSERT INTO INVENTORIES VALUES (
41100, 301, 42);
INSERT INTO INVENTORIES VALUES (
20510, 401, 88);
INSERT INTO INVENTORIES VALUES (
20512, 401, 75);
INSERT INTO INVENTORIES VALUES (
30321, 401, 102);
INSERT INTO INVENTORIES VALUES (
30326, 401, 113);
INSERT INTO INVENTORIES VALUES (
30421, 401, 85);
INSERT INTO INVENTORIES VALUES (
30426, 401, 135);
INSERT INTO INVENTORIES VALUES (
30433, 401, 0);
INSERT INTO INVENTORIES VALUES (
32779, 401, 135);
INSERT INTO INVENTORIES VALUES (
32861, 401, 250);
INSERT INTO INVENTORIES VALUES (
40421, 401, 47);
INSERT INTO INVENTORIES VALUES (
40422, 401, 50);
INSERT INTO INVENTORIES VALUES (
41010, 401, 80);
INSERT INTO INVENTORIES VALUES (
41020, 401, 91);
INSERT INTO INVENTORIES VALUES (
41050, 401, 169);
INSERT INTO INVENTORIES VALUES (
41080, 401, 100);
INSERT INTO INVENTORIES VALUES (
41100, 401, 75);
INSERT INTO INVENTORIES VALUES (
50169, 401, 240);
INSERT INTO INVENTORIES VALUES (
50273, 401, 224);
INSERT INTO INVENTORIES VALUES (
50417, 401, 130);
INSERT INTO INVENTORIES VALUES (
50418, 401, 156);
INSERT INTO INVENTORIES VALUES (
50419, 401, 151);
INSERT INTO INVENTORIES VALUES (
50530, 401, 119);
INSERT INTO INVENTORIES VALUES (
50532, 401, 233);
INSERT INTO INVENTORIES VALUES (
50536, 401, 138);
INSERT INTO INVENTORIES VALUES (
10012, 10501, 300);
INSERT INTO INVENTORIES VALUES (
10013, 10501, 314);
INSERT INTO INVENTORIES VALUES (
10022, 10501, 502);
INSERT INTO INVENTORIES VALUES (
10023, 10501, 500);
INSERT INTO INVENTORIES VALUES (
20106, 10501, 150);
INSERT INTO INVENTORIES VALUES (
20108, 10501, 222);
INSERT INTO INVENTORIES VALUES (
20201, 10501, 275);
INSERT INTO INVENTORIES VALUES (
20510, 10501, 57);
INSERT INTO INVENTORIES VALUES (
20512, 10501, 62);
INSERT INTO INVENTORIES VALUES (
30321, 10501, 194);
INSERT INTO INVENTORIES VALUES (
30326, 10501, 277);
INSERT INTO INVENTORIES VALUES (
30421, 10501, 190);
INSERT INTO INVENTORIES VALUES (
30426, 10501, 423);
INSERT INTO INVENTORIES VALUES (
30433, 10501, 273);
INSERT INTO INVENTORIES VALUES (
32779, 10501, 280);
INSERT INTO INVENTORIES VALUES (
32861, 10501, 288);
INSERT INTO INVENTORIES VALUES (
40421, 10501, 97);
INSERT INTO INVENTORIES VALUES (
40422, 10501, 90);
INSERT INTO INVENTORIES VALUES (
41010, 10501, 151);
INSERT INTO INVENTORIES VALUES (
41020, 10501, 224);
INSERT INTO INVENTORIES VALUES (
41050, 10501, 157);
INSERT INTO INVENTORIES VALUES (
41080, 10501, 159);
INSERT INTO INVENTORIES VALUES (
41100, 10501, 141);
COMMIT;
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES
10011, 'Bunny Boot',
'Beginner''s ski boot',
518, 1001,
150, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
10012, 'Ace Ski Boot',
'Intermediate ski boot',
519, 1002,
200, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
10013, 'Pro Ski Boot',
'Advanced ski boot',
520, 1003,
410, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
10021, 'Bunny Ski Pole',
'Beginner''s ski pole',
528, 1011,
16.25, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
10022, 'Ace Ski Pole',
'Intermediate ski pole',
529, 1012,
21.95, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
10023, 'Pro Ski Pole',
'Advanced ski pole',
530, 1013,
40.95, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
20106, 'Junior Soccer Ball',
'Junior soccer ball',
613, NULL,
11, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
20108, 'World Cup Soccer Ball',
'World cup soccer ball',
615, NULL,
28, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
20201, 'World Cup Net',
'World cup net',
708, NULL,
123, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
20510, 'Black Hawk Knee Pads',
'Knee pads, pair',
1017, NULL,
9, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
20512, 'Black Hawk Elbow Pads',
'Elbow pads, pair',
1019, NULL,
8, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
30321, 'Grand Prix Bicycle',
'Road bicycle',
828, 1291,
1669, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
30326, 'Himalaya Bicycle',
'Mountain bicycle',
833, 1296,
582, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
30421, 'Grand Prix Bicycle Tires',
'Road bicycle tires',
927, NULL,
16, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
30426, 'Himalaya Tires',
'Mountain bicycle tires',
933, NULL,
18.25, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
30433, 'New Air Pump',
'Tire pump',
940, NULL,
20, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
32779, 'Slaker Water Bottle',
'Water bottle',
1286, NULL,
7, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
32861, 'Safe-T Helmet',
'Bicycle helmet',
1368, 1829,
60, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
40421, 'Alexeyer Pro Lifting Bar',
'Straight bar',
928, 1381,
65, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
40422, 'Pro Curling Bar',
'Curling bar',
929, 1382,
50, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
41010, 'Prostar 10 Pound Weight',
'Ten pound weight',
517, NULL,
8, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
41020, 'Prostar 20 Pound Weight',
'Twenty pound weight',
527, NULL,
12, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
41050, 'Prostar 50 Pound Weight',
'Fifty pound weight',
557, NULL,
25, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
41080, 'Prostar 80 Pound Weight',
'Eighty pound weight',
587, NULL,
35, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
41100, 'Prostar 100 Pound Weight',
'One hundred pound weight',
607, NULL,
45, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)VALUES (
50169, 'Major League Baseball',
'Baseball',
676, 1119,
4.29, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)VALUES (
50273, 'Chapman Helmet',
'Batting helmet',
780, 1223,
22.89, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
50417, 'Griffey Glove',
'Outfielder''s glove',
924, 1367,
80, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
50418, 'Alomar Glove',
'Infielder''s glove',
925, 1368,
75, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
50419, 'Steinbach Glove',
'Catcher''s glove',
926, 1369,
80, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
50530, 'Cabrera Bat',
'Thirty inch bat',
1037, 1480,
45, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
50532, 'Puckett Bat',
'Thirty-two inch bat',
1039, 1482,
47, NULL);
INSERT INTO PRODUCT_INFORMATION (product_id,product_name,product_description,
category_id,supplier_id,list_price,catalog_url)
VALUES (
50536, 'Winfield Bat',
'Thirty-six inch bat',
1043, 1486,
50, NULL);
COMMIT;
INSERT INTO ORDER_ITEMS VALUES (
100, 1, 10011, 135, 500);
INSERT INTO ORDER_ITEMS VALUES (
100, 2, 10013, 380, 400);
INSERT INTO ORDER_ITEMS VALUES (
100, 3, 10021, 14, 500);
INSERT INTO ORDER_ITEMS VALUES (
100, 5, 30326, 582, 600);
INSERT INTO ORDER_ITEMS VALUES (
100, 7, 41010, 8, 250);
INSERT INTO ORDER_ITEMS VALUES (
100, 6, 30433, 20, 450);
INSERT INTO ORDER_ITEMS VALUES (
100, 4, 10023, 36, 400);
INSERT INTO ORDER_ITEMS VALUES (
101, 1, 30421, 16, 15);
INSERT INTO ORDER_ITEMS VALUES (
101, 3, 41010, 8, 20);
INSERT INTO ORDER_ITEMS VALUES (
101, 5, 50169, 4.29, 40);
INSERT INTO ORDER_ITEMS VALUES (
101, 6, 50417, 80, 27);
INSERT INTO ORDER_ITEMS VALUES (
101, 7, 50530, 45, 50);
INSERT INTO ORDER_ITEMS VALUES (
101, 4, 41100, 45, 35);
INSERT INTO ORDER_ITEMS VALUES (
101, 2, 40422, 50, 30);
INSERT INTO ORDER_ITEMS VALUES (
102, 1, 20108, 28, 100);
INSERT INTO ORDER_ITEMS VALUES (
102, 2, 20201, 123, 45);
INSERT INTO ORDER_ITEMS VALUES (
103, 1, 30433, 20, 15);
INSERT INTO ORDER_ITEMS VALUES (
103, 2, 32779, 7, 11);
INSERT INTO ORDER_ITEMS VALUES (
104, 1, 20510, 9, 7);
INSERT INTO ORDER_ITEMS VALUES (
104, 4, 30421, 16, 35);
INSERT INTO ORDER_ITEMS VALUES (
104, 2, 20512, 8, 12);
INSERT INTO ORDER_ITEMS VALUES (
104, 3, 30321, 1669, 19);
INSERT INTO ORDER_ITEMS VALUES (
105, 1, 50273, 22.89, 16);
INSERT INTO ORDER_ITEMS VALUES (
105, 3, 50532, 47, 28);
INSERT INTO ORDER_ITEMS VALUES (
105, 2, 50419, 80, 133);
INSERT INTO ORDER_ITEMS VALUES (
106, 1, 20108, 28, 46);
INSERT INTO ORDER_ITEMS VALUES (
106, 4, 50273, 22.89, 75);
INSERT INTO ORDER_ITEMS VALUES (
106, 5, 50418, 75, 98);
INSERT INTO ORDER_ITEMS VALUES (
106, 6, 50419, 80, 27);
INSERT INTO ORDER_ITEMS VALUES (
106, 2, 20201, 123, 21);
INSERT INTO ORDER_ITEMS VALUES (
106, 3, 50169, 4.29, 125);
INSERT INTO ORDER_ITEMS VALUES (
107, 1, 20106, 11, 50);
INSERT INTO ORDER_ITEMS VALUES (
107, 3, 20201, 115, 130);
INSERT INTO ORDER_ITEMS VALUES (
107, 5, 30421, 16, 55);
INSERT INTO ORDER_ITEMS VALUES (
107, 4, 30321, 1669, 75);
INSERT INTO ORDER_ITEMS VALUES (
107, 2, 20108, 28, 22);
INSERT INTO ORDER_ITEMS VALUES (
108, 1, 20510, 9, 9);
INSERT INTO ORDER_ITEMS VALUES (
108, 6, 41080, 35, 50);
INSERT INTO ORDER_ITEMS VALUES (
108, 7, 41100, 45, 422);
INSERT INTO ORDER_ITEMS VALUES (
108, 5, 32861, 60, 57);
INSERT INTO ORDER_ITEMS VALUES (
108, 2, 20512, 8, 18);
INSERT INTO ORDER_ITEMS VALUES (
108, 4, 32779, 7, 60);
INSERT INTO ORDER_ITEMS VALUES (
108, 3, 30321, 1669, 85);
INSERT INTO ORDER_ITEMS VALUES (
109, 1, 10011, 140, 150);
INSERT INTO ORDER_ITEMS VALUES (
109, 5, 30426, 18.25, 500);
INSERT INTO ORDER_ITEMS VALUES (
109, 7, 50418, 75, 43);
INSERT INTO ORDER_ITEMS VALUES (
109, 6, 32861, 60, 50);
INSERT INTO ORDER_ITEMS VALUES (
109, 4, 30326, 582, 1500);
INSERT INTO ORDER_ITEMS VALUES (
109, 2, 10012, 175, 600);
INSERT INTO ORDER_ITEMS VALUES (
109, 3, 10022, 21.95, 300);
INSERT INTO ORDER_ITEMS VALUES (
110, 1, 50273, 22.89, 17);
INSERT INTO ORDER_ITEMS VALUES (
110, 2, 50536, 50, 23);
INSERT INTO ORDER_ITEMS VALUES (
111, 1, 40421, 65, 27);
INSERT INTO ORDER_ITEMS VALUES (
111, 2, 41080, 35, 29);
INSERT INTO ORDER_ITEMS VALUES (
97, 1, 20106, 9, 1000);
INSERT INTO ORDER_ITEMS VALUES (
97, 2, 30321, 1500, 50);
INSERT INTO ORDER_ITEMS VALUES (
98, 1, 40421, 85, 7);
INSERT INTO ORDER_ITEMS VALUES (
99, 1, 20510, 9, 18);
INSERT INTO ORDER_ITEMS VALUES (
99, 2, 20512, 8, 25);
INSERT INTO ORDER_ITEMS VALUES (
99, 3, 50417, 80, 53);
INSERT INTO ORDER_ITEMS VALUES (
99, 4, 50530, 45, 69);
INSERT INTO ORDER_ITEMS VALUES (
112, 1, 20106, 11, 50);
COMMIT;
INSERT INTO ORDERS VALUES (
100, 104, '31-AUG-92', null,
11, 601100, null, null);
INSERT INTO ORDERS VALUES (
101, 101, '31-AUG-92', null,
14, 8056.6, null, null);
INSERT INTO ORDERS VALUES (
102, 102, '01-SEP-92', null,
15, 8335, null, null);
INSERT INTO ORDERS VALUES (
103, 103, '02-SEP-92', null,
15, 377, 'CASH', 'Y');
INSERT INTO ORDERS VALUES (
104, 101, '03-SEP-92', null,
15, 32430, null, null);
INSERT INTO ORDERS VALUES (
105, 102, '04-SEP-92', null,
11, 2722.24, null, null);
INSERT INTO ORDERS VALUES (
106, 103, '07-SEP-92', null,
12, 15634, null, null);
INSERT INTO ORDERS VALUES (
107, 104, '07-SEP-92', null,
15, 142171, null, null);
INSERT INTO ORDERS VALUES (
108, 101, '07-SEP-92', null,
13, 149570, null, null);
INSERT INTO ORDERS VALUES (
109, 102, '08-SEP-92', null,
11, 1020935, null, null);
INSERT INTO ORDERS VALUES (
110, 103, '09-SEP-92', null,
11, 1539.13,null, null);
INSERT INTO ORDERS VALUES (
111, 104, '09-SEP-92', null,
11, 2770, null, null);
INSERT INTO ORDERS VALUES (
97, 101, '28-AUG-92', null,
12, 84000, null, null);
INSERT INTO ORDERS VALUES (
98, 102, '31-AUG-92', null,
14, 595, null, null);
INSERT INTO ORDERS VALUES (
99, 103, '31-AUG-92', null,
14, 7707, null, null);
INSERT INTO ORDERS VALUES (
112, 104, '31-AUG-92', null,
12, 550, null, null);
COMMIT;
Good luck,
Monica

Similar Messages

  • Where can I get the sample code of gantt chart?

    hi, all
    I want to use gantt chart component.I find this video http://download.oracle.com/otn_hosted_doc/jdeveloper/11/demos/DVT_Gantt_Chart/ADFDVTGanttChartDemo.html.
    where can I get the sample code in this video?
    I have got the demo <strong>dvt-faces-demo.ear</strong>.but in this demo, the code of events process is too simple.I want more detail code of date change, denpendency change and so on.
    this is my mail [email protected]
    Thanks
    Best Regards
    kenshin
    Edited by: Himura Kenshin on 2010-8-20 上午4:57
    Edited by: Himura Kenshin on 2010-8-20 上午9:03

    Hi Katia,
    Essentially the same sample app which was referenced above (http://download.oracle.com/otn_hosted_doc/jdeveloper/11/demos/DVT_Gantt_Chart/ADFDVTGanttChartDemo.html). There are many features implemented in this sample which I'll be "reinventing the wheel" with. Its been a bit since I worked with the gantt component as I had to abandon for other development but will be getting back into it here shortly.
    Namely as I remember, I had difficult time getting the gantt to load quickly with large amount of tasks, difficulty getting the selected item when using context menus or buttons defined within the control, and a few other minor issues which could be fixed as I was using the first release of 11g and cannot remember specifics. I'll let you know as I get back into it if I see similar problems.
    For example, if you go to the ADF Demo Site (http://jdevadf.oracle.com/adf-richclient-demo/faces/feature/index.jspx) and click on "Project Gantt Custom Menu and Toolbar - add menus and buttons on the Project Gantt Menu and Toolbar". The buttons work, however if you first select a row in the left and then click the button, you have to click twice for it to work (in my findings the action listener never "fires"). So in my case I want to select a row and then have a custom event for that selected row when I click the button. There were other similar findings I had when I tried to go off of the examples.
    Hope this helps.
    Thank you,
    Kris

  • Where can i get more sample code of javacard and OCF

    i'm a newbie..can anybody tell me where can i get
    more sample code of OCF and javacard..especially OCF's sample code..because the OCF's programmer's guide is too simple..
    thx a lot

    Hi,
    will U pl. clear which sample code you are having? Anyway you can check with www.alphaworks.ibm.com.
    Rgs,
    Anupam

  • Where to get demo applications source code

    Hi,
    where can I get the source code of these applications:
    SAPUI5 SDK - Demo Kit
    I know somewhere is possible to download whole SDK (I really need SAPUI5 1.20 version, not 1.16.3, or openUI) but I really can find it...
    Many thanks Jiri

    PLease check here to download SAP UI5 1.20 version
    OpenUI5 - Download
    OpenUI5 Blog - New OpenUI5 version 1.20 released!

  • Where I could find the sample code for Pan and Zoom?

    hello all:
    I saw a demo for showing how to implement Pan and Zoom in java. If I remember correctly it should be included in JAI, however I cannot find it in JAI sample demos any more.
    THe only samples it included are
    * JAIDemo
    * JAIExampleApp/SampleDescriptor
    * JAIFileBrowser
    * JAIWarpDemo
    * JAIImageReader
    * FormatDemo
    Does anyone know where I could find that demo back?
    Thank you
    -Daniel

    Hi,
    I think this document will help you to develop your own modules.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f013e82c-e56e-2910-c3ae-c602a67b918e?quicklink=index&overridelayout=true
    later version pi71
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0b39e65-981e-2b10-1c9c-fc3f8e6747fa?quicklink=index&overridelayout=true
    regards,
    francis

  • Where to download the sample code of Expense Tracker application

    Several JSC2 tutorial articles mention a sample application called Expense Tracker. Does anyone know where to download it? The links in the articles are invalid now.
    Thanks in advance

    Sorry for the inconvenience. The sample code is getting updated to work with the latest release of Creator. It will be replaced soon.

  • Need Sample code to upload the data to Application Server

    Hi ,
    I need to upload the data to application server.
    The output should be an XML file.
    Can anybody send me sample code for this.
    Reward points are assured.
    Best Regards
    Bhagat.

    may be this code wil help ,first to downjload the XML fine -
    1)
    REPORT  zhr_test2_tk.
    TYPE-POOLS: ixml.
    TYPES: BEGIN OF xml_line,
            data(256) TYPE x,
           END OF xml_line.
    DATA: l_ixml            TYPE REF TO if_ixml,
          l_streamfactory   TYPE REF TO if_ixml_stream_factory,
          l_ostream         TYPE REF TO if_ixml_ostream,
          l_renderer        TYPE REF TO if_ixml_renderer,
          l_document        TYPE REF TO if_ixml_document.
    DATA: l_element_position TYPE REF TO if_ixml_element,
          l_element_title    TYPE REF TO if_ixml_element,
           l_element_flight  TYPE REF TO if_ixml_element,
           l_element_from    TYPE REF TO if_ixml_element,
           l_element_to      TYPE REF TO if_ixml_element,
            l_element_dummy   TYPE REF TO if_ixml_element,
             l_value           TYPE string.
    DATA: l_xml_table       TYPE TABLE OF xml_line,
          l_xml_size        TYPE i,
          l_rc              TYPE i.
    DATA: lt_erec TYPE TABLE OF hrp5126,
          l_erec TYPE hrp5126.
    DATA: date(10),
          time(4),
          filepath TYPE string.
    CONSTANTS: filedir TYPE string VALUE 'C:\tmp\',
               filename TYPE string VALUE 'ZHR_test'.
    START-OF-SELECTION.
    fill internal table
      SELECT * FROM hrp5126 INTO TABLE lt_erec.
    Start filling xml DOM object from internal table lt_erec.
      LOOP AT lt_erec INTO l_erec.
    *Create the root node 'position'
        IF sy-tabix EQ 1.
        create an ixml factory
          l_ixml = cl_ixml=>create( ).
        create Document Object Model
          l_document = l_ixml->create_document( ).
       Fill root node with value 'position'
          l_element_position = l_document->create_simple_element(
                         name   = 'position'
                         parent = l_document ).
        ENDIF.
        IF sy-tabix GT 1.
        create element jobtitle as child of position
          l_value = l_erec-jobtitle.
          l_element_title = l_document->create_simple_element(
                             name   = 'job_title'
                             parent = l_element_position
                             value  = l_value ).
          l_value = l_erec-empl_start_date.
          l_element_dummy = l_document->create_simple_element(
                             name   = 'StartDate'
                             parent = l_element_title
                             value  = l_value ).
          l_value = l_erec-empl_end_date.
          l_element_dummy = l_document->create_simple_element(
                             name   = 'EndDate'
                             parent = l_element_title
                             value  = l_value ).
        ENDIF.
      ENDLOOP.
      IF sy-subrc NE 0.
        WRITE: 'No data in table hrp5125'.
      ENDIF.
    create a stream factory
      l_streamfactory = l_ixml->create_stream_factory( ).
    connect internal XML table to streamfactory
      l_ostream = l_streamfactory->create_ostream_itable(
                      table = l_xml_table ).
    render the document
      l_renderer = l_ixml->create_renderer( ostream  = l_ostream
                                            document = l_document ).
      l_rc = l_renderer->render( ).
    Get time and date
      WRITE sy-uzeit2(2) TO time2(2).
      WRITE sy-uzeit0(2) TO time0(2).
      WRITE sy-datum4(2) TO date0(2).
      WRITE sy-datum6(2) TO date2(2).
      WRITE sy-datum0(4) TO date4(4).
    *Build filename with date and time reference
    CONCATENATE filedir filename date time '.xml' INTO filepath.
    <i>* This is the code I hope to modify in order to save the xml structure on the application server, with a specified filepath.</i>
    <b>  OPEN DATASET filepath FOR OUTPUT IN BINARY MODE.
      LOOP AT lt_erec into l_erec.
        TRANSFER  l_erec TO filepath.
      ENDLOOP.
      CLOSE DATASET filepath.</b>
    save XML document
      l_xml_size = l_ostream->get_num_written_raw( ).
    *This is the code for download to local computer
    CALL METHOD cl_gui_frontend_services=>gui_download
       EXPORTING
         bin_filesize            = l_xml_size
         filename                = filepath
         filetype                = 'BIN'
       CHANGING
         data_tab                = l_xml_table
       EXCEPTIONS
         file_write_error        = 1
         no_batch                = 2
         gui_refuse_filetransfer = 3
         invalid_type            = 4
         no_authority            = 5
         unknown_error           = 6
         header_not_allowed      = 7
         separator_not_allowed   = 8
         filesize_not_allowed    = 9
         header_too_long         = 10
         dp_error_create         = 11
         dp_error_send           = 12
         dp_error_write          = 13
         unknown_dp_error        = 14
         access_denied           = 15
         dp_out_of_memory        = 16
         disk_full               = 17
         dp_timeout              = 18
         file_not_found          = 19
         dataprovider_exception  = 20
         control_flush_error     = 21
         OTHERS                  = 22.
    IF sy-subrc <> 0.
       MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    2) uploading tht PC XML file to APPliaction server -
    DATA rec like QISRS_XML_LINE.
    OPEN DATASET filepath FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    LOOP AT l_xml_table into rec.
    TRANSFER rec TO filepath.
    ENDLOOP.
    CLOSE DATASET filepath.

  • Where to find game sample code?

    Where to find game sample code?

    Try the iPhone Dev Center (and the developer forums there, when you've signed up):
    http://developer.apple.com/iphone/index.action

  • Where can I find a sample of application with textboxs ,buttons and ..

    Hi,
    I'm new to Java and I'd like to know where can I find a sample of application with textbox, buttons and accessing a database (Oracle or MS-Access) something like a commercial application to start my knowledge in Java. I'm a developer and I use Visual Basic with Oracle DB. I have knowledge in C language.
    Thanks.
    Autair

    Hi Lionalx,
    I've tried to follow your tip but I got a page that contains the following message : "This directory contains some helper apps and scripts for setting
    up Microsoft Access, SQL Server, or Sybase databases to use with
    the examples in examples/Table. For details see the online
    documentation in:
    http://java.sun.com/products/jfc/swingdoc-current/db.html". Just it. So I've copied the indicadet address but it's redirect to main page of 'swing'. I was there before.
    Despite of this error, I'm finding some interesting tips in the address that you indicated. OK?
    Thanks.
    If you have something new or tip please write me
    Thanks
    Autair

  • Where Can the Sample Code for That Balloon Game Demoed on WWDC for Swift Be Downloaded

    Hi. I can't find the balloon game sample code used in the WWDC in the Sample Code for iOS or OS X (assuming it's available for download). If it is available for download by Apple, where can it be downloaded?
    Thank you in advance.
    God bless, Cor. 13

    The assets are in the .playground file's file package. Select the .playground file in the Finder, right-click, and choose Show Package Contents to browse the file package. The graphics files are in the Resources folder inside the file package.

  • Where can I find the sample Issue Tracker application?

    Where can I find the sample Issue tracker application?
    Regards.

    Hi Maxim
    Your version is for HTMLDB 1.5.
    I found a (little bit) newer version for htmldb 1.6: http://htmldb.oracle.com/pls/otn/f?p=18326:7:14841698881447966533::::P7_ID:1184
    But I don't testet it.
    Greetings
    Sven

  • Where I can get SAP standard webdynpro application source code

    Dear Experts,
    Where can i get sap standard WebDynpro application source code, because i need to copy that source code and modify that according to my application.
    My scnario.
    Actually i need to develop Carloan WebDynpro application, but its similar ESS-> Travel Expenses->Plan my Travel Expense .. standard WebDynpro application model, so please any one suggest how to copy that source code means where can i get that source code, and when rebuilding time what type of problems facing..
    please anyone suggest
    appreciate if you help regarding this..

    Hai saradha ji,
    thank got i know you are the right person for solve my problame, because i study your blogs, please don't be leave this thred till the my problame solve,
    ok once i find  sca file what i want do steps.. please tell me..
    give me any document step by step.  i don't have FPM. i don't have market place ID, so i unable to download .
    please send related artical this mail id [email protected]
    first i search sca file in my development server once got file.. let you inform.
    sincerely

  • Where are sample code sets

    I've been trying to find the complete set of source files etc. for each of the samples in the Ifs Developer's Guide. In particular, I'm interested in the full Vcard sample with parser, PurchaseOrder sample, and Render sample.
    Does anyone know where they can be found?

    Unfortunately i'm in the same boat.... I did
    however get Agents going as well since it is
    the only one with code that seems to have
    been compiled before and tested. The rest of
    the code seems like it has been cut and pasted and is plagued with various typos and
    omissions such as package name with objects
    not capitalized ie. java.util.date instead
    of Date. Is there somewhere , someone that knows where some sample code, preferably complete compiling running examples is
    available ????
    Thanks
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Rida Ligurs:
    Can anyone help me here?
    Does anyone at Oracle know where I can find the complete source for the samples in the ifsdevkit Developer's Guide? I'm assuming they must be somewhere on this site, but I have been unable to find them.
    I've tried to piece together all the xml and java snippets from the dev guide, but the samples don't work. The only one that seems to work is the agent sample. The others seem to be missing sufficient code and instruction to get it all working.
    Has anyone out there been able to get either a parser, override or renderer to work?
    I would appreciate any help getting samples that actually work.<HR></BLOCKQUOTE>
    null

  • Hi All! I want to use javaFX controles in vaadin applications pls give some sample code

    Hi All!
    I want to use javaFX 2.0 Controles in Vaadin applications please give some sample code.
    Is it possible or not .
    Regards

    Hi,
    Thanks manish for your reply but i could not get any help from your suggesion because i have know idea in Java.
    I want to know how can we deploy jsp files in Oracle bpel.
    Because i'm not getting the proper way to deploy jsp files in oracle bpel.
    Can any one help me out by providing step by step information or suggest any url to resolve this.
    Regards,
    Nikhil Kumar Jain

  • Report Engine SDK sample code questions

    Hello,
    I've been able to view a boxi report in an iframe via the Enterprise SDK by modifying the sample code in the HowToViewWebiReports_VB example.
    I'm not totally happy with the way that's working, so I'm looking at using the Report Engine SDK, although I understand it's performance and scalability isn't quite as good as the Enterprise SDK.
    I'm a VB.NET guy, not a C# guy, and I'm not clear on how the wssdk_net2.0_portal_sample_12.0_en example is supposed to work.
    I don't have one and my CMS server is running Tomcat, not IIS so there's not going to be an ASP.NET web service running there.
    In the dsws.config for the wssdk_net2.0_portal_sample_12.0_en example I put the name of the CMS server, but it's looking for a web service at http://cmsservername:8080/dswsbobje/services/Session, but I get a 404 when i try to hit that. 
    I'm not familiar with Tomcat, but in searching around on the server, I see a dswsbobje directory under the webapps in my Tomcat installation, but I don't see a services or a Session folder underneath that.  In the dswsbobje folder I see the following folders:
    BOAR-INF
    META-INF
    WEB-INF
    xsd
    Is there something else that needs to be installed on the Tomcat server to get the web service running?
    -Eric

    It looks like I have something there.  When I launch launch http://servername:8080/dswsbobje,  I see:
    Apache-AXIS
    Hello! Welcome to Apache-Axis.
    What do you want to do today?
    Validate the local installation's configuration
    see below if this does not work.
    To enable the disabled features, uncomment the appropriate declarations in WEB-INF/web.xml in the webapplication and restart it.
    Validating Axis
    If the "happyaxis" validation page displays an exception instead of a status page, the likely cause is that you have multiple XML parsers in your classpath. Clean up your classpath by eliminating extraneous parsers.
    I clicked on the "Validate" link and I see:
    Axis Happiness Page
    Examining webapp configuration
    QaaWS Configuration
    QaaWS Servlet is not valid.
    ErrorServer servername not found or server may be down
    See Web Application log to get more info or read QaaWS v2 documentation starting with section
    Perhaps this environment needs some additional configuration?

Maybe you are looking for

  • My iPhone isn't showing up as a device in iTunes

    I just downloaded iTunes and plugged in my iPhone 4s to my computer. My music from my phone shows up in iTunes, but it does not show my device. I'm trying to download music from my computer, but I cant without transferring it to the device. I hope th

  • Catching an error on a single line

    Is there a way to catch an error on a single line in a VBS script? From what I understand the "On Error Resume Next" will apply to all lines in a procedure. George

  • SOA suite 10.1.3.3 with OHS Apache 2.0 ... mod_oc4j errors

    Hi all, I have a SOA Suite 10.1.3.3 environment fronted by Apache 2.0. Installed OHS 2.0 from the Companion CD in a new OHS ORACLE_HOME Installed SOA Suite 10.1.3.3 in a new J2EE ORACLE_HOME Can access the consoles ok (BPEL, ESB, etc ...). Can access

  • Shuffle g2 not recognized; help?

    When I connect my new iPod shuffle in it says "USB Device not recognized... Please try reconnecting the device [...]" I've tried everything, and the closest I got was while doing the steps listed in http://docs.info.apple.com/article.html?artnum=3051

  • Remote Management and VNC issues

    We do PC support for another department. We are in the process of deploying the ZEN agent. However, the department we support uses VNC to do application support to their users. Once we have installed the ZEN agent, they are no longer able to use VNC.