[Axapta-Knowledge-Village] remove HTML tag

2011-06-16 Thread V G
Hi
I am using a html editor from ax and type in (amp; in html) when I get the
text back in AX  it is returned as  amp;.
Is there a way in ax to remove all these characters and only get  instead
of whole html amp; and similarly for other html characters.
I used web::striphtml but that removed html tags but doesn't convert amp;
to .
Any help is greatly appreciated.
Thanks
VG


[Axapta-Knowledge-Village] Change Message on delete record

2011-05-15 Thread V G
Hi All
How can we change the standard message that we get when we want to delete a
record in AX.
Or how can we suppress the standard message and give our own message.
Thanks
VG


[Axapta-Knowledge-Village] show counter of letters typed in a field

2011-05-12 Thread V G
Hi All

Is there a way in AX  to show the no of letters a user has typed in a
particular field.
And this has to show and keep changing while the user is typing the letters.
So if the user typed 'ab' it will show 2 char and when he types 'abc' it
should change to 3 char.

Thanks
VG


[Axapta-Knowledge-Village] Show Item Name and save Item ID

2011-05-10 Thread V G
Hi All

I have a requirement where we have to show the item name on the production
order and save as item id in the table.
This needs to be one field showing itemname and saving itemId.
Any help is greatly appreciated.

Thanks
VG


[Axapta-Knowledge-Village] Auto save in AX 4.0

2011-04-07 Thread V G
Hi

Can the auto save in AX be disabled and only save when the save button is
pressed.
We don't want to save the record when navigating to next record.

Thanks


[Axapta-Knowledge-Village] HTML editor in AX

2011-04-06 Thread V G
Hi Group

We have a requirement where in the client want to use a html editor from AX.
They have a description field and they want to have description like in bold
or bullet points.
Please let me know if this is a possibility in AX 4.0

Thanks


[Axapta-Knowledge-Village] Spell check in AX 4.0

2011-04-05 Thread V G
Hi Group

I have a client who wants to have spell check feature in AX 4.0.
Is that a possibility. Please let me know your experience.
Thanks in advance


[Axapta-Knowledge-Village] Find a record in the Report

2009-10-29 Thread V G
Hi All

I wanted to know if there is a functionality in AX wherein we can search a
entry in a Axapta report
What client wants is to search a entry in report as the report is usually
too long 20-30 pages.
All ideas welcome.
Thanks in advance

Thanks
VG


Re: [Axapta-Knowledge-Village] Re: Find a record in the Report

2009-10-29 Thread V G
You are right James.  Client needs to run the search on the report and the
global search wont help.
Thanks you guys for ur help.
Thanks
VG

On Thu, Oct 29, 2009 at 6:10 PM, James Flavell djf1...@gmail.com wrote:



  Mmm how about they print to Text or PDF and then do a ‘Find’ in notepad
 or PDf reader?



 Correct me if I am wrong but the global search will just tell you which
 record it finds that matches in the raw data but is in no way
 related/referencing the report that has been printed. So VG you might have
 to clarify they are looking for where in a report a particular reference
 appears or they just wanted to find if a certain reference exists in certain
 data?





 *From:* Axapta-Knowledge-Village@yahoogroups.com [mailto:
 axapta-knowledge-vill...@yahoogroups.com] *On Behalf Of *r_ssh
 *Sent:* 29 October 2009 17:57
 *To:* Axapta-Knowledge-Village@yahoogroups.com
 *Subject:* [Axapta-Knowledge-Village] Re: Find a record in the Report





 Hi VG,

 May be you can use the global search feature in Dynamics AX. In this you
 can configure the table name(In the report datasource find the tables which
 are used.) Setup only these tables for Global Search.

 In case you dont have idea on How to setup Global Search in AX please
 refer my blog entry
 http://sangi1983.spaces.live.com/blog/cns!264A0056CBCBB1D3!198.entry

 Thanks
 Santosh.R

 --- In 
 Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%40yahoogroups.com,
 V G learnaxa...@... wrote:
 
  Hi All
 
  I wanted to know if there is a functionality in AX wherein we can search
 a
  entry in a Axapta report
  What client wants is to search a entry in report as the report is usually
  too long 20-30 pages.
  All ideas welcome.
  Thanks in advance
 
  Thanks
  VG
 

  



[Axapta-Knowledge-Village] Purchase Order bug

2009-09-27 Thread V G
Hi  all

I am having a issue with invoiced purchase order in AX2009 SP1
I follow these simple steps and get the total as zero
I am wondering if this is microsoft bug or is it something related to setup.
1. create a purchase order
2. click inquiries-totals
3. it will show the correct total.
4. invoice the purchase order
5. click inquires-totals
6. does it show 0 as balance and invoice amount in total.
Have anyone come across this problem
Thanks in advance

VG


[Axapta-Knowledge-Village] Printer problem

2008-03-31 Thread V G
Hi

We are having problem with the printer settings.
When I print from two different computer selecting a same specific printer I
see different results.
Appreciate any help.

Thanks
VG


Re: FW: [Axapta-Knowledge-Village] Pass temporary table data from form to report

2008-01-07 Thread V G
Thanks a lot Anil.

