Lazy Guys like Me! don't have the patience to type "REPL .ZF .ZL xxxxx". Instead I have coded a small REXX Macro with the Name "VSAVE" as shown below. This will take care of both PS as well as PDS-Member.
Now, I just have to use VSAVE instead of the ISPF Save command to save the code in View mode.
Code:
/* EDIT MACRO */
/* This macro can be used to save a member/PS in VIEW mode */
"ISREDIT MACRO"
"ISREDIT (DataSet) = DATASET"
"ISREDIT (Member) = MEMBER"
DataSet="'"||DataSet||"'"
IF Member = '' THEN
"ISREDIT replace .zf .zl "DataSet
ELSE
"ISREDIT replace .zf .zl "Member