Hello Experts,
partition_Path=/vcs_valuation_type=FRTB/vcs_run_subtype=ES/vcs_run_qualifier=FC/cob_year=2022/cob_month=03/cobdate=20220304/package_type=FLASH/resu lt_type=FRTB_TRADERBOOK_PNL/result_request_id=5;
formatted_partition= vcs_valuation_type="FRTB",vcs_run_subtype="ES",vcs_run_qualifier="FC",cob_year=2022,cob_month=03,cobdate=20220304,package_type
="FLASH",result_type="FRTB_TRADERBOOK_PNL",result_request_id=5;
i have written one simple program to get formatted_partition based on above requirement but with my program it also adding doble quote to digits value.
%let filePath=/vcs_valuation_type=FRTB/vcs_run_subtype=ES/vcs_run_qualifier=FC/cob_year=2022/cob_month=03/cobdate=20220304/package_type=FLASH/resu lt_type=FRTB_TRADERBOOK_PNL/result_request_id=5;
data _null_; temp=substr(tranwrd((tranwrd("&filePath",'/','",')),'=','="'),3); form_path=compress(%sysfunc(cat(temp||'"'))); put form_path; %let formPath=form_path; run;
can anyone assist? @Ksharp @Tom
... View more