Vishal

On Jan 7, 2008 4:31 AM, Anil Ozay [EMAIL PROTECTED] wrote:

 Hi VG,



 This is the same as the passing the standart tables. For ex, the name of
 your  temp table is :



 tmpCustBalances



 a.   In the class decleration of report , declare temp table (you'll
 get
 the record buffer to this table) :



 TmpCustBalances _TmpCustBalances;



 b.  In the init() method of the report, add this code :



 Ýf(element.args()  element.args.record())  // control
 the
 parameters and set your temp table

_tmpCustBalances = element.args.record();





 You get the data now !! Also you must send the record to the report.



 c.   If you call this report from menuitem, set DataSource propery of
 menuitembutton  to temp table from the from.

 c.   If you call this report from code, you must add
 args.record(TmpCustBalances);



 Regards,



 Anil Ozay

 MVP Dynamics AX



 From: Axapta-Knowledge-Village@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On Behalf Of V G
 Sent: Sunday, January 06, 2008 6:21 PM
 To: Axapta-Knowledge-Village@yahoogroups.com;
 [EMAIL PROTECTED]
 Subject: [Axapta-Knowledge-Village] Pass temporary table data from form to
 report



 Hi
 I have a form where I insert data in a temporary table.
 From the form a report is called on the click of a menuitembutton.
 Is there a way that I can retreive the data of the temporary table(which
 is
 created in the form) in the report.

 Thanks in advance
 VG

 [Non-text portions of this message have been removed]





 [Non-text portions of this message have been removed]



 Sharing the knowledge on Axapta.
 Visit www.frappr.com/axapta for axapta friends.

 Come and choose your preferred name for Microsoft Dynamics AX on the
 Axapta Knowledge Village, Visit www.axapta-knowledge-village.tk


 Yahoo! Groups Links






[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Pass temporary table data from form to report

2008-01-06 Thread V G
Hi
I have a form where I insert data in a temporary table.
From the form a report is called on the click of a menuitembutton.
Is there a way that I can retreive the data of the temporary table(which is
created in the form) in the report.

Thanks in advance
VG


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Report prints different on different computer

2007-10-23 Thread V G
Hi

I am facing a problem where in a custom report is printing fine when I print
it on my computer. But when I run/print the report on client computer it is
printing a little different like the lines are longer there.

Thanks in advance
VG


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Barcode

2007-08-07 Thread V G
Hi
I am trying to figure out if there are any barcode fonts that come with
axapta(free).
Or do we need to buy some barcode fonts.
I want to use barcode in reports(C128).
Thanks in advance
VG


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] add range.value in a query

2007-08-01 Thread V G
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 cannot be canceled
or invoiced.
newQueryRun.query().dataSourceNo(1).addRange(fieldNum(salesTable,
salesStatus)).value('!Canceled, !Invoiced');


similarly is there a way tto define a range so that the only records which
have some value in there project field are selected.
Thanks in advance

VG


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Multiple selection from dialog

2007-07-19 Thread V G
Hi
I have a requirement where in the user should be able to make multiple
selection on the customer account.
Customer account is a field in dialog for user selection for a report.
Thanks in advance


[Non-text portions of this message have been removed]



Re: [Axapta-Knowledge-Village] Last Page in Report

2007-07-12 Thread V G
Hi Andreas

u can use the method element.pagestotal(). It gives the totalpages.

Thanks

On 7/12/07, Andreas Rudischhauser  [EMAIL PROTECTED] wrote:

   Hi, i need to know in a executesection of a report footer if I am on the
 last page (to print a sum). How can I achieve this. I found that
 totalPages() is always 0 so I have to use another way. I do not have a
 fetch method so I can't use the trick to check if the current record is
 the last in the query.

 Does anyone have another idea?

 [Non-text portions of this message have been removed]

  



[Non-text portions of this message have been removed]



Re: [Axapta-Knowledge-Village] Last Page in Report

2007-07-12 Thread V G
sorry it returns 0. look at the SalesConfirm report.
Thanks


On 7/12/07, Andreas Rudischhauser [EMAIL PROTECTED] wrote:

   Hi, i need to know in a executesection of a report footer if I am on the
 last page (to print a sum). How can I achieve this. I found that
 totalPages() is always 0 so I have to use another way. I do not have a
 fetch method so I can't use the trick to check if the current record is
 the last in the query.

 Does anyone have another idea?

 [Non-text portions of this message have been removed]

  



[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Print on screen and printer are different

2007-06-27 Thread V G
Hi
I am working axapta 3.0 3 tier.
I see a strange behaviour with some of the custom reports.
There is a difference in the print of the report to printer and screen.
Like on the screen a line appears to be smaller but when I print the same
page it is longer than on screen.
Does anyone know the cause of this behaviour or is there a property to fix
this.
Thanks in advance
VG


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Labels

2007-06-21 Thread V G
HI
I created a label file and created some labels.
But the label are not showing properly and only the no is shown like
[EMAIL PROTECTED]
I m on 3tier configuration
Thanks
Vishal


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Shipment List report

2007-06-20 Thread V G
Hi
Does the Shipment List(Inventory management-shipments-print-shipemnt
list) report do anything other than generating report. Does it have any
effect on any data.
Thanks
VG


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Print Archive

2007-06-14 Thread V G
Hi

I have requirement to create report(for customer) in a print archive format.
this part I am able to do but the complicated part is that I need to break
the report into many print archive files based on the customer group.
So if there are 7 customer group 7 print archive files should be created
when the report is run.
Does anyone know how to do this
Thanks in advance

Vishal Garg


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] print archive option in report dialog

