Quantcast
Channel: Microsoft Dynamics 365 Community
Viewing all 10657 articles
Browse latest View live

What Dynamics partners can expect from Microsoft Inspire 2017

$
0
0
Microsoft is on the move! Ever since the start of Satya Nadella as CEO some three years ago, the company really seems to change every single aspect of their business. And, as a result, every aspect of the partners' business. So what do you think ...read more

Posting Vendor invoices during Period close

$
0
0
Another filing in 'things learned along the way'. In D365 for Operations, if the Purchasing module is On hold for the period and you try to post a vendor invoice with a date that falls in the On...(read more)

$400 off your D365UG/AXUG Summit Nashville ride: Giddy up & register before June 29

$
0
0

SummitEmailHeaderAXUG_June.jpg

Every day, you rely on your user group to power your business with authentic exchanges that boost your knowledge and keep you moving. This fall, step away from the world of net-centered chat and power real-life growth alongside your peers in a lively, engaged environment.

The Early bird deadline is right around the corner on June 29. Register now to save $400 before it’s too late!


Content preview

D365UG/AXUG Summit Nashville, October 10-13, is a can’t-miss conference for the Microsoft Dynamics 365 & AX community. As we shared earlier this month, exclusive sessions will give you a front-row seat to boosting your ability to get the job done every day, with three days’ worth of intensive learning opportunities. From roundtables to general sessions, you’ll geek out for days, swapping secrets with other users you’ll rely on for years to come. Session details will be released next month, but check out our learning track descriptions for a preview of what’s to come.


Infographic - Why you should attend D365UG/AXUG Summit

Join the 63% of professionals who take time to learn skills for their job each year, leading to results like expanded professional networks and career advancement. Like 93% of last years’ Summit survey respondents, who said their objectives for attending the event were met, you too will find value in the wide array of educational and networking opportunities available in Nashville.

We have been making some bold claims about how registering is key to pushing your company forward, now here’s the data to back it up:

AXUG_infographic_screenshot.jpg
DC-SN17-CYB-Web11.png

Have you seen our first piece of the artwork?
The “Boss of the Plains”, our cowboy trail blazed new terrain and adapted to the modern world, totally undaunted. And so have you - the users of Dynamics - adapted to product updates, new techniques and tools, while refining your use of older product versions. At D365UG/AXUG Summit, we’ll help you figure out how to navigate new (and existing) terrain to make you look like the trailblazer that you are. Learn more about our artwork.


Register now – Early Bird pricing ends in 8 days!

Time is running out to register for D365UG/AXUG Summit at the lowest price we offer. If you are a member of the User Group for Dynamics 365 & AX (D365UG/AXUG), outside of the fantastic value of D365UG/AXUG Summit, save $400 when you register before the Early Bird pricing deadline on Thursday, June 29. Not yet a member? You can also save and gain year-long value when you bundle your conference registration to become a member of the user group. Learn more.


The price may be discounted, but the value is better than ever – it just makes cents! Saddle up and discover why D365UG/AXUG Summit is your key to connecting with Dynamics peers - Click here to register now.

Enum value to Table Insertion Dynamics Ax 2012 R3, D365 for operations

$
0
0

Let me share you a small tip, During customization We extend out of box Enum for classification. Later client requirement is extensive usage of new Values for classification. For adding new values in enum results dependency on technical person . So we did customization and provide form and custom table so he can create number of values as he want. But now next challenge was, copy enum values and labels in Custom table, So He can use these value instead create again. I used following code snippet to copy data from Enum and insert into Custom table. Hopes this helps.

 

EnumId   enumId   = enumNum(LedgerPostingType);

DictEnum dictEnum = new DictEnum(enumId);

int      _NoOfValueInEnum = dictEnum.values();

int      counter;

CustomTable  _header;

delete_from _header;

for(counter = 0; counter < _NoOfValueInEnum; counter ++)

{

_header.ReportHeaderCode = dictEnum.index2Label(counter);

_header.Description = dictEnum.index2Label(counter);

_header.SortOrder=0;

_header.EnumValue = dictEnum.index2Value(counter);

_header.insert();

 

}

The Dynamics Podcast

$
0
0
The Dynamics community is getting bigger and bigger each day and it’s giving us consultants the opportunity to share our experiences and learning with our fellow Dynamics companions! These days there’s...(read more)

