Hi All, I've got some api url named https://xyz.com/abc/def/expecteddel<YYYY-MM-DDTHH:MM:SS.000Z;status==1001 So over there YYYY-MM-DDTHH:MM:SS.000Z should be daily wise datetime and that datetime and status==1001 must be used as macro variable to create a url. For ex, %let host= rest.xyz.com; %let uri=/abc/def; %let date must be equal to YYYY-MM-DDTHH:MM:SS.000Z; to this format. %let status must be equal to ==1001. So the final url looks like this. %let url=&host.&uri.&date.&status.; So, can anyone help me out on how to achieve the above url macro variable please. Any help appreciated. Thanks.
... View more