Pages

Thursday 30 January 2014

BW and In-Memory Storage

T
oday I’m going to talk to you a bit about how data is stored in BW and why proper planning for storage is important.  Let’s say for example, you have a large project coming down the pipeline and are unsure of how this new data being introduced into your production landscape will affect the BW environment.   You probably have a mature SAP installation at your company, and chances are you are using a Business Warehouse Accelerator (BWA) appliance or HANA (don’t forget to factor these in).  It’s essential to plan a strategy with the database administrators as they are directly impacted by each and every new project.  New projects mean more data being added, which means more space required within the database.
Contact us for more details and Session Schedules at:
  IND: +91- 9948030675, 
USA: +1-319-804-4998
Email: info@sryitsolutions.com, 
The 10% rule – BWA Sizing:
An easy way to ballpark how much memory is required to index BW data onto your BWA is to follow the 10% rule.  That means for every Gigabyte of BW data, around 100 MB will be needed for BWA storage.  Thankfully, the TREX engine that BWA runs is capable of efficiently compressing and storing of data in memory at 1/10th the size of what BW stores it at.  This allows you to fit more data in BWA without having to worry too much about space constraints.
Database storage vs in-memory storage
Data can be stored cheaply on a disk based database versus an in-memory database.  Each type has their pros and cons.  Disk based storage is cheap, but the catch is slow performance.  In-Memory is fast, but extremely expensive.  That’s why it’s important for companies to properly plan for and balance out their data distribution to only index into memory the best candidates.
BWA and the 50% rule
BWA is made up of a series of blades.  Let’s use HP’s 36GB blades for examples sake.  If your appliance has 14 blades, you would have 504 GB of space for data storage, right? Wrong.  BWA has its own 50% rule.
Per SAP’s best practices, only half of each blade can be filled with data meaning only 18GB of each 36GB blade is usable for indexing.  18GB*14 blades = 252GB.  The other 18GB is used for processing and computing.  As you creep over the 50% index storage number, expect to see performance degrading exponentially.
Our BWA is full, now what?
RAM within BWA is very, very expensive.  Unless everything is being used equally within the BWA, I would recommend performing an As-Is assessment of all indexed InfoCubes and remove the least utilized InfoCubes to free up space for more popular cubes.  RSDDBIASTATUSE is a handy BW table that stores the execution history of queries against the BWA by cube.  Take a look at query execution history to better identify the slackers.  You will be surprised by how much space you could easily regain by removing a few hogs.
How much space is a cube taking up on BWA memory?
Transaction TREXADMIN allows you to view exactly how much space a table is taking up on BWA.  Focus solely on the F table which consists of both the E and F tables from the BW side.  There is no E table on BWA, just F.
Firstly, we type in an InfoCube we know is indexed in BWA.  In this example I’m using cube 0PCA_C01.  Navigate to the Index Admin tab and type *0PCA_C01* in order to pull all relevant tables for this cube.  Now focus on the F table and the Memory Size column.  This cube is taking up 211,292 KB or 0.2 GB of BWA’s total memory.
BWA Size of Data..
How much space is a cube taking on BW disk?
Transaction DB02 allows you to view size at a database level.  Go into BW Analysis and access both the E and F cube object areas.  Below you can see each row from each area.  If you combine both of these, you will have around 3.5GB of data.
DB02 Database Fact Table Size..
As you can see the compression ratio can change drastically from cube to cube.  3.5GB of data on BW for this cube only takes up 0.2 GB on BWA!  Feel free to leave comments below and share with your friends and colleagues.
BW and In-Memory Storage by SRYIT SOLUTIONS

SAP SD ONLINE TRAINING UPDATES

Fundamental Capabilities as well as Master Data with SD Finalizing (SD-BF):

Master Data with Sales and Distribution Goal
• Master Data with Sales and Distribution Goal


Sales developing will be based upon this particular fundamental properties:
Each and every business is organized in the particular approach. So that you can assist this SAP Program your business system should be listed from the strategy. This is accomplished by making use of different corporate properties.

SAP SD ONLINE TRAINING UPDATES


With sales and also distribution, things are marketed or even delivered to business enterprise partners or even companies are carried out to them. Details regarding the services and products along with the business enterprise partners could be the reason for sales producing. The sale running with the SAP R/3 Program mandates that the master data have been saved in the program.

