<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Micro blog dynamics AX &#187; dynamics</title>
	<atom:link href="http://ax.nom.es/category/dynamics/feed" rel="self" type="application/rss+xml" />
	<link>http://ax.nom.es</link>
	<description>WordPress weblog</description>
	<lastBuildDate>Fri, 20 Jan 2012 09:14:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Varios ejemplos C# .net para conectar con AX 4.0  utilizando Bussines conector</title>
		<link>http://ax.nom.es/uncategorized/varios-ejemplos-c-net-para-conectar-con-ax-4-0-utilizando-bussines-conector</link>
		<comments>http://ax.nom.es/uncategorized/varios-ejemplos-c-net-para-conectar-con-ax-4-0-utilizando-bussines-conector#comments</comments>
		<pubDate>Thu, 24 Jun 2010 09:20:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[4.0]]></category>
		<category><![CDATA[axapta]]></category>
		<category><![CDATA[desarrollo]]></category>
		<category><![CDATA[dynamics]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ax.nom.es/?p=88</guid>
		<description><![CDATA[UAN using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Microsoft.Dynamics.BusinessConnectorNet.Axapta DynAx; DynAx =3D new = Microsoft.Dynamics.BusinessConnectorNet.Axapta(); // Test the connection to the .NET Business Connector=20 // by using the proxy user. System.Net.NetworkCredential nc =3D new = System.Net.NetworkCredential("proxyBCAX", "********"); try { DynAx.LogonAs("proxyBCAX", "", nc, "", [...]]]></description>
			<content:encoded><![CDATA[<p><strong>UAN</strong></p>
<pre>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Microsoft.Dynamics.BusinessConnectorNet.Axapta DynAx;
            DynAx =3D new =
Microsoft.Dynamics.BusinessConnectorNet.Axapta();
            // Test the connection to the .NET Business Connector=20
            // by using the proxy user.
            System.Net.NetworkCredential nc =3D new =
            System.Net.NetworkCredential("proxyBCAX", "********");
            try
            {
                DynAx.LogonAs("proxyBCAX", "", nc, "", "", "", =
                   "C:\\Documents and Settings\\1314\\Escritorio\\BC.AXC");
                //DynAx.LogonAs(Environment.UserName, "", null, "", "", =
                 "", "C:\\Documents and Settings\\1314\\Escritorio\\BC.AXC");
                Console.WriteLine( "Success Login OK");
                Console.ReadLine();
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.ToString());
                Console.WriteLine(ex.Message);
                Console.ReadLine();
            }
        }
    }
}