2007-06-04 Thread V G
Hi
Can someone please tell me how does the print archive option work in the
reports.
I gave send to option in the report dialog as print archive but it still
prints on the printer.
Thanks
Vishal


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] running report in batch

2007-05-30 Thread V G
Hi
I am trying to run one of my report as a batch process.
I click on the report menu from the main menu and it pops up a dialog box
with a batch tab. In the batch tab I select the batch processing check box
and it add the report to batch queue. But what also happens is that now when
I click on other reports and go tot the batch tab I see the batch processing
check box clicked there as well. I dont want other reports to run in batch.
Has anyone seen this behaviour before or am I missing something.
Thanks in advance
VG


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] getting values from the calling form

2007-05-28 Thread V G
Hi
Our client has a requirement where open a form showing some details(in the
grid with many lines) like details of the salestable and a text field where
user can enter some text.
Once the user enters in the text field of the form(this is not a table field
so it is not stored) and hits a button on the form we have to show a report
for all the records where the value is entered in the text field of the
form. How is it possible to fetch the value of the form text fields when in
report.
I hope I am not too confusing
Thanks
Vishal


[Non-text portions of this message have been removed]



Re: [Axapta-Knowledge-Village] Sorting

2007-05-24 Thread V G
Thanks Guys
It worked

Thanks Again


On 5/24/07, kbi kbi [EMAIL PROTECTED] wrote:

   Hi Vishal,

 It not possible for user to sort base on the display fields in reports or
 forms.
 But you can try to make a view then use view as datasource in your
 reports.

 Hope this help.
 Thanks.
 Khue

 - Original Message 
 From: Agus Riyadi [EMAIL PROTECTED] agusacil%40gmail.com
 To: 
 Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%40yahoogroups.com
 Sent: Thursday, May 24, 2007 3:14:23 PM
 Subject: Re: [Axapta-Knowledge-Village] Sorting

 Hi Vishal,

 You can use CustTable as the second datasource of your query joined to the
 first one. Then use this CustTable data source for sorting.

 Regards,

 Agus

 On 5/24/07, V G learnaxapta@ gmail.com wrote:
 
  Hi
  I have a requirement where in I have to sort the report by the customer
  name. The table that is used in the query have customer No but not
  customer
  name. I am fetching the customer name from the custTable based on
  custAccount.
  I can create a temp table and insert the record with the customer name
 and
  than fetch it sort by customer name
  Is there a easier way or any other way to do this.
  Thanks
  Vishal
 
  [Non-text portions of this message have been removed]
 
 
 

 [Non-text portions of this message have been removed]

 __Looking for a
 deal? Find great prices on flights and hotels with Yahoo! FareChase.
 http://farechase.yahoo.com/

 [Non-text portions of this message have been removed]

  



[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Sorting

2007-05-23 Thread V G
Hi
I have a requirement where in I have to sort the report by the customer
name. The table that is used in the query have customer No but not customer
name. I am fetching the customer name from the custTable based on
custAccount.
I can create a temp table and insert the record with the customer name and
than fetch it sort by customer name
Is there a easier way or any other way to do this.
Thanks
Vishal


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Printers

2007-05-22 Thread V G
Hi
Can we display all the available printers in a form( field).
I have a requirement wherein I have to attach printer to a warehouse so that
anything related to that warehouse is printed on that printer.
Is there a way to get the list of printers in axapta.
Thanks
Vishal


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] storing images

2007-05-17 Thread V G
Hi
I have a requirement wherein we use a image to show on the report.
Can someone please tell me where to store the images so that it is visble on
all the clients.
How do I use resource if I have created a resource from that image
Thanks


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Lookup

2007-05-16 Thread V G
Hi
In the report parameter I have to show all the unique values of a field of
some table as selection.
So if there are three records in that table A where in the field X has
values 1,2,3,2,1
I have to show the values 1,2,3 in the parameter of the report as selection.
I know this possible using lookup form. Can someone please tell me how.
I can get all the five values if I write a relation on the extended datatype
but I need just the unique values.
Thanks


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Page number in report

2007-05-08 Thread V G
Hi
There is a requirement wherein we are generating reports based on the
shipdate and want to break it based on the customer.So if it is a differnet
customer a new page will start.
For this the page number should look like 1 of 1 to 1 of X for one customer
and start from 1 again for a new customer. totalpages() will calculate the
total pages irresspective of the customer.
Is there a way to achive this.
Thanks in advance
VG


[Non-text portions of this message have been removed]



Re: [Axapta-Knowledge-Village] Batch process

2007-04-22 Thread V G
Hi Arijit

