Thanks, now I could get the desired output but also I could see the warning message in the log as below. Could you please tell me how to get rid of this warning?
878 /*Solution Component Name derivation*/
2879 if find("&etls_jobName","INPUT",'_') > 0
2880 then SOLN_CMPNT_NM= "DATA IMPORT";
2881 else if find("&etls_jobName","EXPORT",'_') > 0
2882 then SOLN_CMPNT_NM = "DATA EXPORT" ;
2883 else if find("&etls_jobName","LOA",'_') > 0
2884 then SOLN_CMPNT_NM = "DATA LOADER" ;
2885 else if find("&etls_jobName","TRA",'_') > 0
2886 then SOLN_CMPNT_NM = "DATA TRANSER" ;
2887 else SOLN_CMPNT_NM = "OTHER" ;
2888 /*Job return code*/
2889 %PUT &SYSRC.;
0
2890 run;
WARNING: In a call to the FIND function or routine, the modifier "_" not valid.
WARNING: In a call to the FIND function or routine, the modifier "_" not valid.
WARNING: In a call to the FIND function or routine, the modifier "_" not valid.
WARNING: In a call to the FIND function or routine, the modifier "_" not valid.
... View more