GeekInterview.com
Series: Subject: Topic:

SAP Tables Interview Questions

Showing Questions 1 - 20 of 29 Questions
First | Prev | | Next | Last Page
Sort by: 
 | 

What is an internal table.What are screens,sub-screens,table controls and tab strips.

Asked By: kiran_bhel | Asked On: Feb 18th, 2007

Answered by: avinash on: Apr 28th, 2012

when we want manipulate field of data that time we require internal table,

Code
  1. data: begin of itab occurs 0,
  2.             name type c,
  3.            address type c,
  4.     end of itab.

Answered by: sudhir on: Mar 15th, 2012

In internal tables what we do operations like insert,modify,delete it will not reflect to database tables

Can we create table without data element?

Asked By: raji | Asked On: Nov 13th, 2011

Answered by: avinash on: Apr 28th, 2012

yes,we can create with built in .

Answered by: sharmistha on: Mar 7th, 2012

yes we can create using built-in type button on field tab.

Types of internal tables

Asked By: Interview Candidate | Asked On: Mar 16th, 2005

Answered by: yugandhar on: Sep 12th, 2011

standard internal tables: these tables have linear index and can be accessed using the index or key.the responce time is in linear relationship with number of table entries.these tables are useful whe...

Answered by: Madhu on: Apr 26th, 2007

There are only two type of Internal Table classification and 3 type of itabs.
1) Indexed  -- a) Standard  b) Sorted.
2) Hashed -- a) Hashed tables.

This is the correct classification.

What is the difference between occurs 0 and occurs 1?

Asked By: sudhakar | Asked On: Oct 10th, 2007

Answered by: vishnu vardhan on: Aug 3rd, 2011

occurs 0- 0-250
occurs 1- 250-1000

Answered by: krishana on: Jun 27th, 2008

occurs 0 is key a word in abap used to create memory in body area , when ever we declare occurs 0 the system will allocates 8bytes of memory and it keep incrementing the memory to 8bytes every time.oc...

How to change 1200 open sales order pricing?Suppose customers has booked order in advance. At the due date of delivery the company's pricing has been changed. Now the company wants to change the pricing...

Asked By: pooja mathur | Asked On: Apr 20th, 2006

Answered by: prrajkrishna on: Aug 21st, 2010

Use batch input to change the condition record.

Answered by: guruprasadrao on: Dec 16th, 2006

Hi, By using VA02 t.code.

Docuement posting

Asked By: Raju742732 | Asked On: May 6th, 2010

What are the required fields in document posting?

Answered by: sskss on: May 18th, 2010

1. Invoice Date
2. Invoice Number
3. Baseline Date
4. Amount
5. Currecny
6. Tax Codes
7. Bank key.
8. Vendor Account

SAP FICO dunning issues

Asked By: Raju742732 | Asked On: May 7th, 2010

What are issues encountered in sao FICO dunning?

Work process

Asked By: thaslim123 | Asked On: Apr 30th, 2010

Which software component in the work process is responsible for controlling commit and rollbacks?

Control break statements

Asked By: thaslim123 | Asked On: Apr 30th, 2010

What will happen if you use control break statement in between select and end select?

New internal session

Asked By: thaslim123 | Asked On: Apr 30th, 2010

Which ABAP statement will start a new internal session in the same external session?

What is the main difference between work area and header line ?

Asked By: Prabhu | Asked On: Dec 16th, 2006

Answered by: sankaran.ramaiah on: Apr 28th, 2010

work area: work area it hold the single data during the execution of the program.

Headerline: Using header line we can pass the value into the internal table.


Regards,
sankaran Ramaiah

Answered by: m_manic on: Apr 8th, 2009

Work area is like structure. Header is also like structure but it is attached with internal table.

What is the basic difference internal tables and database tables? How can we differentiate by looking at the tables? handling of internal tables

Asked By: Interview Candidate | Asked On: Aug 23rd, 2005

Answered by: sankaran.ramaiah on: Dec 8th, 2009

HI,

Internal table: Internal table is nothing but an temporary table Its working only during the execution of the program.

Database table: Data base table is a storage place.Using database table we can store the business datas.



Regards,
Sankaran Ramaiah