Trabajando con la máquina virtual de desarrollo local en Dynamics 365 for Operations

$
0
0
No voy a escribir una entrada sobre cómo configurar una MV local de Dynamics 365 for Operations para desarrollo, porque ya se han publicado muchísimas desde el lanzamiento del producto hace unos meses...(read more)

Fix Table and Field ID synchronization conflicts in AX

$
0
0

It is a very common issue when we change metadata in a source/build environment incorrectly that the Production environment’s AX database field identifiers are getting out of synch from our Application Object Tree (AOT). This can typically happen during a code upgrade scenario (after applying a hotfix or a new ISV solution), or if a field/table has been deleted (because&period;&period;&period;

The post Fix Table and Field ID synchronization conflicts in AX appeared first on DAXRunBase.

Impacts of calendars, priority, efficiency, level and properties on finite capacity scheduling in Microsoft Dynamics 365 for Operations

$
0
0
Previously on this post , we have explained the main functionalities on finite and infinite capacity using resources, resource groups, capabilities and capacities. Today we are going to complete the previous...(read more)

Save storage with data deduplication

$
0
0

This blog post isn’t directly about software development, because I’m going to look at a certain feature of Windows Server, but my primary motivation is still dealing with development and testing.

When you want to set up AX 7 (Microsoft Dynamics 365 for Finance and Operations, Enterprise Edition :)) environments for development, testing or demonstration purposes, you can either deploy them to Azure or download a virtual disk and create a virtual machine locally or in a custom data center. Many partners (especially VARs) prefer hosting VMs by themselves, because they’ve already invested to data centers and they’re used to hosting virtual machines with previous versions of AX.

They may need a large number of VMs for AX 7 (for many projects and many developers), but it’s not a problem for computation resources, because just a fraction of these VMs are actually running. For example, a developer may have VMs for five projects but only one of them is used for development at any time. The problem people complain about is the storage requirement, because the virtual disks are pretty big (a single fresh VHD takes approximately 70 GB and it grows when used).

Most data in these virtual disks is the same, therefore if there was a feature to somehow store the same bits just once, it would drastically reduce the amount of data in physical storage. Fortunately it’s exactly what Windows offers.

Windows Server 2012 introduced the Data Deduplication feature, which detects identical blocks of data (not whole files, which would be useless for virtual disks) and stores them only once, keeping a sort of a link from the other places. It’s completely transparent to you – you work with all files in the same way as before. Windows Server 2012 R2 then added extra support for virtual disks in VDI (Virtual Desktop Infrastructure) scenarios, therefore this is the minimum version you want to use. (Windows Server 2016 supports Data Deduplication too, of course, and have added a few improvements.)

According to Microsoft measurements, the usual space saving in these scenarios is 80-95% and I would indeed expect high numbers with AX VMs, because they’re almost the same. This means that any additional VM will need (after deduplication) just a few extra gigabytes of storage and having many VMs won’t be a problem anymore.

I haven’t try it by myself, though, because I don’t need it at home and clients have specialized infrastructure guys dealing with these things. If you have practical experience, you can share it in comments below this post.

If you want to learn more about data deduplication in Windows Server, the latest documentation is here.

D365UG/AXUG Summit Nashville Early Bird Pricing ENDS THURSDAY, JUNE 29!

$
0
0

Summit-2017-CYB-AX9.png


​It's time to register for D365UG/AXUG Summit Nashvilleat the lowest rate possible! D365UG/AXUG Summit is the one place this year where you’ll take part in electrifying general sessions, essential peer-to-peer knowledge exchanges, product insight forums, and authentic networking opportunities. 

The Early Bird deadline ends this Thursday, June 29! Take advantage of this sweet deal and save $400 instantly.

What can you expect from D365UG/AXUG Summit? Take a gander at this:

Time is running out. Hop on your horse and register at our lowest rate today!

ArrowSignRegisterNow_distressed.png

3 critical questions a distributor must ask an ERP vendor

$
0
0
The most recent generation of Dynamics AX and Dynamics 365 for Operations provide distribution companies with new opportunities to modernize operations and improve profitability. Still, distribution CFOs must do their due diligence and ask ...read more

Summit 2017

$
0
0
When the announcement was made that Summit 2017 would be in Nashville, I was ecstatic! Nashville is an easy drive for me, so I won't be spending a lot of time in airports this year. Also, Nashville has a great vibe and really cool music scene. It's going to be a lot of fun!

