banner banner Skip to main content

Posts

Showing posts from August, 2014

Variable Copy

The contents of a variable can now be entirely copied from one instance to another instance.  Action - COPY VARIABLE The action COPY VARIABLE is used to copy the content from one variable (Source) to another variable (Destination). This action is supported for all types of variables (Simple / Compound / List Variables). Syntax COPY VARIABLE: Destination Variable : Source Variable Where, Destination Variable is the name of the Simple/Compound/List Variable. Source Variable is the name of the Simple/Compound/List Variable, from which the content has to be copied.

Developer Mode

Command Line Parameter - DevMode Command Line Parameter DevMode has been introduced to execute Tally in Developer mode. Syntax Tally Application Path \Tally.exe /DevMode Example: C:\Tally.ERP9\Tally.exe   /DevMode

HTTP POST

A new Key/ Button Action HTTP Post has been introduced which will help in exchanging data with external applications using web services. In other words, ‘HTTP Post’ Action can be used to submit data to a server over HTTP and gather the response. This will enable a TDL Report to perform an HTTP Post to a remote location. Syntax [Key: ] Key : Action : HTTP Post : URL Formula : Encoding : Request Report: Error Report : Success Report Where, can be any string formula which resolves as an URL, and is defined under System Definition. is the encoding scheme, which can be ASCII or UNICODE. is the name of TDL Report used for generating the XML Request to be sent. is displayed in case of failure. is displayed when the post is successful.

List variable

List variable can store multiple values of single data type in the key: value format. Every single value in the List variable is uniquely identified by a 'key'. The 'Key' is of type String by default, and is maintained internally. List Var is an alias of the attribute List Variable. Syntax List Variable : variable Name    : Data type Where, is the name of the variable. is the data type of the variable. It is Optional. If it is specified, a separate Variable definition is not required. If not specified, a variable definition with same name must be specified. Example: [Function : Test Function] ListVariable : List Var : String