08-12-2020
mballey
Calcite | Level 5
Member since
05-14-2020
- 3 Posts
- 3 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by mballey
Subject Views Posted 593 07-28-2020 06:01 AM 815 05-15-2020 12:36 AM 962 05-14-2020 06:03 AM -
Activity Feed for mballey
- Posted Flows in Flow Manager don't run properly when I am not the one who deployed in SAS DI on SAS Programming. 07-28-2020 06:01 AM
- Posted Re: Store each loop output into a single variable in a concatenated format separated by "/& on SAS Programming. 05-15-2020 12:36 AM
- Liked Re: Store each loop output into a single variable in a concatenated format separated by "/" for ed_sas_member. 05-15-2020 12:35 AM
- Liked Re: Store each loop output into a single variable in a concatenated format separated by "/" for s_lassen. 05-15-2020 12:35 AM
- Liked Re: Store each loop output into a single variable in a concatenated format separated by "/" for RichardDeVen. 05-15-2020 12:35 AM
- Posted Store each loop output into a single variable in a concatenated format separated by "/". on SAS Programming. 05-14-2020 06:03 AM
-
Posts I Liked
Subject Likes Author Latest Post 1 2 1
07-28-2020
06:01 AM
Hi, Our team has deployed job flows in SAS Management Console. Whenever I schedule an existing flow in SMC to Flow Manager then run it, The flow doesn't run properly. I doesn't create any logs and each jobs within that flow only runs at exactly 5 secs or 10 secs and noting happens. I tried to create a flow in SMC adding the jobs that I personally deployed in SMC and it worked fine in flow manager. So to run the flows properly, I need to deploy all the jobs within a flow. This is very time consuming when I am working a flow with a lot of jobs in it. Could you please help? Thank you so much.
... View more
05-15-2020
12:36 AM
Thank you so much
... View more
05-14-2020
06:03 AM
Good Day! PROBLEM: My code is looping through a list of inputStrings. Each inputString has a corresponding Indicator. If the inputString Indicator is "S" then store it in outputString1 If the inputString Indicator is not "S" then store it in outputString2 I want to store the outputs of each loop iteration into a single variable in a concatenated format separated by "/". Please see below: Thank you so much! HAVE: (loop 1) inputString Indicator inputString1 S inputString2 A inputString3 B inputString4 C inputString5 S WANT: outputString1= inputString1/inputString5 outputString2= inputString2/inputString3/inputString4 SAMPLE CODE: data WORK.have / view=WORK.have; infile "&path" length=len missover; curr_len=1; do until (condition); select (Type); when ("M") select (Indicator); When ("S"); do; outputString1=Trim(inputString); output; end; otherwise do; outputString2=Trim(inputString) || ' / '; output; end; end; end; end;
... View more