[Axapta-Knowledge-Village] Create vouchers through Code

2010-04-14 Thread pradeep itnal
 
Hi all
How to create vouchers through x++ code? any pointesr  are highly appreciated.


 
Thanks  Regards
Pradeep S.Itnal





Re: [Axapta-Knowledge-Village] Go through projects and export created date of obecjts

2009-11-29 Thread pradeep itnal
hi James there are many system clasees available .. from which you can access 
the objects in aot 
 
For example 
 
TreeNode classnode = 
TreeNode::findNode(#SystemClassesPath+'\\'+classstr(xRecord));
    TreeNode childnode = classnode.AOTfirstChild();
    DictMethod dictMethod;
    setprefix(classnode.treeNodeName());
    while (childnode)
    {
    setprefix(childnode.treeNodeName());
    dictMethod = new 
DictMethod(UtilElementType::ClassInstanceMethod,classnum(xRecord),childnode.treeNodeName());
    info(strfmt('%1', dictMethod.runMode()));
    childnode = childnode.AOTnextSibling();
    }
 
 
1. You can develop a recursive program, which will iterate thru each of Private 
and sheraed projects.
 
2.copy the details of objects user modified date and time of the user into a 
temporary table.
 
3. create a report and print them
 
Basically u need a class where u put ur business logic which will list the 
objects in your project, 2nd u need a temporary table to store intermediate 
info and a report to show up the results. hope it helps. 


Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409


--- On Mon, 30/11/09, James Flavell djf1...@gmail.com wrote:


From: James Flavell djf1...@gmail.com
Subject: [Axapta-Knowledge-Village] Go through projects and export created date 
of obecjts
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Monday, 30 November, 2009, 10:16 AM


  





Has anybody done coding to go through all the projects in an AOT and print a 
report of the objects in the project with their created and modified date and 
user info?
 
Something like an audit log on objects done by project basis?
 
If so would appreciate some points as to how to do such coding
 
Thanks
James







  The INTERNET now has a personality. YOURS! See your Yahoo! Homepage. 
http://in.yahoo.com/

Re: [Axapta-Knowledge-Village] Hi

2009-09-22 Thread pradeep itnal
on the invent master form the one u have created... 
 
1.hope it opens everytime u click new button or ctrl + N... ok... 
 
2. u must be having two buttons on ur form  ok or cancel
 
3.in class declaration part of the form  declare buffer of invent table
 Inventtable invt;
4.in the init method of the form say 
    invt = element.args.caller();
5. on the clicked method (event) of OK button 
 say 
 invt.itemid = formcontrol.valuestr();  //fromcontrol is the name of 
the control which has label itemid or itemname whatever u have named 
it..declare auto property of the control to yes
 
hope it works for u...if any Qstns get back
6. 
 
    


Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409


--- On Tue, 22/9/09, Anitha S mail2eani...@gmail.com wrote:


From: Anitha S mail2eani...@gmail.com
Subject: Re: [Axapta-Knowledge-Village] Hi
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Tuesday, 22 September, 2009, 12:29 PM


  




Hi,
 
I could not get your requirement.
Are u updating the ItemCode for an already exisiting item ??
 
Regards,
Anitha
 

 
On Tue, Sep 22, 2009 at 11:25 AM, ramesh_p2384 ramesh_p2384@ yahoo.co. in 
wrote:


  



Hi All

i have a problem in Form level.

I.e i have developed a one form - name is InventMaster, 

that form should be open from InventTable Form using with (Ctr+N) 

or click new. upto this part i have done, whenever my form is open from

InventTable form ,there i can select all my fields after when i click 

ok button one Itemcode is generated.

So finally i want that itemcode should be inserted at Inventtable form

level. for this problem where i have to write code in form level.

Regards

Ramesh



















  Keep up with people you care about with Yahoo! India Mail. Learn how. 
http://in.overview.mail.yahoo.com/connectmore

Re: [Axapta-Knowledge-Village] Company Account ID Change

2009-06-30 Thread pradeep itnal
its not possible,


Thanks  Regards
Pradeep S.Itnal



--- On Tue, 30/6/09, AX Consultant consultan...@gmail.com wrote:


From: AX Consultant consultan...@gmail.com
Subject: [Axapta-Knowledge-Village] Company Account ID Change
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Tuesday, 30 June, 2009, 2:16 PM










Dear All, 
 
I have a special request from client side that is to change Company Accounts 
ID. The available limit of the field is 4 Character Maximum and currently the 
ID is . Now Clients want to change the ID from to 6 Character. I tried, but 
unable to change it.
 
Is it possible to change Company Accounts ID while already some transaction has 
been posted? 
 
Is there any possibility to increase the length of Company Accounts ID, if 
possible how the references of this change will be propagated?
 
 
Thanks,
 
 















  ICC World Twenty20 England #39;09 exclusively on YAHOO! CRICKET 
http://cricket.yahoo.com

Re: [Axapta-Knowledge-Village] color

2009-06-16 Thread pradeep itnal
hi sumit i tried this way by writting a code in modified method of the control 
but it does not work any specific reason 
 
public boolean modified()
{
  
    boolean ret;

    ret = super();
    if(this.dateValue()  systemDateget())
    {
   Table1_TransDate.backgroundColor(WinApi::RGB2int( 255,255, 0));
    }
    return ret;
}
 
please comment  


Thanks  Regards
Pradeep S.Itnal



--- On Tue, 16/6/09, Sumit Loya loya.su...@gmail.com wrote:


From: Sumit Loya loya.su...@gmail.com
Subject: Re: [Axapta-Knowledge-Village] color
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Tuesday, 16 June, 2009, 11:21 AM









Hi,
 
You can override the displayOption method of the data source and specify the 
color criteria.
 
A sample code is below. (Written on CustTable data source of the custTable 
form).
 
public void displayOption( Common _record, FormRowDisplayOptio n _options)
{
    ;
 
    _options.affectedEl ementsByControl( Control:: CustTable_ AccountNum, 
CustTable_InvoiceAc count.id( ));

    if (_record.(fieldNum( CustTable, CustGroup)) == '10')
    {
    _options.backColor( WinApi::RGB2int( 255,255, 0));
    }
    else
    {
    _options.backColor( WinApi::RGB2int( 123,234,255) );
    }
    super(_record, _options);
}

Hope this helps!
 
Regards,
Sumit

On Tue, Jun 16, 2009 at 10:37 AM, Pooja . dyna.a...@yahoo. com wrote:










HI Guys,
In my requirement, .there should be an alert(red color any thing ) on the form 
as soon as date( field) value cross the today date .
How to do ..is there any thing is in existing system.  



















  Own a website.Get an unlimited package.Pay next to nothing.*Go to 
http://in.business.yahoo.com/

Re: [Axapta-Knowledge-Village] Username password access to AX instance

2009-06-09 Thread pradeep itnal
if a particular user is not added in Ax user 
group(Administartion-commonForms-users) then he is not able to access Ax 
server.
 
 


 
Thanks  Regards
Pradeep S.Itnal



--- On Tue, 9/6/09, rayd shil@gmail.com wrote:


From: rayd shil@gmail.com
Subject: [Axapta-Knowledge-Village] Username password access to AX instance
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Tuesday, 9 June, 2009, 4:11 PM








HI All

can we setup username/password access for AX instances in AX2009, the situation 
is that there is a common destop PC accessible to all the users in the 
department, but the requirement is that only certain users should get log in to 
AX client by using certain username and password. Is thre any way to do it in 
AX2009.

Please reply ASAP

thanks
-D
















  Cricket on your mind? Visit the ultimate cricket website. Enter 
http://beta.cricket.yahoo.com

Re: [Axapta-Knowledge-Village] HelP Required [1 Attachment]

2009-06-05 Thread pradeep itnal
pls go thru the attached XPO will solve ur issue.


Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409


--- On Fri, 5/6/09, syed zaidi bc105...@yahoo.com wrote:


From: syed zaidi bc105...@yahoo.com
Subject: [Axapta-Knowledge-Village] HelP Required
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Friday, 5 June, 2009, 10:22 AM
























..
Dear All,
 
 
I want to use group by techique in AX2009 Reports.
data save this way in table 
Descripotion  Qty   
CostPrice SalesPrice
Television    1   
5000   6000
Television3   15000 18000

 AC     
3   15   18
 
 
Results  i want to display data in Report body like this way from group by 
technique  

 
Descripotion  Qty   
CostPrice SalesPrice
Television4  2  24000
 AC     
3   15   18
 
 
 
Any body help me 
Thanks in advanced.
 Best regards,
Muzammil Hussain
 



Recent Activity


 13
New MembersVisit Your Group 



Yahoo! Finance
It's Now Personal
Guides, news,
advice  more.

New business?
Get new customers.
List your web site
in Yahoo! Search.

Get in Shape
on Yahoo! Groups
Find a buddy
and lose weight.
.. 






New Email names for you! 
Get the Email name you've always wanted on the new @ymail and @rocketmail.
Hurry before someone else does! 
















  Explore and discover exciting holidays and getaways with Yahoo! India 
Travel http://in.travel.yahoo.com/

Re: [Axapta-Knowledge-Village] Re: Baht text conversion

2009-06-05 Thread pradeep itnal
Sorry mate... i dnt have any formula... but we can Google it or wiki   
:)..hope u already dng that 


Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409


