ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
 
Categories  >>  Software  >>  ERP CRM  >>  SAP  >>  ABAP
 
 


 

 
 Basis interview questions  Basis Interview Questions
 ABAP interview questions  ABAP Interview Questions
 SAPScript interview questions  SAPScript Interview Questions
 SD interview questions  SD Interview Questions
 MM interview questions  MM Interview Questions
 QM interview questions  QM Interview Questions
 PP interview questions  PP Interview Questions
 PM interview questions  PM Interview Questions
 PS interview questions  PS Interview Questions
 FI CO interview questions  FI CO Interview Questions
 HR interview questions  HR Interview Questions
 SAP CRM interview questions  SAP CRM Interview Questions
 SRM interview questions  SRM Interview Questions
 APO interview questions  APO Interview Questions
 Business Warehouse interview questions  Business Warehouse Interview Questions
 Business Workflow interview questions  Business Workflow Interview Questions
 SAP Security interview questions  SAP Security Interview Questions
 SAP Interfaces interview questions  SAP Interfaces Interview Questions
 Netweaver interview questions  Netweaver Interview Questions
 SAP ALE IDocs interview questions  SAP ALE IDocs Interview Questions
 SAP B1 interview questions  SAP B1 Interview Questions
 SAP AllOther interview questions  SAP AllOther Interview Questions
Question
can u save internal table in sap memory from abap memory?
 Question Submitted By :: S.srikanth
I also faced this Question!!     Rank Answer Posted By  
 
  Re: can u save internal table in sap memory from abap memory?
Answer
# 1
yes by using SET PARAMETER ID <PID> <field>
 
Is This Answer Correct ?    3 Yes 6 No
Krishnaveni
 
  Re: can u save internal table in sap memory from abap memory?
Answer
# 2
SET PARAMETER ID <pid> FIELD <fieldname>.
 
Is This Answer Correct ?    3 Yes 5 No
Shankar
 
 
 
  Re: can u save internal table in sap memory from abap memory?
Answer
# 3
If you want save ITAB in sap memory then you have to use 
IMPORT nad EXPORT statements

The followin exapmles will explain how it will works
Here i created two report progrmas

1==> ZSHAN_EXPORT_ITAB ---> TO EXPORT THE ITAB INTO SAP 
MEMORY

2==> ZSHAN_IMPORT_ITAB ---> TO IMPORT THE ITAB FROM SAP 
MEMORY

---------------------------------------------

REPORT  ZSHAN_EXPORT_ITAB.


DATA TEXT1(10) VALUE 'Exporting'.

DATA ITAB LIKE SBOOK OCCURS 10 WITH HEADER LINE.

DO 5 TIMES.
ITAB-BOOKID = 100 + SY-INDEX.
APPEND ITAB.
ENDDO.

EXPORT TEXT1 TEXT2 FROM 'Literal' TO MEMORY ID 'text'.

EXPORT ITAB TO MEMORY ID 'table'.

--------------------------------------------------------

===========================================================

--------------------------------------------------------
REPORT  ZSHAN_IMPORT_ITAB.

DATA: TEXT1(10),
      TEXT3 LIKE TEXT1 VALUE 'Initial'.

DATA JTAB LIKE SBOOK OCCURS 10 WITH HEADER LINE.

SUBMIT ZSHAN_EXPORT_ITAB AND RETURN.

IMPORT TEXT3 FROM MEMORY ID 'text'.
WRITE: / SY-SUBRC, TEXT3.

IMPORT TEXT2 TO TEXT1 FROM MEMORY ID 'text'.
WRITE: / SY-SUBRC, TEXT1.

IMPORT ITAB TO JTAB FROM MEMORY ID 'table'.

LOOP AT JTAB.
WRITE / JTAB-BOOKID.
ENDLOOP.
-----------------------------------------------------


I hope this information will help full.......
 
Is This Answer Correct ?    12 Yes 2 No
Shankar
 

 
 
 
Other ABAP Interview Questions
 
  Question Asked @ Answers
 
what is Tcode for Basic ALE configuration? Satyam2
how to upload logo in the smart forms Wipro2
Read statement..  2
what is the main use of package(in user exits ,in SMOD user can provide the package name for the purpose of to find out all user-exits,that package use iam asking)? Intelligroup1
what are ALV reports? how they are different from normal reports? what are the main events that are used in an ALV report? what is the use of SLIS type pool in alv reports?  2
What is Deep structure and Flat structure? Bosch3
Smartform : how to print a smartform with portrait style and landscape style at the same time? TCS1
What is the exactly definition of Foreign key 2.what is the exactly definition of Value Table. 3)What is the exactly definition of Data element and Domain.Please give the exactly definitions of all above questions without fail....Thanku Bosch2
wat are the user exits for the po reports?  1
what will happen in Initialization event? Intel6
4.why dont use start form in script?  1
why u can call(r using) ssf_function_module_name in smartforms? Satyam3
Difference between jobpage and form page?  1
Do you use select statement in loop end loop, how will be the performance? To improve the performance?  2
Can you create a script with out a main window ? Unilogic-Software7
Hi all Could u please tell me the answers for following questions, Why we need IDocs...? What is the purpose of IDocs...? Thanks in Advance, Sanjeev.K Keane-India-Ltd4
what are logical and physical databases  1
What are the difference between Interactive and Drill Down Reports?  3
what is Cross Applications? FutureSoft2
how do you transport a script and how do you transport a standard texts? CTS7
 
For more ABAP Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com