Hello,
What is the best way to convert Have data to Want data ?
From 30OCT2021 to 301021 without informat as 30OCT2021 is actually created during a data step
Thanks
----------------------------------------------------------------- Data Have ; input x9 $9. ; cards ; 30OCT2021 3NOV2022 ; Run ;
------------------------------------
Data Want ; input x10 ddmmyy8. ; format x10 ddmmyy8. ; cards ; 30102021 03112022 ; run ;
... View more
A new update is available for SAS Model Implementation Platform , version 3.2 : Hot Fix: F6U008 - Published 26OCT2022 , Download link for F6U008 Component name: SAS Model Implementation Platform Related SAS release: 9.4 Issues addressed in F6U008 SAS Note 64760 An \"Unable to Load Published Modeling System\" error occurs when importing a SAS® Model Implementation Platform export or modeling system file SAS Note 64919 Added functionality to SAS® Model Implementation Platform to support maximum horizon of 0 for specific runs SAS Note 69554 The Select Portfolio Data window is unresponsive and returns \"An HTTP error occurred (504 - error)\" in SAS® Model Implementation Platform SAS Note 69594 A comparison of attribution analysis results fails with \"ERROR: The text expression length exceeds maximum...\" in SAS® Model Implementation Platform This list of notes might be incomplete. For a complete list of issues addressed by this hot fix, visit the hot fix page for F6U008 Note: A comprehensive list of all SAS hot fixes is available from support.sas.com. You can use the SAS Hot Fix Analysis, Download, and Deployment (SASHFADD) tool to manage your SAS hot fixes.
... View more
Hi All, Is there any way to log SOAP XML request/response for web process used within RTDM campaign. Customer is checking if there is such feature where exteranl calls made to web services within RTDM can be logged somewhere or can be accessed to check .
... View more
Hi,
I want to put hour and minute of the time 20 second before current time into macro variable.
The code below might convey my idea better.
Can you please help?
Thanks,
HHC
%let now=%sysfunc(time() MINUS 20 SECOND);
%let hh=%sysfunc(hour(&now),z2.);
%let mm=%sysfunc(minute(&now),z2.);
%put &hh &mm;
... View more