--- On Fri, 5/6/09, cshauw danny.ch...@mbp.com.my wrote:


From: cshauw danny.ch...@mbp.com.my
Subject: [Axapta-Knowledge-Village] Re: Baht text conversion
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Friday, 5 June, 2009, 12:13 PM








Hi,

Thank you for the reply, we are using this method now but we have the problem 
to understand Thai numbering system and therefore no idea how to modify, could 
you advice any standard formula available? Thank you in advance.

BR,
Dan

--- In Axapta-Knowledge- vill...@yahoogro ups.com, pradeep itnal pradeepitnal@ 
... wrote:

 hi 
     You can modify the method numtoText method in global class 
 available in the AOT 
 
 
 Thanks  Regards
 Pradeep S.Itnal
 mob:+91-9886529409
 
 
 --- On Fri, 5/6/09, cshauw danny.chong@ ... wrote:
 
 
 From: cshauw danny.chong@ ...
 Subject: [Axapta-Knowledge- Village] Baht text conversion
 To: Axapta-Knowledge- vill...@yahoogro ups.com
 Date: Friday, 5 June, 2009, 9:53 AM
 
 
 
 
 
 
 
 
 Hi,
 
 Can anyone share to me how Axapta converting the invoice amount into Baht 
 text, I understand that it is not like direct conversion as English, thank 
 you.
 
 BR,
 Dan
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 Explore and discover exciting holidays and getaways with Yahoo! India Travel 
 http://in.travel. yahoo.com/


















  Explore and discover exciting holidays and getaways with Yahoo! India 
Travel http://in.travel.yahoo.com/

Re: [Axapta-Knowledge-Village] Baht text conversion