The week of Summit just happens to be one of my favorite weeks of the year because I get the opportunity to meet up with my peers, exchange information, and learn more about AX and the upcoming Dynamics 365 landscape. I am also personally invested in Summit Nashville as I serve on the Summit Planning Committee, acting as a liaison to help provide great content for all end users.

What is Summit?


Summit is an annual conference for all Dynamics users. It is held in the fall, typically in mid-October. This conference is jam-packed full of informational sessions and learning. It can feel overwhelming, but it is by far one of the most beneficial facets of an AXUG membership outside of the face-to-face interaction and networking of local chapter meetings. There will be sessions led by users, partners, and Microsoft employees over a broad range of topics such as Finance, Project Management, Security, Technical, AX for Beginners, Warehouse and Inventory... the list goes on and on!

Early Bird Pricing



There are different registration pricing tiers, and the Early Bird pricing for Summit ends on June 29. If you're even considering attending, get registered this week for the best deals!



You can find more on pricing on the Summit website. This conference will provide the most bang for your buck out of any AX learning experience/conference, and I have personally found great benefit from attending Summit for the last several years.


Summit Nashville


This year, Summit will be held from October 10 - 13 at the Gaylord Opryland Resort in Nashville. Also, there will be Pre-Conference Academy training held on October 8 - 9 on various topics. Academy training is a chance for users to get half or full day deep dive sessions from experts in the field. Many people come out of these with a lot of great new ideas and feel it is a great way to maximize your time and investment.

Yeehaw! Picture of Summit cowboy stating details for Summit Nashville from October 10 - 13 at the Gaylord Opryland Resort.

I will be attending Summit Nashville as a presenter, a user, and as an avid AXUG volunteer. Please let me know if you'll be attending and be sure to say hi if you see me! 

Respond Quickly to Your Construction Bid Through Connected Technology

$
0
0

As a growing construction company, you need to be able to respond quickly to bids through connected technology. A speedy and accurate reply to RFPs, RFIs, and RFQs increases your chances of winning the bid. Centralizing data will streamline and enhance estimating and business processes, giving you a competitive advantage. By building on insights from past projects, you can focus on profit-generating jobs and ensure skilled experts are involved even when they are busy in the field. Strengthen your construction bid processes by arming your team with a unified management solution.

A connected, centralized management system, such as cloud-based Microsoft Dynamics 365, will accelerate the bidding process by first centralizing data from across your organization. With key data within easy reach, business leaders will be able to quickly access and use the information needed to prepare RFPs, RFIs, and RFQs. Added mobility, offered within Microsoft Dynamics 365, makes it easier to work with colleagues in the field or busy contractors when creating a scope of work and cost estimates for a bid. Armed with reliable information, project managers can prepare competitive estimates that meet customer timelines and budgetary restrictions, while also generating profits.

The bidding process is essential for competing successfully against other construction companies and protecting profit margins. However, disparate, specialty software makes it difficult for leaders to access reliable data for preparing estimates or to work efficiently with other experts when drafting and reviewing estimates. Download “Are You Ready for the Digital Transformation of the Construction Industry?” to learn how connected information and added mobility will improve construction bid processes.

5 Ways Microsoft Dynamics 365 Strengthens  Construction Bid Process

Microsoft Dynamics 365 connects your people with the necessary data needed to streamline and strengthen the construction bid process. Here are five ways this powerful mobile solution accelerates the bid process:

  1. Improve collaboration using automated workflows and templates to accelerate preparation, review, and approval of RFP and RFQ responses.
  2. Use mobile options to avoid bottlenecks and delays when key employees or experts are working on job sites.
  3. Generate accurate, profit-earning estimates using current and historical project data.
  4. Keep the focus on high-value customers and on projects that deliver the most profit.
  5. Track open bids, including win/loss information, to continuously improve estimates and bids.

Time is of the essence when preparing bids for construction projects and reliable data is key. Disparate, specialty software simply can’t deliver the responsiveness or accuracy needed when preparing RFPs, RFIs or RFQs. Download the eBook and contact Stoneridge Software for more information about using Microsoft Dynamics 365 to strengthen and accelerate construction bid processes.

