nishukhawale
Obsidian | Level 7
Member since
12-28-2015
- 26 Posts
- 9 Likes Given
- 0 Solutions
- 0 Likes Received
This widget could not be displayed.
-
Latest posts by nishukhawale
Subject Views Posted 2122 12-19-2016 04:26 AM 3748 12-12-2016 04:12 AM 1191 11-01-2016 04:44 AM 2287 11-01-2016 04:26 AM 2329 10-28-2016 01:00 AM 3933 10-25-2016 01:18 AM 3933 10-25-2016 01:15 AM 3934 10-25-2016 12:54 AM 3959 10-24-2016 09:10 AM 1766 08-09-2016 01:17 AM -
Activity Feed for nishukhawale
- Posted day on day code run on SAS Programming. 12-19-2016 04:26 AM
- Posted SUM up Vertically in Proc SQL on SAS Programming. 12-12-2016 04:12 AM
- Posted Re: SAS LASR server data Load life cycle on SAS Visual Analytics. 11-01-2016 04:44 AM
- Posted Re: error during query building on SAS Visual Analytics. 11-01-2016 04:26 AM
- Liked Re: error during query building for TriciaAanderud. 11-01-2016 04:26 AM
- Liked Re: SAS Mobile BI Add server for lauralawton. 10-28-2016 01:01 AM
- Posted Re: error during query building on SAS Visual Analytics. 10-28-2016 01:00 AM
- Liked Re: error during query building for TriciaAanderud. 10-28-2016 01:00 AM
- Posted Re: Round value upto 8 decimal palces on SAS Programming. 10-25-2016 01:18 AM
- Liked Re: Round value upto 8 decimal palces for Loko. 10-25-2016 01:17 AM
- Posted Re: Round value upto 8 decimal palces on SAS Programming. 10-25-2016 01:15 AM
- Posted Re: Round value upto 8 decimal palces on SAS Programming. 10-25-2016 12:54 AM
- Posted Round value upto 8 decimal palces on SAS Programming. 10-24-2016 09:10 AM
- Liked Re: SAS Mobile BI LDAP user Login Fail for anja. 08-09-2016 05:56 AM
- Posted Re: SAS Mobile BI LDAP user Login Fail on SAS Visual Analytics. 08-09-2016 01:17 AM
- Posted SAS Mobile BI LDAP User Login Issue on SAS Visual Analytics. 08-08-2016 02:54 AM
- Posted SAS Mobile BI LDAP user Login Fail on SAS Visual Analytics. 08-08-2016 02:34 AM
- Liked Re: LDAP User login for userid007. 07-08-2016 12:51 AM
- Posted LDAP User login on Administration and Deployment. 07-05-2016 02:57 AM
- Posted Configuring Web Authentication for Mobile BI LDAP user login on Administration and Deployment. 06-29-2016 02:36 AM
-
Posts I Liked
Subject Likes Author Latest Post 1 1 1 2 1
12-19-2016
04:26 AM
Hi, I have data where todays closing becomes next days opening after calculations in Base SAS Code I have written and I have data from Jan2016 to Jul2016 so what is happening here is when I run one time data for 1st jan matches when I run second time data for 2nd jan matches and so on but how to cut down this repeting process short so that I can get all the matching values in one go. Thnaks,
... View more
12-12-2016
04:12 AM
Hi, I am trying sum up the columns using SUM function ang group by but it is not happening I am attaching dummy data and code I am using cuurently please suugest me solution for the same. code: proc sql; create table demo.unit_capital1 as (select t1.*, (case when (t1.sch_class in ('539','540','541','812','813') and t1.tran_type in ('SWIN','SWINC','UNSAL','UNSALC')) then sum(t1.trades_units) else 0 end) as SHARES_SUBSCRIBED, (case when (t1.sch_class in ('539','540','541','812','813') and t1.tran_type in ('SWOUT','SWOUTC','UNPUR','UNPURC')) then sum(t1.trades_units) else 0 end) as SHARES_REDEEMED, (case when (t1.sch_class in ('539','540','541','812','813') and t1.tran_type in ('SWIN','SWINC','UNSAL','UNSALC')) then sum(t1.Subscription) else 0 end) as Subscription_Money, (case when (t1.sch_class in ('539','540','541','812','813') and t1.tran_type in ('SWOUT','SWOUTC','UNPUR','UNPURC')) then sum(t1.Subscription) else 0 end) as Redemption_Money, (case when (t1.sch_class in ('539','540','541','812','813') and t1.tran_type in ('SWOUT','SWOUTC','UNPUR','UNPURC')) then sum(t1.scheme_load) else 0 end) as Load_ from demo.unit_capital t1 WHERE T1.SCH_CLASS in ('539','540','541','812','813') and t1.upload_date >= '31DEC2015'd group by t1.UPLOAD_DATE,t1.sch_class,t1.tran_type) order by t1.sch_class,t1.tran_type; quit; Thanks,
... View more
11-01-2016
04:44 AM
Hi Sandeep, I am also new to SAS VA but as far as your 2nd and 3rd query cis concern I think I can help you out to some extent, I am trying to answer your 2nd and 3rd question at one go, ---if you are suppose to use autoload feature for perticular data set then you are suppose to create library in SMC where you have to regester the table the one you are going to use as data source for report then in SAS VA you have to create data query change the name of data source,schedule the query and replace the previous data source with new one for the report. this is the process for autoload I have followed however there is another way for autolod which I am not aware about I am still exploring. Thanks, Nishant
... View more
11-01-2016
04:26 AM
Thank you very much mam for your reply and really useful links. Nishant
... View more
10-28-2016
01:00 AM
sorry for this to late reply but suggestion you have given for unloading some data from the LASR server did work and the query ran well so does my auto load process. Madam do you some alternate approaches for Autolad in SAS VA other than registering table in library in SMC and then build query on SAS VA. I would like to here from you and once again I really appreciate your reply and solution on the topic. Thanks&Regards Nishant
... View more
10-25-2016
01:15 AM
thank you for your reply however I got the output by using following function Var_new= round(var, 10**-dp)
... View more
10-25-2016
12:54 AM
actually I would like make the process automated and Proc print will not work for me. but thank you very much for your reply and good news is I got the answer for that Var_new= round(var, 10**-dp)
... View more
10-24-2016
09:10 AM
Hi, I am trying to round off the value upto its 8 decimal places I tried following functions and getting results against it but it is not as expect it to be e.g. value 0.00932304 round function=0 ceil=1 floor=0 int=0 what shall I try so that I can get some result other than these? I am trying it for column. Thank You
... View more
08-09-2016
01:17 AM
Hi, I was getting this error while log in after entering server details and LDAP user credentials. But anyways it got solve as it seems to be issue with Realm parameters.I changed those and now it is working. Thanks
... View more
08-08-2016
02:54 AM
Hi, I am trying for accessing SAS Mobile BI for that I have even followed Web Authentication Steps also using Realm details I am able to login in LDAP Utility for data authentication after all this I have restatrted the Webapp server but still I am not able to login into SAS Mobile BI using LDAP users getting error as Invalid credentials,can somebody help me out with solution for this. Thanks,
... View more
08-08-2016
02:34 AM
Hi, I am trying for accessing SAS Mobile BI for that I have even followed Web Authentication Steps also using Realm details I am able to login in LDAP Utility for data authentication after all this I have restatrted the Webapp server but still I am not able to login into SAS Mobile BI using LDAP users getting error as Invalid credentials,can somebody help me out with solution for this. Thanks,
... View more
07-05-2016
02:57 AM
Hi, I am refering the following document perticularly section Configuring Web Authentication Starting with the Second Maintenance Release for SAS 9.4 http://support.sas.com/documentation/cdl/en/bimtag/68217/HTML/default/viewer.htm#n1bhp608f0hsoen10i1vi0p9l5f7.htm I have made the changes as asked in the document but I am bit confuse in step 7 to 9,can any body help me out with these steps. also I have sasdemo as LDAP user which is getting log in in SAS Mobile BI but for other users it is not happening. Thanks&Regards Nishant
... View more
06-29-2016
02:36 AM
Hi, I can not login through SAS Mobile BI App using LDAP user Login, so as a solution I am following below mentioned link for Configuring Web Authentication, http://support.sas.com/documentation/cdl/en/bimtag/68217/HTML/default/viewer.htm#n1bhp608f0hsoen10i1vi0p9l5f7.htm for second maintenance release in step 14 where can I find required information? we have ADFS server in place. Thnaks&Regards Nishant
... View more
06-23-2016
12:05 AM
Hi, actually I got solution by making changes on conf file and by adding certificate chain file but anyways I will keep thing in mind from next time. Thanks&Regards Nishant
... View more