banner banner Skip to main content

Action - SET VALUE

This action sets the value of a method for the target object. The value formula is evaluated with
respect to the current object context. This can use the new method formula syntax. Using this, it is
possible to access any value from the current object.

Syntax
SET VALUE: [: ]
Where,
is the name of the method, and
is the value which needs to be set to the method. It is optional. If the second
parameter is not specified, it searches for the same method in the context object and the value is
set based on it. If the source method name is same as in Target Object, then the Source Object
method name is optional.
Example: 1
01: SET VALUE : Ledger Name : $LedgerName
OR
01: SET VALUE : Ledger Name

These statements set the values of ‘Ledger Entries’ Object from the current Object context.
Example: 2
02 : WALK COLLECTION: Vouchers of My Objects
03 : NEW OBJECT: Voucher
;; Since the methods Date, VoucherTypeName are same in the source object and target object, they are not
specified again as SET VALUE : DATE : $Date.
04 : SET VALUE: Date
05 : SET VALUE: VoucherTypeName
Example: 3
[Function : Sample Function]
Object : Ledger : "Party 1"
01 : NEW OBJECT : Ledger : "Party 2"
;; absence of Value expression will assume that same method to be copied from source
02 : SET VALUE : Parent
03 : ACCEPT ALTER
‘Party 1’ is a ledger under the Group ‘North Debtors’ and Party 2 is a Ledger under the Group
‘South Debtors’. After the execution of this function, Party 2 will also come under the Group ‘South
Debtors’.

Comments

Popular posts from this blog

Tally ODBC Driver Issue

Based on the Operating System bit (32/64) Tally has given the Exe. However the Micro Soft Excel application should be compatible to O/S and Tally.ERP9. Please note, On 64 Bit OS and 64Bit Tally.ERP9, a 32 Bit Excel application can act as a server with following steps. Please download from the Portal- ‘Microsoft Access Database Engine 2010 Redistributable’.  1. Install AccessDatabaseEngine_x64.exe Installed (steps given below separately.) 2. Excel 32 Bit (Excel 2003) Installed – and acting as server 3. Tally 64 Bit As Client –                      with ODBC Driver [ODBC: "Driver={Microsoft Excel Driver (*.xls, *.xlsx, *.xlsm, *.xlsb)};DBQ=C:Tally.ERP 9 4.5 Build 7Sample Data.xls;"] and  Tally 32 Bit as Client – with ODBC Driver [ODBC : "Driver={Microsoft Excel Driver *.xls)};DBQ=Sample Data.xls"] This will resolve the problem by NOT upgrading MS Office to 64 bit. you can continue using 32 bit application of Excel.

LOG In function

During expression evaluation, intermediated values of the expression can be passed to calculator window and a log file ‘tdlfunc.log’ inside the application directory. This is very much helpful for debugging the expression. By default, logging is enabled inside the function. Syntax LOG : < Expression> Where, is the expression whose value needs to be passed to the calculator window. [Function : GetCurrentUserApprovelAmt] Parameter : PsvCurrentUser : String Variable : ApprovelAMT : Amount Return : Amount  10 : Walk Collection : ApprovelRequredColl  11 : If : $CustVAUser =  ##PsvCurrentUser  12 : Set : ApprovelAMT : $ApprovelAmount  12A : Log : ##ApprovelAMT  13 : End If  14 : End Walk  15 : Return : ##ApprovelAMT

Differences between Applications and DLLs

Differences between Applications and DLLs Even though DLLs and applications are both executable program modules, they differ in several ways. To the end user, the most obvious difference is that DLLs are not programs that can be directly executed. From the system's point of view, there are two fundamental differences between applications and DLLs: An application can have multiple instances of itself running in the system simultaneously, whereas a DLL can have only one instance. An application can own things such as a Stack, Global memory, File handles, and a message queue, but a DLL cannot.