Hi fmforums!
It's been a long time since I last made a post, as just searching through the available content here has usually answered my questions [if I search long enough]
I'm currently reworking my scripts so that they become universal in my database - less maintenance you see…
And I would like to know whether anyone can shed some light on a rambling question I have?
In all of the underlying tables, I have some regular number fields, such as: flag, delete, marker…
Dependent on their auto-enter calculation at record creation, they’re either 0 or 1.
I’m trying to change my script steps so that a script created is independent of any table, for example:
table_alpha::delete
table_bravo::delete
table_charlie::delete
…used to require three separate scripts to set each table record’s delete field, now just requires one script:
Set Variable [ $t ; Value:Get ( LayoutTableName ) ]
Set Variable [ $t ; Value: $t & "::delete" ]
Set Field By Name [ $t ; 1 ]
Commit Records/Requests
However, I presently seem to be hitting a wall on getting a field’s contents based on a variable generated in the script, for example:
table_alpha::marker
table_bravo::marker
table_charlie::marker
allows me to mark several records at a time in different tables, but I want to be able to toggle its field value to 0 or 1, through a script. So following the above line… ( assuming table_alpha::marker = 1 )
Set Variable [ $m ; Value:Get ( LayoutTableName ) ]
Set Variable [ $m ; Value: $m & "::marker" ]
Set Variable [ $flag ; Value:GetFieldName ( $m ) ]
… should return the value of "table_alpha::marker" to $flag if script is run from table_alpha,
return the value of "table_bravo::marker" to $flag if script is run from table_bravo,
return the value of "table_charlie::marker" to $flag if script is run from table_charlie
then I would intend on continuing by testing $flag further along in the script
If [ $flag = 1 ]
do something
Else If [ $flag = 0 ]
do some other thing
End If
Commit Records/Requests
However, I've tried the following versions of the script step in red, with the following results (assuming table_alpha::marker = 1)
Set Variable [ $flag ; Value:GetFieldName ( $m ) ] = Error 5 - command is invalid
Set Variable [ $flag ; Value:GetFieldName ( "$m" ) ] = table_alpha::marker, instead of value of table_alpha::marker
Set Variable [ $flag ; Value:$m ] = table_alpha::marker, instead of value of table_alpha::marker
Any suggestions would be appreciated.