2009-06-04 Thread pradeep itnal
hi 
    You can modify the method numtoText method in global class available 
in the AOT 


Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409


--- On Fri, 5/6/09, cshauw danny.ch...@mbp.com.my wrote:


From: cshauw danny.ch...@mbp.com.my
Subject: [Axapta-Knowledge-Village] Baht text conversion
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Friday, 5 June, 2009, 9:53 AM








Hi,

Can anyone share to me how Axapta converting the invoice amount into Baht text, 
I understand that it is not like direct conversion as English, thank you.

BR,
Dan

















  Explore and discover exciting holidays and getaways with Yahoo! India 
Travel http://in.travel.yahoo.com/

Re: [Axapta-Knowledge-Village] Purchase Requisition

2009-04-20 Thread pradeep itnal
Button will be enabled once its approved , i meant ur Purchase requisition is approved by the APPROVER. Hope u know about the new concept "workflow" in ax2009. 
Thanks  Regards
Pradeep S.Itnalmob:+91-9886529409--- On Mon, 20/4/09, Abdullah Al-Nunu aaln...@netways.com.sa wrote:
From: Abdullah Al-Nunu aaln...@netways.com.saSubject: [Axapta-Knowledge-Village] Purchase RequisitionTo: Axapta-Knowledge-Village@yahoogroups.comDate: Monday, 20 April, 2009, 2:25 PM




Dears,

I have created a new purchase requisition and I am trying to create an RFQ based on this requisition. 
(Request for Quote) function on the “Functions “ Button on the same form is always disabled and I don’t know the reason.

Any idea ??

Abdullah Al Nunu 
ERP Consultant

 _ _
Jeddah - Saudi Arabia
Mobile:00966- 50-7402504
Email: aaln...@netways. com.sa
Website: www.netways.com. sa

Disclaimer: This email and any files transmitted with it are confidential and intended solely for the use of the entity or individual to whom they are addressed. If you have received this email in error please notify the Email System Administrator E-readiness@ netways.com. sa. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of
 Netways. Finally, although this email has been scanned for the possible presence of computer viruses prior to dispatch, the recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email.


   Bollywood news, movie reviews, film trailers and more!  Click here.

Re: [Axapta-Knowledge-Village] AIF error in AX 2009 -- File adapter unable to read file

2009-04-20 Thread pradeep itnal
hi sumit 
 if you have document for AIF configuration could you please share,.


Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409


--- On Mon, 20/4/09, Sumit Loya loya.su...@gmail.com wrote:


From: Sumit Loya loya.su...@gmail.com
Subject: Re: [Axapta-Knowledge-Village] AIF error in AX 2009 -- File adapter 
unable to read file
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Monday, 20 April, 2009, 8:13 PM









Did you set the following local security option
 
System objects: Default owner for objects created by members of the 
Administrators group

This value by default is Administrators group. Change it to Object creator.
 
Regards,
Sumit


On Mon, Apr 20, 2009 at 8:03 PM, MaryAnn Hand maryann.hand@ gmail.com wrote:








You must have configure the Business Connector Proxy user. Make sure
that user has access. 


On Mon, Apr 20, 2009 at 8:10 AM, Amar Senapati
amar_senapati2000@ yahoo.com wrote:



 Hi All,

 I am trying to use the AIF file adapter to integarte with other system. I am
 using AX 2009 in Windows 2008 Server and SQL Server 2008 standard edition...

 I have done all the AIF basic set ups ( end points , channels etc..). I am
 testing for a inbound process. I used the CreateSalesOrder XML file (
 samples provided by MS ). I changed the message id, domian etc to the XML
 file as per my AX 2009 settings.

 When i run the batch process , I am getting below error saying the adapter
 is unable to read the file. The error is The file system adapter is unable
 to read the file D:\AIF\InBound\ CreateSalesOrder .xml. Error: Access to the
 path 'D:\AIF\InBound\ CreateSalesOrder .xml' is denied.

 I checked all the folder sharing , security setups. The folder sharing and
 security full access is given for the AD user id used for AX 2009 login. The
 user id is administrator in AX2009 system. I have also checked the owner of
 the file and its the same AD user id.

 Please suggest or point me , if i missed any other settings.

 Thanks in Advance.
 Amar

 Now surf faster and smarter ! Check out the new Firefox 3 - Yahoo! Edition
 http://downloads. yahoo.com/ in/firefox/

 



















  Bollywood news, movie reviews, film trailers and more! Go to 
http://in.movies.yahoo.com/

Re: [Axapta-Knowledge-Village] Method Code

2009-04-08 Thread pradeep itnal
modify ur condition like this 
if(ledgerJournalTable.JournalType == LedgerJournalType::BPV)
{
   txt_receviedby.visible(true);
} 


Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409


--- On Wed, 8/4/09, Khalil Rehman khalilrehm...@hotmail.com wrote:


From: Khalil Rehman khalilrehm...@hotmail.com
Subject: [Axapta-Knowledge-Village] Method Code
To: Knowlege Village axapta-knowledge-village@yahoogroups.com, 
axapta-development-vill...@yahoogroups.com, Adeel AX Technical Consultant 
adeel...@gmail.com
Date: Wednesday, 8 April, 2009, 12:17 PM






Dear All,
 
 
   can any body help me to write a code in LedgerJournal Report. that is i want 
to place a Text box in Report Footer Text is Received By. and initial Visible 
status is NO. 
 
 we have three Journal Type (NAME) BPV, JV, Pettey Cash. now whenever Journal 
Name BPV or Petty Cash is selected then this text become visible.
 