Along with sales and distribution, some other divisions on the business for example sales or even products organization accessibility the master data. The product master information is located in a particular framework in order to permit accessibility from all of these various views.
The production of business enterprise deals in sales and distribution will be based upon the master data. From the SAP R/3 Method, transactions are usually kept in the sort of docs. These types of sales and distribution docs are usually organized based on specific requirements therefore this all required information from the record is saved in a step-by-step way.

 Basic Features in SDGoal

The most crucial fundamental capabilities are:

• Pricing
• Accessibility Check
• Credit Management
• Material Determination
• Output Determination
• Text Processing
• Tax Determination
• Account Determination

Power of Python Integrated with SAP HANA


Power of Python Integrated with SAP HANA:

Python is a high-level, object-oriented programming language for the web.
Python is easy to write, easy to read and easy to understand.
SAP HANA works quite well with Python.
This article gives a basic idea of how to use Python on SAP HANA.
Contact us for more details and Session Schedules at:
  IND: +91- 9948030675, 
USA: +1-319-804-4998
Email: info@sryitsolutions.com, 

Power of Python Integrated with SAP HANA


Note: Even if you are not familiar with Python, do not worry. We are all and cover everything in detail for you.

Python API:
There are several APIs available for free Python for SAP HANA. In this article, we are one of the easiest, use the DB-API.
dbapi API is Python DB-API 2.0.

Configure Python API in SAP HANA:

1 Navigate to the location where you installed the client HANA and copy these three files.
__init__.py dbapi.py, resultrow.py

Configure Python API in SAP HANA
By default it is installed in C: Program Files folder Filessaphdbclienthdbcli.
2 Navigate to the folder under the folder HDBClient Python and copy all three files in the lib.
By default, the path C: Program FilessaphdbclientPythonLib
3 Copy pyhdbcli.pdb, pyhdbcli.pyd files from hdbclient.
By default, this location is "Program Filessaphdbclient C" is
4 On the same folder pythonlib and add these 2 files.
This is all.Configuration done! ...
Connect to SAP HANA and Run SQL Queries using Python:


1. Write below code in a notepad and save with .py extension. 



import dbapi
## Replace SCHEMA1 with your schema

# assume HANA host id is abcd1234 and instance no is 00. user id is USER1 and password is Password1
conn = dbapi.connect('abcd1234', 30015, 'USER1', 'Password1')

#Check if database connection was successful or not
print conn.isconnected()

# create a table
cursor = conn.cursor()
stmnt = 'Create column table SCHEMA1.table1 (ID integer, name varchar(10))'
cursor.execute(stmnt)
print 'table created'

# insert some data into table
stmnt = 'insert into SCHEMA1.table1 values (?, ?)'
cursor.execute(stmnt, (1,'A'))
cursor.execute(stmnt, (2,'B'))
print '2 records inserted into table'

# fetch table data
stmnt = 'select * from SCHEMA1.table1'
cursor.execute(stmnt)
result = cursor.fetchall()
print result

2. Provide system data HANA and recording information of the file.
3. Make sure that you change the name of the schema with your schema.
4. Now save the file in the folder hdbclientPython.
The default location of Python folder "C: Program FilessaphdbclientPython"
5. Open ask. Switch to the Python path, and run the command

SAP HANA ONLINE TRAINING

INTRODUCTION:

SAP HANA Enterprise 1.0 is a unit of memory calculation that combines software with SAP database server preview, storage and networking equipment from one of the many partners of SAP material. It is designed to support the analytical and transactional processing in real time.

SAP HANA ONLINE TRAINING

Technical components in HANA:

The heart of SAP HANA Enterprise 1.0 is the SAP In-Memory Database 1.0, a data store that combines massively parallel processing based online based on columns and storage techniques based objects. Other components of SAP HANA Enterprise 1.0 include:

SAP In-Memory Computing Studio
SAP Host Agent 7.2
SAPCAR 7.10
Sybase Replication Server 15
SAP HANA Charge Controller 1.00, and
SAP Landscape Transformation 1 - CHS ABA.

Why Hana?