Thanks for helping me out.
I created a class that extends runbasebatch framework.
Now how do I proceed so that it will run automatically at a specific time.

Thanks
VG

On 4/20/07, Arijit Basu [EMAIL PROTECTED] wrote:

   Hi VG,
 Say u want to run a process periodically, then create a class that
 extends runbasebatch framework and put your business logic in the class
 which u wanna execute periodically. In base AX, there are lots of
 tutorials
 on how to do this. In case u need more help or samples, lemme know. I'll
 try
 n send u an XPO .

 Cheers
 Arijit Basu
 http://daxguy.blogspot.com/

 On 4/20/07, V G [EMAIL PROTECTED] learnaxapta%40gmail.com wrote:
 
  Hi
  I have a requirement where I need to run a piece of code automatically
 at
  a
  given time at night.
  How can I do this.
  Thanks
  VG
 
  [Non-text portions of this message have been removed]
 
 
 

 --

 Arijit Basu

 [Non-text portions of this message have been removed]

 



[Non-text portions of this message have been removed]



Re: [Axapta-Knowledge-Village] Number of copies in report

2007-04-20 Thread V G
Hi Alagar
This works when we directly run the report from AOT.
I am unable to make it work when we attach the report to a menue(one of the
modules in the main menue) and run from the main menue.
Am I missing something
Thanks
V G


On 17 Apr 2007 22:24:11 -0700, Alagarsami Murugan [EMAIL PROTECTED]
wrote:

   Hi VG,
 You can initialize the number of copies in the init method of the report
 by specifying as
 element.printJobSettings().copies(5);
 and you can write the validation for not exceeding the maximum of 10
 copies .
 The copies field can be disabled so that user cannot change it by
 specifying as
 element.printJobSettings().enableCopies(false);

 Regards,
 Alagar

 - Original Message 
 From: V G [EMAIL PROTECTED] learnaxapta%40gmail.com
 To: 
 Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%40yahoogroups.com
 Cc: [EMAIL PROTECTED] pvraghavanmca%40yahoo.com
 Sent: Tuesday, April 17, 2007 4:21:35 PM
 Subject: Re: [Axapta-Knowledge-Village] Number of copies in report

 Hi Venkat

 Thanks.
 But is there a way to add the copies field on the dialog instead of going
 through the options button.
 And to set the default value as 5 copies and a maximum of 10 copies.

 Thanks
 VG

 On 16 Apr 2007 20:45:52 -0700, venkat raghavan pvraghavanmca@ yahoo.com
 wrote:
 
  Hi VG,
 
  If you run a report, first the report dialog box will appear right? In
  that dialog box there will be 3 buttons(Select, Default,Options) under
 the
  general tab. Click the Options button. You will get a print window. In
 that
  window under the general tab, you will find a group called Send to. In
 that
  group select printer. After the selection, on the right hand side of the
  same window you will find a group called copies. In that field you can
  specify how many copies you need. This field will be enabled only if the
  printer option is selected. By default copies field value is one.
 
  Regards,
  Venkat
  http://DynamicsTech http://dynamicstech/ .blogspot. com 
 http://dynamicstech .blogspot. com/
 
  - Original Message 
  From: V G learnaxapta@ gmail.com learnaxapta% 40gmail.com 
  To: Axapta-Knowledge- [EMAIL PROTECTED] ups.comAxapta-Knowledge-
 Village%40yahoog roups.com ;
  development- [EMAIL PROTECTED] ps.com development- axapta%40yahoogr
 oups.com
  Sent: Tuesday, April 17, 2007 2:56:40 AM
  Subject: [Axapta-Knowledge- Village] Number of copies in report
 
  Hi
  I have a requirement wherein I have to give the user option to select
 the
  number of copies to print.
  Any help is highly appreciated
 
  Thanks
  VG
 
  [Non-text portions of this message have been removed]
 
   _ _ _ _ __
  Do You Yahoo!?
  Tired of spam? Yahoo! Mail has the best spam protection around
  http://mail. yahoo.com
 
  [Non-text portions of this message have been removed]
 
 
 

 [Non-text portions of this message have been removed]

 __
 Do You Yahoo!?
 Tired of spam? Yahoo! Mail has the best spam protection around
 http://mail.yahoo.com

 [Non-text portions of this message have been removed]

  



[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] WMSOrder

2007-04-20 Thread V G
Hi
When are the records inserted in the table WMSOrder.
Thanks in advance

VG


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Batch process

2007-04-20 Thread V G
Hi
I have a requirement where I need to run a piece of code automatically at a
given time at night.
How can I do this.
Thanks
VG


[Non-text portions of this message have been removed]



Re: [Axapta-Knowledge-Village] Number of copies in report

2007-04-17 Thread V G
Hi Venkat

Thanks.
But is there a way to add the copies field on the dialog instead of going
through the options button.
And to set the default value as 5 copies and a maximum of 10 copies.

Thanks
VG