void enabletxt()
{
  if (ledgerjournaltable .name== BPV)
  {
    Txt_RS.visible= yes;
  }
;
}

but its  not working.
 
need urgent attention.
 
regards.
 
 

  KHALIL UR REHMAN  





What can you do with the new Windows Live? Find out 















  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

RE: [Axapta-Knowledge-Village] Method Code

2009-04-08 Thread pradeep itnal
go to baseenums node find LedgerJournalType enum add BPV, JV, Pettey Cash(your 
jounal names) in that base enum. 
 
Note:on LedgerJournalType  baseenum rightclick ansd say new element , and 
change the labels and captions etc... 


Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409


--- On Wed, 8/4/09, Khalil Rehman khalilrehm...@hotmail.com wrote:


From: Khalil Rehman khalilrehm...@hotmail.com
Subject: RE: [Axapta-Knowledge-Village] Method Code
To: Knowlege Village axapta-knowledge-village@yahoogroups.com
Date: Wednesday, 8 April, 2009, 1:57 PM








Dear Pradeepitnal 
  
when i write this code 
  
The enumeration does not exist.

Error showing. 
  
regards. 

  KHALIL UR REHMAN  



  


To: Axapta-Knowledge- vill...@yahoogro ups.com
From: pradeepitnal@ yahoo.co. in
Date: Wed, 8 Apr 2009 13:02:37 +0530
Subject: Re: [Axapta-Knowledge- Village] Method Code









modify ur condition like this 
if(ledgerJournalTab le.JournalType == LedgerJournalType: :BPV)
{
   txt_receviedby. visible(true) ;
} 


Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409


--- On Wed, 8/4/09, Khalil Rehman khalilrehman5@ hotmail.com wrote:


From: Khalil Rehman khalilrehman5@ hotmail.com
Subject: [Axapta-Knowledge- Village] Method Code
To: Knowlege Village axapta-knowledge- vill...@yahoogro ups.com, 
axapta-development- vill...@yahoogro ups.com, Adeel AX Technical Consultant 
adeel...@gmail. com
Date: Wednesday, 8 April, 2009, 12:17 PM




Dear All,
 
 
   can any body help me to write a code in LedgerJournal Report. that is i want 
to place a Text box in Report Footer Text is Received By. and initial Visible 
status is NO. 
 
 we have three Journal Type (NAME) BPV, JV, Pettey Cash. now whenever Journal 
Name BPV or Petty Cash is selected then this text become visible.
 
void enabletxt()
{
  if (ledgerjournaltable .name== BPV)
  {
    Txt_RS.visible= yes;
  }
;
}

but its  not working.
 
need urgent attention.
 
regards.
 
 

  KHALIL UR REHMAN  





What can you do with the new Windows Live? Find out 


Bollywood news, movie reviews, film trailers and more! Click here. 





See all the ways you can stay connected to friends and family 















  Connect with friends all over the world. Get Yahoo! India Messenger at 
http://in.messenger.yahoo.com/?wm=n/

Re: [Axapta-Knowledge-Village] How to return str[]?

2009-04-07 Thread pradeep itnal
hi Mike
   use managed-array rather than going for noraml arrays... 
following is simple code snippet it may help u..
 
static Array Job10(Args _args)
{
    //use Managed arrays rather than normal arrays
    Array   array = new Array(Types::String);
    ;
    array.value(1,'Axapta');
    array.value(2,'Knowledge');
    array.value(3,'village');
    return array;
}

if ur returning anything of this kind better we can make use of conatiner, maps 
or list just a suggestion... 

Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409


--- On Tue, 7/4/09, altgrep wytsw7...@sneakemail.com wrote:


From: altgrep wytsw7...@sneakemail.com
Subject: [Axapta-Knowledge-Village] How to return str[]?
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Tuesday, 7 April, 2009, 12:24 PM






Hello Everyone,

I have been trying to figure out how to return an array of strings like this:

public str[] exReturnArray( )
{

str strArray[];

;
strArray[1] = mon;
strArray[2] = tues;
strArray[3] = wed;
strArray[4] = thur; 

return strArray;
}

I get different errors depending on what I try.. can anyone set me straight?

Thanks,
Mike

















  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [Axapta-Knowledge-Village] URGENT: Help Needed

2009-03-29 Thread pradeep itnal
Are they bound controls(Fields from a datasource)??? does nt seem like bound 
controls, from ur explaination.
if they are bound controls then 
1.Go to Empid Field - modified method and write ur code there, for filteration 
of Itemids.
   basically u need to call(override) executeQuery method of the datasource. 
if they are unbound controls then i think it cannot be done.
  


Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409


--- On Mon, 30/3/09, M Anass m_an...@yahoo.com wrote:


From: M Anass m_an...@yahoo.com
Subject: [Axapta-Knowledge-Village] URGENT: Help Needed
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Monday, 30 March, 2009, 1:21 AM









Hi All,
 
My poblem is I've two fields on a grid located at a Form, the first filed, is 
the EmplID so it show the gird with autolookup to the Employee Form, the second 
field is also do that but for the Items Table because it contains the ItemId, 
(this all is ofcourse caused by the EDT which EmplID, and ItemId use and for 
the embedded relation to the EDT).
 
My Question: I want when the user select certain EmplId, the lookup on the 
second Field which contains the ItemId to not show all the items and show some 
Items which I will describe it in a certain query.
In another mean I want the ItemId field lookup content to be filtered based on 
the value of the EmplId field.
 
 Thanks.


















  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [Axapta-Knowledge-Village] Re: Workflows

