[development-axapta] Help Required.

2010-10-25 Thread somanna gl
Hi All,

Just for development purpose I have installed AX 2009, SharePoint 2010 ,SQL 
2008 
express edition and visual studio 2008 professional pack  on windows 7 64 bit.
everything works fine till now.
I have applied the patch that is required for installation of AX EP 
on share-point 2010.

Now when I try to install Enterprise portal I am not able to do so.. there is 
nothing captured on the event viewer.

I have attached the error and log file..
Any input is of Great help.

Thanks in advance.

Best Regards
Somanna



  
  --

ÿþ 

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





Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/development-axapta/join
(Yahoo! ID required)

* To change settings via email:
development-axapta-dig...@yahoogroups.com 
development-axapta-fullfeatu...@yahoogroups.com

* To unsubscribe from this group, send an email to:
development-axapta-unsubscr...@yahoogroups.com

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



Re: [development-axapta] call a report from report

2010-10-25 Thread somanna gl


Hi Nuaman,

Please check HRMSkillGapEmployeeHTMLGenerate class and add a Html tag.

Best Regards
Somanna


From: M. Nuaman Sharif nuaman_sha...@yahoo.com
To: development-axapta@yahoogroups.com
Sent: Tue, October 19, 2010 4:38:25 PM
Subject: Re: [development-axapta] call a report from report

  
dear somanna gl!
Thanks for your help, please if you write some more about it
Thanks,

 


From: somanna gl glsom...@yahoo.com
To: development-axapta@yahoogroups.com
Sent: Tue, October 19, 2010 10:20:14 AM
Subject: Re: [development-axapta] call a report from report

  
Create a EDT and use report ref.. or Create a HTML report..


From: M. Nuaman Sharif nuaman_sha...@yahoo.com
To: development-axapta@yahoogroups.com
Sent: Sun, October 17, 2010 3:10:44 PM
Subject: [development-axapta] call a report from report

Hi all!
I want to add a button to the Ax report or link, so that i can call another 
report from report
Please help me.
Thanks
Regards

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

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


 


  

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



[development-axapta] On BOM Configuration and Product Builder

2010-09-16 Thread somanna gl
Hi All,

Can you please tell me the difference between BOM configuration and Product 
builder.
And when to use them..


Any tips will be of Gr8 help.

Kindest Regards
Somanna


  



[development-axapta] Re: [Axapta-Knowledge-Village] Event for form focus

2010-07-20 Thread somanna gl
Hi Srinath,

Kishore has worked on a similar case If you can contact him He will help you I 
am sure.

Bye
Somanna




From: srinath s s_shreen...@yahoo.co.in
To: development-axapta@yahoogroups.com; axapta-knowledge-vill...@yahoogroups.com
Cc: Srinath S s_shreen...@yahoo.co.in
Sent: Thu, July 15, 2010 3:50:33 PM
Subject: [Axapta-Knowledge-Village] Event for form focus

  
Hi Champs, 
In AX 2009, assume that multiple forms are opened. When the focus is moved from 
one form to another form then how to identify that particular form got focused. 
In which event of the form I can get the triggering happens. 

I had checked with Forms\FormName\ Methods\activate (). But this method is 
called more than once when the form is opened and also if u gets the focus of 
the form then also this method is triggered more than once. 

Example: Assume that customer and sales order forms are opened. Now the focus 
in 
the sales order form and if we go to customer form then in which event of the 
customer form I will come to know that this form(customer) got focus.   

Is any other event to identify the focus of the form please let me know. 
Appreciate a response. 
Regards, 
Srinath. S 

 


  

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



Re: [development-axapta] Creating/Updating help files in AX 4.0

2010-07-16 Thread somanna gl
Hi,

create a node in AOT help  a files.

then create a help file and store the client bin directory.

Please let me know if U have any issue

kindest Regards
Somanna



To: development-axapta@yahoogroups.com
Sent: Thu, July 8, 2010 8:45:39 PM
Subject: [development-axapta] Creating/Updating help files in AX 4.0

  
Hello,

How to create/update help files in AX 4.0?

Any idea??

Thanks,
Sam


 


  

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



Re: [development-axapta] How to know the user has access to purchase order using code