SAP HANA is the introduction of SAP AG, in-memory database technology. There are five components in the Software Group
SAP HANA DB (or HANA DB) refers to the technology of the database,
SAP HANA studio refers to a set of tools provided by SAP for modeling,
SAP HANA Appliance relates to HANA DB supplied as a partner of certified equipment as a unit. It also includes tools for modeling of HANA studio, as well as replication tools and data conversion to move the data into the database HANA,
SAP HANA Application Cloud refers to a cloud infrastructure for application delivery (usually existing SAP applications rewritten to run on HANA).a

HANA DB takes advantage of the low cost of memory (RAM), the data processing capabilities of multi-core processors and fast access to the data of SSDs over traditional hard disk drives to deliver the best performance of analytical and transactional applications. It features a multi-engine query environment that allows it to support both relational data (both row and column-oriented physical representation of a hybrid engine), as well as graphics and text processing for semi-and unstructured data management within a single system. HANA DB is 100% compatible ACID. With SAP HANNA you get the power to evolve in memory applications that analyze large amounts of data in real-time.

Wednesday 29 January 2014

SAP EWM ONLINE TRAINING

SAP EWM ONLINE TRAINING:

SRYIT Solutions is a Global Interactive Learning company started by proven industry experts with an aim to provide Quality Training in the latest IT Technologies.
AcuteSoft has a pool of Expert Trainers worldwide on all the technologies to train the students.
AcuteSoft is offering Training services to Major IT giants and to individual students worldwide.
About Our faculty: we have excellent SAP EWM instructors who have real time experience plus expert orientation in Online Training. 
SAP EWM ONLINE TRAINING


SAP EWM ONLINE TRAINING

We offer you:

1. Interactive Learning at Learners convenience
2. Industry Savvy Trainers
3. Learn Right from Your Place
4. Customized Curriculum
5. 24/7 system access
6. Highly Affordable Courses
7. Support after Training
     a. Resume Preparation
     b. Certification Guidance
     c. Interview assistance

We have a forth coming online batch on SAP EWM Online Training .

We also provide online training on SAP FICO, SAP SD,SAP WM, SAP PP, SAP MM, SAP SRM, SAP FSCM , SAP MDM, SAP APO, SAP IS RETAIL, SAP CRM, SAP ABAP, SAP BI, SAP BASIS, SAP BO, SAP HANA, SAP BPC, SAP ESS-MSS, SAP CS,SAP PLM, SAP GTS,SAP SNC , Informatica , Cognos ,OBIEE , SAS, Oracle Apps All Modules, Testing Tools, Hyperion and Big Dada hadoop.
Experience the Quality of our Online Training. For Free Demo Please Contact
Hari
Contact us for more details and Session Schedules at:
  IND: +91- 9948030675, 
USA: +1-319-804-4998
Email: info@sryitsolutions.com, 

What's the use of a domain controller and how to configure the same?


The transport domain contains all SAP systems whose transports are to be administrated jointly. One of these SAP systems is chosen as the transport domain controller.

Since all activities relevant to the entire transport domain, such as configuring transport routes or RFC connections, can only be carried out on the domain controller, the SAP system selected to be the domain controller should have:
High availability
A high level of security
A high level of maintenance


                                         What's the use of a domain controller



The domain controller is normally configured on a production system or a quality assurance system. Out of several reason you may choose to set up an SAP System dedicated to tasks that may be carried out CENTRALLY. This includes the task of the TMS domain controller.
The system load on the SAP system that is chosen as the domain controller is low, and only increases for a short period when the TMS configuration is changed.
Configuration:

To activate the TMS on an SAP system, run transaction STMS in client 000 with user authorization S_CTS_ADMIN.
If the SAP system is already assigned to a transport domain, the TMS initial screen shows the system’s status, either as a domain controller, or as a SAP system within a domain.
If the SAP system is not yet assigned to a transport domain, the system tries to locate an existing transport domain within the current transport group by reading the file DOMAIN.CFG in the directory bin of the common transport directory. If no transport domain exists, a new transport domain is created, and the current SAP system is assigned as the transport domain controller.
When a transport domain controller is first created, the TMS generates:
ü A transport domain and a transport group
ü User TMSADM
ü The RFC destinations required for the TMS
ü File DOMAIN.CFG in directory bin of the common transport directory, for storing the TMS configuration
o The name of the transport domain may not contain blanks and may not be changed afterwards without reconfiguring the domain controller. By default, a transport domain will have the name DOMAIN_, where is the system ID of the domain controller. The name of the transport domain cannot be changed afterwards.
Contact us for more details and Session Schedules at:
  IND: +91- 9948030675, 