Stoneridge Software is a Microsoft Gold Partner with specialties in Microsoft Dynamics 365, Microsoft Dynamics AX, Microsoft Dynamics NAV, and Microsoft Dynamics CRM. With headquarters in Minnesota, near the Fargo, ND Microsoft campus, we focus on attracting the most knowledgeable experts in the field to our team and prioritize delivering stellar solutions with maximum impact for your business. Contact us at solutions@stoneridgesoftware.com or 612-354-4966.

Awareness | Worldwide | Payments | Planned Maintenance for Dynamics Online Payments | July 5th

$
0
0
The Service Engineering team will be doing planned maintenance on the Payments Service. The maintenance window will begin on Wednesday July 5th 10:00 PM PST and end at Friday July 7th 08:00 AM PST. Customers...(read more)

Executive Q&A: Retail Realm on industry challenges, the promise of Dynamics 365 , and the evolving channel

$
0
0
Afshin Alikhani has been in the Microsoft Dynamics channel as long as the channel has existed. He is delighted with Microsoft's product direction, but less so with its direction for the channel, and recently wrote the provocatively-entitled article ...read more

Bug: SysFormEnumComboBox selection method returns wrong value

$
0
0
The SysFormEnumComboBox class is very useful when only some of enum values must be enabled in a form, but it has a bug. Problem description The SysFormEnumComboBox.selection() method returns correct value...(read more)

What You Need to Know: Cloud vs. Hybrid vs. Local Business Data

$
0
0
By Jens Kristiansen , Consulting Manager, Arbela Technologies When Dynamics 365 for Operations was released in February 2016 (called AX7 back then), many customers and partners were startled...(read more)

Upgrading from Dynamics AX to Dynamics 365: What You Need to Know

$
0
0

Considering a move to Dynamics 365 for Operations?

If so, are you prepared for the impact on your EDI integration? Data Masons are Certified experts in EDI for Dynamics AX and are best equipped to provide the critical information you need for migrating from Dynamics AX to Dynamics 365 and upgrading your EDI solution.

Dynamics 365 for Finance and Operations platform update 8 is now available!

$
0
0

The Dynamics 365 for Finance and Operations platform update 8 has been released on June 28, 2017.

We’re excited to bring you another monthly release that combines new features and a number of quality improvements. This topic describes features that are either new or changed in Dynamics 365 for Finance and Operations, Enterprise edition platform update 8. As part of this update the platform has also been renamed to Dynamics 365 Unified Operations.

Go to the Dynamics 365 Roadmap to find supplemental information about new features and learn more about what new features are in development. For information about the bug fixes included in Platform update 8, log in to Lifecycle Services (LCS) and view this KB article.

Introducing Dynamics 365 for Finance and Operations, Enterprise edition

Users and developers will see an updated product name ("Microsoft Dynamics 365 for Finance and Operations, Enterprise edition") and product icon in the web client. Some platform components (for example, the developer tools and the mobile application) that are shared by Dynamics 365 for Finance and Operations, Dynamics 365 for Retail, and Dynamics 365 for Talent will now appear as "Dynamics 365 Unified Operations". 

Development and customization - Changing the extended data type (EDT) on a table field using table extensions

Using table extensions, a developer can change the Extended Data Type (EDT) property of a table field. Developers can only select EDTs that are derived from the current one. For more information, see Customize with extensions and overlayering. 

Development and customization - Compliance properties on table fields

A new property named General Data Protection Regulation (GDPR) is now available on table fields for the developer to set. It is used to classify the data field for compliance with GDPR. 

Available options are:

  • Access control data - Data used to manage and access to administrative roles or sensitive functions.
  • Customer content - Content directly provided/created by admins and users. This is the default value.
  • End User Identifiable Information (EUII) - Data that identifies or could be used to identify the user of a Microsoft service. EUII does not contain Customer content.
  • End User Pseudonymous Information (EUPI) - An identifier created by Microsoft tied to the user of a Microsoft service. When EUPI is combined with other information, such as a mapping table, it identifies the end user. EUPI does not contain information uploaded or created by the customer (Customer content or EUII).
  • Support data - Data provided to Microsoft as part of Support activities.
  • Account data - Customer billing information and payment instrument information. Administrator contact information, such as tenant administrator’s name, address, or phone number.
  • Public personal data - Publicly available information that Microsoft obtains from external sources. Public personal data is not Customer content, EUII, or EUPI since the data was not input by the customer.
  • Organization Identifiable Information (OII) - Data that can be used to identify a tenant, generally config or usage data. This data is not linkable to a user and does not contain Customer content.
  • System metadata - Data generated while running the service, not linkable to a user or tenant.
  • Public non-personal data - Publicly available information that Microsoft obtains from external sources. Does not contain Public personal data. 

