Hi Bhanu, were you able to resolve this. I am having the same issue.
↧
Forum Post: RE: Rounding issue in the decimal field
↧
Forum Post: Custom MultiSelect Option Set Lead fields not returned in EntityDefinittions API request
Hi all, We are using the web API to make a call to get all the fields for the Lead entity ("EntityDefinitions(LogicalName='lead'/Attributes) and it works great. We get all the fields that are part of the Lead entity -- except custom fields and are created that are of the type MultiSelect Option Set. We get Picklist fields just fine, but no MultiSelect Fields. I've done google searches and searched the API documentation but have found nothing as to why those types of fields wouldn't be returned when requesting the EntityDefinitions for the Lead entitiy?!? Anyone have an idea? Thanks... Michael
↧
↧
Blog Post: Non-Profit Uses Microsoft Azure to Advocate for Education Funding
The Commit Partnership Utilizes Microsoft Azure to Advocate for $6.5 Billion in Funding Earlier this year, AKA Enterprise Solutions worked with The Commit Partnership , a Texas non-profit focused on education, to help them gain better insight into their data. Since its inception, The Commit Partnership had managed to accumulate over 20 terabytes of data related to educational funding, student performance, and more. With so much data to account for, the organization was struggling with how to compile, analyze, and gain actionable insights from their data in order to make better and more strategic decisions. Particularly when it comes to resource management and funding, The Commit Partnership relies on data insights to advise the schools they work with. The ability to report on prior successes is also heavily data dependent. Without this reporting in place, it’s difficult to secure critical funding from various partners. At AKA Enterprise Solutions, we teamed up with Microsoft, DataKind, and Strive Together to develop a streamlined, easily accessible cloud platform for The Commit Partnership. By combining predictive analytics with the power of machine learning, the platform enables The Commit Partnership to run models against their vast data sets, offering new insight into their data. The Commit Partnership Featured in a Microsoft Customer Story AKA is thrilled that The Commit Partnership was recently featured in a Microsoft case study which highlights the non-profit’s use of Azure. Check out the case study here. Is your organization looking to improve how you manage your data? Find out more about AKA’s non-profit focused solutions. ABOUT AKA ENTERPRISE SOLUTIONS AKA specializes in making it easier to do business, simplifying processes and reducing risks. With agility, expertise, and original industry solutions, we embrace projects other technology firms avoid—regardless of their complexity. As a true strategic partner, we help organizations slay the dragons that are keeping them from innovating their way to greatness. Call us at 212-502-3900! The post Non-Profit Uses Microsoft Azure to Advocate for Education Funding appeared first on CRM Software Blog | Dynamics 365 . Related posts: Localized Web Portals by CRM Vertex Support in the Age of the Customer CRM 101 – Back to the Basics
↧
Forum Post: Data import from excel
For some reason, when I attempt to import data from an excel that was previously exported; for best practices. It gives me an error code -2,147,158,525 and all I did was change some values to see if it would take back import. I do not know what else to do... Please help!
↧
Blog Post: Power Pizza: An Introduction
It’s time for another blog series ! I wanted to use a Power App to solve a real life problem. This was a great opportunity for me to keep learning Power Apps (Model Driven and Canvas), Power Automate, and the Common Data Service. So I want to talk through what I learned! The problem I wanted to tackle was how to find the best local pizza by digitally tracking our progress during a Pizza Crawl. Today we will talk through the basics of how I accomplished this goal. Over the next few days I will share the top things I learned or struggled with. Then at the end you can download the full solution and run a Power Pizza Pizza Crawl for your friends! Pizza Crawl First Stop: Del Ray Pizza, Alexandria What is a Pizza Crawl? Recently, a friend of ours had a birthday and we asked what he wanted to do to celebrate. He said “I don’t know. I like Pizza”. So we decided to do the only thing that made sense, throw him a pizza party. And thus, the idea for our Pizza Crawl began to form. There were 4 of us going on this crawl so each of us picked one local pizza restaurant in the Washington, DC area. The plan was to drive to each restaurant, order a pizza, and obviously we needed to rate the pizza itself. At the time, I provided a paper rating sheet so we could rate each pizza on various attributes such as toppings, crust and joy. The night before, my husband turned to be and said, “It would be cool if you had an app for this.” Of course, that was a brilliant idea but my Power Apps skills we not quite ready so we used paper forms. This was a great day of pizza eating and I think our Pizza Crawling may become a annual tradition. For future events I plan on having an app to make the ranking submission much easier. Which is exactly what lead me to build the app on which this series is based. GOals The primary goal of this app was to replace the paper forms used for pizza ratings. We also wanted to give the guests the ability to enter in the pizza place they wanted to attend and see the final ratings across all locations. Stay tuned tomorrow to hear about the first version of the app. The post Power Pizza: An Introduction appeared first on Kylie Kiser .
↧
↧
Forum Post: XRM Library - Microsoft Dynamics CRM (Cloud)
Hello Forum Members: I don't know how to access the XRM Library or the *.js Library. I want to build Custom Alert from scratch. *Version: Microsoft Dynamics CRM (365) Version 1710 (9.1.0.10537) online. Can anybody help? Thanks! Casey
↧
Forum Post: Field Labels missing in custom hierarchy
Hi guys, I've created a hierarchical parent/child relationship for a custom entity and have it successfully showing up using the hierarchy visualisation feature. The only issue is that only the field value (and little icons) are showing up within the box for each record, the field labels E.g. "Total Budget" are completely missing. I have configured the hierarchy to use a Quick View Form and that quick view form definitely has labels showing. It feels like a bug... Any ideas? Cheers Aaron.
↧
Forum Post: Controls disappearing while clicking on subgrid + button using Quick Create in Dynamic crm 2016
Hi Friends, I am using Quick Create option for creating new records thru Subgrid + button. While clicking second time the + Button , controls are disappearing in Chrome browser only not IE. Can any one help on this. Please find the attached file. My contact number : +91 7550153623
↧
Blog Post: Introduction to Azure Stream Analytics
Azure stream analytics are truely real-time analytics, from the cloud to the edge. Azure Stream Analytics is designed to analyze and process high volumes of fast streaming data from multiple sources simultaneously. The simplicity of Azure Stream Analytics is that it uses familiar SQL syntax and is extensible with JavaScript and C# custom code. Basics of Azure Stream Analytics Azure stream analytics solutions will always have input, query, and output. Basics of Azure Stream Analytics Advantages of Azure Stream Analytics Ease of creating analytics pipelines Can be used for complex and large workloads As a cloud service, Stream Analytics is optimized for cost Can be used on the Edge Built-in machine learning (ML) models to shorten time to insights Azure Stream Analytics has built-in recovery capabilities in case the delivery of an event fails Azure Stream Analytics is a fully managed serverless (PaaS) offering on Azure Azure Stream Analytics encrypts all incoming and outgoing communications and supports TLS 1.2 Stream Analytics can process millions of events every second Stream Analytics can deliver results with ultra-low latencies
↧
↧
Forum Post: RE: Can you pass CRM parameters into a JavaScript web resource?
HI Pavan, Now Xrm.Page is deprecated. Now you should use "FormContext" instead of "Xrm.Page". Suppose to pass entity name you can put below script: function ABC(executionContext) { var formContext = executionContext.getFormContext(); var getEntityName= formContext.data.entity.getEntityName(); } Thank You, Nilanka
↧
Forum Post: RE: Data import from excel
Error code -2,147,158,525 denotes that the original record does not exist in CRM. Reference: docs.microsoft.com/.../web-service-error-codes Information of the older records are stored in the column A, B and C in exported excel file and these columns are hidden by default. Kindly try the below workaround and let me know if this helps. Open the excel file and save it as a CSV file. (File > Save As > File type : CSV (Comma Delimited) (*.csv)) 2. Open the newly saved CSV file, select all columns, right click on the column heading and select Unhide option. 3. Delete the columns A, B and C which has (Do Not Modify) text. 4. Save the file. 5. Go to CRM and import the CSV file using “Import from CSV” option. Keep the default delimiter settings and map the required fields if not already mapped and submit the import. This should let you import the data back to system. There is a possibility that you may hit -2147220650 error which usually occurs due to formatting mismatch between the import file and CRM, this can be fixed by validating the formats in both sides and avoid the columns like Created On and Modified On in the import file. Please let me know if you have any queries on this. Thanks, Neeraj Pawar
↧
Forum Post: RE: How to open webresource in Dynamics 365 for Mobile?
Hi Clofly, Thanks for help! CRM online version: 1710 (9.1.0.11134) online Mobile APP version: 13.19122.5 I enabled option for mobile already. And I tried to add alert function before "Xrm.Navigation.openWebResource". It works fine, but system did't navigate to the web resource. Any ideas? Luis
↧
Forum Post: No values in chart
Hi, Who know, why i didn`t see value in chart when use Unify interface In web interface i can see value ( appointmenr 1, phone call =6). This problem on all entities, and if i use bar chart or colum....
↧
↧
Blog Post: Become a Power Platform JavaScript Developer Today!
As of this morning, the doors of my Power Platform JavaScript Development course are now open. They will close on New Year’s Eve (31 December) at midnight (Central time, U.S.). If you have ever wanted to extend your Dynamics skill-set to include JavaScript, then now is the time to act. The course will not be available […]
↧
Forum Post: RE: T0 be Auto update Approve on Field
Hi Asif, We can use workflow to implement it simply. Here is a demo. There are to fields on my Account form, option set field ' CRM approval status ' with options A,B and C, date and time field ' Approve on Time '. I would the field ' Approve on Time ' should be auto update with the time when the field 'CRM approval status' is changed to B and C. 1) Create a workflow of Account entity, select Scope as Organization , select Start when as Record fields change , select the field 'CRM approval status'. 2) Add a step - Check Condition , set the field 'CRM approval status' equals B,C. 3) Then add a step - Update Record , set the field 'Approve on Time' to Dynamics Value, Process , Execution Time . 4) Activate this workflow. Since the Execution Time of the workfloww process is approximately equal to the change time of the field 'CRM approval status', it can be used to represent the field 'Approve on Time'.
↧
Forum Post: RE: Want to Show relation assistant card at Entity level only not dashboard level
Hi Yash, You can display the Assistant Cards on record level by adding the Relationship Assistance Control on your Entity Form: Once you add this on the Form and Publish, you should be able to see the cards related to this record: If you would like to read more about Assistant card, I would recommend the article below: https://docs.microsoft.com/en-us/dynamics365/ai/sales/assistant I hope you find this helpful.
↧
Forum Post: RE: Change View Column Title
Yes , You Can !! Just go to your report >> Download the .rdl file >> Open the .rdl file in notepad(It will be in XML format) Edit the column name >> save the file as new >> create a new report using the edited rdl file. Your column name will be changed !!
↧
↧
Forum Post: RE: tracking appointments from Outlook using the dynamics 365 app for outlook by Executive Assistants
Hello, I have the same question as this. I understand that the default way of doing this now is the 'Tracked in Dynamcs 365' Category as this allows the assistants to track appointments of those that they are managing. However, what this does not allow is the ability to choose where to track to. Is there a solution for this at all that you've come across please?
↧
Forum Post: How to format link properly in Create HTML table in Ms flow?
Hi, I am trying to create an html table with one column having link to the opportunity. This table I am using in sending emails. But there is an issue with the anchor tag as it is not appearing as it must appear. I am stuck at this point an its been two days I have searched here and there to get some help but still stuck here. Please help. How can I see the link as normally anchor tag show. See below image for your reference.
↧
Blog Post: “File” data type in CDS. All you may need to know about it.
Well this one is pure serendipity. I was working for a customer and while creating a new field for an entity, I could see a new data type called – “File”. Honestly I haven’t heard of any announcement regarding this data type before and I was quite intrigued about what it is this data type.… Read More
↧