AXForum  
Вернуться   AXForum > Microsoft Dynamics AX > DAX Blogs
DAX
Забыли пароль?
Зарегистрироваться Правила Справка Пользователи Сообщения за день Поиск

 
 
Опции темы Поиск в этой теме Опции просмотра
Старый 19.07.2012, 18:11   #1  
Blog bot is offline
Blog bot
Участник
 
25,475 / 846 (79) +++++++
Регистрация: 28.10.2006
ax-erp: Display Barcode in SSRS report [Dynamics AX 2012, X++]
Источник: http://microsoft-dynamics-ax-erp.blo...-dynamics.html
==============


Friends,
Today let us learn how to quickly display barcode(s) in SSRS report, AX 2012.
I will be using report data provider as a data source type. First , let us create a query by name SR_InventItemBarCode and drag and dropInventItemBarCode table as data source. Set the dynamic property on fields to “Yes”

Create a new DP class and methods as shown below:
[
SRSReportQueryAttribute(queryStr(SR_InventItemBarCode))
]
class SR_InventItemBarCodeDP extends SRSReportDataProviderBase
{
SR_TmpInventItemBarCode sr_TmpInventItemBarCode;
BarcodeSetupId barcodeSetupId;
BarcodeSetup barcodeSetup;
Barcode barcode;
FontName barcodeFontName;
FontSize barcodeFontSize;
}



///
/// Initializes barcode elements.
///
protectedvoid initializeBarcode()
{
barcodeSetupId = InventParameters::find().BarcodeSetupIdPick;
barcodeSetup = BarcodeSetup::find(barcodeSetupId);
barcode = barcodeSetup.barcode();


if(barcodeSetup.BarcodeType != BarcodeType::NoBarcode)
{
barcodeFontName = barcodeSetup.FontName;
barcodeFontSize = barcodeSetup.FontSize;
}
else
{
barcodeFontName = ;
barcodeFontSize = 0;
}
}


///
/// Validate and format barcode value before it can be displayed
///
/// String which should be encoded to a barcode format
/// Encoded barcode string
public BarCodeString encodeBarcode(Str _barcodeValue)
{
if (barcodeSetup.validateBarcode(_barcodeValue))
{
barcode.string(true, _barcodeValue);
barcode.encode();
}
else
{
throw(error(strfmt("@SYS41409", barcode.barcodeType(), _barcodeValue)));
}


return barcode.barcodeStr();
}
///
/// Processes the report business logic.
///
[
SysEntryPointAttribute(false)
]
publicvoid processReport()
{
QueryRun queryRun = new QueryRun(this.parmQuery());
InventItemBarCode inventItemBarCode;


this.initializeBarcode();
while (queryRun.next())
{
inventItemBarCode = queryRun.get(tableNum(InventItemBarCode));
this.insertIntoTmp(inventItemBarCode);
}
}





protectedvoid insertIntoTmp(InventItemBarcode _inventItemBarCode)
{
// encode barcodes
sr_TmpInventItemBarCode.ItemId = _inventItemBarCode.itemId;
sr_TmpInventItemBarCode.BarCodeString = this.encodeBarcode(_inventItemBarCode.itemBarCode);
//sr_TmpInventItemBarCode.BarCodeString = this.encodeBarcode("packing12345"); // you can use any value as barcode string
sr_TmpInventItemBarCode.insert();
}






///
/// Fetches data from SR_TmpInventItemBarCode Table.
///
///
/// SR_TmpInventItemBarCode Data for the report.
///
[SRSReportDataSetAttribute(tableStr(SR_TmpInventItemBarCode))]
public SR_TmpInventItemBarCode getTmpInventItemBarCode()
{
select sr_TmpInventItemBarCode;
return sr_TmpInventItemBarCode;
}

Now lets open visual studio 2010 and create a new report as shown below: [I hope you all know by now how to create a report from Visual studio, If not please follow my earlier posts]

In the below screen, I have added new report and a dataset, set the data source type as Report data provider and in the query I have picked the data provider class “SR_InventItemBarCodeDP”







Once you select the DP class in the query and fields from the temporary Table “SR_TmpInventItemBarCode” you should find the fields in the Dataset Node as shown below.



Now drag and drop the dataset on to Designs node. it will create a auto design as show below.



Now , let us set some styles and layout templates on the Design and the data Region as shown below


Right click on the AutoDesign1, select properties and set the Layout template as “ReportLayoutStyleTemplate





Right click on the DataSet1Table, select properties and set the Style template as “TableStyleTemplate



Now , we will set up some properties on the data field “BarCodeString” to look like Barcode. Right click on the BarcodeString field >> properties >>


Select Style >> click on the ellipses button as shown below



This will open Cell Style editor and select BC C128 Wide and Size as 20 pt as show below. [Chose based on your requirement]


For more information on the type of barcodes, please visit http://en.wikipedia.org/wiki/Barcode#Types_of_barcodes







Right click on the AutoDesign1 and chose preview: Below is the Barcode rendered on to the report.





Источник: http://microsoft-dynamics-ax-erp.blo...-dynamics.html
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору.
 

Похожие темы
Тема Автор Раздел Ответов Посл. сообщение
ax-erp: Report Data provider [RDP] as data source type in data set – SSRS reports [Dynamics ax 2012] Blog bot DAX Blogs 0 18.07.2012 12:11
dynamics-community.at: Dynamics AX 2012 Trainings Blog bot DAX auf Deutsch 0 19.06.2012 18:11
dynamics-ax: Microsoft Highlights New ERP Public Sector Capabilities for AX 2012 Blog bot DAX Blogs 0 23.05.2011 19:11
dynamics-ax: Interview with Microsoft's Lachlan Cash on his new role, AX 2012 and more Blog bot DAX Blogs 6 22.04.2011 14:55
axStart: Microsoft Dynamics AX 2009 Hot Topics Web Seminar Series Blog bot DAX Blogs 0 06.08.2008 12:05

Ваши права в разделе
Вы не можете создавать новые темы
Вы не можете отвечать в темах
Вы не можете прикреплять вложения
Вы не можете редактировать свои сообщения

BB коды Вкл.
Смайлы Вкл.
[IMG] код Вкл.
HTML код Выкл.
Быстрый переход

Рейтинг@Mail.ru
Часовой пояс GMT +3, время: 08:17.
Powered by vBulletin® v3.8.5. Перевод: zCarot
Контактная информация, Реклама.