USA: +1-319-804-4998
Email: info@sryitsolutions.com, 

SAP BI Online Training (DEMO) By IT Experts

SAP BW/BI Online Training DEMO

SRYIT Solutions facility offers SAP BW/BI Online Training. Our SAP BW/BI  trainers come with vast work experience and teaching skills. Our SAP BW/BI training online is regarded as the one of the Best online training in India. All our students were happy and able to find Jobs quickly in USA, UK, Singapore, Japan, Europe. SAP BW/BI  training online is your one stop solution to learn SAP BW/BI at the comfort of your home with flexible schedules.


SAP BI Online Training (DEMO)
SRYIT Solutions offers the SAP BW/BI Online Course in a true global setting.

                             
SAP BI Online Training Course Content :
• 1.Data Ware Housing Concepts
• 2.Over View Concepts of BW
• 3.Over view of SAP R/3 Types of Applications
• 4.OLTP
• 5.OLAP
• 6.R/3 Architectures
• 7.Landscape of SAP
• 8.Transportation
• 9.Package
• 10.Request no
• 11.Return codes
• 12.Master data
• 13.Transaction data
• 14.Attribute data
• 15.Text data
• 16.Hierarchy data
• 17.Header data
• 18.Item data
• 19.Scheduline data
• 20.Classical star schema.(DW)
• 21.Extended star schema.(BW)
• 22.Types of Data
• 23.Master Data
• 24.Transaction data
• 25.Star Scheme Concepts
• 26.Modeling & Extraction Objects
• 27.Info area
• 28.Info objects Catalog
• 29.Info objects
• 30.Info source
• 31.Direct update
• 32.Flexible update
• 33.Data source
• 34.Source system
• 35Application component
• 36.Transfer rules
• 37.Standard Info Cube
• 38.Real-Time Info Cube
• 39.Transfer structure
• 40.Standard DSO
• 41.DSO for Direct Update
• 42.Communication structure
• 43.Info providers
• 44.Data targets
• 45.Standard DTP
• 46.Error DTP
• 47.RDA DTP
• 48.Direct DTP
• 49.Info cubes
• 50.ODS
• 51.Standard PSA
• 52.Error Stack PSA
• 53.Standard
• 54.Real Time
• 55.DSO
• 56.Write-optimize DSO
• 57.Update rules
• 58.Transformations
• 59.DTP – Data Transfer Process
• 60.Info package
• 61.Extract structure
• 62.PSA
• 63.Data Acquisition
• 64.Re-modeling
• 65.Re-partitioning
• 66.APD – Analysis Process Design
Contact us for more details and Session Schedules at:
  IND: +91- 9948030675, 
