Modifying HTML source for a web form
Can the HTML source of a web form be accessed and modified before it is sent 
 
to the browser? Is there a method on the web form to do that? 
 
Know the source is generated by the class WebFormHtml, but would rather not 
 
tamper directly with that. 
 
The goal is to pass more than one value as a filter for a custom lookup.
Read Entire Conversation

rastreadores GPS Ratreador gps localizadores bloqueadores 3404435
CENTRAL ÚNICA DE VENDAS 
 
10 Marcas de ratreadores, Compare e Compre. 
 
Rastreador de Veículo 
 
Rastreadores de Veículos 
 
Rastreador GPS 
 
Rastreadores GPS 
 
Rastreador Ituran 
 
Rastreadores Ituran 
 
Rastreador Portátil 
 
Rastreadores Portáteis. 
 
Assistência 24 Horas 
 
Visite agora mesmo nosso site. 
 
http://tel011-50523122.vila.bol.com.br/ 
 
Graber - Teletrim - Tele Trim - Ituran - 
 
Rastreadores gps , Localizadores, Bloqueadores 
 
Graber - Teletrim - Tele Trim - Ituran - 
 
Ra ...
Read Entire Conversation

Question about LedgerTrans relationship with CustTable or VendTabl
Hello again, 
 
Let's say, i have LedgerTrans record. I want to know this voucher cust or 
 
vend. How to get this? What is relationship between LedgerTrans and CustTable 
 
or VendTable? 
 
Thanx
Read Entire Conversation

Question about Voucher
Hello, 
 
Why does Axapta let create Journal line with the same voucher? For example 
 
InventJournalTable. 
 
Thanx
Read Entire Conversation

Dual Grid
Hi, 
 
I am trying to make a grid that has a datasource for it's columns and one 
 
for it's rows. 
 
Basically like in MS Excel, where you have 1,2,3,4,5 as rows and a,b,c,d,e 
 
as columns. 
 
I have a bunch of "units" as columns and a bunch of "criteria" as rows, and 
 
I want to be able to check a checkbox for each unit->criteria. 
 
Is there a way to realise this in Dynamics AX? 
 
regards, 
 
JohanJ
Read Entire Conversation

Changing referenced enum values breaks value recognization
Hi all, 
 
I've got an enum say MyEnum containing 3 elements 
 
0 - none 
 
1 - first 
 
2 - second 
 
