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

D365O. How to deploy Demo VM using Visual Studio subscription.

$
0
0
Many of us have Visual Studio subscription (formerly called MSDN subscription) and there is monthly Azure credit coming with it. It could be used to spin up D365O demo VM, but the whole process is not...(read more)

Common data model entities - overview

$
0
0
The Common Data Service is a cloud base business application platform. This platform provides a rich and productive development platform though Common Data Model which is a store of common business entities...(read more)

AX 2012 - Add and Remove dynalink through X++

$
0
0
DynaLinks can be removed and added between datasources on form using this code;

I implemented this code on clicked method of a button on an AX form.

void clicked()
{
    SalesQuotationLine_ds.query().dataSourceNo(1).clearDynalinks();
    SalesQuotationLine_ds.query().dataSourceNo(1).addDynalink(fieldNum(SalesQuotationLine, QuotationId),
                                                         SAB_DocQuoteGroupRelation,
                                                         fieldNum(SAB_DocQuoteGroupRelation,SalesQuotationId));
        
}



Where,
  • First parameter is the source table field
  • Second parameter is the destination table
  • Third parameter is the destination table field

AX 2012 : Add/Remove Dynalink through X++

$
0
0
DynaLinks can be removed and added between datasources on form using this code;

The following code is implemented in the Click event of a button.

