I haven't gotten any responses from this post, and now that I look over my
question again, it seems confusing. So let me clarify my situation.

I created a PLP process in the webtop. It contained four steps which I named
EditHeader, EditImage, EditBody and EditTeaser. I then created the .cfm's
for each of these named steps. I was able to get the advance to work with
the PLP step names I had entered. However, during the process I realized
that creating each PLP step with a name that was incremented would be great
for using a back button as I could access the previous step without having
to check on the actual names by using the following code:

<CFIF ISDEFINED("form.Back")>
        <!--- get the previous step index assuming the step name is 'stepX'
--->
        <CFSET prevstep = #right(thisstep.name,len(thisstep.name)-4)#-1>
        <!--- send the plp process to the previous page --->
        <CFSET thisstep.nextStep = "step#prevstep#">
        <CFSET thisstep.iscomplete = 1>
        <CFSET thisstep.advance = 1>
</CFIF>

So I went back to the webtop and changed the name of each step to be the
word Step with and index. I named them Step1, Step2, Step3 and Step4. In the
webtop PLP section, the names looked changed, however when I applied the
above code, I got the error:

Error resolving parameter STTDO.PLP.STEPS.BYNAME.STEP1

Now, without changing the names of my PLP steps in the webtop I changed my
'thisstep' code to use the original names (EditHeader,EditImage,EditBody and
EditTeaser) and it worked! Somehow the edits in the webtop for PLP step
names does not change every instance of the PLP step name.

Am I correct in assuming this? Has anyone ever changed their PLP name's and
noticed a similar error? This seems like a bug to me.

Nate


-----Original Message-----
From: Nate Smith [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 14, 2001 2:29 PM
To: Spectra-Talk
Subject: Edits To PLP Step Names Do Not Change Completely


This is a problem I've had when choosing where to go next in PLP processes.
I created a four step PLP. I named the steps as EditHeader, EditImage,
EditBody, EditTeaser. Then when I wanted to change the names of the steps to
something easier to remember and make dynamic for purposes of using a back
button (Step1,Step2...). After I did this in the Webtop and went back and
made the appropriate changes to my PLP logic, I got the following error.
 
Error resolving parameter STTDO.PLP.STEPS.BYNAME.STEP1
 
If I place the old name of EditHeader, it works just fine. When I made the
changes in the Webtop, the names actually did change, but somehow that name
is stored somewhere else and that is not being updated. Has anyone else
experienced this?
 
Thanks,
Nate

-
Nate Smith, 
Lead Developer 
[EMAIL PROTECTED] 
www.doceus.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
------------------------------------------------------------------------------
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/spectra_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to