<strong>CHU</strong>
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                label1.Text = "";

                Microsoft.Dynamics.BusinessConnectorNet.Axapta DynAx = new
                    Microsoft.Dynamics.BusinessConnectorNet.Axapta();
                Microsoft.Dynamics.BusinessConnectorNet.AxaptaRecord DynRec;

                // Authenticate the user and establish a session.
                DynAx.Logon(Company.Text, null, AOS.Text, Configuration.Text);
                if (DynAx != null)
                {
                    label1.Text = ("Login OK");
                }

                // Define the record as the AddressState table.
                DynRec = DynAx.CreateAxaptaRecord("AddressState");

                // Define the query that will run on the AddressState records.
                // This will return all the data in the AddressState table with
                // the cursor positioned at the first record in the table.
                DynRec.ExecuteStmt("select * from %1");

                // Check if the query returned any data.
                if (DynRec.Found)
                {
                    // Display the record on the form that was retrieved from the query.
                    textBox1.Text = (string)DynRec.get_Field("Name");

                }
            }
            catch (Exception ex)
            {
                textBox1.Text = (ex.ToString());
                textBox1.Text += (ex.Message);
                label1.Text = ("Login Filed");
            }
        }
    }
}
<strong>ZRI</strong>
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication2
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {

                label1.Text = "";

                Microsoft.Dynamics.BusinessConnectorNet.Axapta DynAx = new
                    Microsoft.Dynamics.BusinessConnectorNet.Axapta();
                Microsoft.Dynamics.BusinessConnectorNet.AxaptaRecord DynRec;

            // Authenticate the user and establish a session.
                System.Net.NetworkCredential nc = new System.Net.NetworkCredential(USER.Text, PASS.Text);
            try
            {
                //"C:\\Documents and Settings\\1314\\Escritorio\\BC.AXC"
                DynAx.LogonAs(AXUser.Text, Domain.Text, nc, Company.Text, null, AOS.Text, Configuration.Text);

                if (DynAx != null)
                {
                    label1.Text = ("Login OK");
                }

                // Define the record as the AddressState table.
                DynRec = DynAx.CreateAxaptaRecord("AddressState");

                // Define the query that will run on the AddressState records.
                // This will return all the data in the AddressState table with
                // the cursor positioned at the first record in the table.
                DynRec.ExecuteStmt("select * from %1");

                // Check if the query returned any data.
                if (DynRec.Found)
                {
                    // Display the record on the form that was retrieved from the query.
                    textBox1.Text = (string)DynRec.get_Field("Name");

                }
                //DynAx.Logoff();
            }
            catch (Exception ex)
            {
                textBox1.Text = (ex.ToString());
                textBox1.Text += (ex.Message);
                label1.Text = ("Login Filed");
            }
        }
    }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://ax.nom.es/uncategorized/varios-ejemplos-c-net-para-conectar-con-ax-4-0-utilizando-bussines-conector/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uso de contenedores Con AX Business Connector Net</title>
		<link>http://ax.nom.es/axapta/uso-de-contenedores-con-ax-business-connector-net</link>
		<comments>http://ax.nom.es/axapta/uso-de-contenedores-con-ax-business-connector-net#comments</comments>
		<pubDate>Mon, 02 Feb 2009 15:54:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[4.0]]></category>
		<category><![CDATA[5.0]]></category>
		<category><![CDATA[axapta]]></category>
		<category><![CDATA[desarrollo]]></category>
		<category><![CDATA[dynamics]]></category>
		<category><![CDATA[dynamics2009]]></category>
		<category><![CDATA[x++]]></category>

		<guid isPermaLink="false">http://ax.nom.es/?p=80</guid>
		<description><![CDATA[using System; using System.Collections.Generic; using System.Text; using System.Xml; using System.Security.Cryptography; using System.IO; using Microsoft.Dynamics.BusinessConnectorNet; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { Axapta AX; AX = new Axapta(); AX.Logon(&#8220;CNS&#8221;, null, &#8220;DYmanicsAx1:2713&#8243; , null); object[] Parmlist = new object[1]; AxaptaContainer Container = AX.CreateAxaptaContainer(); Container = (AxaptaContainer)AX.CallStaticRecordMethod(&#8220;InventDim&#8221;, &#8220;dimEnabledFieldList&#8221;, 1); Console.WriteLine(BankAccountTable.Call(&#8220;balanceCur&#8221;, Container)); AX.Logoff(); }]]></description>
			<content:encoded><![CDATA[<p>using System;<br />
using System.Collections.Generic;<br />
using System.Text;<br />
using System.Xml;<br />
using System.Security.Cryptography;<br />
using System.IO;<br />
using Microsoft.Dynamics.BusinessConnectorNet;</p>
<p>namespace ConsoleApplication3<br />
{<br />
class Program<br />
{</p>
<p>static void Main(string[] args)<br />
{<br />
Axapta AX;<br />
AX = new Axapta();<br />
AX.Logon(&#8220;CNS&#8221;, null, &#8220;DYmanicsAx1:2713&#8243; , null);<br />
object[] Parmlist = new object[1];</p>
<p>AxaptaContainer Container = AX.CreateAxaptaContainer();<br />
Container = (AxaptaContainer)AX.CallStaticRecordMethod(&#8220;InventDim&#8221;, &#8220;dimEnabledFieldList&#8221;, 1);<br />
Console.WriteLine(BankAccountTable.Call(&#8220;balanceCur&#8221;, Container));</p>
<p>AX.Logoff();<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://ax.nom.es/axapta/uso-de-contenedores-con-ax-business-connector-net/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Dynamics 2009</title>
		<link>http://ax.nom.es/axapta/microsoft-dynamics-2009</link>
		<comments>http://ax.nom.es/axapta/microsoft-dynamics-2009#comments</comments>
		<pubDate>Fri, 16 May 2008 09:04:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[5.0]]></category>
		<category><![CDATA[axapta]]></category>
		<category><![CDATA[dynamics]]></category>
		<category><![CDATA[dynamics2009]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://ax.nom.es/axapta/microsoft-dynamics-2009</guid>
		<description><![CDATA[Ya esta aquí, la pre-released de axapta 2009 y como lo han bautizado Dynamics 2009. Bueno puestos a probarla, pues hay va el resumen de la instalación, lo cierto que esta nueva versión tiene muchas cosas nuevas que iremos descubriendo y probando, así rápido de decir que podremos configurar en nuestros clientes el consumo de [...]]]></description>
			<content:encoded><![CDATA[<p>Ya esta aquí, la pre-released de axapta 2009 y como lo han bautizado Dynamics 2009. <o:p></o:p></p>
<p>Bueno puestos a probarla, pues hay va el resumen de la instalación, lo cierto que esta nueva versión tiene muchas cosas nuevas que iremos descubriendo y probando, así rápido de decir que podremos configurar en nuestros clientes el consumo de memoria en función de la instalación he incluso en que cpu queremos que se ejecute nuestro aos. También hay nuevos conceptos que la parte de desarrollo que consiguen una perfecta integración y nos facilitara la vida a todos los X frikis. <o:p></o:p></p>
<p><strong>Diario de una instalación.</strong></p>
<p>Herramientas:</p>
<p>-Windosw 2003 R2</p>
<p>-Oracle express 10 g</p>
<p>Después de hacernos con la copia de dynamics 2009 en el mercado negro por supuesto.</p>
<p>La tostamos por que queda muy chuli eso de ir enseñando el dvd por hay .. jejej&#8230;</p>
<p>y le damos cera a la instalación.</p>
<p><a href="http://ax.nom.es/wp-content/uploads/2008/05/dibujo_1.JPG" title="dibujo_1.JPG"><img src="http://ax.nom.es/wp-content/uploads/2008/05/dibujo_1.thumbnail.JPG" alt="dibujo_1.JPG" /></a></p>
<p>Uno empieza a darle a los botones todo loko de contento cuando se encuentra con que no se puede instalar en sql server 2000, el framework 3.5 y un par de cosillas mas, eso me pasa por darle y no leer las especificaciones de instalación.</p>
<p>Suerte que los pakistanies que ha puesto  M$ a trabajar en esta versión se han puesto las pilas y se nota que son de donde son&#8230; total q la cosa y a viene lista sin andar por hay buscando parches y otras fiestas&#8230;</p>
<p><a href="http://ax.nom.es/wp-content/uploads/2008/05/dibujo_2.JPG" title="dibujo_2.JPG"><img src="http://ax.nom.es/wp-content/uploads/2008/05/dibujo_2.thumbnail.JPG" alt="dibujo_2.JPG" /></a></p>
<p><a href="http://ax.nom.es/wp-content/uploads/2008/05/dibujo_3.JPG" title="dibujo_3.JPG"><img src="http://ax.nom.es/wp-content/uploads/2008/05/dibujo_3.thumbnail.JPG" alt="dibujo_3.JPG" /></a></p>
<p>Tras  pegarnos con la instalación de oracle, configurar el usuario y el active directori que no falte&#8230; (estos siempre barriendo pa su casa)</p>
<p><a href="http://ax.nom.es/wp-content/uploads/2008/05/dibujo_5.JPG" title="dibujo_5.JPG"><img src="http://ax.nom.es/wp-content/uploads/2008/05/dibujo_5.thumbnail.JPG" alt="dibujo_5.JPG" /></a></p>
<p>Una de las cosas mas interesantes que trae este pre-released es la posibilidad de consultar un log con todas las maldades que nos ha ido haciendo en el sistema, lo que proporcina una gran ayuda para solventar posibles errores.</p>
<p><a href="http://ax.nom.es/wp-content/uploads/2008/05/dibujo_6.JPG" title="dibujo_6.JPG"><img src="http://ax.nom.es/wp-content/uploads/2008/05/dibujo_6.thumbnail.JPG" alt="dibujo_6.JPG" /></a></p>
<p>Es importante que la instalación al igual que 4.0 nos envia bastante información al visor de sucesos.</p>
<p>Durante una de las pruebas el tablespaces de systema se nos quedo pequeño al configurar mal  la ubicación de tablas lo que nos produjo unos cuantos errores de sincronización, como unos 800, total que por suerte en 2 minutos se pudo averiguar la causa y solventarla.</p>
<p><a href="http://ax.nom.es/wp-content/uploads/2008/05/dibujo_7.JPG" title="dibujo_7.JPG"><img src="http://ax.nom.es/wp-content/uploads/2008/05/dibujo_7.thumbnail.JPG" alt="dibujo_7.JPG" /></a></p>
<p>Esta versión ya podemos decir que es un producto tecnologicamente mas competitivo y mas estable.</p>
<p><a href="http://ax.nom.es/wp-content/uploads/2008/05/dibujo_8.JPG" title="dibujo_8.JPG"><img src="http://ax.nom.es/wp-content/uploads/2008/05/dibujo_8.thumbnail.JPG" alt="dibujo_8.JPG" /></a></p>
<p>Estas son los comandos para crear un tablespaces de pruebas y un usuario valido, a la vez que la autentificación  externa.</p>
<p>SQL&gt; alter system set os_authent_prefix =&#8221;OPS$&#8221; scope=SPFILE;<br />
SQL&gt; create user &#8220;OPS$DOM\ADMINISTRADOR&#8221; identified externally;</p>
<p>Usuario creado.</p>
<p>SQL&gt; grant connect to &#8220;OPS$DOM\ADMINISTRADOR&#8221;;</p>
<p>Concesi¾n terminada correctamente.</p>
<p>SQL&gt;<br />
create tablespace AXDATA datafile &#8216;C:\oraclexe\oradata\XE\AXDATA.dbf&#8217;<br />
size 50M autoextend on;</p>
<p>create tablespace AXINDEX datafile &#8216;C:\oraclexe\oradata\XE\AXINDEX.dbf&#8217;<br />
size 50M autoextend on;</p>
<p>Rápido y conciso no ???</p>
<p>No hay para mas que el jefe me pide cerrar  iva y no llegamos..</p>
<p>JAJJAJAJA</p>
]]></content:encoded>
			<wfw:commentRss>http://ax.nom.es/axapta/microsoft-dynamics-2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Como ejecutar un archivo cmd o .bat desde un cliente sobre el servidor AOS</title>
		<link>http://ax.nom.es/dynamics/como-ejecutar-un-archivo-cmd-o-bat-desde-un-cliente-sobre-el-servidor-aos</link>
		<comments>http://ax.nom.es/dynamics/como-ejecutar-un-archivo-cmd-o-bat-desde-un-cliente-sobre-el-servidor-aos#comments</comments>
		<pubDate>Thu, 27 Mar 2008 12:27:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[3.0]]></category>
		<category><![CDATA[4.0]]></category>
		<category><![CDATA[AOS]]></category>
		<category><![CDATA[dynamics]]></category>
		<category><![CDATA[x++]]></category>
		<category><![CDATA[asciiio]]></category>
		<category><![CDATA[axapta]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[xpo]]></category>

		<guid isPermaLink="false">http://ax.nom.es/uncategorized/como-ejecutar-un-archivo-cmd-o-bat-desde-un-cliente-sobre-el-servidor-aos</guid>
		<description><![CDATA[Para poder crear un archivo tipo bat o cmd con definirlo de esta manera &#8220;file = new asciiio(&#8216;c:\\filex.bat&#8217;,'w&#8217;);&#8221; ya tenemos un fichero llamado filex.bat en c:\ . Ahora bien en nuestro c: o en el del sevidor???? Pues eso solo lo sabremos si el metdodo q hemos ejecutado se lanza del lado del cliente o [...]]]></description>
			<content:encoded><![CDATA[<p>Para poder crear un archivo tipo bat o cmd con definirlo de esta manera  &#8220;file = new asciiio(&#8216;c:\\filex.bat&#8217;,'w&#8217;);&#8221; ya tenemos un fichero llamado filex.bat en c:\ . Ahora bien en nuestro c: o en el del sevidor???? Pues eso solo lo sabremos si el metdodo  q hemos ejecutado se lanza del lado del cliente o del lado del servidor, y para salir de dudas mejor definir una metodo static y ponerle server para que de fijo se lance en el servidor donde se este ejecutando nuestro AOS (AX32serv.exe).</p>
<p>static server void Start()<br />
{<br />
asciiio file;<br />
str txt;<br />
;<br />
winapi::deleteFile(&#8216;C:\\file2.txt&#8217;);</p>
<p>file = new asciiio(&#8216;c:\\filex.bat&#8217;,'w&#8217;);</p>
<p>if (file)<br />
{<br />
txt = (strfmt(&#8216;net start &#8220;Axapta batch 1&#8243; &#8216;));<br />
file.write(txt);</p>
<p>file = null;</p>
<p>winapi::shellExecute(&#8216;c:\\filex.bat&#8217;);<br />
winapi::deleteFile(&#8216;C:\\filex.txt&#8217;);<br />
}</p>
<p>}</p>
<p><a href="http://ax.nom.es/wp-content/uploads/2008/03/ftx_tpv_shutdownrestartservices.xpo" title="ftx_tpv_shutdownrestartservices.xpo">ftx_tpv_shutdownrestartservices.xpo</a></p>
<p><a href="http://ax.nom.es/wp-content/uploads/2008/03/dibujo111111.JPG" title="dibujo111111.JPG"><img src="http://ax.nom.es/wp-content/uploads/2008/03/dibujo111111.JPG" alt="dibujo111111.JPG" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ax.nom.es/dynamics/como-ejecutar-un-archivo-cmd-o-bat-desde-un-cliente-sobre-el-servidor-aos/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Como instalar un cluster de AOS en 3.0 y para que sirve.</title>
		<link>http://ax.nom.es/axapta/como-instalar-un-cluster-de-aos-en-30-y-para-que-sirve</link>
		<comments>http://ax.nom.es/axapta/como-instalar-un-cluster-de-aos-en-30-y-para-que-sirve#comments</comments>
		<pubDate>Thu, 06 Mar 2008 09:20:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[3.0]]></category>
		<category><![CDATA[AOS]]></category>
		<category><![CDATA[axapta]]></category>
		<category><![CDATA[dynamics]]></category>

		<guid isPermaLink="false">http://ax.nom.es/axapta/como-instalar-un-cluster-de-aos-en-30-y-para-que-sirve</guid>
		<description><![CDATA[Buenas, pues todo el mundo sabe lo que es un cluster de maquinas no??,  el que no se pede pasar por la wiki y luego seguimos. Total  Ax (axapta 3.0) permite instalar un balanceador de conexiones entre dos o mas AOS, para que sirve esto, pues más bien para no mucho, el concepto es que [...]]]></description>
			<content:encoded><![CDATA[<p>Buenas, pues todo el mundo sabe lo que es un cluster de maquinas no??, <span> </span>el que no se pede pasar por la wiki y luego seguimos. <o:p></o:p></p>
<p>Total  Ax (axapta 3.0) permite instalar un balanceador de conexiones entre dos o mas AOS, para que sirve esto, pues más bien para no mucho, el concepto es que el dependiendo del número de usuario que se han conectado a un u otro AOS este cluster distribuye la conexión entrante para mantener un numero homogéneo de conexiones. <o:p></o:p></p>
<p>Nada de  transacciones o de carga de procesos, simple y &#8220;molt macu&#8221; para vender un poco de tecno-logia al puro estilo de las modas de internet. Seguro que en un par de meses se les ocurre algo para dual core.. jajjajaa.. <o:p></o:p></p>
<p>Para terminar un copy paste de como se instala y se configura.. Perdon por los derechos de autor.. jejjeje</p>
<p><span style="font-size: 8.5pt; font-family: Verdana; color: black" lang="EN-GB">Axapta Object Server cluster</p>
<p>The Axapta Object Server cluster environment is build to provide load balancing and fall back. An Axapta Object Server can be specified to belong to a specific cluster. If the same cluster name is given for a number of object servers they all belong to the same cluster. A user can be specified to connect to a given cluster.</p>
<p>Suppose a number of servers are set up in the same cluster &#8211; named AOSC. They should all use the same application and database, and in other aspects have the same settings. All clients connecting to the AOSC should be specified to search for servers belonging to this cluster, otherwise the load balancing mechanism will not work properly. A client starting up against an Axapta Object Server Cluster will start out by broadcasting an UDP package requesting Axapta Object Servers fulfilling names and IP server masks given in the client settings to respond. It is therefore vital that firewalls allows such packages to pass through. The client will receive answers from all Object Servers with information on object server name and the name of the instance plus the number of clients connected to that instance. The client disregard information from servers not belonging to the requested cluster. The client then chooses one of the instances with the lowest number of clients.</p>
<p>Since a client automatically can choose from all servers in a cluster one or more Object Servers can be down with out changing the connection procedures. However performance might suffer severely due to higher load on the fewer servers.</p>
<p>Setting up the server</p>
<p>On the server manager select the server of interest and click settings. In the advanced field write -cluster=&lt;my cluster name&gt;. The cluster name can be up to 10 characters long.</p>
<p>Setting up the client</p>
<p>In the configuration tool choose the configuration of interest. In the advanced field write -cluster=&lt;my cluster name&gt;. The client setting for connecting to an object server depends on two situations. The first situation being both client and Axapta Object Servers being in the same subnet. The second being client and Axapta Object Servers belong to different subnets.</p>
<p>Recall the settings in the configuration utility for connecting to an object server:</p>
<p>- Axapta Object Server Mask<br />
- Axapta Object Server host names<br />
- Axapta Object Server IP Address masks</p>
<p>When the client and Object Servers belong to the same subnet the above three masks can be left blank.</p>
<p>When the client and Object Servers belong to different subnets the IP Address masks should contain the mask for the subnet the Object Servers belong to. An example could be 192.88.253.255, where the last 255 specifies that the search is done among servers in the subnet 192.88.253.*.</p>
<p>Note &#8211; if client at any time receives only service response from Object Servers within the same cluster it will automatically choose the least loaded of these servers without having to specify the cluster name in the client configuration. This means that if your installation is one single Axapta cluster, there is no need to change the existing configuration with respect to cluster name. Ensure that all relevant Object Servers are located by client configurations network set up.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://ax.nom.es/axapta/como-instalar-un-cluster-de-aos-en-30-y-para-que-sirve/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Como pasar parametros entre objetos usando la clase args AX axapta</title>
		<link>http://ax.nom.es/uncategorized/como-pasar-parametros-entre-objetos-usando-la-clase-args-ax-axapta</link>
		<comments>http://ax.nom.es/uncategorized/como-pasar-parametros-entre-objetos-usando-la-clase-args-ax-axapta#comments</comments>
		<pubDate>Tue, 19 Feb 2008 13:01:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[3.0]]></category>
		<category><![CDATA[4.0]]></category>
		<category><![CDATA[aot]]></category>
		<category><![CDATA[axapta]]></category>
		<category><![CDATA[desarrollo]]></category>
		<category><![CDATA[dynamics]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[x++]]></category>
		<category><![CDATA[froms]]></category>

		<guid isPermaLink="false">http://ax.nom.es/?p=31</guid>
		<description><![CDATA[Args  es utiliza para pasar argumentos al constructor de una clase. Args pueden transmitir información como el nombre, y los parámetros que llaman a una nueva clase. Los formularios, informes y consultas utilizan  la clase Args como primer argumento en el constructor. Pasandole el nombre del objeto a crear a una clase args y despues [...]]]></description>
			<content:encoded><![CDATA[<p dir="ltr">Args  es utiliza para pasar argumentos al constructor de una clase. Args pueden transmitir información como el nombre, y los parámetros que llaman a una nueva clase.</p>
<p>Los formularios, informes y consultas utilizan  la clase Args como primer argumento en el constructor.</p>
<p dir="ltr">Pasandole el nombre del objeto a crear a una clase args y despues llamar a classfactory con estos argumentos podemos inicializar fomularios, informes etc.</p>
<p dir="ltr"><font size="2">    Args a = new Args(&#8220;CustTable&#8221;);<br />
    formRun fr = ClassFactory.FormRunClass(a);<br />
    fr.init();<br />
    fr.run();<br />
</font> </p>
<p>para recuperar el objeto args en la clase de destino, por regla general existe un metodo que nos devuelve este dato.</p>
<p dir="ltr">elment.args() en el caso de formulario.</p>
<p dir="ltr">El objetivo de esto es poder pasar a traves de args objetos completos a otros contextos de ejecución de forma que podriamos abrir un formulario inicial F1 ejecutar otro formulario secundario F2 y poder ejecutar metodos del formulario 1 desde el formulario 2.</p>
<p dir="ltr">un ejemplo.</p>
<p dir="ltr">Hemos creado un from con un metodo para recuperar el texto de un strignedit y este texto lo vamos a pintar desde un report, utilizando para ello una clase intermedia o el metodo del form que lo ha llamado.</p>
<p dir="ltr"><a href="http://ax.nom.es/wp-content/uploads/2008/02/fir_dem.xpo" title="fir_dem.xpo">fir_dem.xpo</a> </p>
<p dir="ltr">public void init()<br />
{<br />
    object ob;<br />
    FIR_ReportClas FIR_ReportClas;</p>
<p dir="ltr">    super();</p>
<p dir="ltr">    //axl si no es la clase entonces es el formmm&#8230;<br />
    if (classIdGet(element.args().caller()) == classNum(FIR_ReportClas))<br />
    {<br />
            FIR_ReportClas = element.args().caller();<br />
            print FIR_ReportClas.texto();<br />
    }<br />
    else<br />
    {<br />
        ob = element.args().caller();<br />
        print ob.texto();<br />
    }</p>
<p dir="ltr"><a href="http://ax.nom.es/wp-content/uploads/2008/02/dibujoaaxxzee.bmp" title="dibujoaaxxzee.bmp"><img src="http://ax.nom.es/wp-content/uploads/2008/02/dibujoaaxxzee.bmp" alt="dibujoaaxxzee.bmp" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ax.nom.es/uncategorized/como-pasar-parametros-entre-objetos-usando-la-clase-args-ax-axapta/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instalación de AX Dinamics 4.0 con oracle express</title>
		<link>http://ax.nom.es/uncategorized/instalacion-de-ax-dinamics-40-con-oracle-express</link>
		<comments>http://ax.nom.es/uncategorized/instalacion-de-ax-dinamics-40-con-oracle-express#comments</comments>
		<pubDate>Fri, 15 Feb 2008 10:04:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[3.0]]></category>
		<category><![CDATA[4.0]]></category>
		<category><![CDATA[axapta]]></category>
		<category><![CDATA[dynamics]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Instalación]]></category>

		<guid isPermaLink="false">http://ax.nom.es/?p=30</guid>
		<description><![CDATA[Desde este blog apostamos más por la utilidad y el buen hacer que por las facturas que van a cobrar las consultoras en ventas de productos Microsoft. Hemos de reconocer que AX es un buen producto como “erp” que ya se ha asentado en nuestro país y que día a día es una solución tanto [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Georgia">Desde este blog apostamos más por la utilidad y el buen hacer que por las facturas que van a cobrar las consultoras en ventas de productos Microsoft. Hemos de reconocer que AX es un buen producto como “erp” que ya se ha asentado en nuestro país y que día a día es una solución tanto para la pequeña como media empresa. <o:p></o:p></span><span style="font-family: Georgia">A la hora de implantar un Ax normalmente los que deciden que base de datos o plataforma se va a utilizar, suelen ser los comerciales que le venden la moto al pobre cliente que no sabe realmente que necesita ya <span> </span>que no tiene experiencia sobre en el tema. <o:p></o:p></span><span style="font-family: Georgia">Aprovechando esta carencia algún que otro desalmado le coloca un sql Server solo para sacarse unas perrillas de más y de paso subir un par de puntos en el ranking de “Partners“, o tal vez por puro desconocimiento o falta de profesionalidad. <o:p></o:p></span><span style="font-family: Georgia">Para nosotros y con la experiencia adquirida desde la versión 2.1, <span> </span>desde antes del año 2000 recomendamos “oracle” para las instalaciones que requieran un volumen de movimientos <span> </span>grande. Bases de datos que vayan a superar los 30 o 50 GB no en su instalación base, sino en el crecimiento que sufrirá tras su puesta en producción.<o:p></o:p></span><span style="font-family: Georgia"><o:p> </o:p></span><span style="font-family: Georgia">A lo que vamos. <o:p></o:p></span><span style="font-family: Georgia">La instalación de AX 4.0 es muy sencilla y solamente necesitamos una maquina 2003 server r2 actualizada y una base de datos en este caso oracle Express que aun con una limitación de 4 GB <span> </span>nos servirá de ejemplo. <o:p></o:p></span><span style="font-family: Georgia">http://www.oracle.com/technology/software/products/database/xe/index.html<o:p></o:p></span><span style="font-family: Georgia">Tras instalar oracle Express que no es muy difícil continuaremos con la de AX 4.0, uno de los pasos en la instalación es la elección de la base de datos, en este instante nos solicitara una serie de datos, el listener, el puerto tcp o el usuario y la contraseña de la base de datos. <o:p></o:p></span><span style="font-family: Georgia">Ax necesita que la autentificación de base de datos la realice el sistema operativo. Para conseguir esto solo necesitamos cambiar el parámetro de XE <o:p></o:p></span></p>
<pre><font size="2">os_authent_prefix<span>  </span><o:p></o:p></font></pre>
<p><span style="font-family: Georgia">Con un prefijo tipo ‘ops$’ nos sevira, <span> </span>de manera que oracle sepa identificar si el usuario del SO que solicita la conexión esta creado en oracle autorizando el acceso. <o:p></o:p></span><span style="font-family: Georgia"><o:p> </o:p></span><span style="font-family: Georgia">Crearemos un usuario<span>  </span>en oracle como este:<o:p></o:p></span></p>
<pre><span lang="EN-GB"><font size="2">-- Windows<o:p></o:p></font></span></pre>
<pre><span lang="EN-GB"><font size="2">CREATE USER "OPS$DOMINIO.COM\DBO" IDENTIFIED EXTERNALLY;<o:p></o:p></font></span></pre>
<pre><span lang="EN-GB"><font size="2">GRANT CONNECT TO "OPS$DOMINIO.COM\DBO";<o:p></o:p></font></span></pre>
<p><span style="font-family: Georgia">Crearemos un usuario en nuestro dominio en este caso DBO .<o:p></o:p></span><span style="font-family: Georgia">Oracle &#8211;&gt; OPS$dominio\DBO<o:p></o:p></span><span style="font-family: Georgia">Win &#8211;&gt; DBO<o:p></o:p></span><span style="font-family: Georgia">Y podremos finalizar la instalación.<o:p></o:p></span><span style="font-family: Georgia">Ni que decir tiene que debemos crear un tablespace de datos otro de indices etc. (Vamos lo típico en estos casos).<o:p></o:p></span><span style="font-family: Georgia"><a href="http://www.oracle-base.com/articles/misc/OsAuthentication.php">http://www.oracle-base.com/articles/misc/OsAuthentication.php</a><o:p></o:p></span><span style="font-family: Georgia"><o:p> </o:p></span><span style="font-family: Georgia">Para finalizar recomendaros que ORACLE + SUSE Linux <span> </span>+ AX es la mejor combinación para un optimo rendimiento de la instalación y evitar los sustos que nos dará Microsoft con el día a día que ya sabemos todos. <o:p></o:p></span><span style="font-family: Georgia"><o:p> </o:p></span><span style="font-family: Georgia">Un saludo.<o:p></o:p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://ax.nom.es/uncategorized/instalacion-de-ax-dinamics-40-con-oracle-express/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Como es eso de la seguridad en AX 3.0</title>
		<link>http://ax.nom.es/uncategorized/como-es-eso-de-la-seguridad-en-ax-30</link>
		<comments>http://ax.nom.es/uncategorized/como-es-eso-de-la-seguridad-en-ax-30#comments</comments>
		<pubDate>Tue, 05 Feb 2008 10:08:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[3.0]]></category>
		<category><![CDATA[axapta]]></category>
		<category><![CDATA[dynamics]]></category>
		<category><![CDATA[seguridad]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[ax]]></category>
		<category><![CDATA[seguiridad]]></category>

		<guid isPermaLink="false">http://ax.nom.es/?p=24</guid>
		<description><![CDATA[A mi me cuesta mucho entender el modelo de seguridad de AX, pero menos mal que tenia por hay un documento de M$ que vamos a pegar integro por si a alguien le sirve pa algo&#8230; Configuration and security in Navision Axapta This technical information paper will go through the concept of the configuration and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ax.nom.es/wp-content/uploads/2008/02/dibujo1114.JPG" title="dibujo1114.JPG"></a>A mi me cuesta mucho entender el modelo de seguridad de AX, pero menos mal que tenia por hay un documento de M$ que vamos a pegar integro por si a alguien le sirve pa algo&#8230;</p>
<p style="margin-bottom: 0cm; page-break-before: always"><font size="4"><strong>Configuration and security in Navision Axapta</strong></font></p>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">This technical information paper will go through the concept of the configuration and security system introduced in version 3.0 of Navision Axapta.</p>
<h1 class="western">Introduction</h1>
<p style="margin-bottom: 0cm">With version 3.0 of Navision Axapta the Configuration and Security system is introduced. This system is an extension of the feature key system that has existed since the first version of Axapta.</p>
<p style="margin-bottom: 0cm">This paper is an introduction to the concept and ideas behind the new system. The paper will not deal with the technical aspects of how to create configuration and security keys and connect these to application objects. These issues are covered in the Navision Axapta Developer’s Guide, which is available from the Help menu in the toolbar.</p>
<p style="margin-bottom: 0cm">For help on specific forms in Navision Axapta, please consult the online help.</p>
<h1 class="western">Configuration and security key concept</h1>
<p style="margin-bottom: 0cm">The new security system was created to make the system more intuitive and flexible, and easier for the administrator to set up. The feature keys are replaced by two types of keys: configuration and security keys. This means, that the double-function the feature keys previously had, is now replaced by two types of keys each having <em>one</em> function.</p>
<p style="margin-bottom: 0cm">The standard version 2.5 of Navision Axapta had more than 1,000 feature keys. The new system will only have few, but well-defined keys. To maintain the flexibility, security can now be set up on each menu item.</p>
<h2 class="western">License codes</h2>
<p style="margin-bottom: 0cm">The license code concept has not changed on the interface with version 3.0. The setup form still looks the same, and license information can be entered manually or loaded from the license file. But license codes are now defined in the AOT. The specific codes, however, are still requested at, and generated by Navision.</p>
<h2 class="western">Configuration keys</h2>
<p style="margin-bottom: 0cm">Configuration keys are used to disable or enable functionality and, according to the name, used for configuration of your system. Configuration keys are present everywhere in the AOT like the feature keys were present.</p>
<p style="margin-bottom: 0cm">When buying license codes and entering these in the system, you perform the first steps of the configuration. A more detailed configuration is done from the <strong>Administration</strong> menu; click <strong>Setup</strong>, then <strong>System</strong> and double-click <strong>Configuration</strong>. In most cases license codes control the configuration keys, therefore it is not possible, and would not make sense, to disable a configuration key. A configuration key, however, can control a number of child configuration keys, and they can be either disabled or enabled as required. An example could be a company buying the Trade module license code; the company wants most of the functionality in this module, but does not do business with other countries, and chooses therefore to disable the Foreign trade configuration key. This can all be controlled from the <strong>Configuration</strong> form.</p>
<h3 class="western">A minimized system</h3>
<p style="margin-bottom: 0cm">Having loaded the license code file, the system will start up minimized. This means that all child configuration keys are disabled. Any required extra features can safely be enabled later. A specific setup can still be exported and imported, or, if necessary reset to standard, which is the minimized system. The minimized system will not be used during an upgrade.</p>
<p style="margin-bottom: 0cm"><a href="http://ax.nom.es/wp-content/uploads/2008/02/dibujo1112.JPG" title="dibujo1112.JPG"><img src="http://ax.nom.es/wp-content/uploads/2008/02/dibujo1112.JPG" alt="dibujo1112.JPG" /></a></p>
<h2 class="western">Security keys</h2>
<p style="margin-bottom: 0cm">Having set up the configuration keys, security must be considered. Security keys are used to control access to functionality for users. The security keys are used almost everywhere the feature keys were, except for indexes, fields and types:</p>
<ul>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Indexes &#8211; the performance of indexes must be available for all users, just as in version 2.5.</p>
</li>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Fields &#8211; security on fields must be set up from the User group permissions form, under the table they belong to.</p>
</li>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Types &#8211; security can only be applied to fields, making the concept of indirect access obsolete.</p>
</li>
</ul>
<p style="margin-bottom: 0cm">Security keys control access to menu items and tables, and setup is done from the <strong>Administration</strong> menu, click <strong>Setup</strong>, then <strong>Security</strong>, and <strong>User group permissions</strong>. Access for menu items and tables can be set to:</p>
<ul>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">No access,</p>
</li>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">View,</p>
</li>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Edit,</p>
</li>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Create, and</p>
</li>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Full control.</p>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">&nbsp;</p>
</li>
</ul>
<p style="margin-bottom: 0cm">The figures (2 and 3) below illustrate the hierarchy of the configuration and security keys.</p>
<h2 class="western">Key hierarchy</h2>
<h2 class="western"><a href="http://ax.nom.es/wp-content/uploads/2008/02/dibujo1113.JPG" title="dibujo1113.JPG"><img src="http://ax.nom.es/wp-content/uploads/2008/02/dibujo1113.JPG" alt="dibujo1113.JPG" /></a></h2>
<p class="western"><a href="http://ax.nom.es/wp-content/uploads/2008/02/dibujo1114.JPG" title="dibujo1114.JPG"><img src="http://ax.nom.es/wp-content/uploads/2008/02/dibujo1114.JPG" alt="dibujo1114.JPG" /></a><a href="http://ax.nom.es/wp-content/uploads/2008/02/dibujo1114.JPG" title="dibujo1114.JPG"></a></p>
<p style="margin-bottom: 0cm">Fig 3.: (C) = Configuration key, (S) = Security key, (MI) = Menu item, and (T) = Table.</p>
<p style="margin-bottom: 0cm">&nbsp;</p>
<p style="margin-bottom: 0cm">Figure 3 illustrates how security keys control menu item and table access, and how the Ledger configuration key controls the Cust security key.</p>
<p style="margin-bottom: 0cm">For each module, a set of 9 security keys exists, they all have the same naming, and the prefixes denote the module. For the Accounts Receivable module the security keys are:</p>
<ul>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Cust</p>
</li>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Cust<strong>Daily</strong>,</p>
</li>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Cust<strong>Journals</strong>,</p>
</li>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Cust<strong>Inquiries</strong>,</p>
</li>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Cust<strong>Reports</strong>,</p>
</li>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Cust<strong>Periodic</strong>,</p>
</li>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Cust<strong>Setup</strong>,</p>
</li>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Cust<strong>Misc</strong>, and</p>
</li>
<li>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">Cust<strong>Tables</strong>.</p>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm">The security key structure resembles the Main menu structure. To make setup easier, drill-down of menu items is possible. A drill-down will display the tables, form controls and other menu items that are accessible from the menu item.</p>
</li>
</ul>
<h2 class="western">Record level security</h2>
<p style="margin-bottom: 0cm">Another new feature for version 3.0 is the Record level security system. It can be used in addition to the other permissions setup in Navision Axapta. For each combination of company, user group, and table a query can be set up, limiting data access for the specific combination. Specify, for example, that a certain user group within a company only has access to see customer numbers from 1000 to 4999. Row level security is set up from the <strong>Administration</strong> menu, under <strong>Setup</strong>, then <strong>Security</strong>, and <strong>Record level security</strong>.</p>
<p style="margin-bottom: 0cm">Read more about Record level security in the online help.</p>
<h2 class="western">Forms’ setup</h2>
<p style="margin-bottom: 0cm">In previous versions, an extension of the security access was to set up access to fields etc. on specific forms. The setup was done from each specific form for the user group. With version 3.0, the same functionality is available, but it is handled differently. Granting access to form controls is done from the <strong>User group permissions</strong> form. In the tree, each control for a specific form, this being a field, a button or a display field can be set to the appropriate access level.</p>
<h1 class="western">Comparison</h1>
<p style="margin-bottom: 0cm">For the user coming from an Axapta version 2.5, the changes may not seem very overwhelming on the interface. The main difference between the old and the revised system is the split-up into two different types of keys. This means that it is more obvious to the user what keys are used for what purpose.</p>
<p style="margin-bottom: 0cm">Another difference is, that indirect access no longer exists. Indirect access was introduced to allow related fields to be shown in the related table in order to, for example, show the Item number on a Sales Order. Since it is no longer possible to set security on types, the Item number field will not be removed, and the indirect access is not necessary. To remove the Item number field from the Sales Order, use table access on the sales order table and item number field.</p>
<p style="margin-bottom: 0cm">The following table illustrates the Feature key system versus the Configuration system:</p>
<p style="margin-bottom: 0cm">&nbsp;</p>
<p><center></p>
<table border="1" width="528" cellPadding="7" cellSpacing="0" borderColor="#000000">
<thead>
<td height="2" bgColor="#c0c0c0" width="161">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em><strong>Functionality</strong></em></font></p>
</td>
<td bgColor="#c0c0c0" width="162">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em><strong>2.5</strong></em></font></p>
</td>
<td bgColor="#c0c0c0" width="161">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em><strong>3.0</strong></em></font></p>
</td>
</tr>
<tr>
<td height="3" width="161">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>License codes</em></font></p>
</td>
<td width="162" vAlign="top">
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm"><font size="2" style="font-size: 9pt"><em>Used for registering license information.</em></font></p>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm"><font size="2" style="font-size: 9pt"><em>Codes are requested at Navision.</em></font></p>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm"> <font size="2" style="font-size: 9pt"><em>License codes are defined in the kernel.</em></font></p>
<p style="margin-top: 0.11cm">&nbsp;</p>
</td>
<td width="161" vAlign="top">
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm"><font size="2" style="font-size: 9pt"><em>Used for registering license information.</em></font></p>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm"><font size="2" style="font-size: 9pt"><em>Codes are requested at Navision.</em></font></p>
<p style="margin-top: 0.11cm"> <font size="2" style="font-size: 9pt"><em>License codes are defined in the AOT.</em></font></p>
</td>
</tr>
<tr>
<td height="3" width="161">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>Configuration keys</em></font></p>
</td>
<td width="162" vAlign="top">
<p style="margin-top: 0.11cm"> <font size="2" style="font-size: 9pt"><em>Did not exist as a separate type of key. The function lied in Feature keys. </em></font></p>
</td>
<td width="161" vAlign="top">
<p style="margin-top: 0.11cm"> <font size="2" style="font-size: 9pt"><em>Are used for enabling/disabling functionality. </em></font></p>
</td>
</tr>
<tr>
<td height="3" width="161">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>Security keys</em></font></p>
</td>
<td width="162" vAlign="top">
<p style="margin-top: 0.11cm"> <font size="2" style="font-size: 9pt"><em>Did not exist as a separate type of key. The function lied in Feature keys.</em></font></p>
</td>
<td width="161" vAlign="top">
<p style="margin-top: 0.11cm"> <font size="2" style="font-size: 9pt"><em>Are used for assigning access to user groups.</em></font></p>
</td>
</tr>
<tr>
<td height="3" width="161">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>Users</em></font></p>
</td>
<td width="162" vAlign="top">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>Users are created, and permissions are assigned to User groups. A user must be member of at least one User group.</em></font></p>
</td>
<td width="161" vAlign="top">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>Users are created, and permissions are assigned to User groups. A user must be member of at least one User group.</em></font></p>
</td>
</tr>
<tr>
<td height="3" width="161">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>User groups</em></font></p>
</td>
<td width="162" vAlign="top">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>Permissions are assigned to User groups. A User group can belong to one or more Domain(s), and can have different permissions assigned through the Domain.</em></font></p>
</td>
<td width="161" vAlign="top">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>Permissions are assigned to User groups. A User group can belong to one or more Domain(s), and can have different permissions assigned through the Domain.</em></font></p>
</td>
</tr>
<tr>
<td height="3" width="161">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>Companies</em></font></p>
</td>
<td width="162" vAlign="top">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>A company can be connected to one or more Domain(s).</em></font></p>
</td>
<td width="161" vAlign="top">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>A company can be connected to one or more Domain(s).</em></font></p>
</td>
</tr>
<tr>
<td height="3" width="161">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>Domains</em></font></p>
</td>
<td width="162" vAlign="top">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>A domain is a collection of one or more company accounts. The purpose of domains is to enable user groups to have some permissions within a number of company accounts, and other permissions within other company accounts.</em></font></p>
</td>
<td width="161" vAlign="top">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>A domain is a collection of one or more company accounts. The purpose of domains is to enable user groups to have some permissions within a number of company accounts, and other permissions within other company accounts.</em></font></p>
</td>
</tr>
<tr>
<td height="3" width="161">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>User group permissions</em></font></p>
</td>
<td width="162" vAlign="top">
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm"><font size="2" style="font-size: 9pt"><em>User group permissions are assigned for a user group within a certain domain. The same user group can have different permissions assigned within each domain.</em></font></p>
<p style="margin-top: 0.11cm"> <font size="2" style="font-size: 9pt"><em>Feature keys controlled the access rights for user groups to features, menus and tables.</em></font></p>
</td>
<td width="161" vAlign="top">
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm"><font size="2" style="font-size: 9pt"><em>User group permissions are assigned for a user group within a certain domain. The same user group can have different permissions assigned within each domain.</em></font></p>
<p style="margin-top: 0.11cm; margin-bottom: 0.11cm"> <font size="2" style="font-size: 9pt"><em>Security keys control the access for user groups. Each module is divided into 8 categories, resembling the Main menu structure: Daily, Journals, Inquiries, Reports, Periodic, Setup, Miscellaneous, and Tables.</em></font></p>
<p style="margin-top: 0.11cm"> <font size="2" style="font-size: 9pt"><em>The indirect access concept has disappeared. Access is set up on security keys, menu items, tables, fields, and form controls.</em></font></p>
</td>
</tr>
<tr>
<td height="3" width="161">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>Record Level Security</em></font></p>
</td>
<td width="162" vAlign="top">
<p style="margin-top: 0.11cm"> <font size="2" style="font-size: 9pt"><em>Did not exist.</em></font></p>
</td>
<td width="161" vAlign="top">
<p style="margin-top: 0.11cm"> <font size="2" style="font-size: 9pt"><em>Record level security allows setup of data limitations for a certain combination of Company/User group/Table. It extends the User group permissions setup.</em></font></p>
</td>
</tr>
<tr>
<td height="3" width="161">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>Forms’ setup</em></font></p>
</td>
<td width="162" vAlign="top">
<p style="margin-top: 0.11cm"> <font size="2" style="font-size: 9pt"><em>Setup for the specific controls on a form, saved per User group and Domain.</em></font></p>
</td>
<td width="161" vAlign="top">
<p style="margin-top: 0.11cm"> <font size="2" style="font-size: 9pt"><em>No longer exists as a separate form. Setting form control access is done from the User group permissions form per User group and Domain.</em></font></p>
</td>
</tr>
<tr>
<td height="2" width="161">
<p style="margin-top: 0.11cm"><font size="2" style="font-size: 9pt"><em>Table access</em></font></p>
</td>
<td width="162" vAlign="top">
<p style="margin-top: 0.11cm"> <font size="2" style="font-size: 9pt"><em>A separate system to limit access to confidential tables and fields by overruling the feature keys.</em></font></p>
</td>
<td width="161" vAlign="top">
<p style="margin-top: 0.11cm"> <font size="2" style="font-size: 9pt"><em>No longer exists as a separate system. Security is set up from the security tree, see Example on page 7.</em></font></p>
</td>
</tr>
</table>
<p></center></p>
<h3 class="western"></h3>
]]></content:encoded>
			<wfw:commentRss>http://ax.nom.es/uncategorized/como-es-eso-de-la-seguridad-en-ax-30/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

