ipucu etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
ipucu etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

6 Şubat 2010 Cumartesi

Ax2009 SSRS Report edit Error in VS 2008

If u get the error "Invalid URI: The format of the URI could not be determined " while editing Ax2009 SSRS reports in Visual Studio 2008 for the first time on Win 7, just check the "C:\Users\tunca\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup " folder exists with admin rights.
Thanks to Bala Murugan , saved my huge time...

13 Eylül 2007 Perşembe

Raporda nesne erişimi / Access to object in report

//nesnenin oto tanımlama özelliği aktive edilirse doğrudan ismini kullanarak erişilebilirsiniz.
//you can access to object with its name, if you activate autodecleration property.

//Oto tanımlama yapmadan bir nesnenin özellğini kullanmak için AOT yapısından faydalanılabilir.
//you can access to object Without Aoutodecleration property using AOT

this.design("ReportDesign1").sectionName('ReportHeader').controlName("DispField").delete();

this.design("ReportDesign1").sectionName('ReportHeader').controlName("DispField").hide();

11 Eylül 2007 Salı

Bir kayıt için rapor yazdırma / Call a report from a spesific record


//rapor belli bir kayıt için çağırmak istendiğinde yazılacak kod
//code block to call a report from a spesific record

//init içne yazılacak
//embed into init section

// teklif tablosunda bir kayıt için örnek
//example for a quotation record


{
smmQuotationTable callersmmQuotationTable;
QueryBuildDataSource qbds;

;

sysReportRun::getRunbaseReport(this).getLast();

if (element.args().caller())
{
if (! element.args().record().recId)
throw error(strFmt("@SYS22338",funcName()));

switch (element.args().dataset())
{
case tablenum(smmQuotationTable):
callersmmQuotationTable = element.args().record();
break;

default:
throw error(strFmt("@SYS23396",funcName()));
}
}

if (callersmmQuotationTable.QuotationId)
{
qbds = element.query().dataSourceTable(tablenum(smmQuotationTable));
SysQuery::findOrCreateRange(qbds, fieldnum(smmQuotationTable,QuotationId)).value(callersmmQuotationTable.QuotationId);
}

super();
}