On 16 Apr 2007 20:45:52 -0700, venkat raghavan [EMAIL PROTECTED]
wrote:

   Hi VG,

 If you run a report, first the report dialog box will appear right? In
 that dialog box there will be 3 buttons(Select, Default,Options) under the
 general tab. Click the Options button. You will get a print window. In that
 window under the general tab, you will find a group called Send to. In that
 group select printer. After the selection, on the right hand side of the
 same window you will find a group called copies. In that field you can
 specify how many copies you need. This field will be enabled only if the
 printer option is selected. By default copies field value is one.

 Regards,
 Venkat
 http://DynamicsTech.blogspot.com http://dynamicstech.blogspot.com/

 - Original Message 
 From: V G [EMAIL PROTECTED] learnaxapta%40gmail.com
 To: 
 Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%40yahoogroups.com;
 [EMAIL PROTECTED] development-axapta%40yahoogroups.com
 Sent: Tuesday, April 17, 2007 2:56:40 AM
 Subject: [Axapta-Knowledge-Village] Number of copies in report

 Hi
 I have a requirement wherein I have to give the user option to select the
 number of copies to print.
 Any help is highly appreciated

 Thanks
 VG

 [Non-text portions of this message have been removed]

 __
 Do You Yahoo!?
 Tired of spam? Yahoo! Mail has the best spam protection around
 http://mail.yahoo.com

 [Non-text portions of this message have been removed]

 



