find command examples UNIX / Linux Commands
find command examples
Find files using file-name ( case in-sensitve find)
# find -iname "MyCProgram.c"
Execute commands on files found by the find command
$ find -iname "MyCProgram.c" -exec md5sum {} \;
Find all empty files in home directory
# find ~ -empty
grep command examples UNIX / Linux Commands
grep command examples
Search for a given string in a file (case in-sensitive search).
$ grep -i "the" demo_file
Print the matched line, along with the 3 lines after it.
$ grep -A 3 -i "example" demo_text
Search for a given string in all files recursively
$ grep -r "ramesh" *
tar command examples using UNIX / Linux Commands
tar command examples
Create a new tar archive.
$ tar cvf archive_name.tar dirname/
Extract from an existing tar archive.
$ tar xvf archive_name.tar
View an existing tar archive.
$ tar tvf archive_name.tar
History Of SAP Software
History Of SAP Software From day one, SAP was created as a global software product.The software was engineered on a multilingual and multinational platform.
Only a few years after its core product hit the marketplace the SAP become Germany's top software vendor.
SAP AG also offers comprehensive industry solutions besides regular SAP software (ECC products).
Examples are SAP Aerospace & Defense, SAP Automotive, SAP Banking, SAP Chemicals, SAP Consumer Products, SAP Engineering & Construction, SAP Healthcare, SAP High Tech, SAP Insurance, SAP Media, SAP Oil & Gas, SAP Pharmaceuticals, SAP Public Sector, SAP Retail, SAP Service Provider, SAP Telecommunications, SAP Utilities.
WebAS is very flexible.
Due to this flexibility an orgranization can initially choose to deploy SAP system very similar to how they do business today, and then gradually evolve business model over time.
Client/server is of a few architectures available.
In a client/server environment, a client machine requests information, via network, from the supplying machine, known as the server.
A client machine could be an individual PC, workstation, mobile computing device, or even another computer system.
Img1
The three-tiered architecture divides the architecture into three layers:
· The user interface layer· The business logic layer ("application" layer)· The database layer
Img2
The four-tiered system enables simple browser-based access.
This laywer helps in reducing the expense associated with installing, patching, and upgrading the SAP GUI user interface across perhaps hundreds or thousands of desktops.
Also it helps to integrate web services into the overall architecture.
Designing an adaptable enterprise computing solution is now possible using ESA.
Using ESA, SAP R/3 and other legacy SAP solutions can be plugged in as application services.
Learn ERP & CRM
ERP stands for Enteprise
Resource Planning. Enteprise Resource Planning software is often referred to as
the backbone for the entire business. Using medical analogy an ERP system has
brains (process logic), muscle (business transactions), and heart (business
policy). ERP system communicates (as a nervous system) across business
functions. ERP systems grow and evolve over time. If left unattended, it can
get soft and flabby. The freshly implemented system is not very stable, like
your legacy system. Users might not like your newly born ERP system until it
matures.
Attributes of ERP
Systems
Leading ERP
systems supports industry standards and best practices.
The Oracle Applications
and SAP supports recommendations of the American Production and Inventory
Control Society (APICS) and Generally Accepted Accounting Practices (GAAP).
The ERP system is
composed of many modules called applications.
ERP Advantages
ERP advantages drive implementation projects.
Companies implement ERP systems for various reasons.
The reasons could be tangible, intangible, or strategic.
Due to these intangible and strategic benefits most companies do not even try to calculate a total return on investment from an ERP system.
ERP advantages drive implementation projects.
Companies implement ERP systems for various reasons.
The reasons could be tangible, intangible, or strategic.
Due to these intangible and strategic benefits most companies do not even try to calculate a total return on investment from an ERP system.
ERP Disadvantages
ERP disadvantages must be overcome.
ERP systems comes with their share of headaches.
They are usually difficult to implement.
Sometimes they are difficult to operate.
In the past few years, odds of success have improved.
ERP disadvantages must be overcome.
ERP systems comes with their share of headaches.
They are usually difficult to implement.
Sometimes they are difficult to operate.
In the past few years, odds of success have improved.
Application Service
Providers
Recently the Application Service Providers (ASP) business model is becoming popular as a way to implement and operate your ERP applications.
An application service provider (ASP) is a company that offers individuals or enterprises access over the Internet to applications and related services that would otherwise have to be located in their own personal or enterprise computers.
Recently the Application Service Providers (ASP) business model is becoming popular as a way to implement and operate your ERP applications.
An application service provider (ASP) is a company that offers individuals or enterprises access over the Internet to applications and related services that would otherwise have to be located in their own personal or enterprise computers.
ERP Vendors
Market share 2005
according to Gartner Dataquest
# Vendor Revenue
(million $) Market share(%)
1 SAP 4726 28.7
2 Oracle
Applications 1674 10.2
3 The
Sage Group 1221 7.4
4 Microsoft
Dynamics 616 3.7
5 SSA
Global Technologies 464 2.8
Microsoft Dynamics CRM
3.0
Each businesses is
different.
Unique set of tools are used by each to manage their customers.
Companies must make sure that their customer management software can easily adjust to their needs.
Unique set of tools are used by each to manage their customers.
Companies must make sure that their customer management software can easily adjust to their needs.
Need For CRM
Few examples of bad
customer service experiences are:
· You called a customer service phone number and
were transferred to five different people. Every single person asked you
the same questions, so you had to keep repeating the same answers over and over
again.
· A salesperson pulled together a proposal for you
but forgot to include your preferred-customer pricing in the quote.
· A credit card company mailed you an application
for a new account, even though you've had an account with that company for 10
years.
CRM Challenges
Some of the factors that
make a CRM strategy difficult to implement include:
·
Multiple customer
management systems
·
Remote workers
·
Rapidly changing
business processes
·
Multi-channel customer
interactions
·
Difficult and rigid
systems
CRM Benefits
Following are the
examples benefits that a company would get from successful implementation of
CRM software.
· CRM could track customer interests and purchase
history over time. It proactively generate new marketing initiatives for
customers based on their unique histories.
· CRM could log a history of a customer's service
requests. A service technician could easily view all of those requests
when the customer called with a new issue. Reviewing a customer's service
history might help the technician resolve a customer's new issue much more
quickly.
· A manager could view all of the interactions
with a customer across various functional areas such as sales, marketing, and
customer service. People typically refer to this cross-functional history as a
360-degree view of the customer.
· Marketing managers could analyze and report on
the effectiveness of their marketing lists and campaigns to determine how they
should re-allocate future marketing investments.
· An analyst could use business intelligence tools to segment
customers and prospects to identify trends and create predictive models for
sales and customer service planning.
Java Intoductions
Java is widely used robust technology. let's start learning java from basic like what is java, core java where it is used, what type of applications are created in java and why we use java.
first of let's see what is java..?
Java is programming language and a platform. java is high level, robust secured and object oriented programming language.
Platform any hardware or software environment in which a program runs is known as platform. since has its own environment(JRE) and API. It is called platform.
Now onward let's see one example to know better idea will came.
Class Simple{
Public static void main(String args[]) {
System.out.println("Hello Ravi");
}
}
Out put is here:
Compile by : javac Simple.java
Run by : java Simple
Hello Ravi
Where is is used ?
Accordingly to sun, 3 billion devices run java. there are many devices where java is currently used. some of them are as follows:
There are mainly four type applications that can be crated using java programming :
1: Standalone Applications
It's also known as desktop application or window-based applications. an application that we need to install every machine such as media player antivirus etc. AWT and Swing are used in java creating standalone applications
2:Web Applications
An application that runs on the server side and creates dynamic page is called web applicaion. currently servlet , jsp struts, jsf etc. technologies are used creating web application in java
3:Enterprise Application
An application that is distributed in nature, such as banking applications etc. IT has the advantage of high level security load balancing and clustering. in java EJB is used for creating enterprise applications.
4:Mobile Application
An application that is created for mobile devices. currently android and java ME are used for creating mobile applications.
History of Java
Java is interesting to know the history if java starts from green team. java team
first of let's see what is java..?
Java is programming language and a platform. java is high level, robust secured and object oriented programming language.
Platform any hardware or software environment in which a program runs is known as platform. since has its own environment(JRE) and API. It is called platform.
Now onward let's see one example to know better idea will came.
Class Simple{
Public static void main(String args[]) {
System.out.println("Hello Ravi");
}
}
Out put is here:
Compile by : javac Simple.java
Run by : java Simple
Hello Ravi
Where is is used ?
Accordingly to sun, 3 billion devices run java. there are many devices where java is currently used. some of them are as follows:
- Desktop Applications such as acrobat reader, media player, antivirus and many popular software.
- Web applications such as irctc.co.in etc
- Enterprise Applications such as banking applications
- Mobile
- Embedded System
- Smart Card
- Robotics
- Game etc
There are mainly four type applications that can be crated using java programming :
1: Standalone Applications
It's also known as desktop application or window-based applications. an application that we need to install every machine such as media player antivirus etc. AWT and Swing are used in java creating standalone applications
2:Web Applications
An application that runs on the server side and creates dynamic page is called web applicaion. currently servlet , jsp struts, jsf etc. technologies are used creating web application in java
3:Enterprise Application
An application that is distributed in nature, such as banking applications etc. IT has the advantage of high level security load balancing and clustering. in java EJB is used for creating enterprise applications.
4:Mobile Application
An application that is created for mobile devices. currently android and java ME are used for creating mobile applications.
History of Java
Java is interesting to know the history if java starts from green team. java team
Subscribe to:
Posts
(
Atom
)
No comments :
Post a Comment