कुल पेज दृश्य

शनिवार, 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


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