2009-03-28 Thread pradeep itnal
Is not supported you neeed to specify the approvers during configurations. 


Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409


--- On Sat, 28/3/09, Rahul Yelisetti rahul...@yahoo.com wrote:


From: Rahul Yelisetti rahul...@yahoo.com
Subject: Re: [Axapta-Knowledge-Village] Re: Workflows
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Saturday, 28 March, 2009, 1:19 PM







Hi,

Is runtime allocation of approvers possible with workflows provided in axapta?

 Rahul


















  Cricket on your mind? Visit the ultimate cricket website. Enter 
http://beta.cricket.yahoo.com

Re: [Axapta-Knowledge-Village] Regading Tracking of the orders.

2009-02-27 Thread pradeep itnal
Follow below steps

1. Decalre a Global variable
    Class declaration:
    PurchId PurchId;

2. Modify run method of PurchCreateOrder Form like this
 void  run()
{
    purchtable purch;
    purchTable_ds.create();
    purch = purchTable_ds.cursor(); // new line, current record
    PurchId = purch.PurchId;// new addition
    element.modifyForm();

    super();

    purchTable_ds.lookUpOrderAccount();

    if (!purchTableType)
    {
    element.close();
    throw Exception::Error;
    }
}

3. Override standard closeCancel method of the PurchCreateOrder Form  there u 
can store the Cancelled purchase orders, which is stored in Global variable 
PurchId . You can either store those purchids in a new table or a container , 
for further processing.

Hope it helps you .
 

Thanks  Regards  Pradeep S.Itnal
Hyderabad


--- On Fri, 27/2/09, Trinadh Sura trin...@b2bsoftech.com wrote:
From: Trinadh Sura trin...@b2bsoftech.com
Subject: [Axapta-Knowledge-Village] Regading Tracking of the orders.
To: Axapta-Knowledge-Village Axapta-Knowledge-Village@yahoogroups.com, 
development-axapta development-axa...@yahoogroups.com
Date: Friday, 27 February, 2009, 12:43 PM

THIS E-MAIL IS CONFIDENTIAL and intended solely for the use of the individual
to whom it is addressed.



  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

RE: [Axapta-Knowledge-Village] check box on Grid

2009-02-06 Thread pradeep itnal
Hi mohsin
 There is a form which has some controls all are bound controls and 
there is a checkbox , which is unbound, we were implementing a functionality to 
Post selected records from the form.Actual problem was in Selection of records 
on the form , using the checkBox Control was not working fine. Later we 
implemented it like Payment Proposal - settlement Form.
 
Anyways thanks for your Concern.If you have any better ideas please share. 


Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409


--- On Wed, 4/2/09, Mohsin Zia mohsinzi...@yahoo.com wrote:

From: Mohsin Zia mohsinzi...@yahoo.com
Subject: RE: [Axapta-Knowledge-Village] check box on Grid
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Wednesday, 4 February, 2009, 9:44 PM












Hi Pradeep,
 
What is the issue... kindly drop a mail.
 
regards,
Mohsin Zia
--- On Tue, 2/3/09, Rishi Jyoti rish...@sonata- software. com wrote:

From: Rishi Jyoti rish...@sonata- software. com
Subject: RE: [Axapta-Knowledge- Village] check box on Grid
To: Axapta-Knowledge- vill...@yahoogro ups.com
Date: Tuesday, February 3, 2009, 1:06 AM






I would agree that you have a problem J
 
Sending 7-8 of these to announce the same
 

Best Regards, 
Rishi 
  


From: Axapta-Knowledge- vill...@yahoogro ups.com [mailto:Axapta- Knowledge- 
vill...@yahoogro ups.com] On Behalf Of pradeep itnal
Sent: Tuesday, February 03, 2009 12:36 PM
To: Axapta-Knowledge- vill...@yahoogro ups.com
Subject: [Axapta-Knowledge- Village] check box on Grid
  









hi all


   i have a problem 


Thanks  Regards


Pradeep S.Itnal
mob:+91-9886529409






Add more friends to your messenger and enjoy! Invite them now. 



 
















  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[Axapta-Knowledge-Village] apologies

2009-02-03 Thread pradeep itnal
hi all
    My sincere apologies to every one in this group, for sending the 
same mail(check box in grid) multiple times, it has caused due to some problem 
in internet connectivity at my end,   sorry for inconvenience caused. 

Thanks  Regards  Pradeep S.Itnal
mob:+91-90082745207



  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[Axapta-Knowledge-Village] check box on Grid

2009-02-02 Thread pradeep itnal

hi all
  

Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409



  Check out the all-new face of Yahoo! India. Go to http://in.yahoo.com/

[Axapta-Knowledge-Village] check box on Grid

2009-02-02 Thread pradeep itnal

hi all
 

Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409



  Connect with friends all over the world. Get Yahoo! India Messenger at 
http://in.messenger.yahoo.com/?wm=n/

[Axapta-Knowledge-Village] check box on Grid

2009-02-02 Thread pradeep itnal

hi all
   i have a 

Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409



  Connect with friends all over the world. Get Yahoo! India Messenger at 
http://in.messenger.yahoo.com/?wm=n/

[Axapta-Knowledge-Village] check box on Grid

2009-02-02 Thread pradeep itnal

hi all
   i have 

Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409



  Bollywood news, movie reviews, film trailers and more! Go to 
http://in.movies.yahoo.com/

[Axapta-Knowledge-Village] check box on Grid

2009-02-02 Thread pradeep itnal

hi all
  

Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409



  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[Axapta-Knowledge-Village] check box on Grid

