SlideShare a Scribd company logo
Finance Module
SubLedgerType Screen
Sub Ledger Type
SL Type
Name
Is AddressRequired
Save Quit
GL Master Screen
GL Master
GL Code
Name
B/S Type
SubLedger
Type
Save Quit
SL Master
SLMaster
SL Code
Name
SubLedger
Type
Address Tax Detatil Bank
Save Quit
SQL Scripts
-- GeneratedbyOracle SQL DeveloperDataModeler4.1.3.901
-- at: 2016-05-09 17:58:14 IST
-- site: SQL Server2012
-- type: SQL Server2012
CREATE
TABLE GL_Mst
(
GL_Code INTEGER NOT NULL ,
GL_Name VARCHAR(255) ,
SLType INTEGER NOTNULL ,
BS_Type VARCHAR(100) ,
Status VARCHAR(1) ,
Entry VARCHAR(10) ,
Edate DATETIME ,
MODIFY VARCHAR(10) ,
Mdate DATETIME
)
ON "default"
GO
ALTER TABLE GL_Mst ADD CONSTRAINTGL_Mst_PKPRIMARY KEY CLUSTERED (GL_Code)
WITH
(
ALLOW_PAGE_LOCKS= ON ,
ALLOW_ROW_LOCKS = ON
)
ON "default"
GO
CREATE
TABLE SLType_Mst
(
SLType INTEGER NOT NULL ,
Name VARCHAR(255) ,
Status VARCHAR(1) ,
Adress_RequiredCHAR(1) ,
Entry VARCHAR(10) ,
Edate DATETIME ,
MODIFY VARCHAR(10) ,
Mdate DATETIME
)
ON "default"
GO
ALTER TABLE SLType_MstADD CONSTRAINTSLType_Mst_PKPRIMARYKEY CLUSTERED (
SLType)
WITH
(
ALLOW_PAGE_LOCKS= ON ,
ALLOW_ROW_LOCKS = ON
)
ON "default"
GO
CREATE
TABLE SL_Address
(
SL_Code INTEGER NOTNULL ,
Location VARCHAR(100) ,
Address_Type VARCHAR(100) ,
City VARCHAR(100) ,
State VARCHAR(100) ,
Country VARCHAR(100) ,
Contact_PersonVARCHAR(100) ,
Phone BIGINT,
Mobile BIGINT,
WebSite VARCHAR(100) ,
Fax BIGINT,
"Primary"VARCHAR(1) ,
Status VARCHAR(1)
)
ON "default"
GO
CREATE
TABLE SL_Bank
(
SL_Code INTEGER NOTNULL ,
Bank_Name VARCHAR(100) ,
IFSC_Code VARCHAR(20) ,
Swift_Code VARCHAR(20) ,
Account_HolderVARCHAR(100) ,
Account_No VARCHAR(50) ,
Status VARCHAR(1)
)
ON "default"
GO
CREATE
TABLE SL_Mst
(
SL_Code INTEGER NOTNULL ,
Name VARCHAR(255) ,
SLType INTEGER NOTNULL ,
Entry VARCHAR(10) ,
Edate DATETIME ,
MODIFY VARCHAR(10) ,
Mdate DATETIME
)
ON "default"
GO
ALTER TABLE SL_Mst ADD CONSTRAINTSL_Mst_PKPRIMARY KEY CLUSTERED (SL_Code)
WITH
(
ALLOW_PAGE_LOCKS= ON ,
ALLOW_ROW_LOCKS = ON
)
ON "default"
GO
CREATE
TABLE SL_Tax
(
SL_CODE INTEGER NOTNULL ,
TIN VARCHAR(12) ,
PAN VARCHAR(12) ,
GST VARCHAR(12) ,
ServiceTax_NoVARCHAR(50) ,
TAN VARCHAR(20) ,
Taxation VARCHAR(100) ,
Excise VARCHAR(100) ,
ECCNo VARCHAR(20) ,
Status VARCHAR(1)
)
ON "default"
GO
ALTER TABLE GL_Mst
ADD CONSTRAINTGL_Mst_SLType_Mst_FKFOREIGN KEY
(
SLType
)
REFERENCES SLType_Mst
(
SLType
)
ON
DELETE
NOACTION ON
UPDATE NO ACTION
GO
ALTER TABLE SL_Address
ADD CONSTRAINTSL_Address_SL_Mst_FKFOREIGN KEY
(
SL_Code
)
REFERENCES SL_Mst
(
SL_Code
)
ON
DELETE
NOACTION ON
UPDATE NO ACTION
GO
ALTER TABLE SL_Bank
ADD CONSTRAINTSL_Bank_SL_Mst_FKFOREIGN KEY
(
SL_Code
)
REFERENCES SL_Mst
(
SL_Code
)
ON
DELETE
NOACTION ON
UPDATE NO ACTION
GO
ALTER TABLE SL_Mst
ADD CONSTRAINTSL_Mst_SLType_Mst_FKFOREIGN KEY
(
SLType
)
REFERENCES SLType_Mst
(
SLType
)
ON
DELETE
NOACTION ON
UPDATE NO ACTION
GO
ALTER TABLE SL_Tax
ADD CONSTRAINTSL_Tax_SL_Mst_FKFOREIGN KEY
(
SL_CODE
)
REFERENCES SL_Mst
(
SL_Code
)
ON
DELETE
NOACTION ON
UPDATE NO ACTION
GO
-- Oracle SQL DeveloperDataModelerSummaryReport:
--
-- CREATE TABLE 6
-- CREATE INDEX 0
-- ALTER TABLE 8
-- CREATE VIEW 0
-- ALTER VIEW 0
-- CREATE PACKAGE 0
-- CREATE PACKAGEBODY 0
-- CREATE PROCEDURE 0
-- CREATE FUNCTION 0
-- CREATE TRIGGER 0
-- ALTER TRIGGER 0
-- CREATE DATABASE 0
-- CREATE DEFAULT 0
-- CREATE INDEX ON VIEW 0
-- CREATE ROLLBACK SEGMENT 0
-- CREATE ROLE 0
-- CREATE RULE 0
-- CREATE SCHEMA 0
-- CREATE SEQUENCE 0
-- CREATE PARTITION FUNCTION 0
-- CREATE PARTITION SCHEME 0
--
-- DROP DATABASE 0
--
-- ERRORS 0
-- WARNINGS 0
VoucherEntry
Voucher No Date Cash/Bank A/C Balance
REF Type Ref No Ref Date
Bill No
Bill
Date
GL Code SL Code Amount A/C Balance
Amount inWords:
Remarks
Tables
Voucher_Mst Voucher_Det
Company_ID Company_ID
Voucher_No Voucher_No
Voucher_Date Voucher_Date
Voucher_Type Bill_NO
Ref_Type Bill_Date
Ref_No GL_Code
Ref_Date SL_Code
Account_ID Dr_Amount
Amount Cr_Amount
Balance Remarks
Flag Flag
Entry
Edate
Modify
Mdate
Approve
Adate

