Langsung ke konten utama

Postingan

Cara membuat Harddisk External menjadi Bootable USB untuk install Windows

Untuk install windows dari harddisk external, silahkan siapkan hal hal berikut ini gan : Harddisk External File Image (ISO) dari Windows yang mau digunakan Laptop/ Komputer   Oke, kita masuk ke  LANGKAH PERTAMA :   Setelah kita persiapkan hal hal yang ada diatas, ada baiknya kalo antivirus / Windows Defender nya itu matiin dulu (recommended) bagi harddisk nya terdapat banyak crack. Karena crack itu bersifat virus dan pasti bakalan langsung keapus sama antivirusnya. Pastiin kalo harddisk ente itu ada space minimal 5 – 10 Gb untuk penempatan File Image Windows yang akan dipakai. Recommended 10Gb Abis harddisk nya di colokkk silahkan buka  Control Panel  >  Administrative Tools    Lalu buka  Computer Management Kalo udah kebuka, pilih menu  Disk Management  yang ada di toolbar kiri. Contoh dibawah ini   Karena ane make harddisk yang merknya Toshiba, maka yang akan kedet...

ForceLiterals & ForcePlaceholders AX

ForceLiterals & ForcePlaceholders When you use forceliterals keywords in Axapta, Axapta will issue SQL statements directly to the database as text string. SELECT forceLiterals * FROM purchTable       WHERE purchId == ‘EN00009’ ; In SQL server, it will be: SELECT A.VALUE, A.MODIFIEDTIME, A.CREATEDTIME, A.RECID FROM HINTTABLE A(NOLOCK) WHERE (PURCHID="EN00009") OPTION(FAST 47) Conversely, using ForcePlaceHolders in Axapta, Axapta will issue SQL statements to the database, and a temporary stored procedure being created for this statement. This stored procedure then remains within the database for as long as the connection that was used when issuing the statement remains. SELECT forcePlaceHolders * FROM purchTable       WHERE purchId == ‘EN00009’ ; In SQL server, it will be:   SELECT A.VALUE, A.MODIFIEDTIME, A.CREATEDTIME, A.RECID FROM HINTTABLE A(NOLOCK) WHERE (PURCHID=" @P1") OPTION(FAST 47) Using forcePlaceHol...

SQL AUTO INCREMENT Field

AUTO INCREMENT Field Auto-increment allows a unique number to be generated automatically when a new record is inserted into a table. Often this is the primary key field that we would like to be created automatically every time a new record is inserted. Syntax for MySQL CREATE   TABLE  Persons (       ID int  NOT   NULL  AUTO_INCREMENT,     LastName varchar( 255 )  NOT   NULL ,     FirstName varchar( 255 ),     Age int,      PRIMARY   KEY  (ID) ); Syntax for SQL Server CREATE   TABLE  Persons (       ID int  IDENTITY ( 1 , 1 )  PRIMARY   KEY ,     LastName varchar( 255 )  NOT   NULL ,     FirstName varchar( 255 ),     Age int ); for Select Query SQL SERVER SELECT ROW_NUMBER () OVER ( ORDER BY FirstName, La...

Get Current Company, userId, current Date in AX

Hi, To get the Current Logged In Company you can Use the  curExt()  function in AX. for current User Id use   curUserId() function for date use  SystemDateGet() function static void curExtExample(Args _arg) { str CompanyId, UserId; date CurrentDate; ; CompanyId     =  curExt(); UserId             =  curUserId(); CurrentDate     =  SystemDateGet(); Info(StrFmt("%1 %2 %3", CompayId, UserId, CurrentDate) } You would also get the same result with below code as well. static void curExtExample(Args _arg) { str CompanyId; ; CompanyId =  CompanyInfo::Find().DataAreaId ; Info(CompanyId); }

SSRS error: Domain role with multiplicity 0..1 or 1 can hold at most 1 link

SSRS error: Domain role with multiplicity 0..1 or 1 can hold at most 1 link I got the following error when I duplicate a SSRS report in Visual Studio: Domain role with multiplicity 0..1 or 1 can hold at most 1 link: DataSetParameter of Microsoft.Dynamics.Framework.Design.Model.Reports.DataSetParameterRefersToParameter. To resolve it do the following on the report datasets: Change the datasource type to Query. Delete the whole query text in the "Query" field. Save, rebuild and change the values on the datasource back to the ones intended I also noticed the above actions can help resolve other problems, like inconsistency in the report parameters (can occur if you change the contract parameters).

Select statement where condition formatting Dynamics AX

OPTION 1:   public static Name storeOperatingUnitName(RecID _storeRecId) {     RetailChannelTable      retailChannelTable;     DirPartyTable           dirPartyTable;     OMOperatingUnit         operatingUnit;     ;     select firstOnly recId from retailChannelTable         where retailChannelTable.RecId == _storeRecId         join recId from operatingUnit             where operatingUnit.RecId               == retailChannelTable.OMOperatingUnitID                && operatingUnit.OMOperatingUnitType == OMOperatingUnitType::Retail...

Cara Cek Nomor Indosat Ooredoo Im3 dan Mentari

Cara Cek Nomor Menggunakan menu bantuan indosat Langkah yang pertama adalah dengan menggunakan menu bantuan indosat ooredoo. Dimana ini adalah cara yang paling mudah untuk mengetahui nomor im3 ataupun mentari. Karena anda tinggal mengetikan *123*30# lalu panggil. Setelah itu maka akan ada pemberitahuan mengenai nomor anda sendiri. Selain nomor di atas masih ada nomor lainya yaitu *123*7*2*1#.  Cara Cek Nomor Menggunakan aplikasi mycare Dengan mendaftar mycare indosat maka anda akan mengetahui beberapa layanan indosat mulai dari sisa kuota, paket yang digunakan hingga masa aktif. Yang jelas pada mycare indosat ooredoo anda bisa melihat nomor anda sendiri beserta informasi penting lainnya Cara Cek Nomor Terbaru Selain cara di atas masih ada cara lainya yaitu juga menggunakan menu bantuan  akan tetapi bukan *123# yaitu menu *888#. Dimana cara untuk mengecek nomor indosat ooredoo sendiri adalah dengan mengetik *888*1*1#. Selain mengetahui nomor sendiri pada m...