2009-02-02 Thread pradeep itnal

hi all
   

Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409



  Connect with friends all over the world. Get Yahoo! India Messenger at 
http://in.messenger.yahoo.com/?wm=n/

[Axapta-Knowledge-Village] Upgrade PPT

2008-12-23 Thread pradeep itnal
HI Guys
 Could you please send me PPT (Convergence_2008_AX20_Upgrading_AX.pptx) to 
upgrade AX 4.0 to Ax2009 , I have downloaded it from the site but unfortunately 
it has been corrupted. It was posted by MFP.( 
http://blogs.msdn.com/mfp/archive/2008/03/14/upgrading-to-microsoft-dynamics-ax-4-0-and-microsoft-dynamics-ax-2009.aspx)


Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409



  Be the first one to try the new Messenger 9 Beta! Go to 
http://in.messenger.yahoo.com/win/

Re: [Axapta-Knowledge-Village] Re: System Date Control

2008-11-19 Thread pradeep itnal
include a validation method for that 
for Ex: if user enters the date which is greater than the current date throw 
the error at modified method

like  Ex:
    if(this.Xdate  systemdateget())
  throw error  Xdate cannot be more than todays date;

    

 

Thanks  Regards  Pradeep S.Itnal
mob:+91-9886529409


--- On Wed, 19/11/08, kardo_ax [EMAIL PROTECTED] wrote:
From: kardo_ax [EMAIL PROTECTED]
Subject: [Axapta-Knowledge-Village] Re: System Date Control
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Wednesday, 19 November, 2008, 12:12 PM











I have the same requirement! ! 

I tried to lock the system date from Tools by giving no access, it 

didnt work. As well on the sysdatelookup form not to allow edit.



So I wonder how to do this ??



--- In Axapta-Knowledge- [EMAIL PROTECTED] ups.com, Yadhav Krishnan 

[EMAIL PROTECTED] . wrote:



 Dear all,

 

 I have requirement at the client, where they want the system date 

to be

 controlled, i.e., in the General Journals and other places, if the 

user

 enters a future date, it should not be allowed. (Entered Date 

should not be

 more than the system date)

 Is there any global set up in Ax 4.0 Sp1 for this procedure.?? ?

 otherwise pls do suggest some other procedure!!! !!

 

 -- 

 

 

 

 Thanks and regards

 Yadhava Krishnan T.G.

 Ph +91 94450 19912






  




 

















  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[Axapta-Knowledge-Village] WorkFlows in Ax5.0

2008-11-13 Thread pradeep itnal
Hi
    has anyone worked on workflows in 5.0 can you please share the XPos... 
or give steps to go thru. have followed the document provided by MS but i 
am getting stucked at many places..
thanks in advance. 


Thanks  Regards  Pradeep S.Itnal
mob:+91-9008475207



  Connect with friends all over the world. Get Yahoo! India Messenger at 
http://in.messenger.yahoo.com/?wm=n/

[Axapta-Knowledge-Village] Axapta getting restarted

2008-11-03 Thread pradeep itnal
hi all
   This is some strange problem we are encountering, whenever we are trying 
to create new labels for fileds in the table, AOS getting restart... whats the 
problem??? has anyone encountered this kind of problem is it because our 
label file is corrupted pls comment... any solution..for this 


Thanks  Regards  Pradeep S.Itnal
mob:+91-9008475207



  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[Axapta-Knowledge-Village] Print barcode vertically

2008-07-01 Thread pradeep itnal
Hi all
   In standard Ax , Barcodes taht have been generated they are printed  
Horozontally in the report, I need to print them  vertically in the report? Is 
it possible? if yes, plese give some idea? 
Thanks in Advance. 


Thanks  Regards
Pradeep S.Itnal



  Bollywood, fun, friendship, sports and more. You name it, we have it on 
http://in.promos.yahoo.com/groups/bestofyahoo/

Re: [Axapta-Knowledge-Village] Cheque printing

2008-06-03 Thread pradeep itnal
Gyan give me one day i will send you the proper xpo. today i am working on 
it it will be completing by tommorrow evening or so.are you printing it 
on a Bank cheque(preprinted stationary) ??? and are you using US cheque or UK 
cheque let me know ok regards to Mr: Tushhar.. mail to my official 
id pradeep.si 


Thanks amp; Regards
Pradeep S.Itnal
mob:+91-9731032452


--- On Tue, 3/6/08, Marvin Chu lt;[EMAIL PROTECTED]gt; wrote:

From: Marvin Chu lt;[EMAIL PROTECTED]gt;
Subject: Re: [Axapta-Knowledge-Village] Cheque printing
To: Axapta-Knowledge-Village@yahoogroups.com
Date: Tuesday, 3 June, 2008, 1:53 PM









Gyan,

What you can do here is to modify the cheque report. Using the AOT of MS 
Dynamics.


- Original Message 
From: gyanendra sahoo lt;gyan_sahooctc@ yahoo.comgt;
To: Axapta-Knowledge- [EMAIL PROTECTED] ups.com
Sent: Tuesday, June 3, 2008 12:57:05 PM
Subject: [Axapta-Knowledge- Village] Cheque printing








Hi All,
nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp; Any idea how do we configure cheque 
printing on preprintednbsp;stationery in Ax. We have some default cheque 
format which we can use but in that, can wenbsp;make any change of positioning 
of the data to be printed on the preprinted stationery. I check all the options 
from my side but unable to do that. Any idea on this.
nbsp;
Thanks in advance
nbsp;
Gyan

 














  Share files, take polls, and make new friends - all under one roof. Go to 
http://in.promos.yahoo.com/groups/

Re: [Axapta-Knowledge-Village] Number Sequance

2008-02-15 Thread pradeep itnal
USe NumberSeqReference class and have a look on subclasses of it like 
NumberSeqReference_bank.

have a look at NumberSequenceReference form
and in custtable form look for numberSeqFormHandler method debug it you will 
come to know hw it works ok.
main thing is you have to write some code in Load module method just see 
NumberSeqReference_bank class Load module method... and in numbersequence 
reference form specify the format of your numbersequence.

hope it will work out for you...
   
 

Thanks  Regards  Pradeep S.Itnal
mob:+91-9886529409



--- On Fri, 15/2/08, s_siet4u [EMAIL PROTECTED] wrote:

 From: s_siet4u [EMAIL PROTECTED]
 Subject: [Axapta-Knowledge-Village] Number Sequance
 To: Axapta-Knowledge-Village@yahoogroups.com
 Date: Friday, 15 February, 2008, 3:14 PM
 Hi All of You,
   can help me some one. i am having a small
 problem 
 Related to Number Sequance. i have a new Form i wants to
 use a 
 Continues Number Sequance Please help me.
 
 i whould like to craete a Number Sequence Like a Standerd
 Form Sales  
 Purchase Form.
 
 Regards:
 .


  Forgot the famous last words? Access your message archive online at 
http://in.messenger.yahoo.com/webmessengerpromo.php


[Axapta-Knowledge-Village] USe of super

2008-02-05 Thread pradeep itnal
Hi all
  i have some confusion with respect to USe of super() in different 
methods: can anyone help me out clearyfing this doubt?? i want to what 
difference it makes when i write my code before super() and what happens if i 
write my code after Super().
for example in fetch() method on  reports we override super(); and same in 
Lookup() method also pls help me out...

thanks in advance... 


  5, 50, 500, 5000 - Store N number of mails in your inbox. Go to 
http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html


[Axapta-Knowledge-Village] Deletind transactions from a specific company

2007-11-23 Thread pradeep itnal
Hi guys
I have some problem while deleting a transactions from a specific 
company.i want to retain that company and delete only transactions and data 
from all the tables,irrespective of dependencies between tableshow can this 
be done??? can anyone help me... by wriiting a JOB for this...or  pls provide 
me some hint. can we delete company data through sql server by issuing a 
query. pls let me noe
  
Thanks in advance 


Thanks  Regards
  Pradeep S.Itnal
mob:+91-9886529409


   
-
 Get the freedom to save as many mails as you wish. Click here to know how.

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



[Axapta-Knowledge-Village] Ax 4.0 Installation and Configuration

2007-10-31 Thread pradeep itnal
Hi all
   Can i get Ax 4.0 installation and configuration guide... if any one 
has please give me or else if there are any useful links then please 
provide me the same
   
   
  Thanks in advance...


Thanks  Regards
  Pradeep S.Itnal
mob:+91-9886529409


   
-
 Find a mall, hotel or ATM in any part of India. Click here.

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



Re: [Axapta-Knowledge-Village] Ax 4.0 Installation and Configuration

2007-10-31 Thread pradeep itnal
thanks venkat

venkat raghavan [EMAIL PROTECTED] wrote:  Hi,
Check out this link

http://msdn2.microsoft.com/en-us/library/aa834394.aspx

Regards,
Venkat

pradeep itnal [EMAIL PROTECTED] wrote:
Hi all
Can i get Ax 4.0 installation and configuration guide... if any one has please 
give me or else if there are any useful links then please provide me the 
same

Thanks in advance...

Thanks  Regards
Pradeep S.Itnal
mob:+91-9886529409

-
Find a mall, hotel or ATM in any part of India. Click here.

[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]



 


Thanks  Regards
  Pradeep S.Itnal
mob:+91-9886529409


   
-
 Forgot the famous last words? Access your message archive online. Click here.

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



[Axapta-Knowledge-Village] Display method on data source and table

2007-10-26 Thread pradeep itnal
Hi all
 What difference it makes if i write my Display method  on 
Datasource and  if i write it on Table methods please tell me.
   
   
  Thanks in advance.


Thanks  Regards
  Pradeep S.Itnal
mob:+91-9886529409


   
-
 Now you can chat without downloading messenger. Click here to know how.

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



[Axapta-Knowledge-Village] Ax 4.0 Technical certification

2007-10-17 Thread pradeep itnal
Hi All
  Has anyone attended the axapta basic (technical) certification 
exam??? recently??? if so please help me out what kind of questions are 
asked??? are there any sites from where i can get sample questions???
  please help me.
   
  Thanks in advance  



Regards
  Pradeep S.Itnal
mob:+91-9886288179


   
-
 5, 50, 500, 5000 - Store N number of mails in your inbox. Click here.

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



[Axapta-Knowledge-Village] Debugging Purchase Form and table

2007-07-16 Thread pradeep itnal
Hi Friends
 Myself Pradeep , i am trainee in DynamicsAX 4.0 , i want to 
debug the Purchtable form and table as well but i am not understanding where to 
start with ,mainly i am concentrating on Posting( Purchase order,Receipt 
List,packing slip,Invoice)..i want to know which tables are hit and from which 
tables data come, when i click Purchase order,Receipt List, packing 
slip,Invoice buttons of Posting.
   
  Please help me in this regard...from where should i start debugging...i have 
started with init method of Purchtable form but i am not getting clear Idea...
  thanks in advance...  


Regards
  Pradeep S.Itnal
mob:+91-9886288179


   
-
 5, 50, 500, 5000. Store N number of mails in your inbox. Click here.

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



[Axapta-Knowledge-Village] hi

2007-05-18 Thread pradeep itnal
hi friends
if anyone has the ebook of Inside Microsoft Dynamics AX 4.0
  then please do forward.
  i would be very greatful to you people.
  Please help me.


Regards
  Pradeep S.Itnal
mob:+91-9886288179


   
-
 Office firewalls, cyber cafes, college labs, don't allow you to download CHAT? 
Here's a solution! 

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



[Axapta-Knowledge-Village] hi all

2007-04-25 Thread pradeep itnal
Hi all
  Do u have any books on AXAPTA i meant ebooks that have some   
  Case studies.. then pleaze do send me it will be very helpful for me 
i am fresher and new to axapta.



Regards
  Pradeep S.Itnal
mob:+91-9886288179


   
-
 SHOUT IT OUT! Tell everyone, from anywhere, that you're online on Yahoo! 
Messenger 

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



Re: [Axapta-Knowledge-Village] Re: Inventory Closing - Error Message

2007-04-25 Thread pradeep itnal
Do u have any books on AXAPTA i meant ebooks that have some Case studies.. then 
pleaze do sent me it will be very help ful for me i am fresher and new 
to axapta.

Tracy-Ann [EMAIL PROTECTED] wrote:  Glad I could help.

- Original Message 
From: Anil Kumar Sinha [EMAIL PROTECTED]
To: Axapta-Knowledge-Village@yahoogroups.com
Sent: Tuesday, 24 April, 2007 2:46:20 PM
Subject: [Axapta-Knowledge-Village] Re: Inventory Closing - Error Message

Thanks for help Allisson.
I had open transaction for my item and that is why I was getting 
error.
Now it is fixed.

Regards
Anil Sinha

--- In Axapta-Knowledge- [EMAIL PROTECTED] ups.com, Tracy-Ann 
allisson_l@ ... wrote:

 Hi Anil,
 
 Usually the details for an inventory close problem can be fixed 
from the Invemtory Closing screen by entering an adjustment to the 
cost on the offending transacton line. 
 
 The problem occurrs because the production order referred to has 
probably not been closed or reported as finished because of a 
problem with the given item. perhaps the quantity used in the order 
has not been set due to an open Purchase Order incoice or other 
unposted pricing transaction.
 
 If the item was brought in using a PO check to see that it has 
been invoiced or pack slipped correctly so as to assign a final 
price. Otherwise check to see how it came into inventory and if 
possible ensure a valid price was assigned. Axapta will not settle 
the cost of inventory unless the receival transaction for that item 
is final. 
 
 If you are still not sure you can run an inventory recalculation 
for that item alone then retry the close.
 
 If you ignore the error and delete the offending transaction their 
may be repersussions on the Inventory Value of the item created by 
the Production Order and for all linked batches.
 
 Good Luck!
 
 
 - Original Message 
 From: Anil Kumar Sinha anilsinha1968@ ...
 To: Axapta-Knowledge- [EMAIL PROTECTED] ups.com
 Sent: Monday, 23 April, 2007 2:09:01 PM
 Subject: [Axapta-Knowledge- Village] Inventory Closing - Error 
Message
 
 Hi,
 
 Please help me out.
 
 Problem is:
 
 When I run Inventory Closing I get error message.
 My Costing method for item is Weighted Avg. date.
 
 Following is the error:
 
 Error message:
 Close inventory
 Item number: RD00050GVS
 Transaction: Production line 135819, lot ID 2754314
 Unit cost price 500.00 can be wrong as the transaction cannot be 
 fully settled
 
 My question is:
 Why is this error message? What does it mean?
 What impact it will have on inventory closing?
 Is there any way to fix this problem?
 
 Regards
 Anil Sinha
 
 
 
 
 
  _ _ _ _ _ _ 
 Yahoo! Mail is the world's favourite email. Don't settle for less, 
sign up for
 your free account today 
http://uk.rd. yahoo.com/ evt=44106/ *http://uk. docs.yahoo. com/mail/ winte
r07.html 
 
 [Non-text portions of this message have been removed]


__ 
Yahoo! Mail is the world's favourite email. Don't settle for less, sign up for
your free account today 
http://uk.rd.yahoo.com/evt=44106/*http://uk.docs.yahoo.com/mail/winter07.html 

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



 


Regards
  Pradeep S.Itnal
mob:+91-9886288179


   
-
 SHOUT IT OUT! Tell everyone, from anywhere, that you're online on Yahoo! 
Messenger 

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



[Axapta-Knowledge-Village] hi

2007-04-20 Thread pradeep itnal
hi
  i am new to axapta, i have some doubts please clerify
  i  have an EDT BookingID  which extends Num datatype,so 
whenever  i want to enter new record in form ,i want to get an  automatic  
generated value for  BookingID field in my form ,how to do it? i  am working 
on AXAPTA 4.0.
  
  thanks in advance.
   

Regards
  Pradeep S.Itnal
mob:+91-9886288179


   
-
 Check out what you're missing if you're not on Yahoo! Messenger 

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



[Axapta-Knowledge-Village] hi

2007-04-13 Thread pradeep itnal
hi friends
  i  am  new to axapta,have recently joined a firm in bangalore,i 
am a fresher, can anyone please tell me the scope of axapta???  and what about 
career growth.


Regards
  Pradeep S.Itnal
mob:+91-9886288179


   
-
 Check out what you're missing if you're not on Yahoo! Messenger 

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