USA: +1-319-804-4998
Email: info@sryitsolutions.com, 
• 67.Visual Composer
• 68.IP – Integrated Planning
• 69.Data loading using flat files
• 70.Attribute data
• 71.Text data
• 72.Hierarchy data
• 73.Transaction data
• 74.Live concepts of using MDM
• 75.Reusability of master data
• 76.Designing the transfer rules, transfer structure and communication according to data using different
• 77.techniques Dynamic calculation ,suppressing data adding new functionality to the data of the transfer
• 78.rules and update rule level while loading data.
• 79.Handling data function while loading data
• 80.BW Architecture
• 81.PSA Maintenance
• 82.Scheduling the data
• 83.Data packet by data packet
• 84.Complete data scheduling
• 85.Scheduling in background
• 86.Debugging the Data while loading
• 87.Transfer rule level
• 88.Update rule level
• 89.Terminating errors while loading the data
• 90.Increasing the data packet size
• 91.Application serer file concept _AL11
• 92.Scheduling the data in background
• 93.PSA Processing types
• 94.Monitoring the data loading
• 95.Scheduling the jobs based on periodic values
• 96.New data table
• 97.Active data table
• 98.Change log type
• 99.Automatic
• 100.Manual
• 101.9 cases of deltas with real scenario
• 102.Error handling in deltas
• 103.ODS – Info Cube
• 104.Info Cube _ Info Cube
• 105.Canceling and deleting the back ground jobs
• 106.ODS
• 107.ODS SETTING
• 108.Details
• 109.Data Mart
• 110.Roll up
• 111.Aggregate
• 112.Collapse
• 113.Reconstruction
• 114.Deletion of data from data Targets
• 115.Complete deletion of data
• 116.Deleting data by request id
• 117.Selective deletions
• 118.Direct Schedule
• 119.Meta chain
• 120.Error handling in process chain
• 121.Monitoring process chain
• 122.Message integration
• 123.Success
• 124.Error
• 125.Always
• 126.Scheduling process chain based on Periodic values
• 127.Cancelling the process chain jobs
• 128.Rescheduling the process chain
• 129.Folder creation for a specific process chain
• 130.Creating a variant for ABAP programs and integrating in process chain
• 131.ALE Remote jobs
• 132.Attribute change run
• 133.Assigning object to the requests
• 134.Releasing the Request No and their Dependency
• 135.Return code
• 136.Mail drafting to basis team regarding transportation
• 137.Searching objects locally and business
• 138.Contents through Meta Data Repository
• 139.ODS –ODS
• 140.Multi providers
• 141.Info set
• 142.Partitioning
• 143.Line items dimensions
• 144.Performance issues
• 145.Process Chain
• 146.Transportation
• 147.Fact less Fact Tables
• SQVI-quick views
• 1.Business content
• 2.Definition
• 3.Activation
• 4.Open hub service
• 5.Info spoke
• 6.EXTRACTION
• 7.Flat files
• 8.LOS
• 9.LIS
• 10.Generic Extraction
• 11.Master data
• 12.Transaction data
• 13.CO-PA
• 14.FI-SI
• 15.DB connect
• 16.Business content extraction
• 17.Generic delta
• 18.Product Issues
• 19.Ticket Handling
• 20.Ticket tool tracker
• 21.Error handling
• 22.BEX Analyzer
• 23.BEX Browser
• 24.WAD
• 25.BEX query designer
• 26.Creating a role
• 27.Assigning a role
• 28.Types
• 29.Represent
• 30.Entry
• 31.Process
• 32.REAL TIME SCENARIO
• 33.Reporting
• 34.Role maintains
• 35.Variables
• 36.Conditions
• 37.Formula
• 38.Calculated Key Figures
• 39.Restricted key figures
• 40.Exceptions
• 41.Filters
• 42.Free characteristics
• 43.Structures
• 44.Cell definitions
• 45.Query performance
• 46.Brain Errors
• 47.Forcing variables
• 48.Information broadcasting
• 49.Cache inactive
• 50.Query Monitoring
• 51. RRI (report-to-report interface)
• 52.Query properties
• 53.Debugging reports while Executing
• More about BW BI Online Training :
• About BW BI Trainer :
• BW BI Online Training batch information
Our SAP BW/BI Online Training batches start every week and we accommodate your flexible timings.

Tuesday 28 January 2014

SAP BODS ONLINE TRAINING (sryitsolutions.com)

Attend FREE DEMO Class!

Experience the Quality of our Training 

--> SRYIT SOLUTIONS is a Global Interactive Learning company started by proven industry experts with an aim to provide Quality Training in the latest IT Technologies.

--> SRYIT SOLUTIONS has a pool of Expert Trainers worldwide on all the technologies to train the students.

 --> SRYIT SOLUTIONS is offering Training services to Major IT giants and to individual students worldwide.

--> About Our faculty: we have excellent SAP BODS instructor who have real time experience plus expert orientation in Online Training.

SAP BODS ONLINE TRAINING (sryitsolutions.com)


SAP (All Modules) online Training

We offer you:

1.   Interactive Learning at Learners convenience
2.   Industry Savvy Trainers
3.   Learn Right from Your Place
4.   Customized Curriculum
5.   24/7 system access
6.   Highly Affordable Courses
7.   Support after Training
     a.  Resume Preparation
     b.  Certification Guidance
     c.  Interview assistance
     b  Guaranteed Placement Assistance

We have a fourth coming online batch on SAP BODS .
We also provide online training on SAP (All Modules), DATA WAREHOUSING (All Modules), SAS, SAS BI, Share point, oracle (All Modules), Testing tools, Java, Dot Net and MS BI.

Contact :  HARI
IND  : +91- 9948030675
USA  : +1-319-804-4998


Best SAP Online Training (BW/BI, BO, FICO, CRM,SD, ABAP, HR-ABAP, XI/PI, SECURITY, WORKFLOW, WEBDYNPRO)