Improved viewing experience for Application reports

There is a new and improved viewing experience for customers when interacting with Analytical and Operational reports in Dynamics 365 for Finance and Operations, Enterprise edition. This change offers a streamlined toolbar and clear preview of the document that is produced when rendered as a PDF file or sent directly to the printer. To date, customers have rendered over 1.1 million document reports powered by SQL Server Reporting Services (SSRS). In addition, the Dynamics 365 for Finance and Operations, Enterprise edition July 2017 update includes 20+ analytical reports authored using Power BI Desktop. This feature offers a significantly enhanced viewing experience while interacting with both document and analytical style application reports. Customer benefits:

  • Reliability - Customers will now be presented with a view that is consistent with the output when documents are sent directly to the printer. Based on direct feedback, the most common use case for viewing a report on screen is to preview the output that will be shared with others, most often by email. Customs can now rely on a screen rendition that more closely matches the document produced by SSRS.
  • Simplicity - Customers can fully engage with application reports using mobile devices with relatively small screens. On these devices, every inch of the screen is important. By removing the page caption, users have more screen space with which to view and interact with application reports. 

Table browser is now in read-only mode

The table browser form is now in read-only mode on runtime environments (Sandbox Tier-2+ and Production). 

The table browser form is designed for developers to quickly create and edit test data on development environments. It was also available to system administrators on runtime environments. As of Platform update 8, system administrators can only access the table browser in read-only mode on runtime environments, this is in reaction to live incidents caused by human error when system administrators inadvertently edited or removed live system data. 

Deployment option (on-premises)

Some organizations are not ready to store their company’s mission critical data in the cloud. This requirement, in many cases, is due to industry regulations, country or geographic cloud adoption, recent data center investments, or an organization’s enterprise standards. For these customers, we are excited to announce a new deployment option that will not require business data to be stored in the cloud. This deployment option supports running your business processes on-premises, supporting local transactions and storage of local business data, without replication of your business data to the Microsoft cloud. In these cases, the typical replication of business data in the Microsoft cloud (referenced in the cloud and edge scenario) is simply switched off. 

Cloud synchronization of data enables Microsoft to embed intelligence into business processes – embedded analytics, machine learning, and a vast range of capabilities are best served from the Microsoft cloud. With this option, customers now have a choice – an option to turn on or turn off cloud synchronization of their business data. If customers turn off cloud synchronization, no business data leaves their trustee’s boundaries. Also, functions like embedded Power BI, Aggregated Views, and Azure Machine Learning services-based efficiencies are not available when cloud data synchronization is turned off. Customers can choose to take advantage of the embedded intelligence functions by simply turning on data synchronization to the cloud.

An environment with both on-premises business data and cloud data synchronization is referred to as a Cloud + Edge deployment option. Refer to the table for a closer comparison of differences between these options.

Our cloud-based Application Lifecycle Management (ALM) functions, including diagnostics, monitoring, usage telemetry, and production updates, are provided through Microsoft Dynamics Lifecycle Services (LCS). LCS is required for efficient upkeep and operation of your Dynamics 365 for Finance and Operations solutions in all deployment options. After nearly a year of operating the cloud service, we have seen that LCS-based management leads to more predictable deployments and provides customers with a better support and service experience. All deployment options for Finance and Operations require LCS for their operation.

For the on-premises deployment scenario, the application servers and SQL database will run in a customer’s or partner’s data center. Customers and partners manage the application lifecycle through LCS in the Microsoft cloud, including designing the business processes, creating and deploying the software image to deploy onto the on-premises nodes, monitoring the on-premises nodes in a system health dashboard, and keeping up with innovation from Microsoft. 

For more information, see The right cloud option for your business. This blog post refers to the “local business data” deployment capability. This is the capability that’s called “on-premises” in the product and documentation.

Asignar campo con valores predeterminados

$
0
0
El título se lee bien y es entendible el objetivo que debemos lograr. Ahora bien, no es tan simple desde el punto de vista del proceso para lograr dicho objetivo.   Continuar leyendo »(read more)
Viewing all 10657 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>