कुल पेज दृश्य

शनिवार, 23 जुलाई 2022

Tally TDL chapter 287 for Easy Copy Paste by Rajiv Mishra Computer Class


 [#Form: Master Accounting Form]

Delete: Bottom Buttons : Master Group, Master Ledger, Master VchType, Blank Button ;, Master Company Operations, Master Configure

Delete: Option : CstCat Buttons : $$IsCostCategoryOn

Delete: Option : CstCtr Buttons : $$IsCostCentresOn

Delete: Option : Employee Buttons : ($$AddOnInfo:payrollEnabled) AND $$IsPayrollOn

Delete: Option : Budget Buttons : $$IsBudgetsOn

Delete: Option : Currency Buttons : $$IsMultiCurrencyOn


[#Form: Master Inventory Form]

Delete: Bottom Buttons : Master Stock Group, Master Stock Item, Master Units, Master VchType, Blank Button ;, Master Company Operations, Master Configure

Delete: Option : StockCat Buttons : $$IsStockCategoryOn

Delete: Option : Godown Buttons : $$IsMultiGodownOn

[#Form: Multi Master Accounting Form]

Delete: Bottom Buttons : Multi Master Group, Multi Master Ledger, Blank Button ;, Master Company Operations

Delete: Option : Multi CstCat Buttons : $$IsCostCategoryOn

Delete: Option : Multi CstCtr Buttons : $$IsCostCentresOn

Delete: Option : Multi Employee Buttons : ($$AddOnInfo:payrollEnabled) AND $$IsPayrollOn

[#Form: Multi Master Inventory Form]

Delete: Bottom Buttons : Multi Master Stock Group, Multi Master Stock Item, Blank Button;, Master Company Operations

Delete: Option : Multi StockCat Buttons : $$IsStockCategoryOn

Delete: Option : Multi Godown Buttons : $$IsMultiGodownOn


[#Button : ChqConfigFill]

Delete : Key

Add: Key: Ctrl+D

Title : $$LocaleString:"Copy From"

Action : Alter : ChqConfigFillRep


[#Button: Master CstCtr]

Key: Ctrl+Alt+C

Action : Replace : Cost Centres

Title : $$LocaleString:"Cost Centre"

Inactive: NOT $IsCostCentresOn:Company:##SVCurrentCompany

Option : Sec Master CstCtr : $$InExecuteMode


[#Button: Master StockCat]

Delete : Key

Add: Key: Ctrl+Alt+C

Action : Replace : Stock Category

Title : $$LocaleString:"Category"

Inactive: NOT $IsStockCategoryOn:Company:##SVCurrentCompany

Option : Sec Master StockCat : $$InExecuteMode


[#Button: Multi Master CstCtr]

Delete : Key

Add: Key: Ctrl+Alt+C

Action : Replace : Multi Cost Centre

Title : $$LocaleString:"Cost Centre"

Inactive: NOT $IsCostCentresOn:Company:##SVCurrentCompany


[#Button: Multi Master StockCat]

Delete : Key

Add: Key: Ctrl+Alt+C

Action : Replace : Multi Stock Category

Title : $$LocaleString:"Category"

Inactive: NOT $IsStockCategoryOn:Company:##SVCurrentCompany


;

[#Button: Invoice Button]

Key : Ctrl+F

Action : Set : InvoicingModeFlag : NOT ##InvoicingModeFlag

;;Action List : view name key, invoice mode flag key

Title : if ##InvoicingModeFlag then $$LocaleString:"As Voucher" else $$LocaleString:"As Invoice"

Inactive : (NOT $$IsInvoicingOn AND NOT ##InvoicingModeFlag) OR +

(NOT @@IsSales AND NOT @@IsCreditNote AND NOT @@IsDebitNote AND NOT @@IsPurchase)


[#Button: Master VchType]

Key: Ctrl+F


[#Key: AL Voucher Type]

Key: Ctrl+F



[System: Form Keys]

Key : Field Copy C, Field Paste V


[Key : Field Copy C]

Key : Ctrl+C

Action : Field Copy


[Key : Field Paste V]

Key : Ctrl+V

Action : Field Paste


[#Form: List of Accounts]

Delete: Button: AL CstCtr

Add: Button: AL CstCtr New


[Button: AL CstCtr New]

Key : Ctrl+D

Title : $$LocaleString:"Cost Centres"

Action : Set : AccountType : $$SysName:CostCentres

Inactive: $$IsSysNameEqual:CostCentres:##AccountType OR NOT $$IsCostCentresOn:$$CurrentCompany

 


Tally TDL chapter 286 For ledger group name in List of ledger during voucher Entry By Rajiv Mishra Computer Class

 

[#Field:EI COnsignee]

Delete:Table

Add:Table:MyLedgerColl


[Collection:MyLedgerColl]


Use : Alias Collection

Title : $$LocaleString:"List of Ledger"

Type : Ledger

Fetch : Name

Report : Ledger

Variable : LLedger

Trigger : LLedger

IsODBCTable : Yes

Add : SubTitle : $$LocaleString:"Ledger Name","Parent Group"

Add :Format :$Parent

Fetch:parent

शनिवार, 16 जुलाई 2022

Tally TDL Chapter 283 for Cost center in Outstanding Reports

 



[#Line: BILLCol1]

Add: Option: RAJIVT1: Yes


[!Line: RAJIVT1]

Add : Right Field : F00xBillCost

Local: Field: F00xBillCost : Set as:"Cost"


[#Line: BILLCol2]

Add: Option: RAJIVT2: Yes

[!Line: RAJIVT2]

Add : Right Field : F00xBillCost

Local: Field: F00xBillCost : Set as:"Center"




[#Line: BILL Detail]

Add: Option: RAJIV: Yes

[!Line: RAJIV]

Add :Right Field: F00xBillCost



[Field: F00xBillCost]

Use: Name Field

Width: 10

Skip: YES

Align: Center

Color: red

Set as: if $$IsEmpty:$ObjCostNameI Then $ObjCostNameL Else $ObjCostNameI

Border: Thin Left

Style: Normal


[Function: Func_GetCostCenterName]

Parameter: pMasterID : String

Parameter: pIsItemWise : Logical

Fetch Object: Voucher : ##pMasterID : COSTCENTRENAME;LedgerEntries, Category Allocations

Variable: vCCName : String : "Empty"

Return: String


001 : SET OBJECT : (Voucher , ##pMasterID).

002 : If: ##pIsItemWise

010 : WALK COLLECTION : LedgerEntries

020 : Walk Collection : InventoryEntries

030 : Walk Collection : AccountingAllocations

040 : Walk Collection : Category Allocations

050 : Walk Collection : CostCentreAllocations

100 : Set: vCCName : $Name

110 : End Walk ; Cost Centre Allocations

120 : End Walk ; Category Allocations

130 : End Walk ; AccountingAllocations

140 : End Walk ; InventoryEntries

150 : End Walk ; LedgerEntries

200 : Else

210 : WALK COLLECTION : LedgerEntries

240 : Walk Collection : Category Allocations

250 : Walk Collection : CostCentreAllocations

300 : Set: vCCName : $Name

310 : End Walk ; Cost Centre Allocations

320 : End Walk ; Category Allocations

350 : End Walk ; LedgerEntries

400 : End if

900 : Return: ##vCCName


[#Object: Bill]

ObjMstID : $$CollectionField:$MasterID:First:LedgerEntries

ObjCostNameL : $$Func_GetCostCenterName:$ObjMSTID:No

ObjCostNameI : $$Func_GetCostCenterName:$ObjMSTID:YES


[#Collection: Ledger Bills]

Fetch: ObjMSTID,ObjCostNameL,ObjCostNameI


[#Collection: Group LedgerBills]

Fetch: ObjMSTID,ObjCostNameL,ObjCostNameI


[#Collection: Company Receivables]

Fetch: ObjMSTID,ObjCostNameL,ObjCostNameI



[#Collection: Company Payables]

Fetch: ObjMSTID,ObjCostNameL,ObjCostNameI




;;============================================================================================================

;; Add In Range Filter ( Alt + F12 )

;;============================================================================================================


[#Collection: MethodTable]

Add: Option: O00xAddInMethod : YES


[!Collection: O00xAddInMethod]

Add: Object: O00xCostCenterL,O00xCostCenterI


[Object: O00xCostCenterL]

User Method Name : $$LocaleString:"CostCenter_1"

Method Name : "ObjCostNameL"

Collection Source : ""

Method Type : "String"

Secondary Object : ""

[Object: O00xCostCenterI]

User Method Name : $$LocaleString:"CostCenter_2"

Method Name : "ObjCostNameI"

Collection Source : ""

Method Type : "String"

Secondary Object : ""

शुक्रवार, 15 जुलाई 2022

Tally TDL chapter 282 for sales & Purchase history during voucher entry by Rajiv Mishra computer class

 



Useful Keys of this TDL CODE:

place your cursor on the name of stock item and press F4 - to see Sales history, F5 to see Purchase history, F6 - to see both the sales & purchase history

ALT + E - to export sales & Purchase history in EXCEL, MS WORD, PDF, HTML etc

;;===========Rajiv Mishra Code starts here================


[Collection : ClnSaleInfo]

    Type     : Vouchers : Stock Item

    Child Of : $$BaseOwner:#VchStockItem

    Filter   : SalesFilter

    Sort     : @@Default : -$Date

    Fetch    : LedgerEntries.PartyLedgerName, LedgerEntries.LedgerName


[System : Formula]

    MStk           : $StockItemName = $$BaseOwner:#VCHStockItem

    SalesFilter    : $$IsSales:$VoucherTypeName

    PurchaseFilter : $$IsPurchase:$VoucherTypeName

;   SalesPurFilter : $$IsPurchase:$VoucherTypeName or $$IsSales:$VoucherTypeName

    ExtractYear    : $$FinYearBeg:##SVCurrentDate:$StartingFrom:Company:##SVCurrentCompany

    Historybeginyear : ExtractYear - 3  ;<----Change to capture specific number of years


[#Field : VCH StockItem]

    Key : SalesHistory

    Key : PurchaseHistory

    Key : SalesPurHistory

    Tooltip : "Press F5 for Purchase History, F4 for Sales History, F6 for Both"


[Key : SalesHistory]

    Key    : F4

    Action : Display : RptSalesHistory


[Key: ExportButton11]

        Key     : Alt+E

        Title   : $$LocaleString:"Export"

        Type    : ExportButton

        Action  : Export Report


[Report : RptSalesHistory]

    Form : FrmSalesHistory

;Use below 3 lines if you want to get report for specific no. of years ste above in system formula

;Variable : HistoryFrom, HistoryTo

;     Set : HistoryFrom : "01/04" + @@Historybeginyear

;     Set : HistoryTo : $$FinYearEnd:##SVCurrentDate:$StartingFrom:Company:##SVCurrentCompany


[Form : FrmSalesHistory]

    Part : PrtSalesHistory

    Height     : if $$InPrintMode then 8.20 else 100% Screen

    Width    : if $$InPrintMode then 5.70 else 75% Screen

    Use        : DSP Template

    Horizontal Align: Right

    ;Vertical Alignment : Bottom

    Buttons: PrintButton, ExportButton

    Background: @@SV_RELEASEDBLUE


[Part : PrtSalesHistory]

    Line   : LnSalesHistoryTitle, LnSalesHistoryHD, LnSalesHistoryData

    Repeat : LnSalesHistoryData : ClnSaleInfo

    Scroll : Vertical


[Line : LnSalesHistoryTitle]

    Field : FldVwStkItem

    Fixed : Yes


[Field : FldVwStkItem]

    Use        : Short Name Field

    Set As     : "Sales History For : " + #VCHStockItem

    Full Width : Yes

    Align      : Centre      

  

[Line : LnSalesHistoryHD]

    Use : LnSalesHistoryData

    Local : Field : Default : Type : String

    ;Local : Field : Default : Align : Centre  

    Local : Field : FldSalesHistory7 : Set As : "Sl. No"

    Local : Field : FldSalesHistory7 : Align  : Center

    Local : Field : FldSalesHistory0 : Set As : "Voucher Type"

    Local : Field : FldSalesHistory1 : Set As : "Invoice No"

    Local : Field : FldSalesHistoryDt: Set As : "Date"

    Local : Field : FldSalesHistoryDt: Align  : Center

    Local : Field : FldSalesHistory2 : Set As : "Party Name"

    Local : Field : FldSalesHistorySr: Set as : "Inv Sl. No"

    Local : Field : FldSalesHistorySr: Align  : Center

    Local : Field : FldSalesHistory3 : Set As : "Qty"

    Local : Field : FldSalesHistory3 : Align  : Center

    Local : Field : FldSalesHistory4 : Set As : "Rate"

    Local : Field : FldSalesHistory4 : Align  : Left

    Local : Field : FldSalesHistory5 : Set As : "Discount"

    Local : Field : FldSalesHistory6 : Set As : "Amount"

    Local : Field : FldSalesHistory6 : Align  : Right

    Local : Field : FldSalesHistory8 : Set As : "IGST Rate"

    Local : Field : FldSalesHistory8 : Align  : Center

    Local : Field : FldSalesHistory9 : Set As : "Desc1"

    Local : Field : FldSalesHistory10: Set As : "Desc2"

    Local : Field : FldSalesHistory11: Set As : "Desc3"

    Border : Column Titles

    Fixed : Yes


[Line : LnSalesHistoryData]

    Field : FldSalesHistory7, FldSalesHistory1, FldSalesHistoryDt, FldSalesHistory2 ;;FldSalesHistory0,

    Right Field : FldSalesHistorySr, FldSalesHistory3, FldSalesHistory4, FldSalesHistory5, FldSalesHistory6, FldSalesHistory8, FldSalesHistory9, FldSalesHistory10, FldSalesHistory11

        Local : Field : FldSalesHistory7 : Set As : $$Line

    Local : Field : FldSalesHistory0 : Set As : $VoucherTypeName

    Local : Field : FldSalesHistory1 : Set As : $VoucherNumber

    Local : Field : FldSalesHistoryDt: Set As : $Date

    Local : Field : FldSalesHistory2 : Set As : $PartyLedgerName

    Local : Field : FldSalesHistorySr: Set As : $$FilterValue:$Line:InventoryEntries:1:mStk

    Local : Field : FldSalesHistory3 : Set As : $$FilterValue:$BilledQty:InventoryEntries:1:mStk

    Local : Field : FldsalesHistory4 : Set As : $$FilterValue:$Rate:InventoryEntries:1:mStk

    Local : Field : FldSalesHistory5 : Set As : $$FilterValue:$discount:InventoryEntries:1:mStk

    Local : Field : FldSalesHistory6 : Set As : $$FilterValue:$Amount:InventoryEntries:1:mStk

    Local : Field : FldSalesHistory8 : Set As : $$FilterValue:$GSTRate:InventoryEntries:1:mStk ;to be fetched from the voucher, Not from Item Master

    Local : Field : FldSalesHistory9 : Set As : $$FilterValue:$BasicUserDescription:InventoryEntries:1:mStk

    Local : Field : FldSalesHistory10: Set As : $$FilterValue:$BasicUserDescription:BasicUserDescription:2:InventoryEntries:1:mStk

    Local : Field : FldSalesHistory11: Set As : $$FilterValue:$BasicUserDescription:BasicUserDescription:3:InventoryEntries:1:mStk

    ;Empty If : NOT $$IsSalesOrder:$VoucherTypeName

    Explode : PrtsalesHistoryData : $$FilterCount:InventoryEntries:mStk -1 > 0

        Remove If : $$Line > 50  ;to limit the data to 50 transactions each for purchase and sale

    Option : Alter on Enter

    Option: DisplayOnAltEnter


[Part : PrtsalesHistoryData]

    Line : LnsalesHistoryData1

    Repeat : LnsalesHistoryData1 : InventoryEntries


[Line : LnsalesHistoryData1]

    Field : FldSalesHistory7, FldSalesHistory1, FldSalesHistoryDt, FldSalesHistory2

    Right Field : FldSalesHistorySr, FldSalesHistory3, FldSalesHistory4, FldSalesHistory5, FldSalesHistory6, FldSalesHistory8, FldSalesHistory9, FldSalesHistory10, FldSalesHistory11

    Local : Field : FldSalesHistory7 : Set As : $$Line

    Local : Field : FldSalesHistory0 : Set As : $$Owner:$VoucherTypeName

    Local : Field : FldSalesHistory1 : Set As : $$Owner:$VoucherNumber

    Local : Field : FldSalesHistoryDt: Set As : $$Owner:$Date

    Local : Field : FldSalesHistory2 : Set As : $$Owner:$PartyLedgerName

    Local : Field : FldSalesHistorySr: Set As : $Line

    Local : Field : FldSalesHistory3 : Set As : $BilledQty

    Local : Field : FldSalesHistory4 : Set As : $Rate

    Local : Field : FldSalesHistory5 : Set As : $Discount

    Local : Field : FldSalesHistory6 : Set As : $Amount

    Local : Field : FldSalesHistory8 : Set As : $GSTRate  ;to be fetched from the voucher, Not from Item Master

    Local : Field : FldSalesHistory9 : Set As : $BasicUserDescription:1

    Local : Field : FldSalesHistory10: Set As : $BasicUserDescription:BasicUserDescription:2

    Local : Field : FldSalesHistory11: Set As : $BasicUserDescription:BasicUserDescription:3

    Empty if : NOT @@mStk  OR $$ItemSerial=0  


[Field : FldSalesHistory0]

    Use : Short Name Field  

    Style: HistoryBody

    Align: Center

    Alter: Voucher

    Display: Voucher


[Field : FldSalesHistory1]

    Use : Short Name Field  

    Style: HistoryBody

    Align: Center

    Alter: Voucher

    Display: Voucher


[Field : FldSalesHistoryDt]

    Use : Short Date Field  

    Style: HistoryBody

    Alter: Voucher

    Display: Voucher


[Field : FldSalesHistory2]

    Use : Name Field

    Style: HistoryBody

    Width: Full Width

    Indent : 1

    Alter: Voucher

    Display: Voucher


[Field : FldSalesHistorySr]

    Use : Short Name Field

    Style: HistoryBody

    Align : Right

    Alter: Voucher

    Display: Voucher


[Field : FldSalesHistory3]

    Use : Qty Field

    Style: HistoryBody

    Align : Right

    Alter: Voucher

    Display: Voucher


[Field : FldsalesHistory4]

    Use : Rate Price Field

    Style: HistoryBody

    Width: Full Width

    Indent : 2

    Alter: Voucher

    Display: Voucher


[Field : FldsalesHistory5]

    Use : Number Field

    Align : Right

    Format : "Percentage"

    Style: HistoryBody

    Alter: Voucher

    Display: Voucher


[Field : FldsalesHistory6]

    Use : Amount Field

    Style: HistoryBody

    Alter: Voucher

    Display: Voucher


[Field : FldSalesHistory7]

    Use : Short Name Field  

    Style: HistoryBody

    Align: Center

    Alter: Voucher

    Display: Voucher


[Field : FldSalesHistory8]

    Use : Number Field  

    Style: HistoryBody

    Align: Center

    Alter: Voucher

    Display: Voucher


[Field : FldSalesHistory9]

    Use : Short Name Field  

    Style: HistoryBody

    Align: Center

    Alter: Voucher

    Display: Voucher


[Field : FldSalesHistory10]

    Use : Short Name Field  

    Style: HistoryBody

    Align: Center

    Alter: Voucher

    Display: Voucher


[Field : FldSalesHistory11]

    Use : Short Name Field  

    Style: HistoryBody

    Align: Center

    Alter: Voucher

    Display: Voucher


[Style: HistoryBody]

    Use     : Tiny

    Bold    : Yes


[Collection : ClnPurchaseInfo]

    Type     : Vouchers : Stock Item

    Child Of : $$BaseOwner:#VchStockItem

    Filter   : PurchaseFilter

    Sort     : @@Default : -$Date

    Fetch    : LedgerEntries.PartyLedgerName, LedgerEntries.LedgerName


[Key : PurchaseHistory]

    Key    : F5

    Action : Display : RptPurchaseHistory


[Report : RptPurchaseHistory]

    Form : FrmPurchaseHistory

;Use below 3 lines if you want to get report for specific no. of years ste above in system formula

;Variable : HistoryFrom, HistoryTo

;     Set : HistoryFrom : "01/04" + @@Historybeginyear

;     Set : HistoryTo : $$FinYearEnd:##SVCurrentDate:$StartingFrom:Company:##SVCurrentCompany

  

[Form : FrmPurchaseHistory]

    Part : PrtPurchaseHistory

    Height     : if $$InPrintMode then 8.20 else 100% Screen

    Width    : if $$InPrintMode then 5.70 else 50% Screen

    Use    : DSP Template

    Horizontal Align: Left

    Buttons: PrintButton, ExportButton

    Background: @@SV_RELEASEDYELLOW

  

[Part : PrtPurchaseHistory]

    Line   : LnPurchaseHistoryTitle, LnPurchaseHistoryHD, LnPurchaseHistoryData

    Repeat : LnPurchaseHistoryData : ClnPurchaseInfo

    Scroll : Vertical



[Key : SalesPurHistory]

    Key    : F6

    Action : Display : RptSalesPurHistory


[Report : RptSalesPurHistory]

    Form : FrmSalesPurHistory

;Use below 3 lines if you want to get report for specific no. of years ste above in system formula

;Variable : HistoryFrom, HistoryTo

;     Set : HistoryFrom : "01/04" + @@Historybeginyear

;     Set : HistoryTo : $$FinYearEnd:##SVCurrentDate:$StartingFrom:Company:##SVCurrentCompany


[Form : FrmSalesPurHistory]

    Part      : PrtPurchaseHistory

    Part      : PrtSalesHistory

    Height    : if $$InPrintMode then 4.10 else 100% Screen

    Width      : if $$InPrintMode then 5.70 else 50% Screen

    Use      : DSP Template

    Horizontal Align: Left

;    Vertical Alignment : Bottom

    Background: @@SV_RELEASEDGREEN

    Buttons   : PrintButton, ExportButton


[Line: LnPurchaseHistoryTitle]

;    Use   : LnSalesHistoryTitle

    Field : FldVwStkItem2

    Fixed : Yes


[Field : FldVwStkItem2]

    Use        : Short Name Field

    Set As     : "Purchase History For : " + #VCHStockItem

    Full Width : Yes

    Align      : Centre   


[Line: LnPurchaseHistoryHD]

    Use: LnSalesHistoryHD

  

[Line: LnPurchaseHistoryData]

    Use: LnSalesHistoryData


;;===================================================================================

;;'Books Beginning From' & 'Date of Last Entry'

;;Set : SVFRomDate : $Booksfrom:Company:##SVCurrentCompany

;;Set : SVToDate : $LastVoucherDate:Company:##SVCurrentCompany

रविवार, 24 अप्रैल 2022

Tally Chapter 281 TDL for Sub Menu Readymade Template for Documents By Rajiv Mishra Computer Class

 

Watch the full video to understand this code better




[#menu: gateway of tally]


Title : "Rajiv Mishra"


item : My Documents  : Menu : List of Documents 


[Menu : List of Documents]


item : ITR Copy : Menu : ITR Copy

item : "" : Menu : ""


item : Registration Certificates : Menu : Registration Certificates

item : "" : Menu : ""


item : Selected Websites : Menu : My Websites

item : "" : Menu : ""


item : Selected Softwares : Menu : My Softwares


[Menu: ITR Copy]

Item : 2021-22 : Browse : ""

Item : 2020-21 : Browse : ""

Item : 2019-20 : Browse : ""



[Menu: Registration Certificates]

Item :  Memo : Browse : ""

Item :  "" : Browse : ""

Item :  PAN : Browse : ""

Item :  GST : Browse : ""

Item :  TAN : Browse : ""




[Menu: My Websites]

Item :  Eway Bill : Browse url : "https://www.youtube.com/c/RajivMishraSir"



[Menu: My Softwares]

Item : Excel : Browse : ""

Item : Photoshop : Browse : ""

Item : MS Word : Browse : ""


शनिवार, 23 अप्रैल 2022

Tally Chapter 280 TDL for DAYBOOK Gridlines By Rajiv Mishra Computer Class

 

Watch the full video to learn more about TDL.






[#Line:DSP VchDetail]

Border:Thin Bottom



[#Line: BSDetail]

Border:Thin Bottom



[#Line: PLDetail]

Border:Thin Bottom



[#Line:CI InvInfo]

Border:Thin Bottom


[#Line:DSP Accline]

Border:Thin Bottom


[#Line:EI InvInfo]

Border:Thin Bottom


[#Field: DSP ClDrAmt]

Border:Thin Left


[#Field: DSP ClCrAmt]

Border:Thin Left


[#Field: DSP vchDate]

Border:Thin Left Right


[#Field: DSP vchnumber]

Border:Thin Left Right


[#Field: DSP vchDrAmt]

Border:Thin Left Right


[#Field: DSP vchCrAmt]

Border:Thin Right


[#Field: DSPDBDrAmt]

Border:Thin Left Right


[#Field: DSPDBCrAmt]

Border:Thin Right

गुरुवार, 21 अप्रैल 2022

Tally Chapter 277 TDL for Auto Carry Forward Number By Rajiv Mishra Computer Class

 

Wathc the full video to get full coding.



[#Line: EI Baseinfo]

Lines : EI Consignee, EI Trader NatureofPurc, EI PartyLimit

Add:Line:After: EI Consignee:My Line


[Line:My Line]

Field:Medium Prompt,My Field1


Local:Field:Medium Prompt:Set as:"Tracking No"

Local:Field:Medium Prompt:Color:blue

Local:Field:Medium Prompt:Background:Yellow

Local:Field:Medium Prompt:border:Thick box


[Field:My Field1] ;;

Use:Name Field ;;

Set as    :    $$String:@@LTrkNo

Storage:TrkNo

Set Always:Yes


[System:UDF]

TrkNo:String:3000

       



[system    :    formulae]

    LTrkNo                    :    $$CollectionField:$TrkNo:1:TrkVouchers

   

[Collection    :    TrkVouchers]

            Type                     :     Vouchers : VoucherType

            Child of             :     $$VchTypeSales

            Belongs to     :     yes

            Fetch                :    MasterId, VoucherNumber, TrkNo   

            Sort                    :    @@Increasing    :    -$MasterId


Tally Chapter 276 TDL for Party Wise Sales Report By Rajiv Mishra Computer Class

 


Watch the full video to get full coding




[Form:TallyPrimeParty]


    Use        : DSP Template

    Parts        :PQWSTitle,PQWSPeriod,TallyPrimeParty

    Button    : ExplodeFlag,ChangePeriod

    Bottom Toolbar Buttons    : EnterToEdit,BottomToolBarBtn8,BottomToolBarBtn9,BottomToolBarBtn10

    Option        : Set Auto Vch Option     : ##DoSetAutoColumn AND $$SetAutoColumns:StockItemNameRepeat

      Set Always : SV Print Orientation : "Landscape"

Width        : 100% Page

    Space Left    : 2 mms

     Space Right    : 2 mms



[Key: EnterToEdit]

    Key         : Enter

    Title       : $$LocaleString:"Explode"

    Type        : BottomToolBarBtn2   

    Action      : Explode



[Part:PQWSTitle]

    Line    : PQWSTitle

    Horizontal Align    : Center

   

[Part:PQWSPeriod]

    Line    : PQWSPeriod

   

[Line:PQWSTitle]   

    Field    : Simple Field   

    Local        : Field    : Simple Field    : Style    : Large Bold

    Local        : Field    : Simple Field    : Info    : "PARTY WISE TOTAL SALES AMOUNT"

    Local        : Field    : Simple Field    : Border: Thin Bottom

    Local        : Field    : Simple Field    : Align    : Center

   

[Line:PQWSPeriod]

    Right Field    : Name Field

    Local        : Field    : Name Field    : Info    : @@DSPDateStr

    Local        : Field    : Name Field    : Width    : 60

    Local        : Field    : Name Field    : Align    : Right











[!Form: Set Auto Vch Option]


[Part:TallyPrimeParty]


    Lines        :TallyPrimeParty Title,TallyPrimeParty Details

    BottomLines    :TallyPrimeParty Total

    Repeat        :TallyPrimeParty Details        : Party Name Repeat

    Scroll        : Vertical

    CommonBorder: Yes

    Total        :TallyPrimeParty Party,TallyPrimeParty Col Total


    [Line:TallyPrimeParty Title]


        Use        :TallyPrimeParty Details


        Local    : Field    : Default            : Type        : String

        Local    : Field    : Default            : Align        : RIGHT

Local    : Field    : PGWSSno    : Set as     : "SNO"

    Local    : Field    : PGWSSno    : Border     : Thin Left Right

        Local    : Field    :TallyPrimeParty Name        : Set as    : "Product Name"

        Local    : Field    :TallyPrimeParty Name        : ALIGN    : LEFT

        Local    : Field    :TallyPrimeParty Name        : Widespaced: Yes

        Local    : Field    :TallyPrimeParty Party        : Set as    : ##StockItemNameRepeat

        Local    : Field    :TallyPrimeParty Party        : Lines    : 0

        Local    : Field    :TallyPrimeParty ColTotal        : Set as    : "Total"

        Local    : Field    :TallyPrimeParty ColTotal        : Border     : Thin Left Right

        Border    : COLUMN TITLES

       


    [Line:TallyPrimeParty Details]


        Fields    :PGWSSno,TallyPrimeParty Name,TallyPrimeParty Party,TallyPrimeParty Col Total

        Repeat    :TallyPrimeParty Party

        Total    :TallyPrimeParty Party

        Explode    : PIMDExplodee    : ($$KeyExplode OR ##ExplodeFlag)    ; problem in exploding



[Part:PIMDExplodee]

    Line    : PIMDExplodee

    Repeat    : PIMDExplodee:PIMDPartyExplodee

    Border    : Thin Bottom




   

[Line:PIMDExplodee]

Use        :TallyPrimeParty Details


        Local    : Field    : Default            : Type        : String

        Local    : Field    : Default            : Align        : RIGHT

Local    : Field    : PGWSSno    : Set as     : ""

    Local    : Field    : PGWSSno    : Border     : Thin Left Right

        Local    : Field    :TallyPrimeParty Name        : Set as    : $stockitemexp

        Local    : Field    :TallyPrimeParty Name        : ALIGN    : LEFT

        Local    : Field    :TallyPrimeParty Party        : Set as    : $$ReportObject:$$CollectionFieldByKey:$Amount:@MyFormulaa:SalesVoucherPartyItemWiseTotalAmountCollexp

   

        Local    : Field    :TallyPrimeParty ColTotal        : Set as    :  $$Total:TallyPrimePartyParty

        Local    : Field    :TallyPrimeParty ColTotal        : Border     : Thin Left Right


[system : formula]

MyFormulaa    : ##StockItemNameRepeat + #TallyPrimePartyNam       


[Field:PGWSSno]

    Use        : NUMBER FIELD

    Set as    : $$Line

     Width : if $$inprintmode then 5 else 4

    Align    : Center

    Border    : Thin Left Right


        [Field:TallyPrimeParty Name]


            Use            : Name Field

            Set as        : $PartyLedgerRepeatNew

           

            Variable    : Stock Item Name

           

           


        [Field:TallyPrimeParty Party]


            Use            : Amount Field

            Set as        : $$ReportObject:$$CollectionFieldByKey:$Amount:@MyFormula:SalesVoucherPartyItemWiseTotalAmountColl

            MyFormula    : ##StockItemNameRepeat + #TallyPrimePartyName

            Format        : "NoZero"

            Border        : Thin Left


        [Field:TallyPrimeParty Col Total]


            Use            : Amount Field

            Set as        : $$Total:TallyPrimePartyParty

            Border        : Thin Left RIGHT


    [Line:TallyPrimeParty Total]


        Fields    :PGWSSno,TallyPrimeParty Name,TallyPrimeParty Party,TallyPrimeParty Col Total

        Repeat    :TallyPrimeParty Party


        Local    : Field    : Default            : Type        : String

        Local    : Field    : Default            : Align        : RIGHT

        Local    : Field    :PGWSSno        : Set as    : ""

        Local    : Field    :TallyPrimeParty Name        : Set as    : "Total"

        Local    : Field    :TallyPrimeParty Name        : ALIGN    : LEFT

        Local    : Field    :TallyPrimeParty Name        : Widespaced: Yes

        Local    : Field    :TallyPrimeParty Party        : Set as    : $$Total:TallyPrimePartyParty

        Local    : Field    :TallyPrimeParty ColTotal        : Set as    : $$Total:TallyPrimePartyColTotal

        Local    : Field    :TallyPrimeParty ColTotal        : Border     : Thin Left Right

        Border    : TOTALS

       


[Collection: SALES VOUCHER COLL]


    Type        : Voucher

    Filter        : SalesVoucherFilter

  


[Collection: SalesVoucherPartyItemWiseTotalAmountColl]


    Source Collection    : SALES VOUCHER COLL


    Walk                : Inventory Entries

    By                    : StockItemNameRepeat            : $PartyLedgerName            

    By                    : PartyLedgerRepeatNew            : $Parent:STOCKITEM:$StockItemName          

    Aggr Compute        : Amount        : SUM    : $Amount


    Search Key            : $StockItemNameRepeat + $PartyLedgerRepeatNew


; exploded part collection


[Collection: SalesVoucherPartyItemWiseTotalAmountCollEXP]


    Source Collection    : SALES VOUCHER COLL


    Walk                    : Inventory Entries

    By                    : StockItemNameRepeat            : $PartyLedgerName  

    By                    : PartyLedgerRepeatNew            : $Parent:STOCKITEM:$StockItemName            

    By                    : StockItemexp                : $StockItemName          

    Aggr Compute        : Amount        : SUM    : $Amount


    Search Key            : $StockItemNameRepeat + $StockItemexp



[Collection: Party Name Repeat]


    Source Collection    : SALES VOUCHER COLL


    Walk                : Inventory Entries

    By                    : PartyLedgerRepeatNew            :  $Parent:STOCKITEM:$StockItemName         

    Aggr Compute        : Amount        : SUM    : $Amount


   

[Collection: Item Name Repeat Coll]


    Source Collection    : SALES VOUCHER COLL


    Walk                : Inventory Entries

    By                    : StockItemNameRepeat            :   $PartyLedgerName   

    Aggr Compute        : Amount        : SUM    : $Amount




; explode collection


[Collection: PIMDPartyExplodee]

    Source Collection    : SALES VOUCHER COLL


    Walk                : Inventory Entries

    By                    : PartyLedgerRepeatNew            :  $Parent:STOCKITEM:$StockItemName

    By                    : StockItemexp                :   $StockItemName

    Aggr Compute        : Amount        : SUM    : $Amount


    


[Variable: StockItemNameRepeat]

   

    Type        : String

    Repeat        : ##DSPRepeatCollection


[System: Formula]


    SalesVoucherFilter    : $$IsSales:$VoucherTypeName

    


सोमवार, 4 अप्रैल 2022

Tally Chapter 264 TDL to PRINT CA Name in Balancesheet By Rajiv Mishra Computer Class

 




Few lines are missing here.

Watch the full video to get full coding.




[#Form: Balance Sheet]

 

 Add :  Part : At end : PrintAuditerDetials


[Part : PrintAuditerDetials]

 

 Line  :PrintAuditerDetials1,PrintAuditerDetials2,PrintAuditerDetials3,PrintAuditerDetials4

 Local : Field : Default : Width : 30


 

 [Line : PrintAuditerDetials1]

 

  Field :PrintAuditerDetials1

  

  [Field :PrintAuditerDetials1]

   

   Set As : "Prepared By :"


 [Line :PrintAuditerDetials2]

  

  Field :PrintAuditerDetials2

  Border : Thin top 

 Local : Field : Default : Style : Small Bold

  

  [Field :PrintAuditerDetials2]

   

   Set As : "Shree Krisjna Associates, CA MR. RAJIV "


 [Line :PrintAuditerDetials3]

  

   Field :PrintAuditerDetials3

  

  [Field :PrintAuditerDetials3]

   

   Set As : "Regd Office : - A-123, Yamuna Vihar, Delhi-53"


 [Line :PrintAuditerDetials4]

  

  Field :PrintAuditerDetials4

  Border : Thin Bottom

  

  [Field :PrintAuditerDetials4]

   

   Set As : "Branch Office : F-8, 1st Floor IIPL Building, Delhi-94"


[#Form: BSBody Scr]


 Delete:   Part : PrintAuditerDetials









शनिवार, 2 अप्रैल 2022

Tally Chapter 262 TDL for Last Sales & Purchase History By Rajiv Mishra Computer Class

 





Few lines are missing here.

Pls watch the full video to get full coding.



[Collection : ClnSaleInfo]

Type : Vouchers : Stock Item

Child Of : $$BaseOwner:#VchStockItem

Filter : SalesFilter

Fetch : LedgerEntries.PartyLedgerName, LedgerEntries.LedgerName








[System : Formula]

MStk : $StockItemName = $$BaseOwner:#VCHStockItem

SalesFilter : $$IsSales:$VoucherTypeName

PurchaseFilter : $$IsPurchase:$VoucherTypeName




[Collection: Rama]

Use : Vouchers of Ledger

; Child of : #LedgerName






[#Field : Vch batch Rate]

Key : SalesHistory

Key : PurchaseHistory

Tooltip : "Press Alt + F9 for Purchase History & Alt + F8 for Sales History"


[Key : SalesHistory]

Key : 

Action : Display : RptSalesHistory


[Report : RptSalesHistory]

Form : FrmSalesHistory


[Form : FrmSalesHistory]

Part : PrtSalesHistory

Height : if $$InPrintMode then 8.20 else 100% Screen

Width : if $$InPrintMode then 5.70 else 50% Screen

Horizontal Align: Right

Buttons: PrintButton, ExportButton


[Part : PrtSalesHistory]

Line : LnSalesHistoryTitle, LnSalesHistoryHD, LnSalesHistoryData

Repeat : LnSalesHistoryData : ClnSaleInfo

Scroll : Vertical


[Line : LnSalesHistoryTitle]

Field : FldVwStkItem

Fixed : Yes


[Field : FldVwStkItem]

Use : Short Name Field

Set As : "Sales History For : " + #VCHStockItem

Full Width : Yes

Align : Centre


[Line : LnSalesHistoryHD]

Use : LnSalesHistoryData

Local : Field : Default : Type : String

;Local : Field : Default : Align : Centre

Local : Field : FldSalesHistory0 : Set As : "Voucher Type"

Local : Field : FldSalesHistory1 : Set As : "Invoice No"

Local : Field : FldSalesHistoryDt: Set As : "Date"

Local : Field : FldSalesHistoryDt: Align : Center

Local : Field : FldSalesHistory2 : Set As : "Party Name"

Local : Field : FldSalesHistory3 : Set As : "Qty"

Local : Field : FldSalesHistory3 : Align : Center

Local : Field : FldSalesHistory4 : Set As : "Rate"

Local : Field : FldSalesHistory4 : Align : Left

Local : Field : FldSalesHistory5 : Set As : "Discount"

Local : Field : FldSalesHistory6 : Set As : "Amount"

Local : Field : FldSalesHistory6 : Align : Right

Border : Column Titles

Fixed : Yes


[Line : LnSalesHistoryData]

Field : FldSalesHistory1, FldSalesHistoryDt, FldSalesHistory2 ;;FldSalesHistory0,

Right Field : FldSalesHistory3, FldSalesHistory4, FldSalesHistory5, FldSalesHistory6

Local : Field : FldSalesHistory0 : Set As : $VoucherTypeName

Local : Field : FldSalesHistory1 : Set As : $VoucherNumber

Local : Field : FldSalesHistoryDt: Set As : $Date

;;Local : Field : FldSalesHistory2 : Set As : $PartyLedgerName


Local : Field : FldSalesHistory2 : Set As :$$Filter:$PartyLedgerName:LedgerEntries:1:rama


Local : Field : FldSalesHistory3 : Set As : $$FilterValue:$BilledQty:InventoryEntries:1:mStk

Local : Field : FldSalesHistory4 : Set As : $$FilterValue:$Rate:InventoryEntries:1:mStk

Local : Field : FldSalesHistory5 : Set As : $$FilterValue:$discount:InventoryEntries:1:mStk

Local : Field : FldSalesHistory6 : Set As : $$FilterValue:$Amount:InventoryEntries:1:mStk

;Empty If : NOT $$IsSalesOrder:$VoucherTypeName

Explode : PrtSalesHistoryData : $$FilterCount:InventoryEntries:mStk -1 > 0


[Part : PrtSalesHistoryData]

Line : LnSalesHistoryData1

Repeat : LnSalesHistoryData1 : InventoryEntries


[Line : LnSalesHistoryData1]

Field : FldSalesHistory1, FldSalesHistoryDt, FldSalesHistory2

Right Field : FldSalesHistory3, FldSalesHistory4, FldSalesHistory5, FldSalesHistory6

Local : Field : FldSalesHistory0 : Set As : $$Owner:$VoucherTypeName

Local : Field : FldSalesHistory1 : Set As : $$Owner:$VoucherNumber

Local : Field : FldSalesHistoryDt: Set As : $$Owner:$Date

Local : Field : FldSalesHistory2 : Set As : $$Owner:$PartyLedgerName

Local : Field : FldSalesHistory3 : Set As : $BilledQty

Local : Field : FldSalesHistory4 : Set As : $Rate

Local : Field : FldSalesHistory5 : Set As : $Discount

Local : Field : FldSalesHistory6 : Set As : $Amount

Empty if : NOT @@mStk OR $$ItemSerial=0


[Field : FldSalesHistory0]

Use : Short Name Field

Style: HistoryBody

Align: Center

[Field : FldSalesHistory1]

Use : Number Field;Short Name Field

Style: HistoryBody

Align: Center

[Field : FldSalesHistoryDt]

Use : Short Date Field

Style: HistoryBody

[Field : FldSalesHistory2]

Use : Name Field

Style: HistoryBody

Width: Full Width

Indent : 1

[Field : FldSalesHistory3]

Use : Qty Field

Style: HistoryBody

Align : Right

[Field : FldSalesHistory4]

Use : Rate Price Field

Style: HistoryBody

Width: Full Width

Indent : 2

[Field : FldSalesHistory5]

Use : Number Field

Align : Right

Format : "Percentage"

Style: HistoryBody

[Field : FldSalesHistory6]

Use : Amount Field

Style: HistoryBody


[Style: HistoryBody]

Use : Tiny

Bold : Yes




[Collection : ClnPurchaseInfo]

Type : Vouchers : Stock Item

Child Of : $$BaseOwner:#VchStockItem

Filter : PurchaseFilter

Fetch : LedgerEntries.PartyLedgerName, LedgerEntries.LedgerName


[Key : PurchaseHistory]

Key : 

Action : Display : RptPurchaseHistory


[Report : RptPurchaseHistory]

Form : FrmPurchaseHistory


[Form : FrmPurchaseHistory]

Part : PrtPurchaseHistory

Height : if $$InPrintMode then 8.20 else 100% Screen

Width : if $$InPrintMode then 5.70 else 50% Screen

Buttons: PrintButton, ExportButton

Background: @@SV_RELEASEDYELLOW

Horizontal Align: Left


[Part : PrtPurchaseHistory]

Line : LnPurchaseHistoryTitle, LnPurchaseHistoryHD, LnPurchaseHistoryData

Repeat : LnPurchaseHistoryData : ClnPurchaseInfo

Scroll : Vertical


[Line: LnPurchaseHistoryTitle]

Use: LnSalesHistoryTitle


[Line: LnPurchaseHistoryHD]

Use: LnSalesHistoryHD


[Line: LnPurchaseHistoryData]

Use: LnSalesHistoryData

 


बुधवार, 30 मार्च 2022

Tally Chapter 258 TDL to Update All Custom UDF By Rajiv Mishra Computer Class

 



Few lines are missing here.

Pls watch the full video to get full coding





[#Menu: Gateway of Tally]

Add: Key Item : Update UDF : U : Alter Collection : C067Main : NOT $$IsEmpty:$$SelectedCmps


[Collection: C067Main]

<unitgroup:multiled>

Use : Multi Ledger

Delete : Report

Add : Report: R067Main


[Report: R067Main]

<unitgroup:multiled>

Use : Multi Master Report

Family : $$Translate:"Accounts Masters"

Title : $$SPrintf:mad:@MultiLedgerCreateModeFormat:mad:@ModeName:mad:@SubModeName

Variables : MGroup

Set : SVAccounts : Yes

Set : SVInventory : No

Set : SVStatutory : No

Set : SVTallyShop : No

Multi Objects : Ledger Under MGroup

Delete: Form

Add: Form: A067Main

Variable: v067ClearPAN : Logical: No


[Color : Tomato]

RGB:115, 215, 0


[Form: A067Main]

Use : Multi Master Form

Normal Color : Tomato

Parts : P067MLEDBody ;, MLED Body,MLEDDefault,

Space Bottom : 0



[Part : P067MLEDBody]

Lines : L067MLEDTitle,L067MLEDBody

Scrolled: Vertical

Repeat : L067MLEDBody : LedgerUnderMGroup

Break On : $$IsEmpty:$Name


[Line: L067MLEDTitle]

Field: MultiSNo Title, Multi Master Name Title, Multi Master Parent Title, MSTSortPosTitle

Local: Field : Multi Master Name Title : Info : $$LocaleString:"Name of Ledger"

Local: Field : Multi Master Name Title : Width: 40% Screen


Local: Field : MSTSortPosTitle : Info : $$LocaleString:"FACEBOOK ID"

Local: Field : MLED Opening Title : Width : 15

Local: Field : MLED OpeningDr Title : Width : 18

Local: Field : MSTSortPosTitle : Width : 12

Local: Field : Default : Style : Normal Bold

Local: Field : Default : Align : Center

[Line: L067MLED Body ]

Field: F067SrNo,F067Name,F067Parent, F067PANNo

Local: Field: MMParentOption : Skip : YES

Local: Field: Default : Style : Normal


[Field: F067SrNo]

Use: MultiSNo

[Field: F067Name]

Use: Multi MST Name;Name Field

Local: Field: Multi Master Name : Skip: YES

Local: Field: Multi Master Name : Width: 40% Screen

[Field: F067Parent]

Use : Name Field

Inactive: $$IsEmpty:$Name

Set as : $Parent

Skip : YES

Align : Center

Border : Thin Left


[#Line: L067MLEDTitle]

Local: Field : MSTSortPosTitle : Delete: Invisible


सोमवार, 28 मार्च 2022

Tally Chapter 256 TDL for Readymade Template for Tally Theme By Rajiv Mishra Computer Class

 



Few lines are Missing Here.

Pls Watch the full video to get full code





[System: Formula]

    SV_COLOR                    : @@SV_RELEASEDBLACK

    SV_BACKGROUND     : Leaf Green

SV_CALC_BACKGROUND          : If $$InTrueColorMode then "White, CalcBGClr"  else "White, White" ;;Calc Pane Color

    SV_INACTIVE_BACKGROUND      : If $$InTrueColorMode then "White, InactiveBGClr"  else "White, White"

    SV_INACTIVE_COLOR           : @@SV_RELEASEDLIGHTGREY

    SV_PRINTCOLOR               : @@SV_RELEASEDBLACK

    SV_PRINTBG                  : @@SV_RELEASEDWHITE

    SV_CMPCONFIG            : @@SV_RELEASEDLIGHTGREY


    SV_LOGO_BG                  : If $$InTrueColorMode then "Grey, LogoClr"  else "Grey, Grey"

    SV_LOGO_FG                  : If $$InTrueColorMode then "Black, LogoFGClr"  else "Black, Black"

    SV_LOGO_THINLINE_FG         : If $$InTrueColorMode then "White, LogoThinLineClr"  else "White, White"


    SV_MGR_ACTIVE_FG            : If $$InTrueColorMode then "White, White"  else "White, White"  

    SV_MGR_INACTIVE_FG          : If $$InTrueColorMode then "Deep Grey, Grey"  else "Deep Grey, Deep Grey" 

    SV_MGR_ACTIVE_BG            : If $$InTrueColorMode then "Deep Grey, TitleActiveClr"  else "Deep Grey, Deep Grey"

    SV_MGR_INACTIVE_BG          : If $$InTrueColorMode then "Light Grey, TitleInActiveClr"  else "Light Grey, Light Grey"


    SV_BUTTON_BG                : @@SV_RELEASEDGREY

    SV_BUTTON_FOCUS_BG          : @@SV_RELEASEDGREY

    SV_BUTTON_TITLE_FG          : @@SV_RELEASEDBLACK

    

    SV_BUTTON_KEY_FG            : If $$InTrueColorMode then "Black, Red"  else "Black, Black"


    SV_BUTTON_INACTIVE_FG       : @@SV_RELEASEDWHITE


;;Button Manager on Right

    SV_RT_BUTTON_BG             : If $$InTrueColorMode then "Grey, RightButtonClr"  else "Grey, Grey"

    SV_RT_BUTTON_FOCUS_BG       : If $$InTrueColorMode then "Grey, RightButtonClr"  else "Grey, Grey"

    SV_RT_BUTTON_TITLE_FG       : If $$InTrueColorMode then "Black, RightButtonTitleFGClr"  else "Black, Black"

    

    SV_RT_BUTTON_KEY_FG         : If $$InTrueColorMode then "Black, RightButtonKeyFGClr"  else "Black, Black"

    SV_RT_BUTTON_INACTIVE_FG    : If $$InTrueColorMode then "White, RightButtonInActiveKeyFGClr"  else "White, White"


SV_CLOSE_BUTTON_BG : @@SV_RELEASEDWHITE

SV_CLOSE_BUTTON_FG : @@SV_RELEASEDDEEPGREY


SV_BTN_BORDER_COLOR1        : If $$InTrueColorMode then "White, RightButtonBorderColor1"  else "White, White"

SV_BTN_BORDER_COLOR2        : If $$InTrueColorMode then "Deep Grey, RightButtonBorderColor2"  else "Deep Grey, Deep Grey"


    SV_TABLE_TITLE_BG           : If $$InTrueColorMode then "Deep Grey, TableTitleBGClr"  else "Deep Grey, Deep Grey"

    SV_TABLE_TITLE_FG           : "White, White"

    SV_TABLE_NORMAL_FG          : "Black, Black"

    SV_TABLE_HIGHLIT_FG         : "TableHighlitClr, TableHighlitClr"

    SV_TABLE_BG                 : If $$InTrueColorMode then "White, TableBGClr"  else "White, White"

SV_TABLE_SUB_TITLE_BG       : If $$InTrueColorMode then @@SV_RELEASEDLEAFGREEN else @@SV_RELEASEDBLUE_AQUA

SV_TABLE_SUB_TITLE_FG       : @@SV_RELEASEDWHITE


    SV_FORM_BG                  : If $$InTrueColorMode then "White, FormBGClr"  else "White, White"

    SV_FORM_TITLE_BG     : If $$InTrueColorMode then "Light Grey, Blue" else "Light Grey, Light Grey"

    SV_FIELD_FG                 : @@SV_RELEASEDBLACK

    SV_CURSOR_BG                : If $$InTrueColorMode then "White, CursorBGClr"  else "White, White" 

    SV_CURSOR_FG                : @@SV_RELEASEDBLACK

    SV_LINE_SELECTED_BG         : @@SV_RELEASEDDEEPGREY

    SV_LINE_SELECTED_FG         : @@SV_RELEASEDWHITE


    SV_SEL_CURSOR_BG        : If $$InTrueColorMode then "Light Grey, PaleLeafGreen" else "Light Grey, Light Grey"

    SV_SEL_CURSOR_FG        : @@SV_RELEASEDWHITE

    SV_SELECTED_BG        : If $$InTrueColorMode then "Deep Grey, Aquamarine" else "Deep Grey, Deep Grey"

    SV_SELECTED_FG        : @@SV_RELEASEDWHITE

SV_LASTFOCUS_LINE_BG : "LastFocusBG, LastFocusBG"

SV_LASTFOCUS_LINE_FG : "LastFocusFG, LastFocusFG"


SV_LEFT_ARROW_FG : @@SV_BLACK

SV_RIGHT_ARROW_FG : @@SV_BLACK

SV_UP_ARROW_FG : @@SV_WHITE

SV_DOWN_ARROW_FG : @@SV_WHITE


    SV_PROMPT_FG                : @@SV_RELEASEDBLACK

    SV_PROMPT_BG                : If $$InTrueColorMode then "White, Crystal Blue" else "White, White"

    SV_MENU_TITLE_BG            : If $$InTrueColorMode then "Black, MenuTitleBGClr"  else "Black, Black"

    SV_MENU_TITLE_FG            : If $$InTrueColorMode then "White, MenuTitleFGClr"  else "White, White"

    SV_MENU_BG                  : If $$InTrueColorMode then "White, MnuBGClr"  else "White, White"

;;   SV_MENU_CURSOR_BG           : If $$InTrueColorMode then "Light Grey, MenuCursorBGClr"  else "Light Grey, Light Grey"


    SV_MENU_CURSOR_BG           : If $$InTrueColorMode then "Light Grey, MenuCursorColor2" else "Light Grey, Light Grey"

    SV_MENU_NORMAL_FG           : If $$InTrueColorMode then "Deep Grey, MnuNormalFGClr"  else "Deep Grey, Deep Grey"

    SV_MENU_INDENTED_FG         : If $$InTrueColorMode then "Inactive Grey, MenuIndentFG"  else "Inactive Grey, Inactive Grey"

    SV_MENU_HOTKEY_FG           : If $$InTrueColorMode then "Black, MenuHotKeyFG"  else "Black, Black"

    SV_MENU_INACTIVE_FG         : @@SV_RELEASEDGREY_INACT

    SV_MENU_CURSOR_FG           : If $$InTrueColorMode then "Black, MenuCursorFG"  else "Black, Black"

    SV_MENU_CURSOR_HOTKEY_FG    : If $$InTrueColorMode then "Black, Red"  else "Black, Black"

    SV_MENU_PARENT_FG           : @@SV_RELEASEDBLACK

SV_MENU_BORDER_COLOR : @@SV_RELEASEDBLACK

    SV_POPUP_MENU_SHORTCUT_FG   : @@SV_RELEASEDBLACK


    SV_MORE_FG                  : If $$InTrueColorMode then "Black, Red" else "Black, Black"


    SV_QRY_BRD_BG               : @@SV_RELEASEDBLACK

    SV_QRY_BG                   : @@SV_RELEASEDLIGHTGREY

    SV_QRY_QRY_FG               : @@SV_RELEASEDBLACK

    SV_QRY_YN_FG                : If $$InTrueColorMode then "Black, Red" else "Black, Black"

    SV_QRY_OR_FG                : @@SV_RELEASEDDEEPGREY



    SV_MSG_BRD_BG               : @@SV_RELEASEDBLACK

    SV_MSG_BG                   : @@SV_RELEASEDLIGHTGREY

    SV_MSG_TITLE_BG             : @@SV_RELEASEDDEEPGREY

    SV_MSG_TITLE_FG             : @@SV_RELEASEDWHITE

    SV_MSG_EH_FG                : @@SV_RELEASEDBLACK

    SV_MSG_PRKEY_FG             : @@SV_RELEASEDBLACK

    SV_MSG_MSG_FG               : @@SV_RELEASEDBLACK



    SV_PROGRESS_BG              : If $$InTrueColorMode then "Light Grey, ProgressBGClr"  else "Grey, Grey"

    SV_PROGRESS_SUBTITLE_FG     : If $$InTrueColorMode then "Black, ProgSubTitleFGClr"  else "Black, Black"

    SV_PROGRESS_TITLE_FG        : If $$InTrueColorMode then "Deep Grey, ProgressTitleFGClr"  else "Deep Grey, Deep Grey"

    SV_PROGRESS_SUBJECT_FG      : If $$InTrueColorMode then "Black, ProgressSubFGClr"  else "Black, Black"

    SV_PROGRESS_BAR_FG          : If $$InTrueColorMode then "Black, ProgressPercentFGClr"  else "Black, Black"

    SV_PROGRESS_PERCENT_FG      : If $$InTrueColorMode then "Deep Grey, ProgressFGClr"  else "Deep Grey, Deep Grey"


    SV_NATLANG_PROMPT_COLOR     : @@SV_RELEASEDBLACK

    SV_NATLANG_COMMAND_COLOR    : @@SV_RELEASEDBLACK

    SV_NATLANG_RESULT_COLOR     : @@SV_RELEASEDBLACK

SV_VALIDITY_EXPIRED_COLOR   : @@SV_RELEASEDRED

      

;; ********************* Unknown ***********************


SV_UNGREEN              : If $$InTrueColorMode then "White, ReleasedGreen" else "White, White"

SV_UNMAGENTA            : If $$InTrueColorMode then "Grey, Magenta" else "Grey, Grey"

SV_UNRBLUE              : If $$InTrueColorMode then "Grey, Royal Blue" else "Grey, Grey"

SV_UNORANGE              : If $$InTrueColorMode then "White, ReleasedOrange" else "White, White"


;; ********************* Other ***********************


SV_CMPACTION            : If $$InTrueColorMode then "White, Lily Yellow" else "White, White"

SV_CMPSECURITY          : If $$InTrueColorMode then "White, Lily Yellow" else "White, White"

SV_LICENSING_INFO       : If $$InTrueColorMode then "White, ReleasedOrange" else "White, White"

    SV_LICENSING            : @@SV_RELEASEDLIGHTGREY

    SV_LOGIN                : @@SV_RELEASEDLIGHTGREY

SV_ADDONS               : If $$InTrueColorMode then "White, ReleasedYellow" else "White, White"

SV_ATTENDANCE           : If $$InTrueColorMode then "White, ReleasedYellow" else "White, White"

SV_AUDIT                : If $$InTrueColorMode then "White, ReleasedBlue" else "White, White"

SV_MIGRATIONINFO        : If $$InTrueColorMode then "White, ReleasedYellow" else "White, White"

SV_POS                  : If $$InTrueColorMode then "White, ReleasedGreen" else "White, White"

SV_IMPORT               : If $$InTrueColorMode then "White, Light Surf Green"   else "White, White"

    SV_FIELD1               : "Deep Grey, Red"

    SV_FIELD2               : "Black"

    SV_FIELD3               : "Deep Grey"

    SV_FIELD4               : If $$IsAscentGUI and $$InTrueColorMode then "Very Light Blue" else if $$InTrueColorMode then "Light Surf Green" else "Green16Bit"

    SV_FIELD5               : If $$IsAscentGUI and $$InTrueColorMode then "Light Grey" else if $$InTrueColorMode then "Very Light Orange" else "Yellow16Bit"

    SV_FIELD6               : "White"

    SV_FIELD7               : If $$InTrueColorMode then "Royal Blue" else "DarkBlue16Bit"

    SV_FIELD8               : "Blue"

    SV_FIELD9               : "Light Grey"

    SV_FIELD10              : "Dark Green"

    SV_FIELD11              : "Very Light Sea Green"

;;---------------------Colors----------------------------

SV_RELEASEDYELLOW_BG    : If $$InTrueColorMode then "White, ReleasedPaleYellow" else "White, White"

SV_RELEASEDBROWN        : If $$InTrueColorMode then "White, ReleasedBrown"      else "White, White"

SV_RELEASEDGREEN        : If $$InTrueColorMode then "White, ReleasedGreen"      else "White, White"

SV_RELEASEDYELLOW        : If $$InTrueColorMode then "White, ReleasedYellow"     else "White, White"

SV_RELEASEDBLUE          : If $$InTrueColorMode then "White, ReleasedBlue"       else "White, White"

SV_RELEASEDORANGE        : If $$InTrueColorMode then "White, ReleasedOrange"     else "White, White"

SV_RELEASEDWHITE        : "White, White"

SV_RELEASEDGREEN_S      : If $$InTrueColorMode then "White, Light Surf Green"   else "White, White"

SV_RELEASEDYELLOW_S      : If $$InTrueColorMode then "White, Lily Yellow"        else "White, White"

SV_RELEASEDGREY          : "Grey, Grey"

SV_RELEASEDDEEPGREY      : "Deep Grey, Deep Grey"

SV_RELEASEDLIGHTGREY    : If $$InTrueColorMode then "Light Grey, Light Grey"    else "Grey, Grey"

SV_RELEASEDGREY_INACT    : if $$InTrueColorMode then "Inactive Grey"             else "Grey, Grey"

SV_RELEASEDGERANIUM      : If $$InTrueColorMode then "Black, Geranium"           else "Black, Black"

SV_RELEASEDBLACK        : "Black, Black"

SV_RELEASEDLEAFGREEN    : If $$InTrueColorMode then "Deep Grey, LeafGreen"      else "Deep Grey, Deep Grey"

SV_RELEASEDLEAFGREEN_PL : If $$InTrueColorMode then "Light Grey, PaleLeafGreen" else "Light Grey, Light Grey"

SV_RELEASEDYELLOW_DK    : If $$InTrueColorMode then "White, Light Lily Yellow"  else "White, White"

SV_RELEASEDGREEN_PL      : If $$InTrueColorMode then "Deep Grey, Pale Green"     else "Deep Grey, Deep Grey"

SV_RELEASEDBLUE_DK      : If $$InTrueColorMode then "Deep Grey, DeepCobaltBlue" else "Deep Grey, Deep Grey"

SV_RELEASEDBLUE_ROYAL    : If $$InTrueColorMode then "Black, Royal Blue"         else "Black, Black"

SV_RELEASEDBLUE_AQUA    : "Deep Grey, Aquamarine"

SV_RELEASEDBLUE_SATIN    : "Light Grey, Satin Blue"

SV_DARK_RED            : "Dark Red"

SV_DEEP_GREY            : "Deep Grey"

SV_WHITE                : "White, White"

SV_BLACK                : "Black, Black"

SV_RELEASEDRED          : "Black, Red"

SV_BLUE                  : If $$InTrueColorMode then "Light Grey, Blue"   else "Grey, Grey"

SV_RELEASEDCRYSTAL      : If $$InTrueColorMode then "White, Crystal Blue" else "White, White" 

SV_UNYELLOW : If $$InTrueColorMode then "White, ScenarioInfoClr"  else "White, White"

SV_UNGREY : If $$InTrueColorMode then "Light Grey, StatutoryMasterClr"  else "Grey, Grey"

    SV_UNWHITE              : @@SV_RELEASEDWHITE

    

SV_CLIENTLOGO_TRANSPARENT_BG : "CltLogoTransparentBG"

SV_BORDER_SHADOW_COLOR : @@SV_RELEASEDLIGHTGREY


SV_BORDER3D_SHADOW_INNER_COLOR : if $$InTrueColorMode AND $$IsAscentGUI  then "Light Grey, Border3D Shadow Inner Color" else "Black, Black"

SV_BORDER3D_SHADOW_OUTER_COLOR : if $$InTrueColorMode AND $$IsAscentGUI  then "Light Grey, Border3D Shadow Outer Color" else "Light Grey, MgrInActiveBGHigh"

SV_BORDER3D_LIGHT_INNER_COLOR : if $$InTrueColorMode AND $$IsAscentGUI  then "Light Grey, Border3D Light Inner Color"  else if $$InTrueColorMode then "Light Grey" else "Grey"

SV_BORDER3D_LIGHT_OUTER_COLOR : "Light Grey, Border3D Light Outer Color"

    SV_MAIL                  : @@SV_RELEASEDWHITE

;; for company external operations

    SV_BACKUP                : @@SV_RELEASEDLIGHTGREY

    SV_TABLE_LINE_FOCUSED_BG    : @@SV_RELEASEDDEEPGREY

    SV_TABLE_LINE_FOCUSED_FG    : @@SV_RELEASEDWHITE

SV_TABLE_LINE_SEP_FG    : "StoneGrey"

SV_TABLE_MORE_STYLE          : "Small Serif Bold"

SV_TABLE_MORE_FG            : "Black, Grey"

SV_TABLE_ITEM_ON_THE_FLY_FG : "Black"

SV_TABLE_ITEM_ON_THE_FLY_STYLE : "Small Italic"

[System: Formula]


SV_EDIT_FIELD_BG : "White,  EditFieldBG"

    SV_EDIT_FIELD_FG : @@SV_RELEASEDBLACK


[System: Formula]

;;Button Manager on Top

    SV_TOP_BUTTON_BG            : If $$InTrueColorMode then "Grey, Cyan Blue"  else "Grey, Grey"

    SV_TOP_BUTTON_FOCUS_BG      : If $$InTrueColorMode then "Grey, Tory Blue"  else "Grey, Grey"

    SV_TOP_BUTTON_TITLE_FG      : If $$InTrueColorMode then "Black, TopButtonTitleFGClr"  else "Black, Black"

    

    SV_TOP_BUTTON_KEY_FG        : If $$InTrueColorMode then "Black, PaleCyan"  else "Black, Black"

    SV_TOP_BUTTON_INACTIVE_FG   : If $$InTrueColorMode then "White, Grey"  else "White, White"

;;colors for button borders - both toolbar and user buttons

SV_TOOLBAR_BTN_BORDER_COLOR1 : "Cyan Blue, Cyan Blue"

SV_TOOLBAR_BTN_BORDER_COLOR2 : "Cyan Blue, Cyan Blue"

DependentCfgGrey : "Deep Grey"

DependentCfgBlack : "Black"

;;End of File


 [#Form: Master Accounting Form] Delete: Bottom Buttons : Master Group, Master Ledger, Master VchType, Blank Button ;, Master Company Operat...