ClearDynaLinks() will remove all existing dynaLinks [these can be seen by right click on the click > Personalise > Query tab > under dataSource node

AddDynalink() method has three parameters;

1. Source table field
2. Destination table
3. Destination table field

void clicked()
{
    SalesQuotationLine_ds.query().dataSourceNo(1).clearDynalinks();
    SalesQuotationLine_ds.query().dataSourceNo(1).addDynalink(fieldNum(SalesQuotationLine, QuotationId),
                                                         SAB_DocQuoteGroupRelation,
                                                         fieldNum(SAB_DocQuoteGroupRelation,SalesQuotationId));
        
}

Form personalisation in Dynamics 365 for Operations.

$
0
0
This post is a follow-on from last week’s. After a brief introduction to Dynamics 365 for Operations I spent a few months wandering around AX 2009 and AX 2012 which meant that I struggled a bit when...(read more)

Parallel inventory valuation – an alternative approach (Part 1)

$
0
0
In one of my prior posts I already had a look at the parallel inventory valuation issue. For details, please see this site . While the prior post focused on the Russian dual warehouse functionality,...(read more)

Monitoring and Telemetry in Dynamics365 for Operations

$
0
0
It’s been a while since my last post, and let’s just say I haven’t been slacking the past few months! In October, I married my best friend and her and I have been back and forth from St. Thomas US Virgin...(read more)

Top bet for streamlining equipment rental processes: DynaRent for Microsoft Dynamics 365 and Dynamics AX

$
0
0

What’s most important to have at hand when you’re focused on equipment rental? Well, you’re working in a multi-channel marketplace, with rental offerings that likely come from multiple sources, and your business model is that a single offering is going to be used by multiple customers over its lifecycle. Just as important, you need to be ready to execute multiple equipment rental processes either simultaneously or as part of a quick and predictable process flow. So, you want a rental solution that gives you the best possible access to information and the best possible tools for executing daily operations.

HiGH Software can offer that with DynaRent for Microsoft Dynamics 365 and Dynamics AX. Our solution is embedded from the start in Dynamics, so it shares all information with your business database. Your rental desk works with graphical dashboards that provide complete, well-organized overviews about current orders, quotes and equipment availability, service needs, resources—you name it. Within seconds your staff can drill back to granular details related to any aspect of a rental offering. This “multi-faceted” approach to data visibility is essential to effective, profitable rental allocation and customer service.

Image 1: DynaRent Rental Management ***-pit

Along with visibility and quick insight, DynaRent sharply reduce time and effort for actual rental operations. The traditional approach to handling equipment rental is hard to justify in a world where responsive service is pretty much “Everything right now” service. By traditional we refer to a customer requesting equipment, the clerk taking the request, and then following up as soon as possible with results. The problem is that in many cases there’s an exception that can only be resolved through a linear search—for example, the clerk checks availability, sees that a sub-rental is needed, needs to check pricing and margins and possibly recalculate, then call back the customer with a proposed change. That’s just one example.

As we’ve already noted, DynaRent gives you rich graphical visibility, and also tools for instantly searching through availability and pricing for equipment that a customer is requesting. Users can immediately find a match if one exists. They’ll also be able to locate sub-rentals, equipment sourced from other depots, margins, etc., with all information organized as a complete rental offering. Prompts and suggestions let them suggest appropriate cross-sells or up-sells. Within a single interaction, they can process a complex rental request and utilize Graphical Quick Order Entry to present or send the customer a detailed rental order.

Image 2: DynaRent Equipment Rental Processes Overview

At the end of a single phone call or communication, the customer will have a confirmation number in their inbox and everything related to the rental will be recorded in both DynaRent and Microsoft Dynamics. And best of all, all rental information feeds automatically into the full lifecycle management records for equipment. Daily rental tasks fuel long-term operational management—that the power of information access and automation in DynaRent.

If you’re interested in talking about your company’s specific needs for equipment rental and services, mobile and on premise, HiGH Software would welcome the opportunity to talk with you. Contact us at info@highsoftware.com or visit www.highsoftware.com.


Oh No, Not Again!?! How A Second Global IT Outage Suggests Delta Airlines Still Has No Decent Disaster Recovery Strategy

$
0
0
In August, I blogged about my experience with the Delta outage and provided some lessons learned from those calamitous few summer days. With over 650 cancelled flights (and thousands of frustrated customers), I speculated that their disruption in ...read more

Dimension Controls in a Dialog for Dynamics 365 for Operations

$
0
0
To put it simply, we just need to create our own custom control type, let’s call it “Dimension Entry No Datasource” control. Firstly, create an extension package so that you are not tempted to overlayer...(read more)

Microsoft Dynamics Webcasts, March 6-10, 2017: Dynamics AX MPOS; CRM + IoT + Machine Learning; Dynamics AX for Commodities

$
0
0
Here's what's happening on this week's live webcast schedule. Register to attend live or get access to the recorded event. Tuesday, March 7, 2017 Architecting Your Dynamics AX MPOS Retail Implementation for Success 11:00 AM EST Register ...read more

EDI for Microsoft Dynamics AX Comes to the AXUG Ohio Chapter Meeting

$
0
0

Looking for a Microsoft Dynamics professional networking and education event close to home? Join me on March 17th in Cincinnati, OH for the AXUG Ohio Chapter meeting! During this meeting I'll be talking about EDI for Microsoft Dynamics AX and integrating your supply chain. I'm looking forward to sharing with you about successful EDI integration and how other Microsoft Dynamics AX-based companies are succeeding with significant cost savings and measurable operational efficiencies.

Why Should My Organization Move to the Cloud?

$
0
0
Why Should My Organization Move to the Cloud? Today’s IT department need to pivot their role into agile and strategic services. They should be innovating alongside business leaders in operations, marketing...(read more)

Form and action search in Dynamics 365 for Operations.

$
0
0
As I said before, I’m getting reacquainted with Dynamics 365 for Operations after a few month’s absence, and I’m starting to like the form search feature. I learnt a lot of menu paths...(read more)

ePOS Performance | Offline sync service utilizing 100% CPU usage

$
0
0
Hi Guys, You might have viewed my last blog on  ePOS | Retail Implementation using SQL Express which will help you in reducing the Database size when dealing with SQL Express. In this blog I would like...(read more)

Forget About the March Madness Schedule - What's on the Agenda for AXUG Focus?

$
0
0

Over the last several months, the AXUG Focus Programming Committee has worked diligently with AXUG General Manager Heather Williams to determine the most relevant and useful session topics for Microsoft Dynamics AX users and are finally ready to share AXUG Focus session details with you!

Visit the website to view the many 90-minute AXUG Focus sessions already posted. Here's a sneak peek:

Track: Finance

  • Diving Into Financial Reporting with Management Reporter
  • Collections in Dynamics AX - You Better Have My Money!

Track: Technical

  • Microsoft Dynamics AX and SQL Performance Tips and Tricks 
  • Data Archiving and Data Management: A Component of your Dynamics AX Strategy

Track: Supply Chain Management

  • Demystifying Profiles and Time Registration
  • Configuring Your Mobile Device for Warehouse Management

Track: Retail

  • Implementing Between a Rock and a Hard Place:  The Indiana Limestone Story
  • MS AX and Your Online Business: Best Practices in Bringing eCommerce and ERP Data Together


In between watching the 'March Madness' NCAA Basketball Tournaments, don't forget to check back often as we continue to add more sessions! I also recommend registering before the Early Bird pricing deadline on March 22.

 

 

AXUG Focus 2017 is a deep-dive training conference dedicated to the success of Microsoft Dynamics AX users. Focus will be held May 8-9 in St. Louis, MO and feature 90-minute sessions taught by industry experts. This training conference will focus on four primary tracks: Finance, Technical, Supply Chain Management, and Retail. Attendees are also eligible to register for PBIUG Focus to attend Power BI sessions, held May 10-11 at the same location. Learn more at www.ugfocus.com

Originally posted on axug.com

LCS Crash and Hang Analysis Discontinued

$
0
0

The LCS Crash and Hang analysis feature, which allowed automated analysis of DMP files collected from AX 2012, is being discontinued.

Following recent improvements in our cloud infrastructure, the mechanism that enabled the automated analysis of DMP logs is no longer compatible and will not be supported anymore.

As an alternative, we have published an article describing how DMP files can be analysed manually using debugging tools and the LCS issue search: Extracting Information from Crash and Hang Dumps.

If a more in-depth analysis is required, Microsoft Support remains prepared to assist you.

Dynamics 365 for Operations not supported on Firefox browser 51.0.1

$
0
0

Just found that Dynamics 365 for operations doesn't render on the latest Firefox browser.
























New App Delivers Robust MS Dynamics Marketplace to Partner Websites

$
0
0

A new Microsoft Dynamics Cloud Marketplace App has been released by goERPcloud, making it easier for Dynamics Partners to deliver add-on software to their customers.

New App Offers Unmatched Marketplace

SAN DIEGO, Calif. (March 7, 2017)  A newly released Microsoft Dynamics Cloud Marketplace Website App from goERPcloud makes it easy for Dynamics Partners to digitally enhance their sales and marketing efforts with a centrally managed on demand ERP cloud trial and a catalogue of 180+ Independent Software Vendor (ISV) solutions.

The goERPcloud Marketplace App can be easily customized by Dynamics Value Added Reseller (VAR) Partners to quickly implement on their own websites, providing their customers direct access to a robust catalogue of add-on solutions, guided ISV Software demos and on-demand Microsoft Dynamics ERP 30-day trials.

“We’re very proud of the goERPcloud Marketplace App,” said Jeffrey DeMaria, Product Manager for RoseASP, the organization powering goERPcloud.  “Our goal has always been to help customers succeed by paring them with the right solution and the right partner, and the new app allows us to do that in a way that is unmatched.”

The app can be seen in action here at goERPcloud.com.

With significant investment in the development and maintenance of the goERPcloud platform, goERPcloud and RoseASP are helping VARs and ISVs generate joint sales opportunities by digitally transforming go-to-market strategies. VAR Partners who implement the App on their website are able to customize its appearance to match their branding. They can also custom select industries and solutions to feature within the app, allowing them to give their customers the exact marketplace they need to better evaluate cloud solutions for their business.

About goERPcloud
goERPcloud is the first on-demand Microsoft Dynamics Cloud Marketplace that allows you to test drive different flavors of Microsoft Dynamics AX, GP, NAV and SL with preconfigured 3rd party ISV applications. goERPcloud boasts a robust ecosystem of Microsoft Dynamics Partners, helping businesses find the cloud-based software solutions that best fit their current and future business needs. Since 2000 RoseASP.com, the power behind goERPcloud, has provided hosted Microsoft Dynamics ERP and CRM applications to businesses around the world. For more information about goERPcloud, visit www.goERPcloud.com

About RoseASP
RoseASP is a full-service cloud provider for audit-ready Microsoft Dynamics AX, GP, NAV, SL and CRM, offering flexible options from public, private and hybrid cloud environments including Azure Cloud. We specialize in FDA, SOX, and HIPAA (HITECH), enabling highly regulated businesses to leverage cloud technology to manage the growing complexity of corporate IT requirements while maintaining governance, security and compliance. For more information about RoseASP, visit RoseASP.com.

Download PDF:

New App Delivers Robust MS Dynamics Marketplace to Partner Websites


About goERPcloud

goERPcloud is the first on-demand Microsoft Dynamics Cloud Marketplace that allows you to test drive different flavors of Microsoft Dynamics AX, GP, NAV, SL and CRM with preconfigured 3rd party applications.  goERPcloud boasts a robust ecosystem of Microsoft Dynamics Partners, helping businesses find the cloud-based software solutions that best fit their current and future business needs.  Since 2000 RoseASP.com, the power behind goERPcloud, has provided hosted Microsoft Dynamics ERP and CRM applications to businesses around the world. For more information about goERPcloud, visit www.goERPcloud.com.

The post New App Delivers Robust MS Dynamics Marketplace to Partner Websites appeared first on goERPcloud.

Dynamics 365 for Operations Tip - Mobile workspaces option missing under System Administration

$
0
0
Friends,

Recently, I provisioned a brand new Dynamics 365 for Operations Environment with Update 3 (November 2016 update) + patched it up with KB 3215650 - this is the KB which enables the mobile workspaces that are provided in your Microsoft Dynamics 365 for Operations.


Issue:

Unable to see the Mobile App Option under System Administration - System Parameters. Did some troubleshooting like restarting the AOS Service but with no luck


Workaround:

After some troubleshooting, I went to Visual Studio, opened up the object class SystemParameters_SCMMobileExtension which does the job of adding the mobile option. I explicitly did a build and synchronize for this object and then voila! :)




Viewing all 17314 articles
Browse latest View live


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