0% found this document useful (0 votes)
3 views

Workflow

The document outlines the creation of two database tables: 'JS_WORKFLOW_23_2' and 'LEAVE_APPROVAL'. The 'JS_WORKFLOW_23_2' table includes fields for ID, workflow, and text, while the 'LEAVE_APPROVAL' table includes fields for ID, leave type, number of leaves, employee name, approver, remarks, and approval status. Both tables have primary key constraints on the ID field.

Uploaded by

shivani chougule
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

Workflow

The document outlines the creation of two database tables: 'JS_WORKFLOW_23_2' and 'LEAVE_APPROVAL'. The 'JS_WORKFLOW_23_2' table includes fields for ID, workflow, and text, while the 'LEAVE_APPROVAL' table includes fields for ID, leave type, number of leaves, employee name, approver, remarks, and approval status. Both tables have primary key constraints on the ID field.

Uploaded by

shivani chougule
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

CREATE TABLE "JS_WORKFLOW_23_2"

(
"ID" NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY INCREMENT BY 1 START WITH
1 NOCACHE NOT NULL ENABLE,
"WORKFLOW" VARCHAR2(50),
"TEXT" VARCHAR2(50),
CONSTRAINT "JS_WORKFLOW_23_2" PRIMARY KEY ("ID")
USING INDEX ENABLE
)

insert into JS_WORKFLOW_23_2 (WORKFLOW,TEXT) values


('ERPSTUFF DEMO','Greater than 1000 : ' || :JS_PARAMETER);

LEAVE_APPROVAL

CREATE TABLE "LEAVE_APPROVAL"


(
"ID" NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY INCREMENT BY 1 START WITH
1 NOCACHE NOT NULL ENABLE,
"LEAVE_TYPE" VARCHAR2(500),
"NO_OF_LEAVES" NUMBER,
"EMPNAME" VARCHAR2(500),
"APPROVER" VARCHAR2(500),
"APP_REMARKS" VARCHAR2(50),
"APPROVAL_STATUS" VARCHAR2(50),
CONSTRAINT "LEAVE_APPROVAL" PRIMARY KEY ("ID")
USING INDEX ENABLE
)

You might also like