More Related Content

Similar to Fin data model

Milestone 1 FINAL
Milestone 1 FINALMilestone 1 FINAL
Milestone 1 FINAL
Danny Nguyen
 
Bronte's Assortment Presentation Slide
Bronte's Assortment Presentation SlideBronte's Assortment Presentation Slide
Bronte's Assortment Presentation Slide
sulabh4
 
SPOOL output.log DROP TABL.pdf
SPOOL output.log DROP TABL.pdfSPOOL output.log DROP TABL.pdf
SPOOL output.log DROP TABL.pdf
fashionfootwear1
 
Sql
SqlSql
Sql
Joao
 
[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization
[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization
[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization
PgDay.Seoul
 
Sql commands
Sql commandsSql commands
Sql commands
Christalin Nelson
 
Work in TDW
Work in TDWWork in TDW
Work in TDW
saso70
 
Check Constraint In MySQL 8.0
Check Constraint  In MySQL 8.0Check Constraint  In MySQL 8.0
Check Constraint In MySQL 8.0
Praveenkumar hulakund
 
Execution plans for mere mortals
Execution plans for mere mortalsExecution plans for mere mortals
Execution plans for mere mortals
Mike Lawell
 
ELEVATE Advanced Workshop
ELEVATE Advanced WorkshopELEVATE Advanced Workshop
ELEVATE Advanced Workshop
Joshua Birk
 
Mongo db world 2014 billrun
Mongo db world 2014   billrunMongo db world 2014   billrun
Mongo db world 2014 billrun
MongoDB
 
Unidad 4 actividad 1
Unidad 4 actividad 1Unidad 4 actividad 1
Unidad 4 actividad 1
KARY
 
Detroit ELEVATE Track 2
Detroit ELEVATE Track 2Detroit ELEVATE Track 2
Detroit ELEVATE Track 2
Joshua Birk
 
ActiveReports Document
ActiveReports DocumentActiveReports Document
ActiveReports Document
Muhammad Sarfraz
 
Slick in Practice. Salvation from the Trenches of SQL
Slick in Practice. Salvation from the Trenches of SQLSlick in Practice. Salvation from the Trenches of SQL
Slick in Practice. Salvation from the Trenches of SQL
Alexander Ioffe
 
Marcus Portfolio
Marcus  PortfolioMarcus  Portfolio
Marcus Portfolio
marobertson22
 
Extreme BI: Creating Virtualized Hybrid Type 1+2 Dimensions
Extreme BI: Creating Virtualized Hybrid Type 1+2 DimensionsExtreme BI: Creating Virtualized Hybrid Type 1+2 Dimensions
Extreme BI: Creating Virtualized Hybrid Type 1+2 Dimensions
Kent Graziano
 
Mastering T-SQL Window Functions
Mastering T-SQL Window FunctionsMastering T-SQL Window Functions
Mastering T-SQL Window Functions
Jose Rivera Miranda
 
Decision Camp 2013 - Ouyang Ming - PayPal - stopping fraud early
Decision Camp 2013 - Ouyang Ming - PayPal - stopping fraud earlyDecision Camp 2013 - Ouyang Ming - PayPal - stopping fraud early
Decision Camp 2013 - Ouyang Ming - PayPal - stopping fraud early
Decision CAMP
 
Bd tienda
Bd tienda Bd tienda

Similar to Fin data model (20)

Milestone 1 FINAL
Milestone 1 FINALMilestone 1 FINAL
Milestone 1 FINAL
 
Bronte's Assortment Presentation Slide
Bronte's Assortment Presentation SlideBronte's Assortment Presentation Slide
Bronte's Assortment Presentation Slide
 
SPOOL output.log DROP TABL.pdf
SPOOL output.log DROP TABL.pdfSPOOL output.log DROP TABL.pdf
SPOOL output.log DROP TABL.pdf
 
Sql
SqlSql
Sql
 
[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization
[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization
[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization
 
Sql commands
Sql commandsSql commands
Sql commands
 
Work in TDW
Work in TDWWork in TDW
Work in TDW
 
Check Constraint In MySQL 8.0
Check Constraint  In MySQL 8.0Check Constraint  In MySQL 8.0
Check Constraint In MySQL 8.0
 
Execution plans for mere mortals
Execution plans for mere mortalsExecution plans for mere mortals
Execution plans for mere mortals
 
ELEVATE Advanced Workshop
ELEVATE Advanced WorkshopELEVATE Advanced Workshop
ELEVATE Advanced Workshop
 
Mongo db world 2014 billrun
Mongo db world 2014   billrunMongo db world 2014   billrun
Mongo db world 2014 billrun
 
Unidad 4 actividad 1
Unidad 4 actividad 1Unidad 4 actividad 1
Unidad 4 actividad 1
 
Detroit ELEVATE Track 2
Detroit ELEVATE Track 2Detroit ELEVATE Track 2
Detroit ELEVATE Track 2
 
ActiveReports Document
ActiveReports DocumentActiveReports Document
ActiveReports Document
 
Slick in Practice. Salvation from the Trenches of SQL
Slick in Practice. Salvation from the Trenches of SQLSlick in Practice. Salvation from the Trenches of SQL
Slick in Practice. Salvation from the Trenches of SQL
 
Marcus Portfolio
Marcus  PortfolioMarcus  Portfolio
Marcus Portfolio
 
Extreme BI: Creating Virtualized Hybrid Type 1+2 Dimensions
Extreme BI: Creating Virtualized Hybrid Type 1+2 DimensionsExtreme BI: Creating Virtualized Hybrid Type 1+2 Dimensions
Extreme BI: Creating Virtualized Hybrid Type 1+2 Dimensions
 
Mastering T-SQL Window Functions
Mastering T-SQL Window FunctionsMastering T-SQL Window Functions
Mastering T-SQL Window Functions
 
Decision Camp 2013 - Ouyang Ming - PayPal - stopping fraud early
Decision Camp 2013 - Ouyang Ming - PayPal - stopping fraud earlyDecision Camp 2013 - Ouyang Ming - PayPal - stopping fraud early
Decision Camp 2013 - Ouyang Ming - PayPal - stopping fraud early
 
Bd tienda
Bd tienda Bd tienda
Bd tienda
 

Recently uploaded

一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理
一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理
一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理
nuttdpt
 
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
g4dpvqap0
 
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
Timothy Spann
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
aqzctr7x
 
University of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma TranscriptUniversity of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma Transcript
soxrziqu
 
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
apvysm8
 
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
Social Samosa
 
My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.
rwarrenll
 
The Ipsos - AI - Monitor 2024 Report.pdf
The  Ipsos - AI - Monitor 2024 Report.pdfThe  Ipsos - AI - Monitor 2024 Report.pdf
The Ipsos - AI - Monitor 2024 Report.pdf
Social Samosa
 
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
bopyb
 
Challenges of Nation Building-1.pptx with more important
Challenges of Nation Building-1.pptx with more importantChallenges of Nation Building-1.pptx with more important
Challenges of Nation Building-1.pptx with more important
Sm321
 
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
dwreak4tg
 
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
v7oacc3l
 
Enhanced Enterprise Intelligence with your personal AI Data Copilot.pdf
Enhanced Enterprise Intelligence with your personal AI Data Copilot.pdfEnhanced Enterprise Intelligence with your personal AI Data Copilot.pdf
Enhanced Enterprise Intelligence with your personal AI Data Copilot.pdf
GetInData
 
State of Artificial intelligence Report 2023
State of Artificial intelligence Report 2023State of Artificial intelligence Report 2023
State of Artificial intelligence Report 2023
kuntobimo2016
 
Natural Language Processing (NLP), RAG and its applications .pptx
Natural Language Processing (NLP), RAG and its applications .pptxNatural Language Processing (NLP), RAG and its applications .pptx
Natural Language Processing (NLP), RAG and its applications .pptx
fkyes25
 
Intelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicineIntelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicine
AndrzejJarynowski
 
End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024
Lars Albertsson
 
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
74nqk8xf
 
Population Growth in Bataan: The effects of population growth around rural pl...
Population Growth in Bataan: The effects of population growth around rural pl...Population Growth in Bataan: The effects of population growth around rural pl...
Population Growth in Bataan: The effects of population growth around rural pl...
Bill641377
 

Recently uploaded (20)

一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理
一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理
一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理
 
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
 
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
 
University of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma TranscriptUniversity of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma Transcript
 
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
 
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
 
My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.
 
The Ipsos - AI - Monitor 2024 Report.pdf
The  Ipsos - AI - Monitor 2024 Report.pdfThe  Ipsos - AI - Monitor 2024 Report.pdf
The Ipsos - AI - Monitor 2024 Report.pdf
 
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
 
Challenges of Nation Building-1.pptx with more important
Challenges of Nation Building-1.pptx with more importantChallenges of Nation Building-1.pptx with more important
Challenges of Nation Building-1.pptx with more important
 
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
 
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
 
Enhanced Enterprise Intelligence with your personal AI Data Copilot.pdf
Enhanced Enterprise Intelligence with your personal AI Data Copilot.pdfEnhanced Enterprise Intelligence with your personal AI Data Copilot.pdf
Enhanced Enterprise Intelligence with your personal AI Data Copilot.pdf
 
State of Artificial intelligence Report 2023
State of Artificial intelligence Report 2023State of Artificial intelligence Report 2023
State of Artificial intelligence Report 2023
 
Natural Language Processing (NLP), RAG and its applications .pptx
Natural Language Processing (NLP), RAG and its applications .pptxNatural Language Processing (NLP), RAG and its applications .pptx
Natural Language Processing (NLP), RAG and its applications .pptx
 
Intelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicineIntelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicine
 
End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024
 
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
 
Population Growth in Bataan: The effects of population growth around rural pl...
Population Growth in Bataan: The effects of population growth around rural pl...Population Growth in Bataan: The effects of population growth around rural pl...
Population Growth in Bataan: The effects of population growth around rural pl...
 

Fin data model

  • 1. Finance Module SubLedgerType Screen Sub Ledger Type SL Type Name Is AddressRequired Save Quit GL Master Screen GL Master GL Code Name B/S Type SubLedger Type Save Quit
  • 2. SL Master SLMaster SL Code Name SubLedger Type Address Tax Detatil Bank Save Quit SQL Scripts -- GeneratedbyOracle SQL DeveloperDataModeler4.1.3.901 -- at: 2016-05-09 17:58:14 IST -- site: SQL Server2012 -- type: SQL Server2012 CREATE TABLE GL_Mst ( GL_Code INTEGER NOT NULL , GL_Name VARCHAR(255) ,
  • 3. SLType INTEGER NOTNULL , BS_Type VARCHAR(100) , Status VARCHAR(1) , Entry VARCHAR(10) , Edate DATETIME , MODIFY VARCHAR(10) , Mdate DATETIME ) ON "default" GO ALTER TABLE GL_Mst ADD CONSTRAINTGL_Mst_PKPRIMARY KEY CLUSTERED (GL_Code) WITH ( ALLOW_PAGE_LOCKS= ON , ALLOW_ROW_LOCKS = ON ) ON "default" GO CREATE TABLE SLType_Mst ( SLType INTEGER NOT NULL , Name VARCHAR(255) , Status VARCHAR(1) ,
  • 4. Adress_RequiredCHAR(1) , Entry VARCHAR(10) , Edate DATETIME , MODIFY VARCHAR(10) , Mdate DATETIME ) ON "default" GO ALTER TABLE SLType_MstADD CONSTRAINTSLType_Mst_PKPRIMARYKEY CLUSTERED ( SLType) WITH ( ALLOW_PAGE_LOCKS= ON , ALLOW_ROW_LOCKS = ON ) ON "default" GO CREATE TABLE SL_Address ( SL_Code INTEGER NOTNULL , Location VARCHAR(100) , Address_Type VARCHAR(100) , City VARCHAR(100) ,
  • 5. State VARCHAR(100) , Country VARCHAR(100) , Contact_PersonVARCHAR(100) , Phone BIGINT, Mobile BIGINT, WebSite VARCHAR(100) , Fax BIGINT, "Primary"VARCHAR(1) , Status VARCHAR(1) ) ON "default" GO CREATE TABLE SL_Bank ( SL_Code INTEGER NOTNULL , Bank_Name VARCHAR(100) , IFSC_Code VARCHAR(20) , Swift_Code VARCHAR(20) , Account_HolderVARCHAR(100) , Account_No VARCHAR(50) , Status VARCHAR(1) )
  • 6. ON "default" GO CREATE TABLE SL_Mst ( SL_Code INTEGER NOTNULL , Name VARCHAR(255) , SLType INTEGER NOTNULL , Entry VARCHAR(10) , Edate DATETIME , MODIFY VARCHAR(10) , Mdate DATETIME ) ON "default" GO ALTER TABLE SL_Mst ADD CONSTRAINTSL_Mst_PKPRIMARY KEY CLUSTERED (SL_Code) WITH ( ALLOW_PAGE_LOCKS= ON , ALLOW_ROW_LOCKS = ON ) ON "default" GO
  • 7. CREATE TABLE SL_Tax ( SL_CODE INTEGER NOTNULL , TIN VARCHAR(12) , PAN VARCHAR(12) , GST VARCHAR(12) , ServiceTax_NoVARCHAR(50) , TAN VARCHAR(20) , Taxation VARCHAR(100) , Excise VARCHAR(100) , ECCNo VARCHAR(20) , Status VARCHAR(1) ) ON "default" GO ALTER TABLE GL_Mst ADD CONSTRAINTGL_Mst_SLType_Mst_FKFOREIGN KEY ( SLType ) REFERENCES SLType_Mst
  • 8. ( SLType ) ON DELETE NOACTION ON UPDATE NO ACTION GO ALTER TABLE SL_Address ADD CONSTRAINTSL_Address_SL_Mst_FKFOREIGN KEY ( SL_Code ) REFERENCES SL_Mst ( SL_Code ) ON DELETE NOACTION ON UPDATE NO ACTION GO ALTER TABLE SL_Bank
  • 9. ADD CONSTRAINTSL_Bank_SL_Mst_FKFOREIGN KEY ( SL_Code ) REFERENCES SL_Mst ( SL_Code ) ON DELETE NOACTION ON UPDATE NO ACTION GO ALTER TABLE SL_Mst ADD CONSTRAINTSL_Mst_SLType_Mst_FKFOREIGN KEY ( SLType ) REFERENCES SLType_Mst ( SLType ) ON DELETE
  • 10. NOACTION ON UPDATE NO ACTION GO ALTER TABLE SL_Tax ADD CONSTRAINTSL_Tax_SL_Mst_FKFOREIGN KEY ( SL_CODE ) REFERENCES SL_Mst ( SL_Code ) ON DELETE NOACTION ON UPDATE NO ACTION GO -- Oracle SQL DeveloperDataModelerSummaryReport: -- -- CREATE TABLE 6 -- CREATE INDEX 0 -- ALTER TABLE 8
  • 11. -- CREATE VIEW 0 -- ALTER VIEW 0 -- CREATE PACKAGE 0 -- CREATE PACKAGEBODY 0 -- CREATE PROCEDURE 0 -- CREATE FUNCTION 0 -- CREATE TRIGGER 0 -- ALTER TRIGGER 0 -- CREATE DATABASE 0 -- CREATE DEFAULT 0 -- CREATE INDEX ON VIEW 0 -- CREATE ROLLBACK SEGMENT 0 -- CREATE ROLE 0 -- CREATE RULE 0 -- CREATE SCHEMA 0 -- CREATE SEQUENCE 0 -- CREATE PARTITION FUNCTION 0 -- CREATE PARTITION SCHEME 0 -- -- DROP DATABASE 0 -- -- ERRORS 0 -- WARNINGS 0
  • 12. VoucherEntry Voucher No Date Cash/Bank A/C Balance REF Type Ref No Ref Date Bill No Bill Date GL Code SL Code Amount A/C Balance Amount inWords: Remarks
  • 13. Tables Voucher_Mst Voucher_Det Company_ID Company_ID Voucher_No Voucher_No Voucher_Date Voucher_Date Voucher_Type Bill_NO Ref_Type Bill_Date Ref_No GL_Code Ref_Date SL_Code Account_ID Dr_Amount Amount Cr_Amount Balance Remarks Flag Flag Entry Edate Modify Mdate Approve Adate