Answered by: m_manic on: Dec 6th, 2009

Internal table is used to store the records during run time only, but database table is used to store the records permenanetly.

What’s an effective way of using an internal table record?

Asked By: Interview Candidate | Asked On: Aug 5th, 2005

Answered by: m_manic on: Apr 9th, 2009

While you selecting records from data base table, we have to use maximum fields in where conditions so that unwanted records can be eliminated.

Answered by: Lokesh Reddy on: Aug 5th, 2005

Create Internal table without Header.Do all the internal table operations by Creating Workarea. 
This would be the effecient way of coding. 
Don't forget to CLEAR Workarea whenever it is required.

Size of the internal tables

Asked By: Interview Candidate | Asked On: Aug 23rd, 2005

Answered by: m_manic on: Apr 8th, 2009

Size of internal table is depend on the following points.
1. occurs clause / Initial size
2. No. of records in that internal table.

Answered by: anil on: May 4th, 2007

Internal tables are runtime objects so they dont take any memory

What are common transport errors?

Asked By: Vanitha Krishnamurthy | Asked On: Sep 26th, 2007

Answered by: m_manic on: Apr 8th, 2009

Many things are there. For example you may trnasport table with out transporting Data element or domain used in that table.

What is diffrence b/w struts and spring framework?

Asked By: prashant | Asked On: May 15th, 2006

Answered by: ekta.shukla on: Aug 18th, 2008

Struts is tightly coupled Spring is loosely coupled.Struts is a web framework only, Struts can be compare with the SpringMVC. And SpringMVC is subset of the Spring framework. So we can say that Sturts...

Answered by: Sachin Yadav on: Feb 10th, 2007

Struts is a web framework while spring is a complete framework, you can develop web based solutions as well as desktop applications using spring. Spring is based on the principle of Dependency Injecti...

What is the difference between consumption based planning and mrp planning.

Asked By: PARDHASARADHI REDDY.C | Asked On: Nov 3rd, 2007

Answered by: Prashant.G on: Jun 18th, 2008

Cost Center Accounting provides information on the costs incurred by your business. Within SAP, you have the ability to assign Cost Centers to departments and /or Managers responsible for certain area...

Answered by: goodmale27 on: Feb 2nd, 2008

Consumption based planning uses historical consumption data to plan the requirements for future (either to production or purchase). MRP planning is based on requirements or demands which are entered manually or as a result of some other activities

What is t.Code?What are the types is there?How many t.Code is there?

Asked By: vivekkumar | Asked On: Nov 15th, 2006

Answered by: 7santosh on: Feb 21st, 2008

t code is called as transation code in sap there are max of 4 letters word which takes the user to the specfied screen f eg. se38 takes the user to the abap editor where he can write his abap code

Answered by: pavan on: Aug 12th, 2007

T Code means   Transaction code. It is the interface between different menu components. By using these t codes we can go directly to different menus with out failure.Transaction code having maximum ...

What is the difference between internel table and structure?

Asked By: eswar | Asked On: Oct 12th, 2006

Answered by: 7santosh on: Feb 21st, 2008

internal table is work area which is temporarly created and specfic to the program
but structure can be combination of one or more table which when created is stored on the database and can be reused

Answered by: met957 on: Nov 22nd, 2007

Everybidy talks about internal temporary table and databases.

A Database is composed is composed by many tables. You cant talk that you get records for a temp table (usually inmemory) with a database, you have to compare it with a physicall table in the database

bye

What is control level and control break statements

Asked By: venkata ratnam naidu | Asked On: Nov 16th, 2007

Answered by: gangadharchowdary.k on: Jan 17th, 2008

control Break statemets are

AT FIRST - USED FOR MAIN HEADING

AT NEW - USED FOR SUB HEADINGS

AT END - USED FOR SUB TOTALS

AT LAST - USED FOR GRAND TOTALS 

Answered by: gunuputi_kiran on: Nov 27th, 2007

hi venkat ratnam naidu,                             &nb...

First | Prev | | Next | Last Page

 

 

Ads

Connect

twitter fb Linkedin GPlus RSS

Ads

Interview Question

 Ask Interview Question?

 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.