Hi! To be very specific I wanted to do it in perl file. From Form Api using setDCRName I can set DCR Name to uppercase. But how can I do it in Perl.
$fname =~ uc($fname);
Hi! I want to convert DCR File name to upper case while renaming file in Teamsite..if user enters new file name in mixed case or in lower case.
Sorry, fish, but I know you would do the same to me:[left]$fname =~ uc($fname);Will not work. Remove the tilde:[left]$fname = uc($fname);Will work.[/left][/left]
The uc command will only change the string $fname to Uppercase, but it will not change the DCR Name...The Question here is how will the DCR name gets changed ( Name to be converted into uppercase)
Like the SetDCRName in FormAPI..Do we have a similar command which can be used in perl..
The uc command will only change the string $fname to Uppercase, but it will not change the DCR Name...The Question here is how will the DCR name gets changed ( Name to be converted into uppercase)Like the SetDCRName in FormAPI..Do we have a similar command which can be used in perl..