Commit f7436eb5 authored by wansari's avatar wansari

D16JBAS001 added SQL for gst reconciliation wizard new points


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@106047 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 77d17a8d
......@@ -773,4 +773,22 @@ insert into POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,DW_OBJECT,MSG_TITLE,WIDTH,HEIGH
REFERENCES "GST_DATA_HDR" ("TRAN_ID") ON DELETE CASCADE ENABLE;
/
---------------------------------------------- System Entries for CREATE_TABLE GST_DATA_HDR & GST_DATA_DET [END]------------------------------------------------------------------------------------------------------------------------------
\ No newline at end of file
---------------------------------------------- System Entries for CREATE_TABLE GST_DATA_HDR & GST_DATA_DET [END]------------------------------------------------------------------------------------------------------------------------------
-----------------Changed by wasim on 20-JUN-2017 for gst reconciliation wizard new points [START]-----------------------
create table GST_REGISTRATION
(
GST_NO varchar2(15) not null, ---- Customer GSTIN
NAME varchar2(50), ------ Customer Name
ADDR1 VARCHAR2(40), -- Address1
ADDR2 VARCHAR2(50), -- Address2
ADDR3 VARCHAR2(40), -- Address3
CITY VARCHAR2(20), -- City
STATE_CODE CHAR(5), -------- Sate Code
PIN VARCHAR2(10) ---- Pin
) tablespace ITM_data;
alter table GST_REGISTRATION add ( CONSTRAINT GST_REGISTRATION_X PRIMARY KEY( GST_NO )) using tablespace ITM_index;
INSERT into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,CHG_DATE,CHG_USER,CHG_TERM)
values ('VTNORECGST','Data not found','Data not found for entered Period code and Login site','E','Y',SYSDATE,'BASE','BASE');
-----------------Changed by wasim on 20-JUN-2017 for gst reconciliation wizard new points [END]-----------------------
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment