MRP in sales invoice

Discussion in 'Tally Developer' started by Raman, Dec 20, 2012.

    
  1. Raman

    Raman New Member


    Hi,
    I am new in tdl i created a tdl for MRP in sales invoice but i got problem that value which entered in the sales invoice is not saved and when taking printout it not showing any mrp field please help i m adding the code file here

    [#Line: EI ColumnOne] ;; Invoice Column Headings1 without class

    Option : Global EI ColumnOne : @@IsSales

    ;; "Global" prefix is added for better readability of the code

    [!Line: Global EI ColumnOne]

    Add : Right Fields : At Beginning : Global VCH MRP

    ;;Need to mention Right Fields, since just Field means Left Field
    ;;and we need “NumPack” Column to the right of the screen at beginning

    Local : Field : Default : Align : Center

    Local : Field : Global VCH MRP : Info : "M.R.P."

    [#Line: EI ColumnTwo] ;; Invoice Column Headings1 without class

    Option : Global EI ColumnTwo : @@IsSales

    [!Line: Global EI ColumnTwo]

    Add : Right Fields : At Beginning : Global VCH MRP
    Local : Field : Default : Align : Center

    Local : Field : Global VCH Marks : Info : ""

    [#Line: EI InvDetails]

    Option : Global EI InvDetails : @@IsSales

    [!Line: Global EI InvDetails]

    Delete : Lines : EI MRP

    [#Line: CI InvDetails]

    Option : Global CI InvDetails : @@IsSales

    [!Line: Global CI InvDetails]

    Delete : Lines : CI MRP

    [#Line: EI InvInfo] ;; Invoice Inventory Entries without Class

    Option : Global EI InvInfo : @@IsSales

    [#Line: CI InvInfo] ;; Invoice Inventory Entries with Class

    Option : Global EI InvInfo : @@IsSales

    [!Line: Global EI InvInfo]

    Add : Right Fields : At Beginning : Global VCH MRP
    Local : Field : Global VCH MRP : Storage : BasicMRP

    [Field: Global VCH MRP]

    Use : Short Name Field
    Width : 8
    Align : Right
    Border : Thin Left Right
    Invisible : NOT ##VrVarC1
    Skip on : $$IsEnd:$StockItemName
    ;; Inactive : $$IsEnd:$StockItemName


    ;; End-of-File
     


  2. NMS

    NMS Member


    Hi,Raman
    Add.[Sytem:Udf]
    and check it.
     


  3. Raman

    Raman New Member


    and if i want use batch detail in a field like mrp then what i have to do to gate print out of batch detail in with heading Batch No. please help....
     


  4. NMS

    NMS Member


    Hi, Raman
    if you want to print Mrp Field Use $systemUdf
    Ex:$BasicMRP
     


  5. Anthony dinakaran

    Anthony dinakaran New Member



  6. Rajan Pillai

    Rajan Pillai New Member


    Sir,
    I am also looking for the same. If you have solved the issue, Pls email me to: askrajan@gmail.com a copy of the same
    I need a stock Register with batch wise MRP column
    Thanks in Advance
     


Share This Page