If I use the enum value in code such as  if(tbl.checkValue == 
 
MyEnum::second){... 
 
and after using the enum I'll change the enum value to 
 
MyEnum 
 
.... 
 
99 - second 
 
After the change the enum won't recognize the change ie. MyEnum::second 
 
still points to value 2 and not to 99! 
 
I'll have to check each piece of code where I've used the enum and delete 
 
the '::second' portion a ...
Read Entire Conversation

Dynamic access to titlefield1
I am modifying the InventTable form, changing the form caption, overview 
 
ItemId label and whatnot. 
 
The title datasource is set to InventTable, and the table's titlefield1 and 
 
2 are set to ItemId and ItemName. 
 
So even though I can change the form caption and control labels, I haven't 
 
found a way to dynamically change the titlefields of a title datasource.  I 
 
could change it statically, but this is not an option. 
 
The closest post was 7197.1.  However, if I followed this practi ...
Read Entire Conversation

Edit info text on top of EPSalesTableCreate
In the enterprise portal (en-us) you can select in the menu 'quick entry'. 
 
This opens the EPSalesTableCreate webform. On top of this form you will see a 
 
title 'Quick Entry'. Underneath you get some text 'You can use this form to 
 
quickly add items to you shopping cart by using the entry line at the bottom. 
 
Use the + icon...' 
 
I'm now trying to find the label, table, resource that holds this text. It 
 
also would be nice to know where this text is triggered. 
 
Has anyone an idea? 
 ...
Read Entire Conversation

Inner select
Can i do an inner select in axapta 
 
Something like 
 
select instance 
 
where instance.field in (select field from instance2 where 
 
instance2.field2 == value); 
 
Thx
Read Entire Conversation

What happened to Class ProjTableView in ax40 ?
What happened to Class ProjTableView in ax40 ? I cant find it, nor it´s 
 
replacement. 
 
Can anyone please help ?
Read Entire Conversation

New Blog -
Hi, 
 
A new blog has been launched which will help new comer in learning Axapta. 
 
Blog can be viewed at 
 
http://www.learnaxapta.blogspot.com/ 
 
Any body who wants to add something to this blog please mail me at 
 
axaptalover@gmail.com 
 
Cheers, 
 
AxaptaLover
Read Entire Conversation

InventTable join to InventItemGroup using query builder
Hey folks, 
 
I'm attempting to do the following query using the Query objects: 
 
SELECT * FROM inventTable EXISTS JOIN * FROM inventItemGroup 
 
WHERE inventTable.ItemGroupId == inventItemGroup.ItemGroupId 
 
&& ((inventItemGroup.myFlag == NoYes::Yes)) 
 
This X++ query runs and returns inventTable records that have 
 
inventItemGroup  rows with a custom myFlag set to Yes. 
 
i.e.  ItemGroup Stuff has myFlag set to yes, ItemGroup Junk has myFlag set 
 
to no.  Item A is a part of item group St ...
Read Entire Conversation

ListPanel for Projects
How can I dispaly with ListPanel List of all projects which are present in 
 
Axapta
Read Entire Conversation

Importing journals using journal & voucher auto # setup
Hi all, 
 
A client of mine has to update some transactions to AX every week from 
 
another system. A possible way is to use csv file import to AX journal 
 
related tables and post manually, however in order to let AX picks up the 
 
appropriate voucher # automatically some codes must be made in the conversion 
 
tab of the data definition group. 
 
Can someone share the codes for this purpose? 
 
Thks & rgds, 
 
Marguerite
Read Entire Conversation

Preserving Data During Layer Change
Hello! 
 
Situation: 
 
Table: CustTable 
 
Layer: USR 
 
The Custtable has a new field which contains data. 
 
I would like to move the custable to the cus layer. 
 
When I do so, I lose the data in the new field. 
 
How can I preserve the data in the new field when changing layers? 
 
Thanks in Advance
Read Entire Conversation

How to catch the exception msg in AX
I want to catch the exception msg that thrown to me.. wht is the class or 
 
method for that in C#, we always do in in the following way: 
 
try 
 
{ 
 
//Some code here 
 
} 
 
catch (Exception msg) 
 
{ 
 
MessageBox.Show(msg.Message); 
 
} 
 
how about in X++??
Read Entire Conversation

Journal Problem
Hi, 
 
In movement journal, if i'm validating the lines then its creating few more 
 
lines with type as transactions, because of which the stock is increased. is 
 
there any means by which it can be checked ? 
 
Please give some suggs'n. 
 
Regards 
 
Shanmugavel
Read Entire Conversation

Validate string control content
Hi All! 
 
How can I validate a string control content? The scenario is as follows: 
 
In the VendTable form there's a combobox control with the category of 
 
the vendor (company, person, none, foreigner). I need to check if the 
 
next field (named CNPJCPFNum in localized AX 3.0 SP5) is empty ONLY IF 
 
the category (the preceding field) is set to company or person. 
 
If it is empty/blank (if the user didn't input anything in the 
 
CNPJCPFNum control) I need to pop up a box::stop dialog. 
 
 ...
Read Entire Conversation

Refreshing data source on parent
Hi 
 
I'm opening a form with a menuItem. Is it possible to have a datasource on 
 
the parent form (from where I used my MenuItem) refreshed? 
 
Thanks! 
 
/Henke
Read Entire Conversation

Report classes in AX 4.0
Where have all the classes ProjReport_xxx gone in AX 4.0? 
 
Ok, the code has moved to the reports. But why and is this a new Best 
 
Practices rule? 
 
Has anyone a clue? 
 
-- 
 
Cheers, 
 
Volker Leiner
Read Entire Conversation

How to pass strings that include character % to .net business conn
I always get an exception calling the  ExecuteStmt(sStmnt) member of the 
 
class AxaptaRecord if one of the (string) values has the character % included. 
 
Example could be trying to read from ProjGroup table in AX. 
 
public AxaptaRecord tProjGroup = Erp.CreateAxaptaRecord("ProjGroup"); 
 
if sStmt string passed to ExecuteStmt is : 
 
“Select %1 where %1.ProjGroupId == ‘SA%5PA’ " 
 
Or 
 
“Select %1 where %1.ProjGroupId == \”SA%5PA\”" 
 
An error is return saying “The supplied m ...
Read Entire Conversation

Property ReplaceAfterLookup on DialogField
Hello, 
 
I need to build some Dialog with the Field, that I use as the Range. For 
 
this Field would be fine to set the Property "ReplaceOnLookup". But for the 
 
Type DialogField is that not possible. 
 
Has anyone Idea? 
 
Thanx 
 
Radek
Read Entire Conversation

Printing Received Inventory Label
I need to print a thermal label which will be used to mark new incoming 
 
inventory batches. This label will include information from PurchParmLine. I 
 
have a report put together that is formatted correctly but I am having 
 
trouble getting it to accept the information on the line that I am trying to 
 
print. I have the code to launch the report within a button click event. The 
 
code for which is as follows: 
 
void clicked() 
 
{ 
 
Args            parameters = new Args(); 
 
MenuFunctio ...
Read Entire Conversation

How to print report twice using different designs?
Hi guys, 
 
I'm struggling with the following - there is a report with two designs, 
 
which is run through class based on RunBaseReport (namely ProdReport_PickList 
 
- originally it has 1 design, I added another one). My aim is to print the 
 
report twice, I mean, first one normally as in standard, and then second 
 
time, but using another design. I also achieved that - the report is run 
 
second time using the other design (debugging makes me sure - 
 
executesection() of second design is  ...
Read Entire Conversation

Init SOAPSerializer with InputStream from HttpConnector30
Hi 
 
I try to call a webservice from Ax using SOAPToolkit 3.0 (LowLevel). I 
 
translated the VB example code from the toolkit users guide. 
 
Here is what i tried: 
 
void doTranslationLL(str languageCode, str textToTranslate) 
 
{ 
 
com     lComSerializer; 
 
com     lComConnector; 
 
str     lstr; 
 
CIVOSHSoapConnector2Seriallizer     lclsConnector2Serializer; 
 
; 
 
lclsConnector2Serializer = new CIVOSHSoapConnector2Seriallizer(); 
 
lComConnector = new Com('MSSOAP.HttpConnector30'); 
 
 ...
Read Entire Conversation