[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Number of copies in report

2007-04-16 Thread V G
Hi
I have a requirement wherein I have to give the user option to select the
number of copies to print.
Any help is highly appreciated

Thanks
VG


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Number of copies in report

2007-04-16 Thread V G
Hi
I have a requirement wherein I have to give the user option to select the
number of copies to print from the dialog box for a specific report.
Any help is highly appreciated

Thanks
VG


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Moving some part of the report to the next page

2007-04-11 Thread V G
Hi
I have a requirement where in if the report extends to more than 1 page the
client doesnot want just the total on the last page. Requirement is to also
move one line of the body with the total to the last page of the report so
that the total is not orphanage.
Thanks in advance
VG


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Range in report

2007-03-28 Thread V G
Hi
I have some parameters for the reports(ranges). How is it possible to make
some of the parameters mandotory(user has to fill in those Parameters)
Thanks in advance

VG


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Barcode on reports

2007-03-23 Thread V G
Hi
I need to print barcode on reports. Can anyone tell me how to do this.
Thanks
VM


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Insert records in a record linked list in report

2007-03-21 Thread V G
Hi
I have a requirement wherein I have insert the records of the query in
report into a record linked list. I have made a report in AOT and added one
datasource WMS Order and 4 ranges.
Is it from the fetch function I can insert records into the record linked
list. If so how can I do that.
Also is there a way to know what all values have the user entered in the
ranges of the report.
Thanks in Advance


[Non-text portions of this message have been removed]



Re: [Axapta-Knowledge-Village] Report

2007-03-16 Thread V G
thanks Guys. It helped



On 3/16/07, Kamal Kannan [EMAIL PROTECTED] wrote:

   Hi VG

 To disable the quotationid and salesid, drag them to the ranges section
 and choose
 Enabled as no in the properties of those typical ranges.

 Regarding the lookup, only in the follwoing scenarios you get the look up

 1. When it is an enum type
 2. when it has table or dataType level relation
 3. When it is a base type date

 hope this is helpful

 Regards
 Kamlakannan
 http://casperkamal.spaces.live.com
 (Tech blog on Ax)


 On 08 Mar 2007 13:10:44 -0800, V G [EMAIL 
 PROTECTED]learnaxapta%40gmail.com
 wrote:
 
  Hi
  I am building a report from AOT-.Reports and have added a datasource
  'custquotationjour' and inside this datasource have added
  'custquotationtrans' with relation property on.
  When running the report the dialog screen opens with few fields to
 selct.
  I
  added quotation id in the range of datasource 'custquotationjour' and
  nothing in 'custquotationtrans'
  Now when we run the report it shows dialog screen with quotaionid and
  salesid as fields to select. I want to remove the sales id from the
  selection.
  Also the quotationid is not having lookup.
  Can anyone please help me.
  Thanks
 
  [Non-text portions of this message have been removed]
 
 
 

 --
 Regards
 Kamalakannan
 http://casperkamal.spaces.live.com
 (Tech blog on Ax)

 [Non-text portions of this message have been removed]

  



[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Reports

2007-03-15 Thread V G
Hi
I am working on report where there is a requirment where in we have to
display all the lines of sales order except for one line (based on specific
Item ID ) which is to be displayed in a diff format (just the total of
quantity and price). I have build a query in AOT (inside report). How can I
achive this. Thanks in advance for the help


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Report

2007-03-08 Thread V G
Hi
I am building a report from AOT-.Reports and have added a datasource
'custquotationjour' and inside this datasource have added
'custquotationtrans' with relation property on.
When running the report the dialog screen opens with few fields to selct. I
added quotation id in the range of datasource 'custquotationjour' and
nothing in 'custquotationtrans'
Now when we run the report it shows dialog screen with quotaionid and
salesid as fields to select. I want to remove the sales id from the
selection.
Also the quotationid is not having lookup.
Can anyone please help me.
Thanks


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] AIF Web services

2007-02-14 Thread V G
Hi
I am trying to send data to a application in xml format from Dynamics using
AIF.
I set up and configured AIF and after selecting the action the related asmx
file is generated. How can I use this file to send data.
When I browse the SalesOrderService.asmx file from IIS web server it opens
up a page with some web methods.
Can anyone please explain how this can be used to send a xml file of a
salesorder(selected salesId) to some other application.

Thanks


[Non-text portions of this message have been removed]



Re: [Axapta-Knowledge-Village] Disable a field on the form

2006-11-26 Thread V G
Thanks Guys



On 11/27/06, kbi kbi [EMAIL PROTECTED] wrote:

   Hi,
 If you use code, you can try this:

 purchParmTable_ds.object(fieldnum(PurchParmTable,
 ApprovedBy)).visible(false);

 Different from disable form controls: it will disable all the fields (not
 only one control) which have data source PurchParmTable and data field
 ApprovedBy.

 Hope this help

 thanks.

 - Original Message 
 From: Arijit Basu [EMAIL PROTECTED] arijit.basu%40gmail.com
 To: 
 Axapta-Knowledge-Village@yahoogroups.comAxapta-Knowledge-Village%40yahoogroups.com
 Sent: Sunday, November 26, 2006 11:44:56 AM
 Subject: Re: [Axapta-Knowledge-Village] Disable a field on the form

 You can also try this

 FormStringControl XYZ;

 XYZ= element.design( ).control( Control:: ControlName) ;
 XYX.visible( false);

 Cheers

 On 11/25/06, Varden Morris [EMAIL PROTECTED] com wrote:
 
  Change the allowEdit property of the field on the form data source
  node to No. This will disable the field everywhere it's being used on
 the
  form. To disable the field on all user interface in the application you
  should set the AllowEdit property of the field on the TABLE to No.
 
  V G learnaxapta@ gmail.com learnaxapta% 40gmail.com  wrote: Hi
 
  I want to disable a field on the form which is in auto group.
  Thanks in advance for help
 
  Regards
 
  [Non-text portions of this message have been removed]
 
  Varden Morris
 
  85 Saddleland Close N.E.
  Calgary, Alberta T3J 5J5
  Canada
 
  (403) 366-8434 (H)
  (403) 615-1604 (C)
  [EMAIL PROTECTED] com vardenm%40yahoo. com
 
 
 
   - - ---
  Cheap Talk? Check out Yahoo! Messenger's low PC-to-Phone call rates.
 
  [Non-text portions of this message have been removed]
 
 
 

 --

 Arijit Basu

 [Non-text portions of this message have been removed]

 __
 Do you Yahoo!?
 Everyone is raving about the all-new Yahoo! Mail beta.
 http://new.mail.yahoo.com

 [Non-text portions of this message have been removed]

 



[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Disable a field on the form

2006-11-25 Thread V G
Hi

I want to disable a field on the form which is in auto group.
Thanks in advance for help

Regards


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Security for addon module

2006-11-16 Thread V G
Hi

I want to be able to get security on the add on module created like with
standard axapta where u see only the modules you buy. Similarly we want to
be able to add license to our module so that if the clients buys the module
only than does he get it. Please let me know a solution.

Thanks


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Id 2 name

2006-11-16 Thread V G
Hi
Is there a way to find out the name of the license code created in AOT by
the ID of that license code.
Thanks in advance


[Non-text portions of this message have been removed]



[Axapta-Knowledge-Village] Help files

2006-05-25 Thread V G



Hello

I need to import the help files that have been created (custom) on some
fields of the form. Please suggest how to do this.

VM


[Non-text portions of this message have been removed]







Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends.








  
  
SPONSORED LINKS
  
  
  

Business finance course
  
  
Business to business finance
  
  
Small business finance
  
  


Business finance consultant
  
  
Business finance magazine
  
  
Business finance schools
  
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "Axapta-Knowledge-Village" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[Axapta-Knowledge-Village] Relation to a field

2006-05-22 Thread V G



Hello

I am trying to find the relationship on all the fields of a given table.
Relation to a field that have extended datatype can be found out but not the
other relations(by using datafield relationobject).
Please help me out.

Thanks
VM


[Non-text portions of this message have been removed]







Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends.








  
  
SPONSORED LINKS
  
  
  

Business finance course
  
  
Business to business finance
  
  
Small business finance
  
  


Business finance consultant
  
  
Business finance magazine
  
  
Business finance schools
  
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "Axapta-Knowledge-Village" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












[Axapta-Knowledge-Village] How to find the data type of the field

2006-04-25 Thread V G



Hello

Can anyone help me find the datatype of the field if I have table Id and
FieldId.

Thanks
VG


[Non-text portions of this message have been removed]







Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends.





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "Axapta-Knowledge-Village" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [Axapta-Knowledge-Village] How to find the data type of the field

2006-04-25 Thread V G



Thanks
But I will know the table name and the fieldname at run time so i cannot use
tablename.fieldname as i will have to declare the table for this and i dont
know till run time what table it will be

Regards
VG


On 4/25/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:


 Hi,

 use typeof function.

 ex:
 
 typeof(tablename.fieldname) - returns the datatype of specified
 field

 regs,
 Hema. S




 V G [EMAIL PROTECTED]
 Sent by: To:
 development-axapta@yahoogroups.com
 [EMAIL PROTECTED] cc:
 Axapta-Knowledge-Village@yahoogroups.com
 groups.com Subject:
 [Axapta-Knowledge-Village] How to find the data type of the
 field

 04/25/2006 11:44 AM
 Please respond to
 Axapta-Knowledge-Village






 Hello

 Can anyone help me find the datatype of the field if I have table Id and
 FieldId.

 Thanks
 VG


 [Non-text portions of this message have been removed]



 Sharing the knowledge on Axapta.
 Visit www.frappr.com/axapta for axapta friends.


 YAHOO! GROUPS LINKS

 Visit your group Axapta-Knowledge-Village on the web.

 To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]

 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.








 Sharing the knowledge on Axapta.
 Visit www.frappr.com/axapta for axapta friends.
 Yahoo! Groups Links









[Non-text portions of this message have been removed]







Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends.





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "Axapta-Knowledge-Village" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[Axapta-Knowledge-Village]

2006-03-16 Thread V G
Hello Everyone

Need is to have all the relations(to find out how the different tables are
relate or what is the relation). Can anyone let me know how to get the exact
relations.I tried with dictRelation = df.relationObject(); but this gives
only the table name and no the relation nventTable.altconfigId ==
ConfigTable.configId).

