student fee receipt

Discussion in 'Free Source Codes' started by isha sabharwal, Mar 23, 2022.

    
  1. isha sabharwal

    isha sabharwal New Member


    i want help in student fee receipt tdl
     


  2. Komal Varma

    Komal Varma New Member


    Hi

    Pls Elaborate Your Requirement
     


  3. isha sabharwal

    isha sabharwal New Member


    i want to make student details module ,udf of different fields on ledger(profile report) to be printed on receipt voucher.
     


  4. Komal Varma

    Komal Varma New Member


    Hi,
    Kindly explain the requirement properly so that i can suggest you.
     


  5. isha sabharwal

    isha sabharwal New Member


    i have already created udf in ledger (personal details of student like, name, fathers name, dob,batch ,course,academic year )and report also prepared but no i want to show these fields on receipt voucher on print, i tried the location aclsfixed led ,narration but failed to entered all fields and also i want on print also specifically.
     


  6. KUSHAL BAROT26

    KUSHAL BAROT26 New Member


    if it possible for you to share code or images what actually what do you want to desire so that we can help
     


  7. isha sabharwal

    isha sabharwal New Member


    ;;jai shri ganesha
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    ;;udf definition
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    [System : UDF]
    SH_FathNam_UDF : String : 10001
    SH_RoNo_UDF : String : 10002
    SH_BirthDate_UDF : Date : 10003
    SH_Bat_UDF : String : 10004
    SH_Cour_UDF : String : 10005
    SH_AcYr_UDF : String : 10006
    SH_Gen_UDF : String : 10007
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    ;;collection definition
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    [Collection : MM_NewDebtors_Coll]
    Type : Ledger
    Fetch : Name,SH_FathNam_UDF,SH_Rono_UDF,SH_birthdate_UDF,SH_Bat_UDF,SH_Cour_UDF,SH_Acyr_UDF,SH_Gen_UDF
    Child Of : $$GroupSundryDebtors
    Belongs To : Yes
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    [#Part : LEd Other Details]
    Add: Lines: FatherName,RollNo,DOB,Batch,Course,AcaYear,Gender
    [Line :FatherName]
    Field : Medium Prompt ,FatherName
    Local : Field : Medium Prompt : Info:"Father Name"
    [Line : RollNo]
    Field : Medium Prompt ,RollNo
    Local : Field : Medium Prompt : Set as :"RollNo"
    [Line : DOB]
    Field : Medium Prompt ,DOB
    Local : Field : Medium Prompt : Set as :"DOB"
    [Line : Batch]
    Field : Medium Prompt ,Batch
    Local : Field : Medium Prompt : Set as :"Batch"
    [Line : Course]
    Field : Medium Prompt ,Course
    Local : Field : Medium Prompt : Set as :"Course"
    [Line : AcaYear]
    Field : Medium Prompt ,AcaYear
    Local : Field : Medium Prompt : Set as :"Academic Year"
    [Line : Gender]
    Field : Medium Prompt ,Gender
    Local : Field : Medium Prompt : Set as :"Gender"
    [Field : FatherName]
    Use : Name Field
    Storage : SH_FathNam_UDF
    Color : Blue
    [Field : RollNo]
    Use : Name Field
    Storage : SH_RoNo_UDF
    Color : Blue
    [Field : DOB]
    Use : uni Date Field
    Storage : SH_BirthDate_UDF
    Color : Blue
    [Field : Batch]
    Use : Name Field
    Storage : SH_Bat_UDF
    Color : Blue
    [Field : Course]
    Use : Name Field
    Storage : SH_Cour_UDF
    Color : Blue
    [Field : AcaYear]
    Use : Name Field
    Storage : SH_AcYr_UDF
    Color : Blue
    [Field : Gender]
    Use : Name Field
    Storage : SH_Gen_UDF
    Color : Blue
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    ;;Report
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    [#Menu : Gateway of Tally]
    Add : Key Item : Student Profile Report : E : Display: StudentProfile
    [Report : StudentProfile]
    Use : DSP Template
    Form : StudentForm
    Title : Student Profile Report
    [Form : StudentForm]
    Use : DSP Template
    Part : StudentPart
    Height : 100% Page
    Width : 100% Page
    [Part : StudentPart]
    Line : StudentTitle, StudentDetails
    Repeat : StudentDetails : MM_NewDebtors_Coll
    Scroll : Vertical
    Common Border : Yes
    Border : Flush Totals
    [Line : StudentTitle]
    Use : StudentDetails
    Local : Field : Default : Type : String
    ;Local : Field : Default : Delete : Storage
    Local : Field : Default : Align : Center
    Local : Field : S_NO : Set as: "S.No."
    Local : Field : StudentName1 : Set as: "StudentName"
    Local : Field : FatherName1 : Set as: "Father Name"
    Local : Field : RollNO1 : Set as: "Roll No"
    Local : Field : DOB1 : Set as: "DOB"
    Local : Field : Batch1 : Set as: "Batch"
    Local : Field : Course1 : Set as: "Course"
    Local : Field : AcademicYear1 : Set as: "Academic Year"
    Local : Field : Gender1 : Set as: "Gender"
    Border : Flush Totals
    [Line : StudentDetails]
    Fields : S_NO,StudentName1,FatherName1,RollNO1,DOB1,Batch1,Course1,AcademicYear1,Gender1
    [Field : S_NO]
    Use : NumberField
    Set as : $$Line
    Border : Thin Left
    [Field : StudentName1]
    Use : Name Field
    Set as : $Name
    Border : Thin Left
    [Field : FatherName1]
    Use : Name Field
    Set as : $SH_FathNam_UDF
    Border : Thin Left
    [Field : RollNO1]
    Use : Name Field
    Set as : $SH_RoNo_UDF
    Border : Thin Left
    [Field : DOB1]
    Use : UNIDATEFIELD
    Set as : $SH_BirthDate_UDF
    Border : Thin Left
    [Field : Batch1]
    Use : Name Field
    Set as : $SH_Bat_UDF
    Border : Thin Left
    [Field : Course1]
    Use : Name Field
    Set as : $SH_Cour_UDF
    Border : Thin Left
    [Field : AcademicYear1]
    Use : Name Field
    Set as : $SH_AcYr_UDF
    Border : Thin Left
    [Field : Gender1]
    Use : Name Field
    Set as : $SH_Gen_UDF
    Border : Thin Left
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;(/HERE WANT HELP)
    [#FIELD: VCHNARRATION]
    Add : FIELD : After : VCHNARRATION : LONGPROMPT,FatherName2;,FATHERUDF;,SIMPLEPROMPT,RollNO1,+
    ;SHORTPROMPT,Batch1,mediumprompt,Course1,AcademicYear1
    ;[FIELD : FatherName2]
    ;Field : FatherName2
    Local: Field : longPROMPT : Info : "Father Name"
    Local: Field : LONGPROMPT : WIDTH : 20
    [Field : FATHERNAME2]
    Use : NAMEFIELD
    Set as: $SH_FathNam_UDF

    ;Storage: SH_FathNam_UDF

    ;[Field : FATHERUDF]
    ; Use: NAMEFIELD
    ; Set as: $SH_FathNam_UDF



    ;Local: Field : SIMPLEPROMPT : Info : "Roll No."
    ;Local: Field : SIMPLEPROMPT : Width : 10
    ;Local: Field : SHORTPROMPT : Info : "Batch"
    ;Local: Field : mediumPROMPT : Info : "Course"
    ;Local: Field : SIMPLEPROMPT : Info : "Academic Year"
     


  8. isha sabharwal

    isha sabharwal New Member


    not direct fetching name from ledger and even after typing not saving and not showing on print even.
     


Share This Page