2010-07-16 Thread somanna gl
This may help U.
if (hasSecurityKeyAccess(securitykeyNum(mySecurityKey),
AccessType::View))
{
//code requiring authorization goes here...
}
if (hasMenuItemAccess(menuItemDisplayStr(myMenuItem),
MenuItemType::Display)))
{
//code requiring authorization goes here...
}
DictTable dictTable = new DictTable(tablenum(myTable));
if (dictTable.rights = AccessType::Insert))
{
//code requiring authorization goes here...
}
if
(isConfigurationkeyEnabled(configurationkeyNum(myConfigKey)
)
{
//code requiring authorization goes here...
}






From: srinath s s_shreen...@yahoo.co.in
To: development-axapta@yahoogroups.com
Sent: Fri, July 9, 2010 3:15:53 PM
Subject: [development-axapta] How to know the user has access to purchase order 
using code

  


Hi champs,
In order to restrict the user to use the purchase order I am giving no access 
permission to the user that belongs to the user group say “xyz”. Will select 
the 
user group xyz in the user group form and will go to the permission tab and 
select the security key in the drop down of the View field. In the tree 
structure AP - Tables (full control)-Purchase orders and made it as No 
access. 

After the above setting I re-launched the AX for that particular user, it’s not 
allowing to open the purchase order form which is expected behaviour.
Now through code how can I check the user has access to purchase order. Using 
hassecuritykeyaccess method I can pass the securitykey but which security key 
to 
pass is my confusion. Because the security key attached to the purchtable 
 menuitem is “VendMisc”(Miscellaneous node in permission form tree structure AP 
- Miscellaneous) and security key attached to the purchtable table is 
“VendTables” (Tables node in permission form tree structure AP-Tables).
Could anybody help me on this.
Regards,
Srinath. S

 
 
 

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


 


  

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



Re: [development-axapta] How to show field hidden by user in X++

2009-02-05 Thread somanna gl

  strProperty;
TreeNodeTreeNode;
str   Name;
;

Name = CustTable;
TreeNode  = TreeNode::findNode(Data Dictionary\\Tables\\ /*+ Table*/);
if (TreeNode)
{
   ttsbegin;
   Property   = TreeNode.AOTgetProperties();
   Property   = SetProperty(Property, visible, Yes);
   TreeNode.AOTsetProperties(Property);
   TreeNode.AOTcompile();
   TreeNode.AOTsave();
}




From: christian.myrvold christian.a.myrv...@gmail.com
To: development-axapta@yahoogroups.com
Sent: Monday, February 2, 2009 6:45:33 PM
Subject: [development-axapta] How to show field hidden by user in X++


Hey everyone,

I've searched both the group postings and google for this, and haven't
found anything yet. I need to either:

1. Show a field in a form immediately after a user hides it (so it
looks like the hide functionality doesn't work), or
2. Disable the hide functionality when a user right clicks on the field.

I would say the the first is preferrable, if it's at all possible.

Sincerely,
Chris

 


  



Re: [development-axapta] Regarding Closing all window's in Axapta4.o

2008-12-18 Thread somanna gl
u can use infolog.shutDown(true);
Enjoy
somanna




From: Trinadh Sura trin...@b2bsoftech.com
To: axapta-knowledge-vill...@yahoogroups.com
Sent: Monday, December 15, 2008 4:43:27 PM
Subject: [development-axapta] Regarding Closing all window's in Axapta4.o



Dear all,
Can any Suggest how to close all  windows in Axapta4.0 through 
Coding?Regards,
Trinadh 

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

 


  

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



Re: [development-axapta] Calculation error in AX3.0SP3

2008-11-19 Thread somanna gl
Is ans is 2.

i found that  a1 = .999
   a2 = .99



From: Stefan [EMAIL PROTECTED]
To: development-axapta@yahoogroups.com
Sent: Tuesday, November 18, 2008 10:42:52 PM
Subject: [development-axapta] Calculation error in AX3.0SP3


Hi,

I have the following code fragment:

real a1,a2,a3;

a1=8.0/24.0* 3.0;
a2=8.0/24.0* 3.0;

a3=a1+a2;

print a3;


In AX3.0SP3 I get 1.0 as a result which is definitely wrong. Is this a
known error? What is the extent of it - under what circumstances does
this happen?

Stefan




  

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



Re: [development-axapta] Lookup customization

2008-11-17 Thread somanna gl
check for contactpersonlookup form.

bye
somanna





From: M. Nuaman Sharif [EMAIL PROTECTED]
To: development-axapta@yahoogroups.com
Sent: Sunday, November 16, 2008 1:11:35 PM
Subject: [development-axapta] Lookup customization


hi all
please tell me how to customize lookup, list should be populate with different 
criteria at runtime.
Thanks 
Regards
Nuaman




  

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



[development-axapta] build the final xpo file using a vss

2008-10-08 Thread somanna gl
hello

Please help me in finding a way to build the final xpo file using a vss.

with regards
somanna


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

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



[development-axapta] with ref to inventory Help required

2008-08-27 Thread somanna gl
hello
   can u please let me know how can i create inventory movement dynamically..

kindly do reply

with regards
somanna
 


  Unlimited freedom, unlimited storage. Get it now, on 
http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html/

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



[development-axapta] With ref to AIF

2008-06-24 Thread somanna gl
Hello
I have a strange problem. after configuration of AIF for webservice then when i 
got to general ledger- setup- exchange rate when i click on send 
electronically i am not able to get the Endpoint which i had configured for 
exchange rate..

please help me

with regards
somanna

   
-
 From Chandigarh to Chennai - find friends all over India.  Click here.

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



[development-axapta] Primary Index - how can i create

2008-01-24 Thread somanna gl
hi

  How to create a primary index in the table.. 
So that when I run DictTable.primaryKeyField(); I need to get the new 
primary index,…..
Bye  Somanna
  
   
-
 Explore your hobbies and interests. Click here to begin.

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



[development-axapta] Help Required its really urgent

2007-09-24 Thread somanna gl
hi all
 Please help me how can i create a web form and how can i vew in enterprise 
portals

thank you
somanna

   
-
 Save all your chat conversations. Find them online.

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