Thanks in advance


[Non-text portions of this message have been removed]



Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends. 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/Axapta-Knowledge-Village/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: RE : [Axapta-Knowledge-Village] display list of all tables from AOT

2006-03-15 Thread V G
Thanks u guys.It was a gr8 help



On 3/15/06, Steeve Gilbert [EMAIL PROTECTED] wrote:

 No need for a table, just a StringEdit with its property EDT = TableName.

 Steeve...


 -Message d'origine-
 De: Axapta-Knowledge-Village@yahoogroups.com [mailto:
 [EMAIL PROTECTED] De la part de Bayliss, Barry
 Envoyé: 15 mars 2006 02:41
 À: Axapta-Knowledge-Village@yahoogroups.com
 Objet: RE: [Axapta-Knowledge-Village] display list of all tables from AOT


 One way is to create a table with a field with the extended data type
 TableName, and place this field on your form.


 Barry.


 -Original Message-
 From: Axapta-Knowledge-Village@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On Behalf Of V G
 Sent: Wednesday, 15 March 2006 9:05 AM
 To: Axapta-Knowledge-Village@yahoogroups.com;
 development-axapta@yahoogroups.com
 Subject: [Axapta-Knowledge-Village] display list of all tables from AOT

 Hello everyone

 I want to show list of all the tables in AOT, in a combo box or a dialog
 box.
 Can anyone tell me how to achive this.

 Thanks


 [Non-text portions of this message have been removed]



 Sharing the knowledge on Axapta.
 Visit www.frappr.com/axapta for axapta friends.
 Yahoo! Groups Links








 Sharing the knowledge on Axapta.
 Visit www.frappr.com/axapta for axapta friends.
 Yahoo! Groups Links








 Sharing the knowledge on Axapta.
 Visit www.frappr.com/axapta for axapta friends.
 Yahoo! Groups Links









[Non-text portions of this message have been removed]



Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends. 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/Axapta-Knowledge-Village/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[Axapta-Knowledge-Village] display list of all tables from AOT

2006-03-14 Thread V G
Hello everyone

I want to show list of all the tables in AOT, in a combo box or a dialog
box.
Can anyone tell me how to achive this.

Thanks


[Non-text portions of this message have been removed]



Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends. 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/Axapta-Knowledge-Village/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [Axapta-Knowledge-Village] display list of all tables from AOT

2006-03-14 Thread V G
Thanks for ur reply
I have no datasource on form.I just want to display all the table names in a
list or combo box for the user to select any table name.There are some 1500
tables in AOT I want to display all the names.

Thanks



On 3/14/06, Ronnie Lu [EMAIL PROTECTED] wrote:

 If there is a field in your table which related to the combo box, you can
 use EDT:TableName for this field.

 Thanks
 Ronnie

 V G [EMAIL PROTECTED] wrote:
 Hello everyone

 I want to show list of all the tables in AOT, in a combo box or a dialog
 box.
 Can anyone tell me how to achive this.

 Thanks


 [Non-text portions of this message have been removed]



 Sharing the knowledge on Axapta.
 Visit www.frappr.com/axapta for axapta friends.



 SPONSORED LINKS
Business finance course   Business to business finance   Small
 business finance Business finance consultant   Business finance
 magazine   Business finance schools

 -
 YAHOO! GROUPS LINKS


Visit your group Axapta-Knowledge-Village on the web.

To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.


 -





 -
 Yahoo! Travel
 Find  great deals to the top 10 hottest destinations!

 [Non-text portions of this message have been removed]



 Sharing the knowledge on Axapta.
 Visit www.frappr.com/axapta for axapta friends.
 Yahoo! Groups Links









[Non-text portions of this message have been removed]



Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends. 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/Axapta-Knowledge-Village/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[Axapta-Knowledge-Village] right click lookup

2006-01-31 Thread V G
Hello

There is a customized form and I right click on any of the field on the
grid. It shows the find option and filter and some more option.When I click
on th find option it wouldn't open the find dialog box. I assume this is
because of the property of datasource - autoQuery set to *No*. Can there be
anything else other than this.

Thanks


[Non-text portions of this message have been removed]



Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends. 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/Axapta-Knowledge-Village/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[Axapta-Knowledge-Village] Opening a for m through code

2006-01-27 Thread V G
Hi

I am trying to open a form through code and click on the button on the
form.I am able to do till here but the problem is that I am unable to get
hold of the sysQueryForm which is opened by clicking the button on the first
form.I want to get hold of that form and set some range in the sysqueryform
and click ok button on the sysqueryform.
Can anyone help me out

Thanks in advance


[Non-text portions of this message have been removed]



Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends. 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/Axapta-Knowledge-Village/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: RE : [Axapta-Knowledge-Village] Opening a for m through code

2006-01-27 Thread V G
Thanks

 Ya I want to enter range on the grid of the sysQueryForm and press ok. And
then see the result on the first form.It will be used for testing
purpose.Sothat a person can run the code and sit back and watch the
show. Can u please
lemme know y it is not recommended to do this with SysQueryForm.I mean I
would like to know if there is a implication to this.
Thanks again for ur help


On 1/27/06, Steeve Gilbert [EMAIL PROTECTED] wrote:

 Hi VG,

 What do you want to do exactly?  Opening SysQueryForm to set some range
 and closing it automatically is not really recommended.  Do you want to set
 range on a grid in a form, on a report, etc... ?

 Regards,

 Steeve...


 -Message d'origine-
 De: Axapta-Knowledge-Village@yahoogroups.com [mailto:
 [EMAIL PROTECTED] De la part de V G
 Envoyé: 27 janvier 2006 15:05
 À: development-axapta@yahoogroups.com
 Cc: Axapta-Knowledge-Village@yahoogroups.com
 Objet: [Axapta-Knowledge-Village] Opening a for m through code

 Hi

 I am trying to open a form through code and click on the button on the
 form.I am able to do till here but the problem is that I am unable to get
 hold of the sysQueryForm which is opened by clicking the button on the
 first
 form.I want to get hold of that form and set some range in the
 sysqueryform
 and click ok button on the sysqueryform.
 Can anyone help me out

 Thanks in advance


 [Non-text portions of this message have been removed]



 Sharing the knowledge on Axapta.
 Visit www.frappr.com/axapta for axapta friends.
 Yahoo! Groups Links









 Sharing the knowledge on Axapta.
 Visit www.frappr.com/axapta for axapta friends.
 Yahoo! Groups Links










[Non-text portions of this message have been removed]



Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends. 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/Axapta-Knowledge-Village/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[Axapta-Knowledge-Village] Axapta Debugger

2006-01-19 Thread V G
Hello group

I am trying to debug a class ( have put breakpoint). When I run it it goes
to debugger but doesnot show the code(the place where it shows code is empty
) and when I close the debugger it says ' problem connecting to the
debugger'.
Can anyone help me out.

Thanks


[Non-text portions of this message have been removed]



Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends. 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/Axapta-Knowledge-Village/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[Axapta-Knowledge-Village] Unit Testing tool

2006-01-17 Thread V G



Hello

Can anyone let me know if there is a unit testing tool available for axapta like JUnit.

Thanks







Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends.





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "Axapta-Knowledge-Village" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[Axapta-Knowledge-Village] Need document for installation and configuration

2005-08-16 Thread V G
Hi

I am planning to appear for installation and configuration
certification. But I am unable to find any study material for this.
Those who have already cleared this exam or those who have some study
material please let me know.
Thanks

Regards
VM


 Yahoo! Groups Sponsor ~-- 
font face=arial size=-1a 
href=http://us.ard.yahoo.com/SIG=12huroe5b/M=362131.6882500.7825259.1493532/D=groups/S=1705001380:TM/Y=YAHOO/EXP=1124184249/A=2889190/R=0/SIG=10r90krvo/*http://www.thebeehive.org
Put more honey in your pocket. (money matters made easy) Welcome to the Sweet 
Life - brought to you by One Economy/a./font
~- 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/Axapta-Knowledge-Village/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[Axapta-Knowledge-Village] How to install Biztalk

2005-08-11 Thread V G
Hello 

I need to import XML files into axapta. for this I need to install
BizTalk server.Can anyone tell me how to install this and how to map
it with axapta.

Thanks a lot





 Yahoo! Groups Sponsor ~-- 
font face=arial size=-1a 
href=http://us.ard.yahoo.com/SIG=12h3ov3h2/M=362131.6882500.7825259.1493532/D=groups/S=1705001380:TM/Y=YAHOO/EXP=1123771316/A=2889190/R=0/SIG=10r90krvo/*http://www.thebeehive.org
Put more honey in your pocket. (money matters made easy) Welcome to the Sweet 
Life - brought to you by One Economy/a./font
~- 

Sharing the knowledge on Axapta. 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/Axapta-Knowledge-Village/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/