Sunday 3 July 2011

MICROSOFT DYNAMICS AX RECORDED WEBCASTS



This is a great source guys go through it via the link
Webcast TitleTopic AreaRecorded Date
Microsoft Dynamics AX 2009 General Functional Overview DemoGeneral AXOctober 23, 2008 - Video
Microsoft Dynamics AX 2009 General Technical Overview DemoGeneral AXNovember 6, 2008 – Video
Live Webcast: Upgrading to Microsoft Dynamics AX 2009General AXNovember 4, 2009 – Video
Microsoft Dynamics AX 2009 Financial Module DemoFinanceNovember 20, 2008 – Video
Microsoft Dynamics AX 2009 Project Accounting Module DemoAccountingJanuary 14, 2009 – Video
Microsoft Dynamics AX 2009 CRM Module DemoCRMJune 2, 2010 – Video
Microsoft Dynamics AX 2009 CRM Module DemoCRMFebruary 25, 2009 – Video
Live Webcast: Microsoft Dynamics AX 2009 Inventory ManagementTrade & LogisticsOctober 21, 2009 – Video
Live Webcast: Microsoft Dynamics AX 2009 Enterprise PortalEnterprise PortalNovember 18, 2009 – Video
Learn More about Inventory II: A Powerful Extension of the Standard Microsoft Dynamics AX Inventory ModuleAX Extension-Inventory ManagementApril 1, 2009 – VideoMarch 31, 2010 –Video
Learn More about Inventory II: Another look at Inventory II: A Powerful Extension of the Standard Microsoft Dynamics AX Inventory Module from a Financial Users’ PerspectiveAX Extension-Inventory ManagementMay 5, 2010 – Video
AX-SMART Graphical Planning and Scheduling: An integrated drag and drop based planning and scheduling extension for AX production and project modulesAX Extension-Inventory ManagementJune 23, 2009 – VideoJanuary 13, 2010 –VideoJune 16, 2010 – Video
Learn More about TARGIT Business Intelligence SoftwareAX Extension – BIJuly 15, 2009 – Video
Better and faster decision making is only clicks away in Microsoft Dynamics AX with ASi’s Complete Business Intelligence Suite (Powered by timeXtender)AX Extension – BIMay 21, 2010 - VideoJuly 23, 2010 - Video

Display images in Axapta


Axapta provides a very handy feature to allow developers to ship their solution with Axapta built-in image files. In Application Object Tree, you can find resources node. Select resources node and right click; select Create from file, specify the file location for the new resource file. After that you can use this resource file in Axapta without specifying an absolute file path in your hard disk.
Then let’s see how to use this kind of files in Axapta.
First, pick up the resource node from AOT;
SysResource::getResourceNode();
Then generate a temporary file for this resource file;
SysResource::saveToTempFile()
Finally specify the temporary file path for controls.
Here comes an example to show how to use a resource file as a background image of  a given form.
    {        ResourceNode            resourceNode;
FilePath  imagename;
;
resourceNode = SysResource::getResourceNode(resourcestr(yourResourceName));
if (resourceNode)
{
resourceNode. AOTload();
imagename =  SysResource::saveToTempFile(resourceNode);
}
else
{
throw Error(“No file …exists.”)
}
        element.design().imageName(imagename);
    }

How to identify unused labels in application


A job to identify unused labels in application .
Here my label file is IFC
static void I4C_UnusedLabels(Args _args)
{
str 50  labelId;
int  i;
int  maxLabel = 2000;
xRefNames  names;
XRefReferences  ref;
str info = “LabelId#LabelStr\n”
;
while (i <= maxLabel)  {
labelId = “@IFC” + int2str(i);
// The particular label file.
select recid from names
where names.Name == labelid
exists join ref
where names.RecId == ref.xRefNameRecId;
if (! names.RecId)
{
info += strfmt(“%1#%2\n”, labelId,
SysLabel::labelId2String(labelId));
}
i++;
}

AZURE INTERVIEW QUESTIONS AND ANSWERS

AZURE INTERVIEW QUESTIONS AND ANSWERES 2021 2. What is cloud computing? Explanation:  It is the use of servers on the internet to “store...