From last 8 years, We are providing online training's on different SAP Modules. If you want to boost your IT career with latest technologies we are here with quality online training with cheapest price. You can attend class from anywhere in globe just by sharing 1 or 2 hrs daily or else in weekends. You will get a feel like you are in a class room. Our highly experienced trainers will make you feel comfortable with the subject in all dimensions.
  
Best SAP Online Training
Hurry up don't miss the opportunity and make a golden path to your career.
Our technologies List:

Contact us for more details and Session Schedules at:
  IND: +91- 9948030675, 
USA: +1-319-804-4998
Email: info@sryitsolutions.com, 
FOR MORE INFO : click here

1. SAP- ABAP 
2. SAP- ABAP WORKFLOW/WEBDYNPRO/ADOBE FORMS 

3. SAP Net WEAVER EP 

4. SAP-BW/BI
5. SAP-SD (Sales and Distribution) 
6. SAP- ABAP HR 
7. SAP- ABAP OOP 
8. SAP- SECURITY 
9. SAP-CRM (Customer Relationship Management) 
10. SAP- BO’S 
11. SAP-WM (Warehouse Management) 
12. SAP-SEM (Strategic Enterprise Management) 
13. SAP-SCM (Supply Chain Management) 
14. SAP-MDM 
15. SAP-SRM
16. SAP-OIL&GAS / IS-UTILITIES 
17. SAP- ABAP CROSSAPPLICATIONS 
18. SAP- ABAP WEBDYNPRO 
19. SAP- BASIS (System Administration) 
20. SAP- XI (exchange infrastructure) 
21. SAP- BI 
22. SAP-HCM (Human Capital Management) 
23. SAP-FICO(Finance and Controlling) 
25. SAP-PP (Production Planning) 
26. SAP-MM (Material Management) 
27. SAP CRM (Technical) 
28. SAP-SRM (supplied Relationship Management) 
29. SAP-APO (Advance Planning optimization) 
30. SAP-BPC 
31. SAP-IS RETAIL
32. SAP-HANA
32. SAP-MDM
33.SAP-IS-UTILITIES



SAP Basis/Netweaver Certification Questions

SAP Basis/Netweaver Certification Questions

1)Which of the following components indicate that R3 is a client / server system?
a. Multiple DBs
b. Database server
c. 3 separate hardware servers (DB, applcn & presentation server)
d. Db service, app service & presentation service

Contact us for more details and Session Schedules at:
  IND: +91- 9948030675, 
USA: +1-319-804-4998
Email: info@sryitsolutions.com, 

2) Which of the following is not contained in R/3 DB?
a. The R/3 Repository
b. The R/3 kernel
c. Customer Data
d. Transaction data
e. Customizing Data
f. The ABAP dictionary

3) Which of the following is correct in regard to R/3 clients?9/15/2003
a. The R/3 client has it's own customer data and programs which are not
accessible to other clients within the same R/3 system.
b. An R/3 client has all R/3 repository objects and client independent
customizing with all other clients in the R/3 system
c. An R/3 client shares customizing and Applcn data with other clients in the
same R/3 system
d. An R/3 client enables you to separate applcn data from customizing data

4) Which of the following statements is correct in regard to SAP Client Concept
a. All customizing settings are client independent
b. A client has unique set of applicant data
c. A client has it's own repository objects
d. All customizing settings are client dependent

5) Which of the following strategies enables R/3 customers to avoid making
modifications to SAP Std objects?
a. Using Enhancement techs such as Program exits & menu exits
b. Modifying SAP delivered programs
c. Changing SAP std functionality using the IMG
d. Performing customizing to provide the required functionality

6) Which of the following statements are correct in regard to IMG?
a. The IMG consists of series of customizing activities for defining a Companies
Business process
b. The IMG is a online resource providing the necessary info and steps to help
you implementing the R/3 applcn Modules
c. IMG is client independent
d. All of the above

7) Which of the following strategies enables an Enterprise to meet its business needs by
changing or enhancing R/3 functionality
a. Maintaining application data using the Various R3 Business transactions in
the SAP Std
b. Using the ABAP workbench to create the read R/3 repository objects
c. Using customizing to modify R/3 programs after obtaining an access key from
OSS
d. Using customer Exits to enhance the functionality of existing SAP Objects

