How can ERP improve a company’s business performance?

April 3rd, 2009 Narendra Comments off

ERPs best hope for demonstrating value is as a sort of battering ram for improving the way your company takes a customer order and processes that into an invoice and revenue otherwise known as the order fulfillment process. That is why ERP is often referred to as back-office software. It doesn’t handle the up-front selling process (although most ERP vendors have recently developed CRM software to do this); rather, ERP takes a customer order and provides a software road map for automating the different steps along the path to fulfilling the order. When a customer service representative enters a customer order into an ERP system, he has all the information necessary to complete the order ( the customers credit rating and order history from the finance module, the company’s inventory levels from the warehouse module and the shipping docks trucking schedule from the logistics module, for example).

People in these different departments all see the same information and can update it. When one department finishes with the order it is automatically routed via the ERP system to the next department. To find out where the order is at any point, you need only log in to the ERP system to track it down. With luck, the order process moves like a bolt of lightning through the organization, and customers get their orders faster and with fewer errors than before. ERP can apply that same magic to the other major business processes, such as employee benefits or financial reporting.

That, at least, is the dream of ERP. The reality is not so rosy.

Lets go back to those inboxes for a minute. That process may not have been efficient, but it was simple. Finance did its job, the warehouse did its job, and if anything went wrong outside of the departments walls, it was somebody else problem. Not anymore. With ERP, the customer service representatives are no longer just typists entering someone’s name into a computer and hitting the return key. The ERP screen makes them businesspeople. It flickers with the customers credit rating from the finance department and the product inventory levels from the warehouse. Did the customer pay for the last order yet? Will we be able to ship the new order on time? These are decisions that customer service representatives have never had to make before, and the answers affect the customer and every other department in the company. But its not just the customer service representatives who have to wake up. People in the warehouse who used to keep inventory in their heads or on scraps of paper now need to put that information online. If they don’t, customer service reps screens will show low inventory levels and reps will tell customers that the requested item is not in stock. Accountability, responsibility and communication have never been tested like this before.

People don’t like to change, and ERP asks them to change how they do their jobs. That is why the value of ERP is so hard to pin down. The software is less important than the changes companies make in the ways they do business. If you use ERP to improve the ways your people take orders and manufacture, ship and bill for goods, you will see value from the software. If you simply install the software without trying to improve the ways people do their jobs, you may not see any value at all indeed, the new software could slow you down by simply replacing the old software that everyone knew with new software that no one does.

Source: http://www.cio.com/article/40323/ERP_definition_and_solutions#erp_improve

Display PDF File in SharePoint Page

March 9th, 2009 meher Comments off

By using “Content Editor Web part” we can display PDF File in
SharePoint site.

  1. Add a “Content Editor Web part” to your SharePoint page.
  2. Click on the “Open the Tool Pane”, click on “Source Editor” to place the HTML source.
  3. Place the following piece of code in to the Source Editor and click ok
    <embed height=”500px” width=”500px”
    src=”http://siteurl/test.pdf” type=”application/pdf”>
Categories: SharePoint Tags:

Migrate a SharePoint site to another farm using a SQL Server backup

February 24th, 2009 meher Comments off

Copying one SharePoint 2007 web application with all site collections to another farm.
Here are the steps described under “Migrating using SQL Server Tools”
to move databases across farms.

Steps to move Site Collection from one farm to another farm:

  • Create a SQL backup of the content database of the web application you want to copy/migrate
  • On the destination server, restore the backup in a new database.
  • Create a new web application on the destination server (use the
    default database name proposed by SharePoint)
  • Detach the database
    • Go to Application Management – Content databases
    • Select the correct web application
    • Set the database status to offline
    • Backuprestore1
    • Click Add a content database
    • Enter the correct details about your restored database and click OK to finish

stsadm -o addcontentdb -url [http://Youroldserver] -databasename
[WSS_Content] -databaseserver [SQL Server Instance]

You will get   “Operation completed successfully” message when migration is done

Categories: Microsoft Technologies Tags:

Differences between WSS and MOSS

February 5th, 2009 meher Comments off

While WSS and MOSS are both pieces of software built by the Microsoft Office team.

Windows SharePoint Services 3.0

  • WSS is included as a part of the Windows Server 2003 operating system
  • WSS as the underlying platform
  • WSS does not have its own licensing model. Instead, the use of WSS is controlled through Windows Server 2003 licenses.
  • It has the core document management and collaboration platform features With WSS, the average information user can build web-based business applications without numerous technical resources.

MS Office SharePoint Server 2007

  • MOSS is a separate product with its own SKU
  • MOSS is a value-added set of components and services that has been built on top of this WSS.
  • MOSS has its own licensing model that includes server-side licenses and client access licenses (CALs). The MOSS licensing model is further broken out into a Standard Edition and an Enterprise Edition.
  • MOSS 2007, is the nexus of the Microsoft Office system It delivers the robust, enterprise-targeted features of SharePoint Products and Technologies, which accelerate business processes across the intranet, extranet, and Internet.
Categories: SharePoint Tags:

Ghosting and Unghosting

February 4th, 2009 meher Comments off

Ghosting means process of requesting  an uncustomized page instance by using a page template loaded into memory from the file system of the front-end Web server. These Ghosted pages are pulled from the cache at runtime and therefore it will increase the scalability from the system.

All uncustomized pages are reused across all the sites and there is no unnecessary data storage or retrieval.

Ghosting eliminates the need to transfer the contents of a page definition file from the SQL Server computer with the content database to the front-end Web server computer

For example, the default home page is a ghosted page. Any web part pages created via New Web Part Page user interface also ghosted.

Unghosting means that the site has been customized. When you customize a site in SharePoint Designer, or you add custom fields to a Document Library, or create sites using that template; then the changes that you made are stored in the database as a difference and that is referred to as Unghosted.

A request for a Customized (Un-Ghosted) page returns a response which is a combination of data from both the file system and the database.

All Unghosted sites are based on a Site Definition.

Categories: Others, SharePoint Tags: