Change Period (Set Default)

Discussion in 'Free Source Codes' started by Jay kumar tailor, Jul 2, 2019.

    
  1. Jay kumar tailor

    Jay kumar tailor Well-Known Member


    Hi All
    Jay Here

    Sometimes, When i Checking Ledgers For Full FInancial Year.
    I Face Problem With Period.
    Everytime We Need To Change Period.

    So, We Can Skip This Condition.
    In A Simple Way.
    Like This....
    Code:
    [#Report : Ledger Vouchers]
    Set : SVfromDate:$$FinYearBeg:##StartDate:$StartingFrom:Company:##SVCurrentCompany
    Set : SVToDate:##Svcurrentdate
     


  2. sohel

    sohel New Member


    Hi Jay, it small but very effective. Cool brother
     


  3. Jay kumar tailor

    Jay kumar tailor Well-Known Member


    Be Careful Don't Open Cash/Bank Ledger if Data is Large. For Avoid Trouble..
     


  4. Amit Kamdar

    Amit Kamdar Administrator Staff Member



    To avoid Cash/Bank.... do the following:

    Code:
    [#Report : Ledger Vouchers]
    Set : SVfromDate:$$FinYearBeg:##StartDate:$StartingFrom:Company:##SVCurrentCompany : NOT ($$IsBelongsTo:$$GroupCash OR $$IsBelongsTo:$$GroupBank OR $$IsBelongsTo:$$GroupBankOD)
    Set : SVToDate:##Svcurrentdate: NOT ($$IsBelongsTo:$$GroupCash OR $$IsBelongsTo:$$GroupBank OR $$IsBelongsTo:$$GroupBankOD)
     


  5. Bipin Damania

    Bipin Damania Active Member


    Amitji

    Showing error
     


  6. Amit Kamdar

    Amit Kamdar Administrator Staff Member


    Code:
    [#Report : Ledger Vouchers]
    Set : SVfromDate:If @@NotCashBank Then $$FinYearBeg:##StartDate:$StartingFrom:Company:##SVCurrentCompany Else $$MonthStart:##SVCurrentDate
    Set : SVToDate:##Svcurrentdate
    
    [System : Formula]
    NotCashBank : NOT ($$IsBelongsTo:$$GroupCash OR $$IsBelongsTo:$$GroupBank OR $$IsBelongsTo:$$GroupBankOD)
    
     
    santosh swami likes this.


  7. sandip kumar

    sandip kumar New Member


    How to set starting date from 17-7-2018
     


  8. arihantl

    arihantl New Member


    NOT WORKING SIR
     


  9. Neeru

    Neeru Active Member


    Dear Sir,

    How we set yesterday date and current data.

    for Exp.
    Today is 12-5-2020. then ledger accounting report show us 11-5-2020 to 12-5-2020 only..
     


  10. Bipin Damania

    Bipin Damania Active Member


    Try this
    Set : ##SVMachineDate-1
     


  11. Khyrul

    Khyrul New Member


    How to view (filter) overdue receivable by Due On date ?

    [#Collection: Company Receivables]
    Add:Filter:IsmyFromDt
    [System:Formula]
    IsmyFromDt: .....................?
     


  12. auruem

    auruem Member


    somethig is wrong,
    its not working sir...
     
    Last edited: Jul 10, 2020


  13. Taurabh

    Taurabh New Member



  14. Jay kumar tailor

    Jay kumar tailor Well-Known Member


    See This.
    Free ...
    Download Link Available in Description Box.
     


  15. Chetan S

    Chetan S New Member


    Sir, instead of beginning of current financial year, can we select company beginning date?
     


  16. Jay kumar tailor

    Jay kumar tailor Well-Known Member


    Yes
     


  17. Chetan S

    Chetan S New Member


    I modified it and it is working Sir. Thanks
     


  18. B Prasad

    B Prasad New Member


    Is there something wrong. It's not working.
     


  19. mkraju_mst

    mkraju_mst New Member


    [Collection:party_Item_Pur_ItemColl]
    Source Collection:party_Item_Pur_Coll
    Walk:AllInventoryEntries
    By:StockItemName : $StockItemName
    Aggr Compute : VCHNoOfTrayy : Sum: $VCHNoOfTray
    Aggr Compute : VCHGWeightt : Sum: $VCHGWeight + $VCHNoLoose
    Aggr Compute : VCHNoPiecee : Sum: $VCHNoPiece
    Aggr Compute : VCHNoLoosee : Sum: $VCHNoLoose
    Aggr Compute : VCHAvaRagePerr : Sum: ($VCHGWeight+$VCHNoLoose) / Sum: $VCHNoPiece
    Compute : VCHKgsTrayy : $VCHKgsTray
    Keep Source:().

    sir
    Please correct my above code formula mistake

    Aggr Compute : VCHAvaRagePerr : Sum: ($VCHGWeight+$VCHNoLoose) / Sum: $VCHNoPiece ---result not shown
     


Share This Page