8) Which of the following statements are correct in regards to modifications
 a modification is a change to an SAP Std object
b. A modification must be registered using the SAP OSS (SSCR)
c. SAP recommends modification only if customers business meets cannot be
me by customizing enhancement techs or customer dev
d. All the above

9) Which of the following statements is correct in regard to the customizing
a. Customizing enables R/3 applcn process to be set to reflect a companies
business needs
b. Customizing can be performed only from within IMG
c. Customizing is necessary because R/3 delivered w/o Business process.
d. None of the above

10) Which of the following is correct in regard to R/3 repository
a. Customers can develop new repository objects using tools in the ABAP
workbench.
b. Customer developed repository objects reside in the R/3 repository alongside
std repository objects
c. Customers can create & assign new repository objects to a development class
d. All of the above

11) Which of the following statements is correct in regard to critical client roles as
recommended by SAP?
a. Customizing changes can be made in any client
b. All customizing & dev changes should be made in a single R/3 client
c. Repository object should be created and changed in R/3 Quality assurance
client (QAS)
d. Unit testing should take place in the customizing and dev client

12) Which of the following activities should not be performed within a system landscape
a. Customizing & dev changes are promoted to a QAS client before being
delivered to PRD
b. The R/3 system is upgraded to a new R/3 release
c. Dev changes are made directly in the PRD client
d. Changes are assigned to a specific role

13) Which of the following benefits does the 3-system landscape recommended by SAP
have?
a. Customizing and dev, testing, and prod activities take place in separate DB
environments and do not affect one another
b. Changes are tested in the QAS system and imported in the PRD system only
after verification
c. Client independent changes can be made in the DEV system w/o immediately
affecting the PRD client
d. All of the above

14) Which of the following statements is correct in regard to multiple R/3 clients?
a. All clients in the same R/3 system share the same R/3 repository and client
independent customizing settings
b. No more than one client in the same R/3 system should allow changes to
client independent customizing changes.
c. If a client allows for changes to client dependent customizing, the client
should also allow for changes to Client independent customizing objects
d. All of the above.

15) Which of the following statements is correct in regard to setup of 3-system landscape
a. There is only R/3 DB for the system landscape
b. One client should allow for the automatic recording of client dependent
customizing and client independent changes.
c. All R/3 systems have the same System ID (SID)
d. All clients must have unique client numbers

All the Best :-) 

Answers:
1. D
2. B
3. B
4. B
5. A, D
6. D
7. B, D
8. D
9. A
10. D
11. B
12. C
13. D
14. D
15. B


How to delete transaction rfc’s in SAP?

This article answers following queries:-


  • How to delete transaction rfc’s in SAP?
  • Explain the process of deleting struck or old transactional rfcs in SAP
  • How to delete trfc’s in SAP?
-----------------------------------------------------------------------------------------------------FOR MORE INFO : click here

Sometimes, you may face transactional rfc issues in SM58 (like connection error/SQL errors/Application error/System error etc). In those cases, you want to delete those problematic rfc entries. So, please proceed as follows for deleting those entries.

Login to SAP system ABAP stack and navigate to SM58 transaction as shown below. Select the display period and username as per your requirement and execute by clicking on highlighted icon below.


Transactional RFC


For example, there are 2 transactional rfc errors (similar to below screen)


Transactional RFC ERRORS


If you want to delete them permanently from the above list, you have to proceed as shown below.
 

Contact us for more details and Session Schedules at:
  IND: +91- 9948030675, 
USA: +1-319-804-4998
Email: info@sryitsolutions.com, 

Navigate to Log file -> Reorganize as shown below


Re Organize RFC


It will result in below screen.


Delete RFC

Please provide the relevant dates/destination/username and select status as applicable to your scenario and execute the same by clicking on highlighted icon.
FOR MORE INFO : click here

Based on the above criteria, whatever rfc’s that is matching will be deleted and a confirmation message similar to below will be displayed on the status bar.


Entries Deleted

Monday 27 January 2014

SAP Career

Why You Want an SAP Career

