Setting FM Values
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2004-03-18 12:23 AM
‎2004-03-18
12:23 AM
FM_InventoryNumber = sPrefix + sGauge + sSuffix
Assume all of the variables are set to string values. Where should I put this line? I put it in the Master Script, but it doesn't fill the parameter. I tried the Parameter Script, but that didn't work either. Where should it go?
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2004-03-18 12:32 AM
‎2004-03-18
12:32 AM
Put the keyword PARAMETERS in front of the line in the Parameter Script. See the GDL Reference Manual (8.0/8.1) page 108 - section 10.2 ... or the old 6.5 manual page 163 section 9.2.
HTH,
Karl
HTH,
Karl
AC 28 USA and earlier • macOS Sequoia 15.4, MacBook Pro M2 Max 12CPU/30GPU cores, 32GB
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2004-03-18 12:35 AM
‎2004-03-18
12:35 AM
Jay,
just put this line into the parameter script:
PARAMETERS FM_InventoryNumber = sPrefix + sGauge + sSuffix
that will do
(assumingly sPrefix, sGauge, sSuffix are string variables)
just put this line into the parameter script:
PARAMETERS FM_InventoryNumber = sPrefix + sGauge + sSuffix
that will do
(assumingly sPrefix, sGauge, sSuffix are string variables)
::rk
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2004-03-18 12:58 AM
‎2004-03-18
12:58 AM
I knew I was missing something stupid!