How to create Tally CRM for TP

Discussion in 'Tally Integration' started by ganesha chavan, Jan 16, 2013.

    
?

How to create Tally CRM for TP

  1. on urgent basis

    100.0%
  2. asap

    0 vote(s)
    0.0%
Multiple votes are allowed.
Thread Status:
Not open for further replies.
  1. ganesha chavan

    ganesha chavan New Member


    Hi Sir,

    I have created the below TDL to create Tally CRM screen as per attached screenshot but not getting success. kindly assist.



    [#Menu : Gateway of Tally]

    Add : Key Item : Before : @@LocQuit: Vrushali CRM : U : Menu : Tally CRM

    [Menu : Tally CRM]
    Title: "Tally CRM"
    Add : Item : Service Call : Menu : Service Call

    [Menu : Service Call]

    Indent : "Ledger Master"
    Item : Blank
    Item : Blank

    Key Item : Create : C : Create Collection : Ledger Coll
    Item : Blank

    Key Item : Display : D : Display Collection: Ledger Coll
    Item : Blank

    Key Item : Alter : A : Alter Collection : Ledger Coll
    Item : Blank
    Item : Blank

    ;; Collection Definition

    [Collection: Ledger Coll]

    Use : Alias Collection ;; Default Collection for including Alias
    Type : Ledger
    Variable : LedgerVar
    Trigger : Triggered Led Report
    Report : Final Led Report

    [Variable: LedgerVar]

    Type : String


    ;; Trigger Report Definition begins here

    [Report: Triggered Led Report]

    Title : "Select Ledger"
    Form : Triggered Led Report

    [Form: Triggered Led Report]

    Parts : Triggered Led Report

    [Part: Triggered Led Report]

    Lines : Triggered Led Report

    [Line: Triggered Led Report]

    Fields : Medium Prompt, Triggered Led Report
    Local: Field: Medium Prompt : Set as : "Ledger :"


    [Field: Triggered Led Report]

    Use : Name Field
    Table : Ledger Coll
    Show Table : Always
    Tooltip : "Please enter the Ledger which needs to be displayed/altered"
    Modifies : LedgerVar
    ;; Modifies the Variable Value "TDE LedgerVar" which is passed to the subsequent
    ;; Report through the Collection

    ;; Final Report Definition begins here

    [Report: Final Led Report]

    Title : if $$InCreateMode then "Ledger Creation" else if $$InAlterMode then "Ledger Alteration" else "Ledger Display"
    Form : Final Led Report
    Object : Ledger ;; Object must be associated at the Report

    [Form: Final Led Report]

    Parts : Final Led ReportName,Telephone No, Mobiles,Contact Person,Address,Final Led ReportOthers

    [Part: Final Led ReportName]

    Lines : Final Led ReportName
    Repeat : Final Led ReportName : Name
    Break On : $$IsEmpty:$Name

    [Part: Telephone No ]

    Lines : Telephone No
    ;Repeat : Telephone No : Telephone No
    ;Break On : $$IsEmpty:$TelephoneNo

    [Part: Mobiles]

    Lines : Mobiles
    ;Repeat : Mobile : Mobile
    ;Break On : $$IsEmpty:$MobileNo


    [Part: Contact Person]

    Lines : Contact Person
    ;Repeat : Contact Person : Contact Person
    ;Break On : $$IsEmpty:$ContactPerson


    [Part: Address]

    Lines : Address
    ;Repeat : Address : Address
    ;Break On : $$IsEmpty:$Address

    Height : 125% screen
    Width : 125% screen
    Background : White, white

    Local: Line : Local : Field : Name Field : Info : "(Please hover the mouse pointer over the fields to view the Tooltip)"
    Local: Line : Local : Field : Telephone No : Info : "(Please hover the mouse pointer over the fields to view the Tooltip)"
    Local: Line : Local : Field : Mobiles : Info : "(Please hover the mouse pointer over the fields to view the Tooltip)"
    Local: Line : Local : Field : Contact Person : Info : "(Please hover the mouse pointer over the fields to view the Tooltip)"
    Local: Line : Local : Field : Address : Info : "(Please hover the mouse pointer over the fields to view the Tooltip)"

    [Line: Final Led ReportName]

    Fields : Medium Prompt, Final Led ReportName
    Local: Field: Medium Prompt : Set as : "Name :"
    Local: Field: Medium Prompt : Inactive : $$Line > 1

    [Line: Telephone No]
    Fields : Medium Prompt, Telephone No
    Local: Field: Medium Prompt : Set as : "Telephone No :"
    Local: Field: Medium Prompt : Inactive : $$Line > 1

    [Line: Mobiles]
    Fields : Medium Prompt, Mobiles
    Local: Field: Medium Prompt : Set as : "Mobiles :"
    Local: Field: Medium Prompt : Inactive : $$Line > 1

    [Line: Contact Person]
    Fields : Medium Prompt, Contact Person
    Local: Field: Medium Prompt : Set as : "Contact Person :"
    Local: Field: Medium Prompt : Inactive : $$Line > 1

    [Line: Address]
    Fields : Medium Prompt, Address
    Local: Field: Medium Prompt : Set as : "Address :"
    Local: Field: Medium Prompt : Inactive : $$Line > 1


    [Field: Final Led ReportName]

    Use : Name Field
    Storage : Name
    Case : First Upper Case

    [Field: Telephone No ]

    Use : Telephone No Field
    Storage : Telephone No
    Case : First Upper Case

    [Field: Mobiles]

    Use : Mobiles Field
    Storage : Mobiles
    Case : First Upper Case

    [Field: Contact Person]

    Use : Contact Person Field
    Storage : Contact Person
    Case : First Upper Case

    [Field: Address]

    Use : Address
    Storage : Address
    Case : First Upper Case

    ;; This Attribute will display ToolTip when the mouse hovers over the current field
    ;; If the Repeatable Line is 1 then the value will be 'Please enter Ledger Name' else
    ;; it will be 'Please enter Alias ' with the Line Number
    ToolTip : if $$Line = 1 then "Please enter Ledger Name" else "Please enter Alias " + $$String:mad:@AliasLine
    Unique : Yes


    [System: Formula]

    AliasLine : $$Line - 1

    [Part: Final Led ReportOthers]

    Lines : Final Led Report Group, Final Led Report OpBal

    [Line: Final Led Report Group]

    Fields : Medium Prompt, Final Led Report Group
    Local: Field: Medium Prompt : Set as : "Parent :"

    [Field: Final Led Report Group]

    Use : Name Field
    Set As : if $$InAlterMode then $Parent:Ledger:$Name else ""
    Storage : Parent
    Table : Group ;; Default Collection of Groups
    Show Table : Always
    Tooltip : if $$InDisplayMode then "This is a Group" else if $$InAlterMode then "Please alter the Group, if required" else "Please enter an appropriate Group for the Ledger"

    [Line: Final Led Report OpBal]

    Fields : Medium Prompt, Final Led Report OpBal
    Local: Field: Medium Prompt : Set as : "Opening Balance :"

    [Field: Final Led Report OpBal]

    Use : Amount Forex Field
    Set As : if $$InAlterMode then $OpeningBalance:Ledger:$Name else ""
    Storage : OpeningBalance
    Tooltip : if $$InDisplayMode then "Opening Balance as on " + $$String:mad:OpeningDate else if $$InAlterMode then "Please alter the Opening Balance, if required" else "Please enter Opening Balance, if any"
    OpeningDate : $BooksFrom:Company:##SVCurrentCompany


    ==========================================================================================
    ======================================================================================
    */
    [System : UDF ]
    Silver or Gold : String : 10001
    Serial No. : String : 10003
    Tally.Net ID : String : 10004
    Tally.Net : String : 10002

    [#Part : Led Other Details]
    Add : Line : Silver or Gold

    [# Part : Led Other Details]
    Add : Line : Serial No.

    [#Part : Led Other Details]
    Add : Line : Tally.Net ID

    [#Part : Led Other Details]
    Add : Line : Tally.Net


    [Line : Silver or Gold]
    Field : Short Prompt, Silver or Gold
    Local : Field : Short Prompt : Set as : "Silver or Gold?: "

    [Line : Serial No.]
    Field : Short Prompt, Serial No.
    Local : Field : Short Prompt : Set as : "Serial No-: "

    [Line : Tally.Net ID]
    Field : Short Prompt, Tally.Net ID
    Local : Field : Short Prompt : Set as : "Tally.Net ID: "

    [Line : Tally.Net]
    Field : Short Prompt, Tally.Net
    Local : Field : Short Prompt : Set as : "Tally.Net: "



    [Field : Silver or Gold]
    Use : Short Name Field
    Storage : Silver or Gold

    [Field : Serial No.]
    Use : Short Name Field
    Storage : Serial No.

    [Field : Tally.Net ID]
    Use : Short Name Field
    Storage : Tally.Net ID

    [Field : Tally.Net]
    Use : Short Name Field
    Storage : Tally.Net

    ;;End
     

    Attached Files:



  2. ganesha chavan

    ganesha chavan New Member


    Hi AMM Sir,

    Please look into my issue and assist me
     


  3. admin

    admin Administrator Staff Member


    You are copying somebody - Modules. We are not encouraging this...
     
    ahmed rishali and Ras Raj like this.


Thread Status:
Not open for further replies.

Share This Page