Skip to main content

Posts

How to define Common Table in MSD Axapta?

Common Table in Axapta The system table Common is the base for all tables. The table contains no data, and the table can be compared with a temporary application table. Common is used like the base type anytype. You can set any table equal to the table Common. This is useful if you need to transfer a table as a parameter and not knowing the exact table before execution time. static void DataDic_Common(Args _args) { Common common; CustTable custTable; ; common = custTable; if (common.tableId == tablenum(custTable)) { while select common { info(common.(fieldnum(custTable, name))); } } } The example above is initializing Common with CustTable. A check is made to assure that Common is now equal to CustTable. All records from CustTable are looped, and the customer name is printed in the InfoLog. Notice, the system function fieldnum() is used to get the field name printed. If you do not know the fieldname at runtime, you can enter the field id

List of Dynamics Axapta ERP Top companies All over world

Following is a List of Dynamics Axapta ERP Top companies in the world Godrej Infotech MSBS Business solution Logica Sverige AB Avande Asea Pvt ltd BDO Dunboody LLP GMCS verix ABsys cyborge SA COSMO Consult Yokogava solution corporation 2e2 UK ltd Sonoma partners veri park Sable system pty ltd Second foundation consulting inc Demand mangement Dynamic software Tectura Sonata Columbus IT Other companies in India Dev Information technology India Pvt Ltd,Ahmedabad Synoverge, Ahmedabad  Tieto pune SHRISHAIL,Noida  LnT Infotech ,Mumbai Blue Star InfoTech ,Mumbai CGI,Bangalore PRoV International,Chennai  Hitachi Solutions ,Pune IL&FS Technologies ,Gurgaon Indusa,Ahmedabad Fujitsu,Gurgaon MPG,Gurgaon Ali Technologies ,Delhi  S3 infotech,Noida Persistent,Pune NDS Infotech ,Mumbai Capgemini,Mumbai KPIT,Pune TCS,Bangalore HCL,Noida GE,Gurgaon Infosys,Bangalore CorporateServe,Gurgaon Zylo

How to add Hyperlink in share point List with WSS 3.0

How to add Hyperlink in sharepoint List 1. You have to create custom field types in WSS 3.0 2. For creating custom field types, you need to have an '.ascx' which holds the sharepoint rendering template along with the dotnet web control (which is your hyper link) 3. You need to deploy this '.ascx' using custom field types by making use of WSS 3.0 feature framework 4. Finally you have to create a field of type 'custom field type' created.

Create new user in the share point for MSD axapta EP

Go to your Domain Controller Start --> Run --> type dsa.msc. It opens active directory users and groups.right click on Users and go to new from there select user and provide user details.that's it you created users in Active directory. Assign User to EP Site

Interview questions and answers on share point

1.Master page deployment. How? 2. Can Master page has .cs file and if yes where is it placed? 3. Can you deploy a web part in a web part? 4. Why do you use InfoPath forms over asp.net pages? 5. What are content types? why we need site columns? 6. Difference Site Definition and Site Template. 7. How can you create Master page using Object model 8. In ASP.Net- difference between Website and Web Application 9. Is String builder Value type or Reference type 10. How do you configure search 11. Why we need SSP 12. Difference between SSP and Central Admin 13. What are new features in Share point 14. Different authentications in share point 15. Scenario and write code in object model- In a web part input name,phone and address fields and two lists on different servers should be updated with the entered data. 16. Why we need features 17. Difference between web part manual deployment and using features 18. How do you develop connectible web parts 19. How many web part managers

Solution for Error unable to load usercontrols and .ascx file not found in MSDAX

1. Create a Directory called “usercontrols” in the root of your share point web site on the file system E.g. C:\Inetpub\wwwroot\wss\VirtualDirectories\moss.litwareinc.com80\UserControls 2. Open IIS manager and in the root of your Share Point site create a Virtual Directory called “_controls” and point it to that newly created directory. 3. Put your user control in that newly created directory on the file system 4. Open the web.config file and add the following: 5. In your ASPX page add the following: <%@ Register src="~/_controls/SomeControl.ascx" mce_src="~/_controls/SomeControl.ascx" TagName="somecontrol" TagPrefix="uc2" %"> 6. Run your ASPX page and your control should render correctly.