Commit a7105e41 authored by nkhan's avatar nkhan

Added by Nasruddin khan


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@102578 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 896df56e
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
ALTER TABLE COMM_HDR ADD COMM_CRITERIA CHAR(1); --I-Item wise, V-Value wise
ALTER TABLE SUPPLIER ADD COMM_TABLE CHAR(5);
ALTER TABLE CUSTOMER ADD COMM_TABLE CHAR(5);
CREATE TABLE COMM_BY_VALUE
(
COMM_TABLE CHAR(5) NOT NULL,
LINE_NO CHAR(3) NOT NULL,
MIN_AMT NUMBER(14,3),
MAX_AMT NUMBER(14,3),
COMM_TYPE CHAR(1), --Fixed-F,Percentage-P
COMM_PERC NUMBER(14,3),
EFF_DATE DATE,
VALID_UPTO DATE
) tablespace "ITM_FIN_D1";
alter table comm_by_value add constraint comm_by_value_x primary key(comm_table,line_no) using index tablespace "ITM_FIN_I1";
CREATE TABLE SUPPLIER_OTHER_INFO
(
SUPP_CODE CHAR(10) NOT NULL,
LABOUR_INVOLVED CHAR(1),
PF_REG_NO VARCHAR2(50),
ESIC_REG_NO VARCHAR2(50),
ECI_NO VARCHAR2(50),
PTAX_NO VARCHAR2(50),
LWF_NO VARCHAR2(50)
);
alter table supplier_other_info add ( constraint supplier_other_info_x primary key(supp_code));
ALTER TABLE SUPPLIER_OTHER_INFO ADD ( CONSTRAINT FK_SUPPLIER_OTH_INFO_SUPP_CODE FOREIGN KEY ( SUPP_CODE ) REFERENCES SUPPLIER ) ;
alter table customer add cust_language char(2);
INSERT INTO obj_forms(WIN_NAME,TITLE,FORM_NO)
VALUES ('w_commissiondet',
'CommissionDetail',
'3');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTNULCMCID',
'Invalid Comm Criteria !',
'Commision Criteria cannot be null or blank!',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VMEFDTNULL',
'NULL EFFECTIVE DATE!',
'Please Enter Effective Date Effective Date cannot null or blank !',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VMVADTNULL',
'NULL VALID UPTO DATE!',
'Please Enter Valid Upto Date cannot null or blank!',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTCOMAMTPR',
'INVALID COMMISION!',
'Commision Amount % should be greater then zero and less then hundred',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTMXAMTPR',
'INVALID AMOUNT%!',
'Maximum amount should be greater then Zero',
'E',
sysdate,
'BASE',
'BASE');
insert into messages(msg_no, msg_str, msg_descr, msg_type, msg_opt, chg_date, chg_user, chg_term )
values (
'VMCOMMTBCD',
'INVALID COMM TABLE !',
'Comm table does not exsit in Commission master',
'E',
'Y',
sysdate,
'BASE',
'BASE' );
insert into messages(msg_no, msg_str, msg_descr, msg_type, msg_opt, chg_date, chg_user, chg_term )
values (
'VMEFVUTDAT',
'INVALID EFF AND VLDUPTO EXIST!',
'Please enter Effective date and valid up to date should be greater then and less then exists detail ',
'E',
'Y',
sysdate,
'BASE',
'BASE' );
insert into messages(msg_no, msg_str, msg_descr, msg_type, msg_opt, chg_date, chg_user, chg_term )
values (
'VMINTRNREC',
'INVALID TRANSACTION !',
'Invalid Transaction Avaliable Commision Criteria Value Wise',
'E',
'Y',
sysdate,
'BASE',
'BASE' );
insert into messages(msg_no, msg_str, msg_descr, msg_type, msg_opt, chg_date, chg_user, chg_term )
values (
'VMINTRNSEC',
'INVALID TRANSACTION !',
'Invalid Transaction Avaliable Commision Criteria Item Wise',
'E',
'Y',
sysdate,
'BASE',
'BASE' );
insert into messages(msg_no, msg_str, msg_descr, msg_type, msg_opt, chg_date, chg_user, chg_term )
values (
'VTMXMNTPR',
'INVALID MaxAmount !',
'Maximum amount should be greater then minimum amount',
'E',
'Y',
sysdate,
'BASE',
'BASE' );
$PBExportHeader$d_commisiondet11.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=22 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=20 color="536870912" )
table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=comm_table dbname="comm_hdr.comm_table" )
column=(type=char(60) update=yes updatewhereclause=yes name=descr dbname="comm_hdr.descr" )
column=(type=char(20) update=yes updatewhereclause=yes name=sh_descr dbname="comm_hdr.sh_descr" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="comm_hdr.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="comm_hdr.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="comm_hdr.chg_term" )
column=(type=char(1) update=yes updatewhereclause=yes name=comm_criteria dbname="comm_hdr.comm_criteria" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"comm_hdr~" ) COLUMN(NAME=~"comm_hdr.comm_table~") COLUMN(NAME=~"comm_hdr.descr~") COLUMN(NAME=~"comm_hdr.sh_descr~") COLUMN(NAME=~"comm_hdr.chg_date~") COLUMN(NAME=~"comm_hdr.chg_user~") COLUMN(NAME=~"comm_hdr.chg_term~") COLUMN(NAME=~"comm_hdr.comm_criteria~")) " update="COMM_HDR" updatewhere=1 updatekeyinplace=no )
text(band=header alignment="2" text="Commision Table" border="6" color="33554432" x="2" y="2" height="16" width="73" html.valueishtml="0" name=comm_table_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Commision Criteria" border="6" color="33554432" x="883" y="1" height="16" width="122" html.valueishtml="0" name=comm_criteria_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="33554432" x="2" y="2" height="19" width="73" format="[general]" html.valueishtml="0" name=comm_table visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="0" tabsequence=70 border="5" color="33554432" x="883" y="1" height="22" width="122" format="[general]" html.valueishtml="0" name=comm_criteria visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=header alignment="2" text="Description" border="6" color="33554432" x="77" y="2" height="16" width="316" html.valueishtml="0" name=descr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Sh Descr" border="6" color="33554432" x="395" y="2" height="16" width="126" html.valueishtml="0" name=sh_descr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Change Date" border="6" color="33554432" x="523" y="2" height="16" width="131" html.valueishtml="0" name=chg_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Change User" border="6" color="33554432" x="656" y="2" height="16" width="127" html.valueishtml="0" name=chg_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Change Term" border="6" color="33554432" x="785" y="2" height="16" width="96" html.valueishtml="0" name=chg_term_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="33554432" x="77" y="2" height="19" width="316" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=60 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=30 border="5" color="33554432" x="395" y="2" height="19" width="126" format="[general]" html.valueishtml="0" name=sh_descr visible="1" edit.limit=20 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="0" tabsequence=40 border="5" color="33554432" x="523" y="2" height="19" width="131" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="0" tabsequence=50 border="5" color="33554432" x="656" y="2" height="19" width="127" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="0" tabsequence=60 border="5" color="33554432" x="785" y="2" height="19" width="96" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
$PBExportHeader$d_commisiondet13.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=19 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=22 color="536870912" )
table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=comm_table dbname="comm_by_value.comm_table" )
column=(type=char(3) update=yes updatewhereclause=yes key=yes name=line_no dbname="comm_by_value.line_no" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=min_amt dbname="comm_by_value.min_amt" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=max_amt dbname="comm_by_value.max_amt" )
column=(type=char(1) update=yes updatewhereclause=yes name=comm_type dbname="comm_by_value.comm_type" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=comm_perc dbname="comm_by_value.comm_perc" )
column=(type=datetime update=yes updatewhereclause=yes name=eff_date dbname="comm_by_value.eff_date" )
column=(type=datetime update=yes updatewhereclause=yes name=valid_upto dbname="comm_by_value.valid_upto" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"comm_by_value~" ) COLUMN(NAME=~"comm_by_value.comm_table~") COLUMN(NAME=~"comm_by_value.line_no~") COLUMN(NAME=~"comm_by_value.min_amt~") COLUMN(NAME=~"comm_by_value.max_amt~") COLUMN(NAME=~"comm_by_value.comm_type~") COLUMN(NAME=~"comm_by_value.comm_perc~") COLUMN(NAME=~"comm_by_value.eff_date~") COLUMN(NAME=~"comm_by_value.valid_upto~")WHERE( EXP1 =~"~~~"COMM_BY_VALUE~~~".~~~"COMM_TABLE~~~"~" OP =~"=~" EXP2 =~":commtable~" ) ) ARG(NAME = ~"commtable~" TYPE = string) " update="COMM_BY_VALUE" updatewhere=1 updatekeyinplace=no arguments=(("commtable", string)) )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="0" x="2" y="2" height="18" width="105" format="[general]" html.valueishtml="0" name=comm_table visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="0" tabsequence=80 border="5" color="0" x="828" y="2" height="18" width="132" format="[shortdate] [time]" html.valueishtml="0" name=valid_upto visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=header alignment="2" text="Commision Table" border="6" color="0" x="2" y="2" height="16" width="105" html.valueishtml="0" name=comm_table_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Valid Upto" border="6" color="0" x="828" y="2" height="15" width="132" html.valueishtml="0" name=valid_upto_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="0" x="109" y="2" height="18" width="90" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=3 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="0" tabsequence=70 border="5" color="0" x="694" y="2" height="18" width="132" format="[shortdate] [time]" html.valueishtml="0" name=eff_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="0" tabsequence=50 border="5" color="0" x="452" y="2" height="18" width="108" format="[general]" html.valueishtml="0" name=comm_type visible="1" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="1" tabsequence=60 border="5" color="0" x="562" y="2" height="18" width="130" format="[general]" html.valueishtml="0" name=comm_perc visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=header alignment="2" text="Line No" border="6" color="0" x="109" y="2" height="15" width="90" html.valueishtml="0" name=line_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Effective Date" border="6" color="0" x="694" y="2" height="16" width="132" html.valueishtml="0" name=eff_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Commision Type" border="6" color="0" x="452" y="2" height="16" width="108" html.valueishtml="0" name=comm_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Commission Percentage" border="6" color="0" x="562" y="2" height="16" width="130" html.valueishtml="0" name=comm_perc_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="1" tabsequence=30 border="5" color="0" x="201" y="2" height="18" width="116" format="[general]" html.valueishtml="0" name=min_amt visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="1" tabsequence=40 border="5" color="0" x="319" y="2" height="18" width="131" format="[general]" html.valueishtml="0" name=max_amt visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=header alignment="2" text="Minimum Amount" border="6" color="0" x="201" y="2" height="16" width="116" html.valueishtml="0" name=min_amt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Maximum Amount" border="6" color="0" x="319" y="2" height="16" width="131" html.valueishtml="0" name=max_amt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
$PBExportHeader$d_commisiondet21.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=273 color="536870912" )
table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=comm_table dbname="comm_hdr.comm_table" )
column=(type=char(60) update=yes updatewhereclause=yes name=descr dbname="comm_hdr.descr" )
column=(type=char(20) update=yes updatewhereclause=yes name=sh_descr dbname="comm_hdr.sh_descr" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="comm_hdr.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="comm_hdr.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="comm_hdr.chg_term" )
column=(type=char(1) update=yes updatewhereclause=yes name=comm_criteria dbname="comm_hdr.comm_criteria" initial="I" values="ITEM_WISE I/VALUE_WISE V/" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"comm_hdr~" ) COLUMN(NAME=~"comm_hdr.comm_table~") COLUMN(NAME=~"comm_hdr.descr~") COLUMN(NAME=~"comm_hdr.sh_descr~") COLUMN(NAME=~"comm_hdr.chg_date~") COLUMN(NAME=~"comm_hdr.chg_user~") COLUMN(NAME=~"comm_hdr.chg_term~") COLUMN(NAME=~"comm_hdr.comm_criteria~")WHERE( EXP1 =~"~~~"COMM_HDR~~~".~~~"COMM_TABLE~~~"~" OP =~"=~" EXP2 =~":commtable~" ) ) ARG(NAME = ~"commtable~" TYPE = string) " update="COMM_HDR" updatewhere=1 updatekeyinplace=no arguments=(("commtable", string)) )
groupbox(band=detail text="Basic"border="2" color="33554432" x="29" y="10" height="129" width="501" name=gb_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="0" x="460" y="108" height="16" width="61" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="0" x="305" y="108" height="16" width="61" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change Term:" border="0" color="33554432" x="373" y="108" height="16" width="83" html.valueishtml="0" name=chg_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Commission Criteria:" border="0" color="33554432" x="289" y="80" height="15" width="143" html.valueishtml="0" name=t_1 visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=40 border="5" color="33554432" x="435" y="80" height="16" width="77" format="[general]" html.valueishtml="0" name=comm_criteria visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=upper ddlb.useasborder=yes ddlb.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Commission Table:" border="0" color="33554432" x="37" y="28" height="16" width="114" html.valueishtml="0" name=comm_table_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Description:" border="0" color="33554432" x="37" y="54" height="16" width="114" html.valueishtml="0" name=descr_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change Date:" border="0" color="33554432" x="37" y="108" height="16" width="114" html.valueishtml="0" name=chg_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Short Description:" border="0" color="33554432" x="37" y="80" height="16" width="114" html.valueishtml="0" name=sh_descr_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="33554432" x="155" y="28" height="16" width="85" format="[general]" html.valueishtml="0" name=comm_table visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="0" x="155" y="108" height="16" width="61" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change User:" border="0" color="33554432" x="223" y="108" height="16" width="78" html.valueishtml="0" name=chg_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=30 border="5" color="33554432" x="155" y="80" height="16" width="126" format="[general]" html.valueishtml="0" name=sh_descr visible="1" edit.limit=20 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="33554432" x="155" y="54" height="16" width="366" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=60 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
$PBExportHeader$d_commisiondet23.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=340 color="536870912" )
table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=comm_table dbname="comm_by_value.comm_table" )
column=(type=char(3) update=yes updatewhereclause=yes key=yes name=line_no dbname="comm_by_value.line_no" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=min_amt dbname="comm_by_value.min_amt" initial="0" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=max_amt dbname="comm_by_value.max_amt" initial="0" )
column=(type=char(1) update=yes updatewhereclause=yes name=comm_type dbname="comm_by_value.comm_type" values="Fixed F/Percentage P/" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=comm_perc dbname="comm_by_value.comm_perc" )
column=(type=datetime update=yes updatewhereclause=yes name=eff_date dbname="comm_by_value.eff_date" )
column=(type=datetime update=yes updatewhereclause=yes name=valid_upto dbname="comm_by_value.valid_upto" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"comm_by_value~" ) COLUMN(NAME=~"comm_by_value.comm_table~") COLUMN(NAME=~"comm_by_value.line_no~") COLUMN(NAME=~"comm_by_value.min_amt~") COLUMN(NAME=~"comm_by_value.max_amt~") COLUMN(NAME=~"comm_by_value.comm_type~") COLUMN(NAME=~"comm_by_value.comm_perc~") COLUMN(NAME=~"comm_by_value.eff_date~") COLUMN(NAME=~"comm_by_value.valid_upto~")WHERE( EXP1 =~"~~~"COMM_BY_VALUE~~~".~~~"COMM_TABLE~~~"~" OP =~"=~" EXP2 =~":commtable~" LOGIC =~"and~" ) WHERE( EXP1 =~"~~~"COMM_BY_VALUE~~~".~~~"LINE_NO~~~"~" OP =~"=~" EXP2 =~":lineno~" ) ) ARG(NAME = ~"commtable~" TYPE = string) ARG(NAME = ~"lineno~" TYPE = string) " update="COMM_BY_VALUE" updatewhere=1 updatekeyinplace=no arguments=(("commtable", string),("lineno", string)) )
groupbox(band=detail text="Basic"border="2" color="33554432" x="18" y="3" height="119" width="639" name=gb_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="CommisionType:" border="0" color="0" x="27" y="46" height="16" width="116" html.valueishtml="0" name=comm_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=6 alignment="0" tabsequence=20 border="5" color="33554432" x="513" y="46" height="16" width="136" format="[general]" html.valueishtml="0" name=comm_perc visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Maximum Amount:" border="0" color="0" x="27" y="73" height="15" width="116" html.valueishtml="0" name=max_amt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=3 alignment="0" tabsequence=40 border="5" color="33554432" x="513" y="73" height="16" width="136" format="[general]" html.valueishtml="0" name=min_amt visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Effective Date:" border="0" color="0" x="27" y="98" height="16" width="116" html.valueishtml="0" name=eff_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="CommisionTable:" border="0" color="0" x="27" y="20" height="16" width="116" html.valueishtml="0" name=comm_table_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="255" x="513" y="20" height="16" width="136" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=5 alignment="0" tabsequence=10 border="5" color="33554432" x="147" y="46" height="16" width="130" format="[general]" html.valueishtml="0" name=comm_type visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=upper ddlb.useasborder=yes ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Commision Percentage:" border="0" color="0" x="287" y="46" height="16" width="222" html.valueishtml="0" name=comm_perc_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=4 alignment="0" tabsequence=30 border="5" color="33554432" x="147" y="73" height="16" width="136" format="[general]" html.valueishtml="0" name=max_amt visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Minimum Amt:" border="0" color="0" x="287" y="73" height="15" width="222" html.valueishtml="0" name=min_amt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Valid Upto:" border="0" color="0" x="287" y="98" height="15" width="222" html.valueishtml="0" name=valid_upto_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="255" x="147" y="20" height="16" width="136" format="[general]" html.valueishtml="0" name=comm_table visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Line No:" border="0" color="0" x="287" y="20" height="15" width="222" html.valueishtml="0" name=line_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=7 alignment="0" tabsequence=50 border="5" color="33554432" x="147" y="98" height="16" width="136" format="dd/mm/yy" html.valueishtml="0" name=eff_date visible="1" editmask.useformat=yes editmask.mask="mm/dd/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=8 alignment="0" tabsequence=60 border="5" color="33554432" x="513" y="98" height="16" width="136" format="dd/mm/yy" html.valueishtml="0" name=valid_upto visible="1" editmask.useformat=yes editmask.mask="mm/dd/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
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