Monday, September 25, 2017

vmware

Simple, Agile and Secure Cloud Infrastructure 

Simple, Agile and Secure Cloud Infrastructure

VMware Cloud Foundation is the integrated cloud infrastructure platform for the hybrid cloud. VMware Cloud Foundation provides dynamic software-defined infrastructure (compute, storage, networking and security) to run enterprise applications in both private and public environments.

Cloud Foundation FAQ

Questions about VMware Cloud Foundation? We have answers.
Read the Cloud Foundation FAQ 

Cloud Foundation Datasheet

Get fundamental facts about VMware Cloud Foundation in a 3-page PDF.
Read the Cloud Foundation Datasheet 

Cloud Foundation Whitepaper

Learn about the integrated cloud infrastructure platform for hybrid cloud.
Read the Cloud Foundation Whitepaper 

PRIVATE & HYBRID CLOUD 

Private & Hybrid Cloud

VMware Cloud Foundation, in conjunction with vRealize Automation, can be used for an on-premises, private cloud and extended to hybrid cloud environments, such as VMware Cloud on AWS.

FEATURES

Integrated Stack

Engineered integration of the entire software-defined stack.

Standardized Architecture

Automated deployment of a standardized VMware Validated Design (VVD).

Automated Lifecycle Management

Unique lifecycle management that automates day 0 to day 2 operations.

Enterprise-Class Infrastructure

Based on VMware’s market-leading SDDC solutions to deliver high scalability, improved performance and advanced storage and network management.

High Performance & Scalable Hyper-Converged Storage

Get all-flash performance and enterprise-class storage services, including deduplication, compression, and erasure coding.

End-to-End Security

Comes enabled out-of-the-box with vSphere encryption, vSAN encryption and NSX microsegmentation.

Flexible Deployment Options

Flexibly deploy on-premises across multiple pre-qualified hardware partners or run as a service through leading cloud providers.

BENEFITS

Faster Time to Martket
Increased Productivity
Lower TCO

USE CASES

VMware Cloud Foundation Use Cases

HOW TO DEPLOY

There are several deployment choices for VMware Cloud Foundation, including private cloud software deployments, integrated systems, and subscription-based via cloud service providers.
 PRIVATE CLOUDPUBLIC CLOUD
 Software DeploymentIntegrated SystemsCloud Service Providers
VMware Cloud FoundationQualified vSAN ReadyNode

Qualified Networking
Dell EMC VxRack System SDDC

FUJITSU PRIMEFLEX for VMware Cloud Foundation

Hitachi Unified Compute Platform (UCP) RS

QCT QxStack

HP Integrated System (coming soon)

Fujitsu K5 (coming soon)
Deployment OptionsAssembled and imaged by customer (with help of partner or PSO)Pre-assembled and imaged at the factory, arrives ready to runPurchased as a service

CUSTOMERS 

(3:56)

Low-Cost Agility: VMware's Internal, Private Cloud

See how VMware Cloud Foundation improves performance and lowers costs for our internal private cloud.
(2:38)

VMware Cloud Foundation Transforms Marriott

See how Marriott is transforming their guest experience with VMware Cloud Foundation.

Friday, September 22, 2017

Microsoft Dynamics AX (Microsoft Axapta)

Microsoft Dynamics AX is a multi-language, multi-currency, industry-specific global enterprise resource planning (ERP) software product.
Microsoft Dynamics AX supports operational and administrative processes for organizations in manufacturing, retail, service industries and the public sector. Among its capabilities are financial management, human resource management (HRM), manufacturing, supply chain management (SCM), project management and accounting, retail and business intelligence (BI) reporting.

Tuesday, July 18, 2017

Refresh caller datasource in the list page AX 2012


Today I am going to share with you sample code for updating the caller datasource on list page action menu item. We normally refresh the caller data source on a normal form like this way.


FormRun callerForm;

callerForm = element.args().caller();

callerForm.dataSource().refresh();
callerForm.dataSource().reread();
callerForm.dataSource().research();

In case of a list page how would you get the grid to refresh since the list page does not allow any override methods, because it uses Interaction Class. However, if I am going to use an action menu item. Code sample provided bellow is useful for this purpose.



void main(Args _args)
{

FormDataSource   callerDataSource;

callerDataSource = _args.record().dataSource();
callerDataSource.refresh();


callerDataSource.reread();
callerDataSource.research(true);
}



Thanks to read the post and hope that will help you in refresh the caller data source both for list page and normal form.