Problem :
system function and Iexplore command with parameters
The customer would like to use system function to run iexplore command with a parameter begins and finishes with double quote .
Example : iexplore “http://www.microfocus.com “
Resolution:
The single quote must be used to delimited the string .
Example
MOVE ‘iexplore “http://www.microfocus.com “’ TO DATA-ITEM1
Or
STRING
‘iexplore’ DELIMITED BY SIZE
‘ “http://www.microfocus.com “’
DELIMITED BY SIZE
INTO DATA-ITEM2
#commandline
#netexpress