Why You Want an SAP Career
When I was in college I cared about two things: Enjoying myself and landing a job when I graduated. I was in class one day and my JAVA professor took the time to talk about SAP. I'm glad he did.
When I was still in school I had no idea what I wanted to do with my life. I knew I had a passion for working with computers, but I didn’t want to be an IT geek fixing broken laptops, resetting locked user accounts, or writing code. I REALLY hated coding. The fact that the smallest little abnormality in your code like an extra comma or duplicate character would cause the entire program to crash and burn drove me nuts. I don’t have the patience for that and hated how unforgiving coding was. Half way through my college career, I switched my major from Computer Science to Business Information Systems. I did this because it gave me the IT exposure I needed as well as the practical business skills desired by companies. It’s almost a two for one major. Sure I may not be as strong of a programmer as a computer science major or as good with finance and accounting as my business friends, but I had a strong understanding of the two and felt that the BIS major worked well in my situation. Indeed it was. I was twice as marketable because of my “dual skillset”.

FOR MORE INFO : click here
I spent most of my Senior year Spring Semester attending career fairs. I had no clue what industry I was passionate about nor did I really care, I just wanted job security post-graduation. Definitely go to every available career fair and network with companies. I landed my first job because they had my resume lying around and I fit the bill perfectly. I applied for a ton of business analyst and systems analyst positions, and I’m glad I hadn't ended up another dime a dozen analyst. The company which was recruiting for SAP jobs ended up hiring 15 individuals all with different backgrounds. We were provided the opportunity to learn SAP on the company dime, and get paid. No complaints here, more on that later.
One of my fondest memories from college was when my JAVA professor spent a class talking about SAP and how lucrative of a career it was. I had never heard of SAP before that class and I’m sure most of the world is still in the same boat today. He told us that SAP employees make more than any other IT profession and that 90% of the Fortune 500 companies used SAP in their businesses. Needless to say I was intrigued. I invested a large sum of time and money into my degree so seeking out ways to get the best ROI has always been important to me.

FOR MORE INFO : click here
What is SAP you ask?
SAP is an Enterprise Resource Planning software that a company purchases to handle practically every aspect of their business. An example would be when a customer makes a purchase from a business, the transaction would be sent in real time to a particular warehouse to ensure adequate stock was available, if not, automatically re-order to keep the business running optimally. This allows companies to better marry supply and demand, keeping inventory costs low.
Another good example would be if a customer moved and needs to change their address, SAP system would only have one "customer record" that is shared with every other line of business, therefore customer support would only require one spot for a modification versus companies that have separate systems for everything.
In a nutshell, it's about consolidating a bunch of different systems that at one time would function separately, into one powerhouse that does everything without error and with incredible speed.

FOR MORE INFO : click here
Now on to why having a career in SAP is so awesome. When you think of SAP, I want you to think of a company within a company. Let’s say you work for Apple Computers. Their SAP center has many subareas depending upon what industry package they purchased from SAP. You would need an SAP Securityteam to ensure that the SAP system is secure and employees are limited by what they can view within the organization and there are no breaches. The BASIS Administrators essentially keep the lights on all SAP systems. For example, If the SAP Business Warehouse system goes down, it’s all hands on deck to get it back online because this means no business users are able to run reports on company data. This can be very costly. The Business Warehouse team is responsible for ensuring data from all different types of sources loads successfully into the SAP BW database and is reportable. Speed and performance optimization is number one with this team as they work most closely with the Business side of the house. Business users have a hard time understanding why something is unavailable and expect miracles when things go south. The ABAP team is responsible for coding in SAP’s proprietary Advanced Business Application Programming language. If any custom programs, functions, scripts, anything involving coding and getting something done that SAP does not deliver plain vanilla in their software, the ABAP team is responsible for creating. The various function areas have separate process areas in which they are most experienced and comfortable working with as the SAP system is ridiculously vast and for one user to cover everything would be impossible. That’s probably why SAP careers pay so well. Specialization is valued in this field and the more expertise you acquire in a particular area the more valuable you become to companies.
Lastly, working with SAP is fun! Seriously, it never gets old. Things are constantly breaking without warning, deep troubleshooting is required, and you will work closely with other SAP teams within and outside your company to diagnose and share the results of your findings in order to strengthen the SAP knowledgebase as a whole. SAP often releases system fixes called “SAP Notes” which are fixes that they implemented based on another clients bugs, which you will eventually encounter unless you update the code fix within the SAP note. So if you’re looking for a career change or for a place to start, think about a rewarding career working with SAP.
Learn more about SAP by clicking here