I have a process where prospective users request a SAS Web account for certain applications. Their requests get approved by the application "owners" before the admin creates the accounts in SAS. If an app. owner rejects a user, I want to use an HTML tag for them to provide a rejection reason.
My problem: The text area shows up in the email, but the textarea value does not pass to the next stored process when they submit it. I tried to just reference "&rejectcomments" in the sas stored proc being posted to, but the value is empty.
Here's a snip of code from my FILENAME statement:
put 'Reason:
put '&email=';
put "&email";
put '&password=';
put "&password";
put '&userName=';
put "&userName";
put '&rejectcomments=';
put '&approved=0&">';
put ' ';<br>
put ' ';
put '
Message was edited by: Ashley Tozzi
Message was edited by: Ashley Tozzi
... View more