If your scanner can have 100% WiFi connection coverage than I would highly
recommend using Terminal Services.
That's what we do here. We've created special Ax forms that fit the device.
When the user open Terminal Services it automatically opens Ax than it opens
his special "Main menu".
It's
Use connection and statement object. You can find example in the help.
--- In development-axapta@yahoogroups.com, "raheel_mcs" wrote:
>
> Dear All!!!
>
> Kindly tell me the way to Call Store Procedure in Reports...
>
> Thanks in advance.
>
Check method \Classes\SysSetupFormRun\task(). I think every options
of the context menu have a different id that is passed as parameter
to task(). Atleast, I've been able to disable "Configuration"
and "Hide field" menu option with this approach. So I guess you can
do the same. Just skip su
There's an easier way. Button property "SaveRecord". Set that to
"No" on all the button that you don't want to automatically save your
record.
Steeve
--- In development-axapta@yahoogroups.com, "syed baber"
<[EMAIL PROTECTED]> wrote:
>
> Thanks Abdul Samad. The problem has been solved now but I
Wow, that's scary.
No error for us on AX3 SP3 Kernel Rollup 3.
--- In development-axapta@yahoogroups.com, "Stefan" <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I have the following code fragment:
>
> real a1,a2,a3;
>
>
> a1=8.0/24.0*3.0;
> a2=8.0/24.0*3.0;
>
> a3
I don't where to put the code cause it depends on how your report
works, but you could try those methods:
// Set header to auto
YourSection.noOfHeadingLines(1, AutoMode::Auto);
// Force header to be printer now.
YourSection.executeColumnHeadings();
// Hide row header
You
Hi,
You can bypass pretty much everything by setting those value on your
form design:
Frame = None
WindowResize = Fixed
Top = 0
Left = 0.
Width/Height = set to fit your PDT screen.
That way your form will be on top, in the top left corner. Perfect
for PDT.
There's also the problem of info/war
I haven't work with it yet but we are looking at it. I've heard Ax
2009 provide credit card process but in a limited way. There's also
Red Maple (http://www.redmaple.com/) that offer what seems to be a
better solution.
Steeve
--- In development-axapta@yahoogroups.com, "varun" <[EMAIL PROTECTED]
You could try delete the file *.aoc in your C:\Documents and
Settings\yourusername\Local Settings\Application Data folder. Those
are code cache. Make sure to close your application before deleting
those. Hope it will do the trick for you.
Steeve...
--- In development-axapta@yahoogroups.com,
Try this :
YourDataSource_ds.query().dataSourceNo(1).rangeField(fieldNum
(YourTable, TheField)).value()
if you know the field, if not, check out
YourDataSource_ds.query().dataSourceNo(1).range* method, you should
find method to iterate thru ranges.
good luck
Steeve...
--- In development-axapta
Not really since grid are made to be used with tables. Maybe you
could use the "Table" control. Check form tutorial_form_table i
think.
Steeve...
--- In development-axapta@yahoogroups.com, "jquinteroz"
<[EMAIL PROTECTED]> wrote:
>
> Hi!:
>
> I need to fill a grid in Axapta.
> I got some exa
Use the COM component PowerPoint (PowerPoint.Application) just like
it is used for Excel in Axapta. It's just that the interface
(SysPowerPoint...) is not implemented in Axapta.
http://msdn2.microsoft.com/en-us/library/aa141357(office.10).aspx
--- In development-axapta@yahoogroups.com, "amitsi
You can delete a label by going to Menu Tools -> Dev tools -> Label -
> Search Label. Find your label, select it and use the delete as if
you delete a record in a table.
Steeve...
--- In development-axapta@yahoogroups.com, Malcolm Burtt
<[EMAIL PROTECTED]> wrote:
>
> Hi
>
> As far as I know y
One thing for sure si that you cannot do "embedded" (forgot the real
term) sql statement. I'm talking about the sql statement between
parenthesis. Make a view with that statement and use the view
instead. The rest should be ok.
Steeve...
--- In development-axapta@yahoogroups.com, "jquintero
Hi,
Since your new form is open form sales order, it should know which
sales order is currently selected. From there, let the user select
which txt he needs and when he press "Ok" create a new DocuRef record
with the correct Ref* field and and the text selected by the user
in "Notes" field.
You can start with that method :
\Classes\SalesFormLetter_PickingListJournal\writeJournalLine()
it is executed for each line of your picking list when it is posted
from SalesEditLine. From there you can update salesLine.
Steeve...
--- In development-axapta@yahoogroups.com, "gost05021982"
<[EM
You could always try export file to HTML and rename it to XLS but
doesn't always give great results. But if you want more control over
it you will probably have to do some coding with SysExcel* classes.
Steeve...
--- In development-axapta@yahoogroups.com, "febinpc" <[EMAIL PROTECTED]>
wrote:
Go to Main menu Basic / Batch list - User. From there you'll be able
to delete batch process of the current user. If you want to clean
all users batch process you can probably modify that form or delete
directly in the table Batch.
Steeve...
--- In development-axapta@yahoogroups.com, "Earl R
Use that to close Axapta :
infolog.shutDown(true);
Steeve...
--- In development-axapta@yahoogroups.com, "Earl Rey Lacsina"
<[EMAIL PROTECTED]> wrote:
>
> I have extend SysStartupCmd class to perform a specific task on
startup. My
> problem is that I need to supply username and password on the
I'm curious, how did you hide the Excel application? I usually
instruct user not to play with Excel while an Excel generation occurs
in Axapta otherwise it crash. But If I can avoid that, that would be
better.
Steeve...
--- In development-axapta@yahoogroups.com, "thnathan" <[EMAIL PROTECTED]
Oh! Simple, just go to Tools, Options, there's a scroll bar
called "Performance", just drag it all the way to the right and that
should do it. Just kidding. :)
>From what you explain, the performance problem is caused by your
display methods. So if you want to raise performance you need to
o
You can check how the company logo is imported in CompanyInfo form.
You can also upload pictures/file with Document Handling feature.
Steeve...
--- In development-axapta@yahoogroups.com, "Alok Kumar Mishra"
<[EMAIL PROTECTED]> wrote:
>
> Hi friends how we can upload our photos in axapta
> tha
I guess you need that :
SysQuery::valueNotEmptyString();
Steeve...
--- In development-axapta@yahoogroups.com, "V G" <[EMAIL PROTECTED]>
wrote:
>
> Hi
> I want to add a range in a query where the value of the field must
not be
> empty.
> like in this example we added a range where salesstatus
May be that could help :
element.printJobSettings().warnIfFileExists(false);
Steeve...
--- In development-axapta@yahoogroups.com, "James Flavell" <[EMAIL PROTECTED]>
wrote:
>
> Is it possible in a report (or I guess any object) to disable the
override
> existing file prompt? The reason is I
You could look at MorphX It from Steen Andreasen
http://www.steenandreasen.com/purchase.asp
Steeve...
--- In development-axapta@yahoogroups.com, "melhabian" <[EMAIL PROTECTED]>
wrote:
>
> hi
>
> i need x++ book.any one have any book in x++ please tell me
>
If you're looking for posting code you should start by looking at the
form's button that triggers that posting. You'll see that they point
to MenuItem that starts with PurchFormLetter*. Those will all poin
to class PurchFormLetter with different parameters. If you launch a
menu Item that poi
Have you tried opening the EPHeader, do some modification and save
it, then redeploy everything? There was a bug where you needed to go
and save the Standard Pages again after an Import so the changes
would take effect.
regards,
Steeve...
--- In development-axapta@yahoogroups.com, "col.sven"
Use element.reset() in your report to create a new blank report for
the next customer group.
Steeve...
--- In development-axapta@yahoogroups.com, "V G" <[EMAIL PROTECTED]>
wrote:
>
> Hi
>
> I have requirement to create report(for customer) in a print
archive format.
> this part I am able to d
Just making sure it's not a typo on the message :
>range = strfmt('(((Dimension == "P-001") || ((Dimension[2] ==
I guess Dimension should be Dimension[1].
Steeve...
--- In development-axapta@yahoogroups.com, "david santoso"
<[EMAIL PROTECTED]> wrote:
>
> Hi All,
>
> i wanna create querybu
I'll probably be the 20th person to reply, anyway. Yes you can do it
like this to compile all the AOT:
ax32.exe -startupcmd=compileAll
Add " +" or " -" at the end if you want to run the Cross-Reference
update or not. See SysStartumCmdCompileAll for me details.
Remember that you will have to
Hi Daniel,
First of all set the infos detail level to "All" in your user options
so you can see all infolog posted. In your message you're missing
useful SQL error explaintion that could help you.
In your second statement, replace de "order by" for "group by" and
that should resolve your prob
Hi Brian,
Use the TreeNode class to change property of your table.
regards,
Steeve...
--- In development-axapta@yahoogroups.com, "branjema" <[EMAIL PROTECTED]>
wrote:
>
> I have a table and need change the table property in code.
> How do I do this?
>
> Thanks
>
> Brian
>
Hi,
What I suggest is to record a macro in Excel that does what you need
and examine the code. You'll then be able to replicate that code in
Axapta since Axapta uses Excel COM to work with Excel.
Good luck!
Steeve...
--- In development-axapta@yahoogroups.com, "branjema" <[EMAIL PROTECTED]>
Hi John,
I've done a similar customization and I put the trigger code in
InventUpt_Physical.updateNow(). If I remember correctly it is only
triggered when PhysivalInvent is changed, but maybe that can give you
a hint.
Good luck!
Steeve...
--- In development-axapta@yahoogroups.com, "jpchirco
Check in CompanyInfo form, there's a button that is used to store the
company logo. Maybe you can mimic this to achieve what you want.
Steeve...
--- In development-axapta@yahoogroups.com, "V G" <[EMAIL PROTECTED]>
wrote:
>
> Hi
> I have a requirement wherein we use a image to show on the repor
Hi Anuj,
Try setting "AllowAdd" property of all your dataSource to "No
Fields". This will lock the sorting for sure, but for the group
total I'm not sure what you're talking about.
regards,
Steeve...
--- In development-axapta@yahoogroups.com, Anuj Rastogi
<[EMAIL PROTECTED]> wrote:
>
> Hi A
All tools for XML are in classes starting with "XML". Start by using
XMLDocument::newFile(yourFilePath) and go on from there.
Steeve...
--- In development-axapta@yahoogroups.com, "branjema" <[EMAIL PROTECTED]>
wrote:
>
> I have to read an xml file that has a one to many relation. can
> anyone
I don't know about SP4 but if you want to move to SQL 2005 you should
also install Kernel Rollup 3.
Steeve...
--- In development-axapta@yahoogroups.com, "ken_wsyap"
<[EMAIL PROTECTED]> wrote:
>
> Dear all,
>
> I would like to know whether Axapta 3.0 SP4 have any issue with SQL
> 2005 SP2. We
Hi,
You can export a user group and it's setting. Go to the user group
form, select the group, click "Permissions" and on the right you'll
see "Export". Try that. As for where is stored this data, I don't
know.
Steeve...
--- In development-axapta@yahoogroups.com, "cbharda" <[EMAIL PROTECTE
Maybe it doesn't want to run methods in update_recordset. Try this
instead :
container emptyCon = connull();
update_recordset T setting F = emptyCon;
or
update_recordset T setting F = [];
(don't know if it compiles)
good luck!
Steeve...
--- In development-axapta@yahoogroups.com, "mlefoa" <[
). Sales order
> confirmations are posted in batch jobs, so having the user enter
> interactively the fax number, etc won't suffice. So...we are
looking
> at other options, like ascii files with imbedded FCL. Do you have
> any suggestions, lessons learned, or words of wisdom?
Usually, mobile phone company will provide an email address where you
can send message that will be redirect to your phone via SMS.
Something like [EMAIL PROTECTED]
Steeve...
--- In development-axapta@yahoogroups.com, "V G" <[EMAIL PROTECTED]>
wrote:
>
> Hi
> Is there a way in dynamics to sen
Set "Interactive" property of the report and the query to "No". Then
play with element.printJobSettings to set whatever printer you need.
Steeve...
--- In development-axapta@yahoogroups.com, "tangolp" <[EMAIL PROTECTED]>
wrote:
>
> Hello,
>
> I'd like to know how to send a report to the print
Try using :
InventUpd_Reservation::updateReserveFromForm(salesLine, tblInventdim,
tblInventDimParm , totalQty);
That's what we do and it's working fine.
Steeve...
--- In development-axapta@yahoogroups.com, Akash <[EMAIL PROTECTED]>
wrote:
>
> Hi,
>
> I am able to find a perticular transaction
I hope you're not looking for documentation cause it's not in Axapta
that you'll find that! :) Anyway here's lists you can check :
- All static methods from class Global.
- Right-click in your code and choose "List built-in functions".
regards,
Steeve...
--- In development-axapta@yahoogroups
possible todo faster I would be
very
> glad.
> So I read you were able to extract fields to a struct, from a DLL??
> Would you share some idea's or code with me?
>
> Satch
>
> --- In development-axapta@yahoogroups.com, "Steeve Gilbert"
> wrote:
> >
&g
If that can help you, I know that selecting "None" on "Summary update
for" in "Other" Tab on the posting form prevent the order form from
refreshing and losing it's position.
Steeve...
--- In development-axapta@yahoogroups.com, Mikael Dalgård (GPV
International A/S) <[EMAIL PROTECTED]> wrote:
Hi,
I think the XML version will indeed be a bit slower, but unless your
code is heavily used, I don't think you'll see a difference between XML
and DLL call. I've been able to use struct with DLL but not array.
If you want to extract data from your XML string, use XML helper class
(XMLDocume
Can you write us the line that throws this error?
Steeve...
--- In development-axapta@yahoogroups.com, "axaeffect" <[EMAIL PROTECTED]>
wrote:
>
> hi all,
>
> I have an error in my Ax says "field id 12345 does not exist in table
> MyTable".. does anyone knows what error is it? and how to resolv
If you are working on a Word document, I guess you are using word COM
interface. If so, then even thought the methods doesn't show in the
drop down list when you type "." you can use all methods from the COM
interface, thanks to late binding.
Refer to :
http://msdn.microsoft.com/library/defaul
Hi Ramazan,
You were almost there. Here's what you need :
InventTable_ds.object(fieldNum(InventTable, ItemId)).allowEdit(false);
Regards,
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de
Ramazan GÝRGÝN
Envoyé
Hi everyone,
I just finished reading Layman's Spec for AX40 and I have a couple of
questions:
* It says AX40 will use Active directory logon. Should I
understand by that, that we won't be able to enter a different login to
have access to Axapta? So we won't be able to login wit
Hi everyone,
Can someone tell us about SQL Reporting Services integration in Ax
4.0? How well is it integrated? How is it to create a report that will
use SQL Reporting Services in Ax 4.0? Any kind of info would be
appreciated.
Regards,
Steeve...
[Non-text portions of this m
Create a temporary table (Table Property Temporary = Yes) and add it to your form. On clicked() of a button, insert the data of your stringEdit into your table with a simple SQL query like :
YourTmpTable.clear();
YourTmpTable.someValue = yourstringeditvalue;
YourTmpTable.insert();
Then later b
Hi vijay,
Creating fields at run time is not the best thing ever. Still, if this is what you need you can do this :
AOTTableFieldList fields;
TreeNode myTable;
TreeNode field;
myTable = TreeNode::findNode("\\Data Dictionary\\Tables\\TheTable");
fields = myTable.AOTfindChi
Here's an example of how to get an image saved in Document Handling. You can use that method for your bitmap control and the image should be displayed.
display Bitmap getMirageLogo(){
DocuRef dc;
DocuValue dv;
select ValueRecId from dc
where ((dc.RefTableId == tableNum(Com
Hi group,
I'm trying to improve performance in some part of our application.
I've stumble on a view that end up doing a table scan on SalesLine. I
thought their must be missing index, that's why the table scan is
required. It wasn't the case; all the required indexes were there.
I've rep
r 7 hp
I have set group by in report Datasource's orderby mode. which field default taken for group by. i want to group by as equipment class.how to do?
regards,
vijay
Steeve Gilbert <[EMAIL PROTECTED]> wrote:
Hi Vijay,
To do a group by, take a look at the property OrderM
Hi Vijay,
To do a group by, take a look at the property OrderMode of your report's dataSource.
Regards,
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de vk
Envoyé : 28 mars 2006 23:39
À : development-axapta@yahoogroups.co
Yes, resetting user data could be a start. Are both user using the same printer? I've had issue with user using different printer that didn't get the exact same layout.
Take care,
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la
Hi,
You can override task() method of the form. When _taskId = #taskEnter (taken from Task macro), then that's because enter was pressed. Problem is that you don't know on what control is just happened. You could use getFocus() and lostFocus() to track the control that have the current focus
Your query could be translate to :
Select PurchLine where purchid like "234334, 345345, 34534";
Regards,
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Rajkumar
Envoyé : 23 mars 2006 03:33
À : development-axapta@yahoogr
Whenever it is possible, always try to put methods on the tables as you will be able to use them elsewhere in the code and they will profit from some optimization.
In that case it will resolve your problem. The problem you encountered is probably due to the fact that you have put your method
Hi Patrick,
Why would you want to do that? Preventing the form to be closed would be a better approach. Maybe if you explain to us what the goal is, we'll be able to help you.
Regards,
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED
Run() method would be a good place to do it (before super() I think). Make sure your control's autodeclaration = yes (property). Then you can do this :
yourControlName.visible(false);
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED]
Hi Frank,
I don't know anyway to cleanly read the Config Utility file from Axapta but here's where you can get the info you asked for.
Name : XUserInfo::find(false, curUserId()).name
Language : infolog.language()
Tell us what info you need and we might be able to guide you.
Regards,
Steeve
I have no solution for you but I just wanted to show everyone a little anytype test I've tried to check your statement:
anytype typeFreeVar;
typeFreeVar = "sdf";
info(strfmt("%1", typeFreeVar));
typeFreeVar = 54.2;
typeFreeVar += 54.2; // will result in : 54.254.2. Weird
Hi group,
I'm trying to setup something so that the Cross-Reference update is
run every night on our Dev instance. I've tried calling the update from
a small app that run the COM Connector and calls xRefUpdate::main(new
Args(classStr(SysCompileAll))). But when I run it I endup with this
To my knowledge there's not build-in functionnality that can do that. But it can be easily developed by adding a commandline parameter. Take a look at class SysStartupCmd and its child.
Regards,
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL
Just hire some really bad programmer and the code will be scrambled just has he typed it. :)
Have a nice day!
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Leberbauer Herbert - News
Envoyé : 3 février 2006 04:54
À : de
Hi Malters,
Take a look in report SalesInvoice.
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de maltmega
Envoyé : 31 janvier 2006 11:50
À : development-axapta@yahoogroups.com
Objet : [development-axapta] add a field in t
Hi everyone,
Just saw that a Kernel Rollup for Axapta was out at
http://axaptafreak.blogspot.com/. Anyone thinking about installing it
or waiting for 4.0? In the fixlist they talk about SP5, is it out
already?
Regards,
Steeve...
[Non-text portions of this message have been rem
Hi!
I've looked at Test Complete to see if it could help us with test and was wondering if it's really what you use to run automated test in Axapta? It looks like it's a lot of work to build some basic test case. Do you run automated test in Axapta at all? Almost 3 years now that we develop
checkin objects to version control system (only if
modified)
> - ...
>
> Best regards,
>
> Daniel
>
> --- In development-axapta@yahoogroups.com, "Steeve Gilbert"
> <[EMAIL PROTECTED]> wrote:
> >
> > Hi Andrew,
> >
> > It seems l
With this : element.design().languageID(CustTable.LanguageId);
Regards,
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Askeryd Thomas
Envoyé : 5 janvier 2006 05:31
À : development-axapta@yahoogroups.com
Objet : [develop
When starting your report with the MenuItem, press "Default" or in select form press "Reset". That will flush last ranges used and bring the new ones.
Regards,
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Fortune For
I would go the excel import way since it goes thru Axapta processing (Recid assignement, etc...). Directly importing in SQL could cause some trouble.
Will your VB app play directly into the tables or thru the Axapta COM?
Regards,
Steeve...
-Message d'origine-
De : development-axa
Try with WinAPI::shellExecute(...).
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Edine Le Roux
Envoyé : 3 janvier 2006 07:14
À : Axapta-Knowledge-Village; Development Axapta
Objet : [development-axapta] Command line
H
All you need is custTrans. Build your tree with the info from custTrans grouped by ItemId and filtering for a particular customer. Then on selecting an item in the treeview, just filter a grid that list all CustTrans (custTrans_ds.query().dataSourceNo(1).addRange(...)).
Regards,
Steeve...
Hi Andrew,
It seems like finding information on version control for Axapta is a hard task. I've started taking a look around and it seems that there are very few products. Beside NextInnovation, I've seen axSource in the add-in catalogue but it isn't supported anymore. I'm starting to bel
Send the record? What do you mean by that? Send where?
Regards,
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de woodychr
Envoyé : 23 décembre 2005 04:47
À : development-axapta@yahoogroups.com
Objet : [development-axapt
nt millisec;
;
millisec = time mod 3600 mod 60 mod 1000;
time = time div 1000;
return Time2strHMS(time) + "." + num2str0(millisec, 3,0,0,0);
}
Barry.
-Original Message-
From: development-axapta@yaho
apta@yahoogroups.com
Objet : Re: RE : [development-axapta] Reset position in a tablebuffer
Yes "select ct" initialises the buffer again. But it doesn't matter
if you uses "while select" or "next".
Simon
--- In development-axapta@yahoogroups.com, "Stee
I would redo the "select ct;". But you should be doing that instead :
While select ct {
info(ct.AccountNum);
}
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de cdlmalherbe01
Envoyé : 20 décembre 2005 06:02
À : devel
What do you mean by version control? Versioning and source control?
Regards,
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de pvraghavanmca
Envoyé : 16 décembre 2005 05:02
À : development-axapta@yahoogroups.com
Objet : [
You could create a PageHeader section. It is triggered at each new page.
Regards,
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Martin Sujkowski
Envoyé : 5 décembre 2005 15:33
À : development-axapta@yahoogroups.com
Ob
In the init() you can select the design you want the report to use by calling element.design("designName");
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Martin Sujkowski
Envoyé : 29 novembre 2005 09:05
À : development-
Where (what method) do you update that third field and what code do you use?
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Vanessa kajtaz
Envoyé : 24 novembre 2005 11:07
À : development-axapta@yahoogroups.com
Objet : [d
I don't think you need to override fetch/send. Just add a element.newPage() in the executeSection() (after super() ) for the one page per row feature. What do you mean by "arrange the different column?". You can arrange all you want in the report design.
Regards,
Steeve...
-Message
evelopment-axapta] I cant move fields in report designer
Hi,
no the fields are not in a group. I tried adding a group but I cant
find the property anywhere. I'm running Axapta 2.5. This property
might not be included in this version?
--- In development-axapta@yahoogroups.com, "Stee
Are your field in a group in the design tree? If they do you'll have to change the "AutoFieldGroupOrder" property of the group in order be able to move them.
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Thomas
Envoyé
I've tried your example and I can confirm the behaviour you mentioned. But I can't really explain it.
Regards,
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Dahlsgaard Jan
Envoyé : 7 novembre 2005 12:38
À : developmen
-- In development-axapta@yahoogroups.com, "Steeve Gilbert"
<[EMAIL PROTECTED]> wrote:
>
> To my knowledge, the only way to read a table on another sqlserver
is to use a connection object like UserConnection, ODBCConnection,
etc...
>
> Regards,
>
> Steeve...
&
To my knowledge, the only way to read a table on another sqlserver is to use a connection object like UserConnection, ODBCConnection, etc...
Regards,
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de acloudy_yin
Envoyé : 2
I've tried replicating the problem here but it's working correctly. Take a look at my Form and tell us what is different in your case.
Regards,
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de cdlmalherbe01
Envoyé : 24 o
I think I don't quite get it, here's what I understand :
Result = myTable.RealField1 div myTable.RealField2;
Is that it?
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Vanessa kajtaz
Envoyé : 17 octobre 2005 05:53
À :
I've build a small example that shows that it does pretty much what you want. What do you want to do exactly?
TmpSum sumTab;
TmpSum sumTab2;
sumTab.Balance01 = 11;
sumTab.Key = "1";
sumTab.insert();
sumTab.Balance01 = 22;
sumTab.Key = "2";
sumTab.insert();
sumTab2.setTmpData(sumTab);
selec
In Tools -> Options -> Usage data, look for the name of you form in the "Form setup" and "Form selections" tabs. Use a delete query to remove the record for your form.
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de wood
A custom lookup will probably achieve what you want if your options are stored in a table. Check for "lookup form" in the index of the Developer Help.
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de rickhardy22
Envoyé :
It's not just a matter of setting the Ordering property of the sorting field of the dataSource to Descending?
Steeve...
-Message d'origine-
De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de junjunok77
Envoyé : 3 octobre 2005 04:00
À : development-axapta
1 - 100 of 376 matches
Mail list logo