Total Imp Question in SAP ABAP
Total Imp Question in SAP ABAP
Total Imp Question in SAP ABAP
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
132.
133.
134.
135.
136.
137.
138.
139.
140.
141.
142.
143.
144.
145.
146.
147.
148.
149.
150.
151.
152.
153.
154.
155.
156.
157.
ru?
158.
159.
160.
161.
162.
163.
164.
165.
166.
167.
168.
169.
170.
171.
172.
173.
218.
219.
220.
I have neve heard of your Company. Tell me very honestly, is your company a SAP Business
Partner?
223. How is the work culture in your Company... in Kolkata....?
224. Tell me very honestly, is your company really an IT organisation or a Training Institute? You
can trust me.../ I am like your elder brother/ sister/ friend ...(whispering) , tell me how much have
they charged from you for the training?
225. Which Client have you been supporting all this while? Where is your Client located?
226. How do you log on to your Client system? Which servers did you log on to?
227. What are your work timings in your office?
228. Who are the Implementation Partners for your Client?When did they go live with SAP?
229. Can one Page in Sapscript be in Portrait format while the othe in Landscape format?
230. . Suppose you need to fetch some more data/ fields or do some extra processing with some
program fields in a SAP Script without changing the driver or print program, how will you do it?
231. <<<Hint : Topics--> Text Symbols-ITCSY structure-Subroutine pool......>>>
232. What is the usage of PROTECT... ENDPROTECT?
233. What is the use of ADDRESS... ENDADDRESS?
234. What is the use of CONTROL FORM... ?
235. What is the main difference between SAPScript and Smartform?
236. <<< SAPscript-Client Dependent, Smartfom - Client Independent>>>
237. What are the different Print Modes available in SAPscripts & Smartforms?
238. What happens in TUMBLE DUPLEX mode?
239. When do we use a character format and when do we use a Paragraph format?
240. How do you write Commands and Text Elements in SAP scripts?
241. What does = (an 'Equals to ' sign) convey in the tagline column of a Sapscript?
242. Suppose you have started a Paragraph format under a Text Element to write a few lines and
next there is another Text Element - and say you have left the Tag Column blank. In this case, how
will the text under the second Text Element be printed? (.....read the interviewer's mind and lips....>>
he/she is asking as to which Paragraph format will the system assume o print the text --- <<<Hint:
Remember the default Paragraph format which you provide under basic settings of the Header
Screen.>>>)
243. How do you debug a SAP Script?
244. What is a Value Table?
245. What are Lock objects? Is it table level or Row-level Locking? How many types of Lockobjects are possible in SAP?
246. What is the application of Chain...EndChain in Module Pool Programming?
247. What are the differences between a DDIC Table and a Structure?
248. Have you ever modified the contents of an internal table at run time during Development? If so
how?
249. Suppose you have 3 character fields and 1 Quantity and Unit field in the internal table? How
will you dynamically modify its contents using the Editor-call Statement?
250. <<<Hint : Tyring to test your knowledge and Cognition Concepts -- caution--only type C fields
can be modified using Editor-Call Statement>>>
251. Draw the R/3 System Architecture?
252. What are the Components of the Application Server?
253. What is the use of a TEXT TABLE?
254. What is the difference between Session Method & Call Transaction methods in BDC?
255. What are the main advantages of BDC?
256. Will you prefer BAPI's over BDC in certain situations ? If so why?
257. How will you do BDC with the new Enjoy Transactions?
258. How will you handle errors and provide appropriate messages in case of BDC with Call
Transacttion Method?
259. Explain FOR ALL ENTRIES writing an example ABAP code.
260. Say I have 2 integer type parameters on a selection screen. My requirement is that when I
shall type in some value greater than 20 in the first input field and execute, the second input field
must be grayed-out and I should not be able to ente any value into the second field. So what ABAP
code should I write and where? Please write it for me....
261. <<<Hint : he is talking about dynamic Selection-Screen modification. you'll have to attach
MOdifier IDs with the screen elements and at runtime loop at the Screen internal table to modify line
222.
by line of the screen by trapping the Modif IDs. Write the appropriate ABAP code under the AT
SELECTION-SCREEN OUTPUT Event.>>>
262. What are User-Exits? How many types of User-Exits have you worked with?
263. Suppose there is a field on a selection screen which is LIKE some DDIC Table field to which a
help is attached, also its data-element is associated with a Search Help and its Domain has a Value
Table attached to it. If Help for a possible list of values is implemented Dynamically using ABAP
code, then which Help list appears for he end-user?
264. <<<Hint : the last dynamically set one is going to appear, which will override all other
associated Helps.>>>
265. Suppose I have written a ABAP Program in one Client on one Application Server and say I
logon to a different client on the same Application Server. Will I be able to display/Edit the program?
266. How do you see different versions of a program? How do you compare two versions of a
program?
267. In the Version Management Screen, where do you find the most current active version of the
program?
268. Suppose I set a break-point at any line of an ABAP Report Program by Clicking on the red
hexagonal STOP button on the Application Toolbar in the ABAP editor. Next, let say, I log on a
second time in either the same or a different Client on the same Application Server and open the
same ABAP program once more in an ABAP editor. Now if I press F8 and execute the latter
program, what will happen?
269. What will happen if I hard code a 'BREAK-POINT' in the former program before the line where I
want the program to go into debugging mode...and repeat the scenario as mentioned earlier.
270. <<<Hint : (a) You can set dynamic breakpoints(as in case (a)) in the Debugger without having
to change the ABAP program. Such Dynamic breakpoints are only valid for the user that set them,
and are deleted when the user logs off.That means that if you run the latter program it won't get into
the Debugging mode because in the user's second logon (whichever client may be) the dynamic
breakpoint as set in the former program is no longer valid..... Remember==> Dynamic breakpoint is
user and logon specific.>>>
271. <<<Hint : (b) This is a static break-point and in any case the program will get into the
debugging mode irrespective of the user or his log ons to the system>>>
How did you get this job?
How many Sap rsources does your Team have?
<<<Hint : >>> They are asking your team size - No. of ABAPers, SD, MM, FICO, PP
consultants etc.
275. What is the employee strength of your Company?
276. <<<Hint : >>> they want to know the total no. of employees in your company, working in
SAP as well as others.
277. Which Client have you been supporting all this while? Where is your Client located?
278. How do you log on to your Client system? Which servers did you log on to?
279. What are your work timings in your office?
280. Who are the Implementation Partners for your Client?When did they go live with
272.
273.
274.
290.
<<<Hint : convert the TIFF file into a Standard Text object using SAP standard program
RSTXLDMC. Then Print this Standard Text via SAPscript INCLUDE Command>>>
292. Q10. What are Standard Text Objects? What is the transaction that is used to maintain
Standard Texts?
293. Q11. How do you see different versions of a program? How do you compare two versions of a
program?
294. Q12. In the Version Management Screen, where do you find the most current active version of
the program?
291.
Q13. What is Extended Syntax Check? What is its transaction Code? Why is it recommended
over normal Syntax Check?
296. Q14. What is meant by primary key of a table?
297. Q15. What are the utility of indexes?
298. Q16. When do we use buffering?
299. Q17. Why and how do we use SQL Trace. What is the Transaction Code?.
300. Q18. How do you do a Runtime Analysis? What is its significance?
301. Q19. What is the difference between the Header Data and Item Data?
302. Do you know, How to send a mail within SAP?
************************IBM****************************
295.
303.
In an Internal table how do you suppress or add the leading Zeroes for a particular field in your
itab?
Did you face any problems in Master Data Upload?
You have written a program for displaying a report on the screen. It is working fine and is
displaying the report on the screen. now I change the resolution of my system and again I run the
same program. what will be the output? Satyam
306. Suppose u r using FOR ALL ENTRIES. What happens when there is no data in the itab which is
using all the entries? Satyam
307. How can u transfer the data from one itab to another without using move & write statements?
Satyam
308. After the SESSION is created where is it stored? Satyam
309. In SE11 we created two database tables say some 1000 fields each.Now f we want both the
tables combined into one table, how do we do that? TCS
310. difference between append and collect statement?
311. sort statement can sort?
312. differences between the sorted ,standard, hashed tables. Icon
313. which table contains the details of all Tcodes?
314. any 1 having notes on SAP-ABAP certification, or even if any 1 could provide the
url for
getting notes on SAP-ABAP certification, would be appreciated
315. can we add fields to SAP Standard tables. ? Do SAP tables have indexes. ?
316. what is synchronous and asynchronous updates in BDC's, whats their difference
317. What is the difference between LSMW and BDC? Patni
318. Are programs client dependent?
319. what is search helps..How many types are there? Cap-Gemini
320. Prepare a Report for last month Last Date- First Date? Cap-Gemini
321. what is exact difference between uline ad sy-uline? Cap-Gemini
322. In Background Report,how to handle errors? Cap-Gemini
323. How to process the session dynamically? Cap-Gemini
324. what are Conversion Routings? Cap-Gemini
325. How to print Back to Back in Scripts? Cap-Gemini
326. Can u perform on Commit? Cap-Gemini
327. what is Deep Structure? Cap-Gemini
328. What are function modules in scripts?
329. Reuse-ALV-grid control?
330. Reuse-ALV-list display?
331. Reuse-ALV-commentatory?
332. what is variable window?
333. how many main windows are there in scripts?
304.
305.
I am getting the (first) page number and the remaining records displayed in another list in
another page BUT the PAGE Number is not displayed? What is the code/solution? IBM
335. PROGRAM TO CREATE INQUIRY IN SD USING BAPI 'BAPI_INQUIRY_CREATEFROMDATA' 209
SGT
336. Difference between client dependent and client independent tables ? Can anybody tell me the
procedure to impliment the SAP OSS notes in detail? Cap-Gemini
337. What do you like best about working for, in this company? 73 TATA
338. how many ways to delete ztable field values without using table maintenance generator?what
is that?
339. How to combine multiple delivery into one Billing ( Step by Step)?
340. if data is inserted only using bdc open and bdc insert and not bdc close session funx module
wat will happend? will data b inserted?
341. How do you convert non-char field into char type fields ? iGate
342. i want to add 2 records to a table but the last field in the table is 1000 char long.Is it possible?if
yes how? Siemens
343. 6) Difference between a table and smartform?
344. What is the exact difference between pooled table and cluster table and explain with
examples? 80 Genpact
345. A Report program is executed in Back ground mode. The out put of this program must be sent
to the inbox for a list of users.The users are based on an Organizational assignment defined in a
configuration table. what is the Best way this can be performed? Accenture
346. Final entry in the BDC Table? Accenture
347. A Job is scheduled with Three steps. In the event the second step fails..what happens to the
first and third step of the Job chain? Accenture
348. what is BDCRECXX contains?
349. what is the procedure to report/submit the Back ground Program and the results to the PM?
350. Some one is running a program in Foreground which has to be run in Back ground. How you
are going to instruct to do in Back ground?
351. you've to run some program in back ground. how to display the last month info from 1st to
31st?
352. In an Internal Table, I have 1000 records. I have to Retrieve One Record. In Performence wise
what is the Best Query?
353. what is secondary index?
354. What is the Transaction code for entancements?
355. How to declare an Internal Table?
356. How to modify the tables at Data base level?
357. How to sort internal table?
358. why do transilate scripts?
359. Functionality of Edit call..?
360. How to insert row in an Internal table?
361. Type groups?
362. Table maintainence -- Transaction Code?
363. If you write more than one start-of-selection. what will happen?
364. How to maintain Transport Request? Cap-Gemini
365. Back ground job .. Transaction code? Cap-Gemini Batch Monitor -- Transaction Code? CapGemini
366. Recording -- Transaction code? Cap-Gemini
367. Run Time Analysis - Transaction code? Cap-Gemini
368. SQL Trace - Transaction code? Cap-Gemini
369. what is the difference between session ,call Transaction? Accenture
370. APPL2?
371. How to find Buffered or not? Cap-Gemini
372. what is single screen maintainence?
373. what is table maintainence? Cap-Gemini
374. give examples of pool,cluster tables
375. how will you debug sapscript IBM
376. what is the format of the text used in sapscript IBM
377. What are V1 & V2 updates within the SAP LUW? Why & How they occur?
334.
Under Data Transfer Portion of ABAP, what do you mean by DX Project ASD-Lab
A window is missing while copying a sapscript from one client to another client. What should
be done?
380. How many fields(max) can be there in a transparent table? Unilogic-Software
381. In selection screen I have three fields- Plant, Material No, and Material group.If i insert plant
how do i get the material no and material group based on plant dynamically? DataMetrix
382. Can you create a script with out a main window ? Unilogic-Software
383. how to create a button in selection screen?
384. what is the difference betn end-of-page and end-of- selection?
385. How do you write UTP?(unit test plan)
386. How do you write technical specs? IBM
387. what is the difference between user-exit & customer-exit?
388. what is the difference between user-exit & BADIs?
389. what is badi? TCS
390. what are the differences between scripts & smart forms? 4
391. You are running a report. It is taking long time for execution. What steps will you do to reduce
the execution time. 2
392. what is a value table?
393. what is a value table?
394. how many indexes can be created for a table?
395. What is the difference between open sql & native sql ? DELL
396. How many rediobutton groups can be there in a module pool program and in a report? BOC
397. how many secondary lists can we create in an ALV? Delloite
398. A Program calls a Function module. what happens to the ABAP memory allocation used by the
functional module when the functional module is completed?
399. where is security relevent information such as Password for ITS are stored? Accenture
400. In the windows NT environment A-gate and w-gate are connected via which protocols?
Accenture
401. The standard symbols in SAP script are stored in which table? Accenture
402. what is a field symbol? Accenture
403. which processor controls the flow logic of an online program? Accenture
404. What do you mean by correction and Transportation system?
405. What is the difference between Collect statement and Append Statement? TCS
406. What is the difference between User Exits and BADI? SAP-Labs
407. What does an extract statement do in the ABAP program?
408. What are client dependent objects in ABAP or sap?
409. How do we debug sap script? IBM
410. What is the typical structure of an ABAP program?
411. How do you get output from IDOC?
412. Explain about roll area , Dispatcher, ABAP-Processor?
413. What is the main point while using control break in internal table ?
414. Are you familiar with all steps for setting up a workflow?
415. why Transaction Varient needed?
416. What is Field symbol? How to transfer legacy data into base tables by scheduling a time frame
using bdc? Satyam
417. what is the transaction code for asset master transaction IBM
418. HOW TO TRANSFER MATERIAL MASTER DATA FROM LEGACY SYSTEM (ORACLE) TO SAP
USING A FUNCTION MODULE BAPI_MATERIAL_SAVE_DATA. IF ANYBODY KNOW THE ANSWER
PLZ MAIL TO MY ID [email protected]
419. WHAT IS LUW? and the difference between SAP LUW and Database LUW in detail. TCS
420. HOW TO TRANSFER VENDOR MASTER DATA FROM LEGACY SYSTEM TO SAP SYSTEM
THRU LSMW (IN LSMW, USING DIRECT INPUT PROGRAM:RFBIKR00)
421. how to handle the errors (duplicate records) in CALL TRANSACTION METHOD and HOW CAN
WE SHOW THE ENDUSER ABOUT THE ERROR RECORD Siemens
422. what is a cluster directory in abap hr.how can we read a cluster directory
423. Are EVENTS Possible in LSMW?If so how to achieve? Cap-Gemini
424. Program for Prime numbers and Matrix plz explain me the procedural method with steps IBM
425. Hi all, How can u get the Sales order no. if u know only Delivery order Satyam
426. VVVV.Urgent- How can i develop more than 30 interactive lists in reports. HCL
378.
379.
what are SPA and GPA parameters?What the Purpose?Examples? under ABAP Memory.
what is Import and Export Memory?
i want to print 1 tp 100 in sapscript in a single page in a vertical manner 1 6 2 7 3 8 . . . . how
will i do it IBM
430. give example of sap memory and abap memory IBM
431. in an interactive report i want to trigger both 'at line selection' and 'user command'....if
possible then how?
432. SUPPOSE WE ARE RUNNING A BDC PROGRAM IN BACK GROUND AND AT THE END WE
FOUND THAT SOME RECORDS ARE NOT UPDATED?WHAT IS THE SOLUTIONS JS-SoftMerchants
433. What are the output type and Tcodes?
434. Among "Move" and "Move Corresponding", which is efficient one? What is pf-status? Sakshi
435. What is the difference between Clustered Tables and Pooled Tables?
436. What are Standard Texts?
437. How did you test the form u developed? How did you taken print
438. What is the table, which contain the details of all the name of the programs and forms?
439. How to pass the variables to forms?
440. What are the difference between Interactive and Drill Down Reports?
441. Among the Call Transaction and Session Method, which is faster?
442. How did you handle errors in Call Transaction?
443. How did you test the developed objects?
444. How to transfer the objects? Have you transferred any objects?
445. What is meant by performance analysis?
446. What is runtime analysis? Have you used this?
447. What is the advantage of structures? How do you use them in the ABAP programs?
448. An ABAP program creates a batch input session. We need to submit the program and the
batch session in back ground. How to do it?
449. What is the typical structure of an ABAP/4 program?
450. What does an extract statement do in the ABAP program?
451. in mm and sd,in which table plant and storage location are there?
452. what is the diffrence between Field String & normal Work area?
453. What is the diffrence between RFC & normal Function module? SAP-Labs
454. In Function module SAP provieds Two Standard Exception, give name of that two exceptions.
SAP-Labs
455. when we use the SELECT statement along with FOR ALL ENTRIES then what type of
validations we have do before executing this statement Mphasis
456. What are AUTHORITY OBJECTS ?
457. What are MENUEXITS, SCREENEXITS, FUNCTIONEXITS, FIELDEXITS and what is
458. the difference between them ? What is the exact difference between RFC and BAPI ?
459. what is the use of free and refresh? IBM
460. in reports how to use the table control tabstrips . what is its procedure
461. how to use the xk01 in realtime.can it apply the others. how it it will goes to first page and next
page.
462. what is check statement L&T
463. what do u mean by one to one relationship in the database of transparent and many to one
relation in pooled table could please tell me the answers i couldnt understand the concepts
464. difference between report and module pool Patni
465. what are logical and physical databases
466. what are conversion routines
467. difference between structure and append structure
468. difference between type and like in detail way
469. difference between application, presentation servers in sap and servers or layers both are
same or not
470. what is an internal table and types of internal table
471. steps for creating table
472. what is the difference between transparent, pooled and cluster table
473. what is the difference between master, transactional and customised data
474. After preparing the SAP script.what is the procedure to send that script to e-mail? Honeywell
475. what is the difference between with initialization and with out initialization?
476. what is the difference between view and join IBM
427.
428.
429.
477.
How does one know that the legacy files have come on to the SAP server you are working on?
TCS
How do you send files to the legacy systems from SAP and vice versa? CTS 3 1731
what is the difference between bdc and rfc ?
479. what is the difference between bdc and lsmw ?
480. what are the table controls in BDC ? Unilogic-Software
481. What is table buffer? Which type of tables used this buffer?
482. How to transfer legacy data into base tables by scheduling a time frame using bdc?
483. What is the main difference between Enhancements and BADI? How to do back ground
processing in BDC Session method ?
484. in session method sy-subrc is not returned whereas in call transaction method sy-subrc is
returned . what does it mean?
485. Can I run normal abap applications in browser?if yes how?
486. I want to know the procedure for direct input method in BDC.Anyone can tel
487. In select-options, how to get the default values as current month first date and last date by
default? Eg: 1/10/2006 and 31/10/2006 Yash-Technologies
488. Do you use select statement in loop end loop, how will be the performance? To improve the
performance?
489. Where we use Chain and End chain? Sony
490. What are the functional modules used in sequence in BDC?
491. What is BDC programming? Wipro
492. What is an ABAP/4 Query?
493. Difference between transparent tables and pooled tables ?
494. What are indexes?
495. Describe data classes.
496. What is foreign key relationship?
497. What are domains and data element?
498. What is an ABAP data dictionary?
499. difference between user exit and bdi IBM
500. difference between bapi and rfc IBM
501. difference between cluster and pooled tables Amplify-Mindware
502. what is the syntax for eliminating duplicate values in internal table.
503. what is the Tcode to send customer master data to another system.
504. Is Multiple Inheritance possible in ABAP ? If Yes How ,If no How ? ITC-Infotech
505. difference between BAPI and RFC?
506. if bdc session method is to be executed at some particular time without using sessions? how?
507. if data is inserted only using bdc open and bdc insert and not bdc close session funx module
wat will happend? will data b inserted?
508. if data is inserted only using bdc open and bdc insert and not bdc close session funx module
wat will happend? will data b inserted?
509. can we insert a table in a table? structure in a structure, structure in a table and table in a
structure?
510. difference between batch input and direct input and call transaction ?
511. what is difference between user exit, customer exit and badi?
512. what is meant by enhancement category?
513. what are the steps in oops alv reports? IBM
514. how to navigate to report from report? note: no transaction code created to report. IBM
515. how can you make select options as a parameter? IBM
516. what all we can see in TMG? what is its use? IBM
517. why to create a custom BAPI if the BAPI already exists? y to find BAPI again? frankly even i
dint undstnd tne question properly. if any one come across this q please do anser me. IBM
518. is it possible to insert records into structure? if yes means how many records can be
inserted?
519. How to get the spool number in smartforms?
520. Can I craete a Field without a Data Element ? How ITC-Infotech
521. I have one sender and three Receiver..so how many idocs generate in outbound(sender)? IBM
522. How to add more than one message to one idoc? Tell me Process Accenture
523. What is update task Accenture
478.
for uploading master data(ex:customer data) into sap, which methods you prefer? call
transaction/session/lsmw/bapi? why?
568. how bapi is different from call transaction/session?
569. How LSMW is advantageous than normal BDC?
570. What is direct input method?
571. Difference between call transaction & session method? which of these methods can be best
used in background process?
572. Explain what are the steps in the SD process at least up to the invoicing stage?
573. Do you need and enquiry or quotation before we start the SD process?
574. How does the inventory get reduced after the delivery?
575. What happens when you post goods issue after delivery?
576. In delivery processing which step comes first picking, packing, posting goods issue ?
577. While picking can the pick list be updated automatically?
578. How do you get the Sales Order (S.O) No. from the Delivery Order?
579. How to add a column to a table control while using alphanumerical layout editor ?
580. Can we create a field without data element ? If yes what is the difference?
581. How do we use BDC in real production scenarios ? Is BDC used on regular periodic intervals
to upload data into SAP ? (say you recieve the data daily from non-sap system, like mainframes and
you update the data in SAP) OR Is BDC used on adhoc basis ? Accenture
***************************ACCENTURE**********************
567.
582.
583.
584.
585.
586.
587.
588.
589.
590.
591.
592.
593.
When we are creating table, we use first field as MNDT and client, What does it mean ?
What to c/o for maintaining table ?
What is performance tuning ? What are the tools we generally use ?
To Dynamically Modify Screen what are the steps we should follow?
What is the difference between with HEADER LINE AND WITHOUT HEADER LINE ?
To generate a user command functionality in ALV. What are steps we have to maintain ?
Main difference between SESSION AND CALL TRANSACTION ? Which one you prefer ?
What are the events in Dialogue programming ?
What does it mean by using CALL SCREEN # ( # screen no. for example 9002 )
Why all the calculation done in first screen ?
What is I DOC ?
What is BAPI ? Transaction code to see the objects which are in BOR ?
***************************ACCENTURE**********************
In Open SQL statements such as Insert update delete which one is FASTlLY retrieve the results
and which one is Efficient? SAP-Labs
595. Output type is not selecte automatically with billing type ...Pls solve this issue
596. What do you like best about working for, in this company? TATA
597. What is Buffering Concept? When should a Table be buffered? ITC-Infotech
598. How to debug a smartform using SMARTFORM_TRACE....and how to see its results CapGemini
599. How to generate ABAP report ? requirement is like this... current Ratio and quick ratio and
return on capital employed and debt equity ratio and employee turn over and gross profit ratio.. can
u please prepare some function spec based on this requirement ..... can u send reply asap. TCS
600. what is the output of given code? data : f1 type i, f2 type i. write : / f1, f2. do 2 times. perform
addfld. enddo. write : / f1, f2. form addfld. data : f1 type i, f2 type i. add 1 to f1. add 1 to f2. write : /
f1 , f2. endform. int : f1 , f2. Yash-Technologies
601. What is mean SY-SUBRC=8 in BDC(while uploading data). Hexaware
602. Suppose in an ALV report in grid we have to disply matnr, ernam,ebeln,ebelp etc.But when we
bring the cursor on that specified field it will show "material number" for matnr, "purchase
Document Number" for ebeln etc. how do you acheive this? IBM
594.
603.
why we use 4 msg variable in BDCMSGCOLL stucture in BDC? why not more or less than 4?
IBM
how to block selection scree Cap-Gemini
what is template in smartform?
what is the role of extended syntax check in performance tuning?
what is the role of ST05 in performance tuning?
what is the role of secondary index in performance?
What are steps you follow to improve the performance of a report ?
What is performance tuning?
difference betn top-of-page and top-of-page during at- line-selection? in an interactive report,
after going to 5th list, can you come back to 2nd list? how? TCS
612. 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?
613. how to create a button in selection screen? how to add a gui status in a selection screen?
Wipro
614. can you create a table with out a data element? can you create a field with out a data element?
615. Give few names of cluster tables in sap? Give few names of pooled tables in sap? give few
names of transparent tables?
616. how many indexes can be created for a table? Wipro
617. what will happen if you don't give occurs clause while creating an internal table?
618. what does it mean occurs 0 while creating an internal table?
619. when do you need to create an internal table with header line ?and with out a header line?
620. what is a binary search ? and how it is useful in a sorted internal table?
621. what is EDI ,ALE , Debugging, Smart Forms ,IDOC'S & BDOC'S IBM
622. 1) How to maintain lists in dialog programming? 2)How to send greeting with different
languages to different regions in smartforms? 3)Can we transfer 100 screen data to pass 200
screen? 4)In reports 1st list o/p can be consider as i/p of 2nd list how it maintains? 5) In lsmw data
length 20 chars only but there is 24 chars field how can u manage? 6)What is the diff b/w OK_CODE
n SY_UCOMM? CSC
623. Folder types in smatforms? 2)What is Command line? L&T
624. Folder types in smatforms? L&T
625. In SAP Query with out know user that query can we execute? Patni
626. In table control how to maintain 10 records in first page, other 10 records in ohter page? Patni
627. what is the differenc between table control and table control wizard?
628. how to change col colors in alv reporting? Hexaware
629. SAP query how to use end users? CTS
630. How to maintain subtotals n grand totals in smart forms? CSC
631. how to track records from data dictionary?
632. after creating lock object if does n't access record by second user what should we do? TCS
633. In Scripts How to maintain value like 1234- instead of -1234? Bosch
634. Q : I want to see material details in secondary list based on material No. from basic list. I will
double click on any row, any field of basic list (not on field containing material no.) & the secondary
list will display material details according to material No. on that row. Is it possible? If so how? TCS
635. In smart forms page no will be displayed as 2 of 15, 9 of 15 but while printing 10 of 15 it does
not print correctly tell me how to handle this scenario.
636. wat is the difference between ALE & EDI? Sony
637. wat is EDI Administration & EDI Administration procedure?
638. which is a statement used to write a record to a file in ABAP?
639. where are the passwords for ITS stores?
640. wat is the default file name of BAPI trace?
641. wat is the type of file processed by ABAP?
642. wat are the process that can be executed & tracked in a workflow?
643. wat is a workflow schema?
644. list the important field symbol?
645. how does data gets transported/transfered between a screen & ABAP praogram in a dialog?
646. wat is a field symbol?
647. does select single *.. / select * .. affect performance ? how?
648. will where conditions in a sql query help improve performance?
649. will sorted internal tables help in performance?
604.
605.
606.
607.
608.
609.
610.
611.
where u can find user exists? how to activate user exists? Satyam
in scripts if u want to add the field using itcsy structure iknow this concept,then i want to add
some logic at a time in S.ORDER AND P.ORDER HOW,IF POSSIBLE WHERE U CAN ADD THE
LOGIC, HOW? Satyam
747. how to process the idoc? IBM
748. how can i fetch the records of 3 tables with a single select query,without using join. IBM
749. could you tell me the difference between an INTERFACE AND CONVERSION? Sony
750. what is two domain level concept in abap CTS
751. difference between at new and on change of pl its urgent CSC
752. How can i insert a field in script without using executable program
753. I want to give a input/output field on list, where can i define it.
754. how do you work with semi colon separated files in bdc ?
755. How do you convert non-char field into char type fields ? iGate
756. can any one answer these questions 1)How do you convert non-character field to character
field? 2)How do you work with semi colon separated files? 3)why cant we use normal function
module for data transfer? 4)what is the structure of CTU-PARAMS? 5)can we use transfer dataset to
transfer data in internal table?
757. CAN ANY ONE TELL ME What is the use of fallowing structures 1)BDCDATA 2)BDCMSGCOLL
iGate
745.
746.
781.
782.
783.
784.
785.
786.
787.
788.
789.
790.
791.
792.
793.
794.
795.
796.
797.
798.
799.
800.
801.
802.
803.
804.
805.
806.
807.
808.
809.
810.
811.
812.
813.
814.
815.
816.
817.
818.
819.
Some questions from Module pool on, events and chain. Endchain
Development class _______ what is request number.
Introduce yourself.
Who is your client ?
What is client ?
Which report you have done and describe it ?
Now in which project you work ? Describe it.
How you take print out of an alv program? ( Not the report output only the hardcore program )
What is dialog programming ?
For which company you are working ?
Some Realtime Objects on Bdc.
Can i have some Realtime Scenarios on Reports.
hi I am in training of functional module, i am unable to understand what exactly use of
IDOC,BAPI,DIM and BIM. As LSMW and BDC methods are used for data conversion from legacy to
sap. Might be it is silly question. please explain me
833. What is direct input method
820.
821.
822.
823.
824.
825.
826.
827.
828.
829.
830.
831.
832.
how to get the pop up screen ?the first screen as display button ,if we press that button then
pop up screen has to come with same information? HP
962. with out doing any action how to go another screen ,means when ever control comes to that
particular field this action has to be done? HP
963. how to issue the tickets in support project? HP
964. at the checking of sy-subrc after call transaction stmt,if it is zero what is the meaning of that of
syn and asynch updates explain. a.)update of database table is success. b.)execution of call
transaction is success. For syn update which one is correct? For asyn update which one is correct?
HP
965. can u create internal table dynamically ? how? HP
966. u r running a report .it is taking a long time for execution .what steps will u do to reduce the
execution time? HP
967. what r the main events that r used in alv? HP
968. if u write a write statement after end of selection ,will that be triggered? HP
969. How to create a button in selection screen ?
970. If you write a write statement after end-of-selection, will that be triggered ?
961.
hi..i hav developed an interactive report in which alv list display in basic list and 1st secondary
list in alv grid display.I want to get summation(total) of the columns in the secondary list.I hav used
'do_sum' but i couldnt get.is there any other way to get summation(total) in secondary list which is
an alv grid display
1008. what is the use of lock object?? IBM
1009. what is the use append structure?? in data dictionary
1010. WHAT IS COMPOSITE KEY?? Enteg-Technologies
1011. HOW MANY INCLUDE CAN BE INCLUDED IN THE TABLE??
1012. IS DOMAIN IS REUSABLE ? IS DOMAIN IS CLIENT DEPENDENT OR CLIENT INDEPENDENT..
HCL
1013. what is the function module to read the standard text?
1014. transaction code for assingning the function module to the process code?
1015. which select statement is used in script?
1016. how can I assign a foregin key relation ship for a structure? vCentric-Technologies
1017. how u transport a abap program from 4.7 version to 5.0 version? Wipro
1018. what are the components of bdc? Accenture
1019. HOW TO DIFFERENT CALL TRANSACTION ON THE BASIS OF DOUBLE CLICKING ON
DIFFERENT FIELD. Cwell
1020. how we will create a bullets in sap-scripts Satyam
1021. what is the diffrence between driver program and print program in sap script Satyam
1022. what are the sap financial periods i-Spy-Technologies
1023. one client needs material description more than 40 chars so how can we extend because in
standard table material descp is of 40 chars only TCS
1024. how to fill the select options from an internal table dynamically ie can i use the loop in the
initialization TCS
1025. how to print amount in words in alv ?? will the function module spell_amount work ?? TCS
1026. can we debug the smartform if yes how can we debug
1027. i need the explanation for the following one . 1.BAPI 2.BADI 3.USEREXITS.
4.ALE,IDOCS,REPORT,SAPSCRIPTS,SMARTFORMS. And their uses,what is it process in realtime.
1028. IS DOMAIN IS REUSABLE ? IS DOMAIN IS CLIENT DEPENDENT OR CLIENT INDEPENDENT..
HCL
1029. hi friends, In smart form how can we convert the decimal to whole no. for ex. i have date like
5.456. now i want convert to whole no. after point value more then 5 means the no should come 6.
below 5 means its come 5. any body can help me with code. its urgent. Thanks.
1030. how to handle errors in rfc? Siemens
1031. i want to block some spaces after end of page in classical report?how to do that?
1032. i want to populate 10 fields in smartforms..uptil 9th it is taking but 10th one is not populating?
what might be the reason? Siemens
1033. How to populate signature in smartforms?where can we upload the signature?is der any tcode
for it? Siemens
1034. In the BADI,they are multiple Implementation.Could you please tell is there any procedure
which are the implementation will execute and any order is the execute all the implementation for
that Badi TCS
1035. we can write the select query or any code after the end of selection TCS
1036. If we put Top of Page in between Start-of-selection and End-of-selection and what happenes
TCS
1037. How to same internal table in same functional module? Genpact
1038. What is the difference between At first and On change control command. Genpact
1039. Please List ALL Events in Interactive Report & Classical Report in CORRECT ORDER. Wipro
1040. How to reprocess the failed IDOC? How wil u know idoc is failed?What are tcodes? IBM
1041. In Realtime, how you get flat file for BDC session method.. through email or any other source?
Who will send you flat file..your team lead or project lead or project manager etc?
1042. How to convert the Unit for 'Distance' (The value from one Unit to another). TCS
1043. what is field string ? & where we are using field strings? HCL
1007.
How will you add a field in a database table? What are the technical step you have to take after
adding that fields in the table?
1044.
1045.
1046.
1047.
1048.
1049.
1050.
If you dont maintain the field level in creating a field, what would happen when you use TMG
in that table.
1051.
1052.
1053.
1054.
1055.
1056.
When creating a push button the 4 character function code could be 3 character?
1057.
1058.
1059.
Suppose in an internal table there is field field us and its different values are there in the
internal table. How would you delete the values related to us.
Use:Delete Command
1060.
How many types of short dumps are there? In which transaction code you can see the S.D.
Name few short dumps types?
1073. TOP-OF-PAGE and TOP-OF-PAGE during line selection-Difference.
1074. Why we use ALV?
1075. What are the advantages in using ALV?
1072.
1150.
1151.
1152.
1153.
1154.
1155.
1156.
1157.
1158.
Introduce yourself.
From which college youve done BE?
How did you join this college?
What is the name of your present company? Where is it?
How did you manage to get the job there?
What type of job is it? Is it part time or full time?
Where did you learn ABAP? Who taught you?
What do you do in your company?
How do you upload the graphics from application server?
why we use corresponding fields? what else can be used instead of into corresponding
fields?
1175.
1176.
1177.
(given an example of tables having some values) for the primary key fields which values
arenot allowable?
1178.
1179.
what is check table? what is foreign key note? what is value table?
1180.
1181.
1182.
what is a client?
1183.
in your office in which client you use to log in? what are the other clients there?
1184.
1185.
1186.
what is a standard text/ how do you insert it in a script? what is commands needed to
include?
1187.
1188.
what is smartforms?
1189.
1190.
1191.
what you need to do to write a custom driver program for any smartform?
1192.
let you dont have permission to use an address mode in a smart form then what will you do
to print the address details?
1193.
1194.
1195.
1196.
1197.
1198.
what is bdc?
1199.
how many types of bdc you have used? which type you pprefer to use and why?
1200.
1201.
1202.
1203.
write down the syntax of call transaction bdc and explain every step
1204.
explain bdcdata
let you have a module pool program with screen number 1000 and these are some fields and
buttons to save the data of vbap table. write down the exact record with proper ok codes what we
will have from the transaction code shdb
1205.
1206.
if you have to fetch data from a file of application server, what will you do?
write codes for fetch data from application server to an internal table, then update those datas
and again send the datas to the application server file
1207.
1208.
1209.
1210.
1211.
what is ok-code-explain
1212.
1213.
compare between select into <internal table > with select into table <internal table>
1214.
1215.
1216.
1217.
1218.
1219.
1220.
.what is ale?
Tell us something about your client? Name your client (when I withheld the client-name in my
previous answer).
1221.
By using which 2 function modules can we get information about the data changes that have
been made to a Purchase Order?
1222.
What is the primary condition that a field must satisfy so that any changes made to this field
can later be obtained by using the above 2 function modules?
1223.
1224.
What are the 2 tables that contain information about the changes made to any document?
What is the transaction code to create a Purchase Order? What is the header table for
Purchase Orders?
1225.
What is the difference between a Synchronous Call Transaction and an Asynchronous Call
Transaction?
1226.
1227.
Is SAP-Script a client-dependant object? If yes, then how can we test a SAP-Script developed
in 1 client, in another client?
1228.
What is the basic difference between a Main window and other windows with respect to print
outputs?
1229.
1230.
There is a standard SAP-Script layout RVINVOICE01 for printing Invoices using transaction
code VF02. Suppose we have to redesign this layout from scratch using Smartforms, to display
data all of which the standard driver program fetches. Then why will it be necessary to re-write the
driver-program (even though we do not have to fetch any excess data)?
1231.
Suppose there is an User-exit that has not yet been used by anyone anywhere. Explain in
detail how will you make this user-exit functional?
1232.
What is the diffrence between a with-Header and an without-Header Internal Table? Which
one is better to use and why?
1233.
1234.
1235.
In which event will you set the default values for a Select-Options variable?
What is the LIKP table? Does it store information pertaining to Outbound Delivery or Inbound
Delivery?
1236.
What is the KONV table? What are the important fields of this table? How can you obtain the
rate of a particular Invoice item from this table?
1237.
Till date how many developments have you done from scratch (i.e. complete development and
not corrections or modifications of the existing developments)?
1239. Do U know abt Performance Tuning?
1240. Tell me detail steps of performance tuning?
1241. What types of performance tuning Uve done?
1242. How performance can be tuned of a report?
1243. What is BADI?
1244. Have U done any User Exits? If Yes, How ?
1245. What is BAPI?
1246. What is the difference between BAPI and Call Transactions?
1247. Which is better between them?
1248. Have U faced any screen problem, when U were doing Call Transactions?
1249. Tell me the events of classical report in sequence.
1250. If we write top-of-page before start-of-selections, what will be the problem?
1251. How many types of reports U have done?
1252. Have U done Smartforms?
1253. How logo can be inserted in a SapScript?
1254. What is the difference between SapScript and Smartform?
1255. Which is the third party tool?
1256. What is the name of the printing tool company?
1238.
1257.
1258.
1.
Field
Value
Emp_id
Emo_name
Emp_info
Field
Value
Emp_name
Sal_jan
Sal_feb
Sal_dec
These were the tables from where data was to be fetched. Also a functional spec to display the list
was given. The question was:
Write a report to display the salary (December) of a particular employee on input of the
emp_id.
There was another report which was a little bit more complex. I dont remember it accurately. It
was very similar to the above one except that it was interactive.
1312. How can one achieve interactivity in a normal report?
1313. Difference between hide memory and read line?
1314. State one report where you have used them?
1315. What is BDC and state its types?
1316. Which one of them you used more often?
1317. What is the difference between session and call transaction?
1318. Advantages and disadvantages of them?
1319. How do you achieve a call transaction? (I was told to write the call transaction method on
paper).
1320. How do you handle errors in BDC?
1321. What is the function of bdcmsgcoll?
1322. Can you name some fields inside it? How many are there?
1323. What are a sapscript and a smart form?
1324. What is the difference between them?
1325. Did you ever have to debug a sapscript?
1326. Explain a sapscript and a smart form that you have done.
1327. What is CAMS (central address management system)? (actually I told that I used the CAMS to
fetch address in sapscript and smart form).
1328. How do you fetch data through it?
1329. How is a smart form called?
1330. Say about the module pool program that you did.
1331. Usage of chain/ end chain, fields?
1332. How to declare a table control in module pool?
1333. Given the chance right now what would you like to become a Team Leader or a Team Member?
1334. IF U R GIVEN A SCALE TO RATE URSELF HOW WILL U RATE URSELF WITHIN 1-5?
1335. IF I OFFER U THE POST OF TEAM LEADER R U READY TO ACCEPT?GIVE REASONS IF YES
AND ALSO IF NO.
1336. HOW TO CALL CUSTOM LAYOUT FROM STANDARD TRANSACTION CODE IN SAPSCRIPT?
1337. WHAT R THE STEPS TO CREATE ALV REPORT?
1311.
WHERE OTC CYCLE INFORMATION ARE STORED ? WHAT IS THE FUNCTION OF VBFA
TABLE?
1339. WHICH METHOD IS PREFERABLE IN CASE OF BDC NOWADAYS? WHICH ONE U PREFER
AND Y?
1340. IN A MASS FILE PROCESSING OF RECORDS IF U WANT THAT AN ERROR IN FILE
PROCESSING CAUSES A TOTAL STOP IN DATABASE UPDATION WHICH METHOD WOULD U
FOLLOW? ( EXCEPT BAPI)
1341. WHAT IS DIFFERENCE BETWEEN MODIFY ,UPDATE AND APPEND STATEMENT?
1342. WHAT IS MODULE POOL?
1343. WHAT ARE THE OBJECTS U HAVE DEVELOPED DESCRIBE IN BRIEF.
1344. WHAT ARE THE STANDARD CODING STANDARDS FOLLOWED IN DEVELOPING A REPORT
PROGRAM IN INDUSTRY.DEFINE IN BRIEF.
1345. WHAT IS THE DIFFERENCE BETWEEN AT SELECTION SCREEN OUTPUT,INITIALIZATION AND
AT SELECTION-SCREEN EVEN.
1346. WHAT DO U MEAN BY INITIALIZATION OF VARIABLE?
1347. WHAT IS HEADER AND ITEM TABLE?WHAT RELATIONSHIP EXISTS BETWEEN THEM?
1348. NAME MATERIAL MASTER AND SALES ORDER HEADER ITEM TABLE?
1349. WHAT IS DOCUMENT FLOW?
1350. WHAT IS TYPE POOLS?
1351. WRITE SAMPLE ALV CODING IN INTRFACE STRUCTURE?
1352. WRITE SAMPLE CODING OF AT SELECTION SCREEN OUTPUT?
1353. WHY PERFORMANCE TUNING TAKES A BIG ROLE IN ABAP PROGRAMMING?
1354. WHAT R THE TRANSACTION CODES AND STEPS U FOLLOW TO TUNE UR PROGRAM?
1355. WHAT R THE OBJECTIVE OF PERFORMANCE TUNING?WHAT R STANDARD TRANSACTION
CODES FOR PERFORMANCE TUNING?
1356. WHAT DO U MEAN VALIDATION CHECKING IN ABAP PROGRAM?WHAT R THE METHODS
THAT R FOLLOWED?
1357. WHICH METHOD WILL U FOLLOW IN VALIDATION CHECKING?
1358. WHAT R THE PURPOSE OF INCLUDE PROGRAMS?
1359. HOW TO DEBUG A SMARTFORM?WHERE TO SEE THE NAME OF FUNCTION MODULE
GENERATED BY SMARTFORM?
1360. WHAT R THE OUTBOUND INTERFACE TECHNIQUE?EXCEPT ALE WHICH METHOD IS USED
FOR OUTBOUND INTERFACE PROCESSING?
1361. WHAT IS FUNCTION MODULE?WHAT R THE COMPONENTS AVAILABLE IN FUNCTION
MODULE?
1362. WHAT HAPPENS IF WE DONT PASS MANDETORY PROGRAM VARIABLES IN FUNCTION
MODULES WHILE CALLING IT?
1363. WHAT IS TCODE FOR CREATING FUNCTION MODULE?
1364. WHAT IS THE TRANSACTION CODE FOR CREATING OUTPUT TYPE?WHAT R THE ESSENTIAL
COMPONENTS THAT R PROVIDED BY ABAPER WHILE CREATING AN OUTPUT TYPE?
1365. WRITE CODE FOR VALIDATION CHECKING (PROBLEM SPECIFIED).
1366. WRITE CODE FOR CALL TRANSACTION METHOD IN BDC?(PROBLEM SPECIFIED)
1367. WHAT IS THE DISADVANTAGE OF CT METHOD IN BDC OVER BDC SESSION METHOD?AND
ADVANTAGES.
1368. WHAT IS THE STRUCTURE REQUIRED FOR TRAPPING ERRORS WHILE DATABASE
UPDATION IN BDC CT METHOD ?
1369. WHAT IS THE WAY U FOLLOW TO COMBINE INFORMATION FROM TWO ABAP DICTIONARY
TABLE INTO A SINGLE INTERNAL TABLE (EXCEPT JOINING)?
1370. SPECIFY THE METHOD.WHAT R THE NECESSARY PRECAUTIONS NEEDS TO BE TAKEN
WHILE USING THAT STATEMENT?
1371. WRITE A SAMPLE CODE TO COMBINE INFORMATION FROM MARA AND MAKT TABLE
(MATNR,MAKTX,MEINS,MTART,MATKL) INTO A SINGLE INTERNAL TABLE AND WHAT R THE
NECESSARY CHECKS THAT NEEDS TO BE PERFORMED AFTER THE STATEMENT IS ISSUED?
1372. WHAT R THE EFFECTS OF ISSUING NESTED LOOPS STATEMENTS INSIDE A PROGRAM?
HOW TO OVERCOME THAT PROBLEM?
1373. WHAT METHOD IS USED TO OVERCOME THE PROBLEM?WRITE A CODE TO DEMONSTRATE
THE METHOD(PROBLEM SPECIFIED).
1374. WHAT R THE COMPONENTS NEEDS TO BE SPECIFIED FROM TRANSPORTING A SAP
OBJECT FROM ONE SERVER TO ANOTHER SERVER?WHAT R THE POSSIBLE SERVERS
AVAILABLE IN THE LANDSCAPE OF A SYSTEM?
1338.
1419.
1420.
1421.
1422.
1423.
1424.
1425.
1426.
1427.
1428.
1429.
1430.
1431.
1432.
1433.
1434.
1435.
1436.
1437.
1438.
1439.
1440.
1441.
1442.
1443.
1444.
1445.
1446.
1447.
1448.
1449.
1450.
1451.
1452.
1453.
1454.
1455.
1456.
what is the print program for smartforms .pls give me one example . 1 2246
Hi
everyone! i m pursuing ABAP so still in learning phase i want to know abt. IDOCs and ALE like
what's the role of messege type in IDOCs and how things goes on in background i know i sound
absurd but as i m not clear abt. the same Ur advice wud be highly appreciated looking forward for a
quick reply with some scenarios if URl for some gud sites that wud b helpful in the initial stage of
learning wud b provided it's wud b g8 thanks in advance
1465. what is the use of protect / end protect control command in the scripts? DELL
1464.
1466.
1467.
1468.
1469.
1470.
TCS
What is a difference between - RETURN, EXIT, CHECK, STOP & REJECT - To leave the
processing blocks TCS
1472. While Transporting Smartform form Dev to Test to Production, it is possible that Name of the
Function Module change, Why? In which case it changes and in which case it remains same? TCS
1473. Hello all ABAP gurus. I want to ask 2 3 qtns.1)How many layou types we have in smartforms &
difference between them..? 2)how to do pagebreaks in SMARTFORMS..? 3)Do we develope
Smartform from scratch or do we use standard smartforms in real time..? please rply me... & thanks
in advance. Wipro
1474. How can u decide that how many records can be displayed in one page in scripts ? or in one
window ? 2. what is enhancement category in transparent table ? Enteg-Technologies
1475. Hi to all abap gurus iam new to abap and my querry is as follows . and i feel so happy if u give
exact anwers ? Querry1: i have one page( named "page1" )in my script with three
windows(logo,adress,main windows) my requirement is to display some dynamic data in the script
that is list of orders of the customer whn u give the customer number in selction-screen .then we
can go for main window only to dispaly dynamic data ? or is there any other option ? then what
should we give as apage number in the next page attribute in the header information. suppose if i
dont give "page1" in the next page attribute as anext page what will happen ? i mean that dynamic
data will be displayed or not ? Querry2: one one more querry incase if we have two pages in my
layout .in page1 (3 windows as said above ) and page2 ( only logo and address window ) and no
main window in page2. now if we give "page2" as next page in the next page attribute of page1 then
that dynamic data will be displayed or not ? PWC
1476. Hi to all abap guru's my question is how to print the page numbers like 2 4 6 on all pagess in
smart forms means 2 on first page 4 on second page thanks in advance Enteg-Technologies
1477. Hi to all abap guru's my querry is as follows How to trigger the page break in smartforms
forcibly ? and how to trigger the page break in the scripts forcibly ? means for every 10 records i
have to trigger the page break ? and in smart form also ? thanks in advance PWC
1478. Is BAdI client Indpendent SAP-Labs
1479. In se11 -->Tech. settings --> Data class. If I save table as Mater data OR Transaction data, what
effect will it has for 'Storage' in Database after activation. or In Database how it will store in both the
cases. Patni
1480. How we will handle the Page Breaking in Smart Form? CTS
1481. I a custom table some one has edited and deleted something, So how we should maintain the
log for changed and edited datas
1482. Hi Toall abap gurus what are the variants in alv reports ? and what is the use of
reuse_alv_variants_get ? and what is the purpose of i_save parmaetr in the resue_av_grid-display
funmodule? what is the purpose of reuse _av_default_varinat_get ? Thanks in advance for ur
answers kumar ITC-Infotech
1483. Hi To all ABAP Guru's while transporting any report program do we need to trasnport the text
elements seprately or not reuired ? if it is so how do u transport the text elemtns ? Thanks in
Advance for ur answers Accenture
1484. Hi To all ABAP Gurus Is there any other way to create data elements apart from se11 tocde as
we dont use the se11 in real time generally this question is asked in enteg infotech
1485. what is actaul procedure of session method of bdc. pls me complete steps. IBM
1486. hi this is naveenkumar.tell me plz. what is the difference between v4.7 and v4.6?
1487. Give me the Full flow of SD and MM Wipro
1488. Why can we get the Function module when we activate the Smartform ? Satyam
1489. WHAT IS THE PURPOSE OF SPLIT COMMAND?
1490. WHAT IS THE ROLE OF WORK BENCH ORGANIZER?
1471.
in real time with the help of scripts what we can do? CSC 3 1593
in real time with the
help of scripts what we can do? CSC
1492. CAN ANY BODY TELL ME IN A COMPANY HOW BAPI WORK WILL GOES? WHO WILL TELL
WHICH BAPI WILL SET FOR THE PRESENT REQUIRENT?
1493. why we are using pgm RSTXTRAN?
1494. Advantages and Disadvantages of ABAP Object Oriented programing to Java programming ?
Unilogic-Software
1495. What is the difference between select options and parameters Unilogic-Software
1496. differences between version 4.7 and ecc 5.0 Accenture
1497. what is field string ? & where we are using field strings?
1498. what is the significance of project, subproject and object in lsmw?
1499. Hi Gurus How do u do performance analysis means and what is the diffrence between
extended syntax check and code inspector and how do use them to test the performance of the any
abap program ? Keane-India-Ltd
1500. we will create functionmodules in real time or reusing exsiting one's in abap and webdynpro
abap? Deloitte
1491.
a.
There are 2 internal tables ITAB1 and ITAB 2 with the same structure.
ITAB 1:
VBELN
POSNR
MAKTX
WSSTK
xxxx
____
xxxx
____
10
xxxx
____
Write select statement to fetch data in ITAB 2 with values in all the fields
( VBELN,POSNR,MAKTX,WBSTK ) from database, only for VBELN values in ITAB 1.
b.
Now update internal table ITAB 1 from ITAB2(i.e populate the field WBSTK)
c.
Explain the answer for the above question
d.
What value SY_TABIX hold when you are looping within 2 internal tables
e.
Alternative for MOVE statement
f.
How to write SELECT statement taking value from a parameter or select option in a selection
screen
g.
Difference between parameter and select option
h.
Where do you write code for screen validation
i.
Where do you write code for input value validation
j.
You want to change some features of a selection screen depending on the radio button
selected,where will you write it
k.
Some Tables related to Sales & Distribution ( SD ), like Sales Order Header detail,Document
flow table.
l.
Meaning of some fields, MAKTX,POSNR,WBSTK,MEINS,..
m. What you have done _____Call Transaction or Session in BDC.
n.
How to do recording.
o.
What are the function modules for session.
p.
What does Transaction code SM 37 do.
q.
Datasets.
r.
How to upload flat files to internal tables.
s.
Diff. between Smart forms & SapScript
t.
Subroutine Pool.
u.
Suppose in a ALV report with the same structure of ITAB 1, there are multiple entries for a
single VBELN, We want to display VBELN only once in the report and repeat all entries for that
VBELN. How to do it.
v.
What do you prefer Grid display or List display in ALV and why
w. How to upload logo in SAPscript
x.
How to create User Exits
y.
When you create Field EXIT for the first time then what do you do to activate that exit
z.
You have applied User Exit for a field.Now what piece of code will you write to validate it
aa.
What happens when you create a program for the first time and try to save it
How do u write a program in session method so that it creates the session and run the session
itself without going to sm35 Accenture
1525. what are steps of smart form. pls complete step mail me on :[email protected] CapGemini
1526. how we can do transfer data from oracle/access to our sap R/3 system by using call
transaction(recording) or session method. pls reply on my id: [email protected] CapGemini
1527. dear PLS TELL ME,COMPLETE PROCEDURE OF SESSION METHOD STEP WITH CODE .MY ID:
[email protected]
1528. WHAT IS DIFFERENCE BETWEEN BATCH INPUT MEHTOD AND DIRECT INPUT IBM
1529. hi,i worked mostly in core abap.know iam assigned to XI utility project.can u experts let me
know what r the basic things i need to learn to work in XI utility project.i already searched in
forum.thanks in advance.
1530. hi friends i am having one doubt. if i have main window in secondpage also in smart form
wether it will trigger are not? \
1524.
1553.
1554.
1555.
What are labels in scripts..? why are they not accpeted in smartforms..? IBM
how can you call a function module in smart form..?? IBM
How to call A report from other report widout using include program..?? IBM
*****************EXID********************
1556.
1557.
1558.
1559.
1560.
1561.
1562.
Different types of reports In a drill down report you are in the seventh list, how will you
directly come back to second list.
1564. What are the function modules in SAP script.
1565. Events in Reports
1566. What is a work centre in PP.
1567. There are two tables one having fields Mat. No., Issue / Receipt, Qt, Dat & time this is a
transaction table & other table having material no. & current stock. Question is how
programmatically can I get the opening stock of 20th November, 2005.
1568. Functional flow ( Document )
1569. Functional enterprise structure
1570. BDC ( structure of data ) in session method
1571. Why session method is preferred over transaction method ?
1572. Questions on interactive reporting ?
1573. What is the difference between classical & interactive reports ?
1574. Conceptual questions on ALE
1575. Which functional tables have been used while generating reports ?
1576. What is the use of F2 code in ALV programming ?
1577. What is the function of DYNBEGIN = x in BDC ( session method ) ?
1578. what are the roles and responsibilities of a technical consultant will be assigned in idoc
development in real time? in case of a)IDOC EXTENSION b)sending TRANSACTIONAL IDOC
c)CHANGE POINTERS
1579. i am learning abap and finding very diffculty in understanding the message control technique
especially in sending IDOCS? what are the steps in message control ?
1580. I have a table with 400 recs. among some are duplicate records. how can I remove the
duplicate records from the table. pls help me out.
1581. What is INDEX Concept. What is Primary Index and Secondary Index and Difference between
Primary & Secondary Index Satyam
1582. What is the Difference between Transparant Tables , Pooled & cluster Tables? Satyam
1583. What is the difference between Customizing Data, Master Data and Transactional data?
Satyam
1584. explain the script component in script? TCS
1585. how many times a main window can be placed on placed on the same page in a layout IBM
1586. diff b/w call trans. and session method. IBM
1587. explains how to handle the table control in bdc Accenture
1588. what is direct input method and list out the standard programs available. give the list IBM
1589. what is code to upload cost centers through call trans. and procedure CTS
1590. hile uploading a flat file through bdc call trans, then the system get CRASHED. how do i know
how many records have been updated. Bosch
1591. explain the role of CTUPARAMS structure in call transaction IBM
1592. diff way of handling errors in call trans ans session methods IBM
1593. different ways to process/run the session Bosch
1594. which method is suitable for call transaction asynchronous or synchronous
1595. 1.How can u set more than one selection screen for one report? 2.Where u can provide initial
values other than in INITIALIZATION event?
1596. how many no of buttons we can create on Apllication tool Bar?
1597. what is Tool view and Project view? Steria
1598. what is the purpose of BAPI BAPI_CUSTMATINFO_GETLIST What is input and output of this
BAPI. SGT
1599. WHAT ARE THE INPUT PARAMETERS TO BE PASSED FOR THE BAPIS
'BAPI_CUSTMATINFO_GETDETAILM' AND 'BAPI_CUSTMATINFO_GETLIST' SGT
1600. What are the input parameters to be passed to the BAPI
'BAPI_QUOTATION_CREATEFROMDATA' SGT
1601. PROGRAM TO CREATE INQUIRY IN SD USING BAPI 'BAPI_INQUIRY_CREATEFROMDATA' SGT
1602. send coding to write a program to create customer quotation using BAPI
'BAPI_QUOTATION_CREATEFROMDATA2/BAPI_QUOTATION_CREATEFR OMDATA' SGT
1603. what is the process of creating quotation using BAPIs. SGT
1604. what is the transaction code for creating a quotation of sales order SGT
1605. What is the purpose of BAPI 'BAPI_SALESORDER_SIMULATE'? Write a sample program. SGT
1563.
1631.
1632.
1633.
1634.
1635.
1636.
1637.
1638.
1639.
1640.
1641.
1642.
1643.
1644.
1645.
1646.
what is BAPI
what is the difference between bapi and a function module
from where will you release your report.
what is request number
why request number is needed, what is its significance
what happens when request number is released
what is the transaction code for bapi
explain working of bapi in detail in r/3 system
why bapi is used
give the address and telephone number of visiontech sol.
who is the project manager and team leader
who is your client
client detail
how many projects you handled till date
where did you learn ABAP
what is the working system in your organization
EXIDE
If i wont like to change the standard print program where i copied standard script to customer
namespace,in this case is it possible to retreive the data if u connect the script with standard
program.if yes how?if no why? Is it possible to print the logo in first page only,where the form
consists of 10 pages.How can u do this? How can u set a table format where it cosists of fields like
cust no, custname, amount ...in a script? How do u know that the particular BADI is suitable for the
existed report.How do u findout this?When do u opt for BADI OR USEREXIT?did functional people
tell u to adopt BADI or USEREXIT? What is the difference between SY-INDEX & SY-TABIX ? I have a
report with fields Status,time & date. the contents it consists are Status Time Date AAA 01:20:15 0506-10 AAA 11:02:32 O3-06-10 AAA 23:11:00 05-06-10 AAA 09:14:46 05-06-10 HOW DO U WRITE A
CODE TO DISLAY A ROW WHICH WAS RECENTLY EXECUTED?( for this question it should display
AAA 23:11:00 05-06-10 AS Output) Deloitte
1648. if some one deleted your records from ztable how o u see the records?
1649. How to deactivate the sort button from the alv output IBM
1650. When writing BDC for MM01 how do you take care of views? CTS
1651. what is difference b/w sap 4.7e and ecc6.0 ?
1652. what is difference between (internal table types)standard table and sorted table in sap abap....
1653. i need step by step procedure for creating smartform in sap abap.....pls tel me....
1654. how 2 create the normal form by using functional module Deloitte
1655. what is the differ b/w script and smartform Deloitte
1656. what is diff b/w user exits and cutomer exits Deloitte
1657. suppose uploading the flat file data using bdc program when error is occur then what vil u do
Delloite
1658. which method u r perfer to upload flat file data into sap system Deloitte tell me ddic objects
Deloitte
1659. why scripts are client dependent and smart forms are client independent.? Cap-Gemini
1660. How to combine multiple order in one Delivery ( Step by Step)?
1661. Give 3 scenario of reporting due to which you require reporting help of ABAP consultant?
1662. difference between Valuation type and valuation category?
1663. Give 3 scenario due to which you require Gap analysis in your project?
1664. What is user specific parameter?
1665. Screen wise process for creating sales order quotation through transaction code VA21
1666. What are the mandatory fields to be filled in Transaction VA21 for 'Creation of sales order
Quotation'. SGT
1667. What are the mandatory fields to be filled in Transaction Code "VA21" for sales order quotation
creation. SGT
1668. WHAT ARE THE MANDATORY FIELDS TO BE FILLED FROM TABLES BAPIITEMIN,
BAPIPARTNR, BAPIITEMEX, BAPICUCFG, BAPICUINS, BAPICUPRT, AND BAPICUVAL IN BAPI
'BAPI_QUOTATION_CREATEFROMDATA SGT
1669. Once the recording is done in BDC and LSMW...if we are asked to add an additional field
later...then how do we add the field to the existing one...? Deloitte
1670. differtent types of messages? Deloitte
1671. when u create an index in Data Dictionary..how do we call it in a program or report..? Deloitte
1672. what is the difference between at line selection and at line selection on field.
1673. how to upload open purchase order through BDC
1674. what is troubleshooting and wher u can use this TS?
1675. In sapscript when u set debugger mode on from which window it will start debugging .My
sapscript has header window,logo window,address window,main and footer window.so from which
window it will start debugging??
1676. Can I write AT SELECTION SCREEN & AT USER COMMAND event in single program?If yes
how?and if no what error will it give??
1677. How to create logical system in sap in order to access bw and bi?
1678. If there are errors in BDC Call Transaction method, once the correction of errors is made how
will you run this as Session method ? IBM
1679. If there are two table with Foriegn Key relationship, and if any changes is made to the check
table in Table Maintanance Generator how will this the other table? IBM
1680. How will you know which BADI is being, if there are multiple implementations of BADI in the
same project. IBM
1647.
What is the Use of LDB PNPCE in ABAP HR? what is NODES statement? I think we have to use
GET PERAS event while using PNPCE. Can we use the same using PNP LDB? If yes,how? please
give me some example to demonstrate PNPCE?
1682. hi experts, "move 'I' to s_ktokd-sign. move 'EQ' to s_ktokd-option." Can any one please
explain me meaning of two lines? actually we use this move key word to move a value from one
field variable to another field variable? i didn't understand the meaning of these statements?
1683. What is the SD Flow in SAP.Can you explain with Transaction codes...
1684. How to put a TableControl in a Screen of Modulepool Programming?
1685. Where are the LSMW events :BEGIN_OF_PROCESSING, BEGIN_OF_TRANSACTION and
BEGIN_OF_RECORD declared? Why? Deloitte
1686. How would you design a BDC (session method ) in which session will get executed itself. user
do not need to go to SM35. IBM
1687. What is the difference between Search help and Match code ? IBM
1688. how many types of interfaces are there in abap ?
1689. How to create our own data types in a Report??
1690. Can we use same Domain for more than Data element? HCL
1691. Can we use same DATA ELEMENT for more than one field? HCL
1692. what r the services have to implemented in SAP R/3? HCL
1693. what are the Joins used for internal Table? HCL
1694. How to search a Internal Table Fields? HCL
1695. while running bdc call transaction method for user defined table, all the records are saved
except the last record. whats the problem? can anybody clarify me?
1696. what is the difference between invoice and proforma invoice?
1697. Explain the SmartForm with an Example? HP
1698. What is the program flow of BADI(step by step)? HP
1699. How to get the column count of a report? SGT
1700. How to split one Invoice into Multiple ( Step by Step)? IBM
1701. How to combine multiple billing into one RV document ( Step by Step)?
1702. How to Split one delivery into many ( Step by Step)? Accenture
1703. How to combine multiple delivery into one Billing ( Step by Step)?
1704. Why is smart form more preferred printing utility than sap script ? Accenture
1705. how to maintain the quantity field in bdc CGI
1706. pls tel me......how we link two fields by using foregin keys between two tables in sap abap?
1707. How does system know that your SAP login userid is assigned to a perticular employee
number (PERNR)? IBM
1708. what is difference between value table and check table?
1709. If pass table name as parameter how can i get table contents? HP
1710. can we migrate custom defined smart form into adobe form, if yes what are connecting
settings we have to make in adboe form? TCS
1711. if we have to upload the legacy data by using one transaction ex.me22, in bdc which way we
will choose i.e. session method or call transaction? how we will choose that way? can we use both
method in single program?
1712. How do you define an internal using types?
1713. My internal table exceed the limit. then it goes to dump. how will u handle this issue? LogicaCMG
1714. why cluster tables are not buffered
1715. HOW MANY IMPLEMENTATIONWE CAN CREATE IN BADI? WHAT IS THE USE OF REUSABLE
IN BADI? HOW MANY IMPLEMENTATION IS ACTIVE IN PRODUCTION SYSTEM AT A TIME? Siemens
1716. what is the difference between Ale abd Bapi? CSS
1717. Uses of runtime analysis and sql trace with example(coding). HP
1718. What's the difference between AT NEW and AT END OF events? HP
1719. What's the use of AT PF event? HP
1720. When we are updating certain database table with 100 records and we found that only 60
records are updated, then how to find the errror records and how to correct and updated again?
Explain step by step. HP
1721. Without writing the event start-of-selection we can execute a report program.Then what's the
purpose of writing it? HP
1681.
What are vale table check table? What's the difference between the two? Explain with simple
example taking table. HP
1723. Tell the step by step procedure to print a smart form? HP
1724. How to execute a smart form? HP
1725. how many ways to delete ztable field values without using table maintenance generator?what
is that?
1726. i have created script logo.is that logo goes to develpment to quality?
1727. i can give default values in select-options also then what is use of INTIALIZATION event?
Wipro
1728. at the same time can i call two transactions in bdc call transaction method?what happens if
use like that?
1729. can we transport text elements and text symblos in reports from devlopment to quality?is it
necessary?
1730. what is main difference b/w reports and module pool?exact answer?
1731. can we transfer variants from development to Quality?how can we transfer?is it necessary?
1732. What is Macro IBM
1733. difference between at selection-screen and at selection-screen output? Siemens
1734. After sending the data(any type) from SENDER to RECEIVER can we send the same data to
SENDER by using ALE? Wipro
1735. To find the date difference & excude saturday & sunday in between them
1736. What are the mandatory fields to be filled for BAPI_CUSTOMER_CREATEFROMDATA1 SGT
1737. when run my program in se38 it was showing output, when i take background execution and
giving printer details it was shoing out put. but in SP01 when i give the Spool Request Number it
was showing not yet processed entire page why it happens i dont know please give me a solution.
1738. what is the process of dialog program from first to last? Intelligroup
1739. 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)? Intelligroup
1740. in ALV reports how double click event works? Intelligroup
1722.
1756.
1757.
1758.
1759.
1760.
1761.
1762.
1763.
1764.
1765.
1802.
1803.
1804.
1805.
1806.
1807.
1808.
1809.
31)Explain the User master setting for date and Time formats?
What is a text table?
Difference between check table and value table?
What is the significance of Data element and Domain?
Explain the Importance of each type of window in Smart forms?
Explain the Importance of each type of window in scripts?
Can we create more than one main window in smartforms? IBM
allinterview.com site is good for interview preparation or not? Infosys
for example in client 710 i update the records for tcode me21 using bdc,in the same server if i
update 5 records and in the mean while other user do the same bdc update for me21 for 3 records
how do u resolve the remaining 2 records.
1811. Print options in smartforms?
1812. what is meant by LUW?(Both at database level and screen level)?
1813. Can we debug RFC's? If yes how can we do?
1814. what is the pre-requisite for read statement and can we read the standard table using read
statement IBM
1815. how do u know what is the exact user-exit for that particular enhancement. IBM
1816. why sapscripts are client dependent and smartforms are cliet independent,plz give me a brief
explanation,thank u. IBM
1817. what is meant by HIDE statement? TVS
1818. Difference between table control and step loop? Plz answer me its urgent! WDC
1819. Pls someone answer me this, Can we acheive everything using OOPs? If not? What cant be
acheived? Have you encountered any scenario liike, you cannot acheive it using Function modules
& can be acheived using Oops? What is the advantage of BADI over UserExit? Difference between
BAPI and RFC? Thanks in advance. HOW CAN YOU CALL A PAGE EXPLICITLY IN SMART FORMS?
1820. HOW CAN YOU USE A PAGE COUNT IN CALLING A PAGE IN SMARTFORM? difference
between step loop and table control?Plz urgent.. Accenture
1821. dear friends, do you know how to configure web dynpro and adobe into ECC6.0 IDES? IBM
1822. what is the table to find change pointer status? tcode to find applicatin server directories?
1823. what is the sap standard script for picking list? Intelligroup
1824. sap modifications and enhancements are stored in which table? Intelligroup
1825. what is the standard program to check the consistency of partner profiles? Intelligroup
1826. what is the flag? how to debug a popup window? Satyam
1827. while running bdc for call transaction method, in gui_upload function we use filetype 'ASC' for
tab delimited seperated data. like that for csv(comma delimited) data what we have to use as
filetype??? ie FILETYPE = ????? 1 What is the BAPI to retrieve data for list of customers and thier
sales areas i.e., Customer No, Sales Organization, Distribution Channel, and Division. For all the
customers.TCS
1828. Is there any BAPI to retrieve list of customers and their sales areas i.e., Cust No, Distr Channel
and Division for all the customers. SGT
1829. what is the difference between functional spec and technical spec CSC
1830. What is the reason, a BDC program is working in 'A' mode but not in 'N' mode ? Syntel
1831. what is the BAPI to get list of quotations for a customer? what is the BAPI to view the details
of a quotation? SGT
1832. what is Transport Request? why it is needed for us? Wipro
1833. What type of transport requests? Wipro
1834. what is the use of search help exit? Wipro
1835. How to write long-text in SAP scripts? EX: I want to write text like below: * Terms and
Conditions: 1>.... 2>.... 3>.... Wipro
1836. How to put page-breaks in smartforms? Accenture
1837. what is the use of system field 'SY-LOOC'? when will we use it? Plz answer me its urgent!!!
Wipro
1838. In Table Field when display the Name, whose first charecter should be capital letter and rest
will be small letter. IBM
1839. how to debug ale/idocs and how to correct errors and how to find out where the exact error
occur when we use bdc and lsmw and bapis and ale idocs differences b/w primary indexes and
secondary indexes
1840. when we use subroutines and function modules
1841. how to transport abap workbench objects
1842. What are the two ways of searching an ABAP Object and How to navigate to them
1843. loop 5 times. sy-tabix,sy-index. endloop. what is the output? Wipro do 4 times. sy-tabix,syindex. end do. what is the output ?
1844. Dear Experts pls answer the folowing qs that i have faced in the recent intvws: a) Can we
execute the script individually? If yes How? Else what we need to do so? b) Are Layout sets Client
1810.
independent? c) How do you assign a print program to a script? d) Can we call a subroutine in a
script? If so, how? e) What are the steps to print SAP script form? Cap-Gemini
1845. what is the differance b/w template and table in Smartforms?
1846. what is RFC STUB program? Cap-Gemini
1847. are all BAPI S are autocommited? if not what should we do? Cap-Gemini
1848. which table stores the online messages? Cap-Gemini
1849. how do you supress blank spaces in sap scripts?
1850. SAP modifications and enhancements stored in which table?
1851. what are the two types of request available in CTS?
1852. what is the various print modes available with SAP scripts?
1853. what is the standard program to check the consistency of the partner profiles?
1854. what is the standard program to transport transaction variants and screen variants?
1855. what is the field to be used in field catalog of an ALV report to hide the relevant column in the
list?
1856. what the tcode to check the consistency of work flow for ALE /EDI in a inbound error
processing?
1857. to explicititly intialize the selection screen for each call you must you the event
________________?
1858. to link the loop to a table control we use the addition WITH CONTROL else this works as as
stand-alone________________?
1859. what is the variable to be used in sap scripts to find the total number of pages of the print job?
1860.
1861.
what is the variable to be used in sap scripts to find the total number of pages of the print job?
Accenture
1862. hi.. sap sd is installed in my PC .i m unable to start becoz ,i have given wrong password many
times and it's locked.please tell me how can i open SAP logon. tell the process at my id
[email protected] please advance thanx
1863. how to copy client to client in scripts?
1864. what is Composite key in table creation? what is the use?
1865. what is the difference between Blocked ALV and interactive ALV?
1866. MY DOMAIN IS SAP-ABAP COMPARE TO WEBDYNPRO AND CRM-TECHNICAL WHICH IS
BEST?
1867. How can we determine a vendor is Bloc/Unblock from the table LFA1?
1868. In Smartforms or ADOBE Forms Can we get text from standard table in verticle form? if yes,
How?
1869. Difference between the sub-routines and function modules
1870. Difference between SY-CPROG and SY-REPID? Plz give me the answer,its urgent! Accenture
1871. is there any tping conversions in abp.and list them IBM
1872. How to add background picture/graphics in alv report? Accenture
1873. How to test a script?how to find versions in scripts? Accenture
1874. Difference between check table and value table. vCentric-Technologies
1875. what are the differences between SAP R/3 4.7 and ECC 6.0 from ABAP Point of view?
1876. WHY WE NEED TO CREATE A PORT IN ALE IDOCS? IBM
1877. How to debug an Idoc at runtime? TCS
1878. how to transfer a specific record of a table from one system( eg:test system) to other system
(eg: production system )? TCS
1879. out bound process code for quotation?
1880. which transaction is used to make dictionary adjustments when upgrading versions of SAP?
1881. when are objects are passed from task to the change request?
1882. what is the use of CTU_PARAMS hwen we r working with BDC
1883. what is meant stacked list?
1884. if you want to improve the response time logical database permits you to achive this using?
1885. what class is used to display the ALV grid control?
1886. what are the characteristics of a bapi?
1887. how can i access SAP through internet?
1888. what are version management functions?
1889. parter profiles are stored in which table? Cap-Gemini
1890. what is the use of CTU_PARAMS when we working with BDC? Cap-Gemini
1891. how does SAP organise its exits? Cap-Gemini
by which function module we are going to put data into sapscript ? IBM
what is sap scriptview ? IBM
How many times we can use At Selection Screen Output and on field event in report? IBM
Is der any other criteria for using For All Entries except if not itab is initial? IBM
when is the POV AND POH event used? IBM
Is logo in script 1st stored as tiff format before uploading or in jpeg format?and where is that
stored after uploading? IBM
1898. What is collect statement?explain with example? IBM
1899. What will happen if i dont use initialization and start of selction event in report? IBM
1900. I have 2 radio buttons with 2 fields each on selection screen.My requirement is like if click on
1st radio button the second radio button field should be disabled and and vice versa.How can i do
that? IBM
1901. Can we change the IDoc number ? if yes..How ? Bosch
1902. I am getting the (first) page number and the remaining records displayed in another list in
another page BUT the PAGE Number is not displayed? What is the code/solution? IBM
1903. In Interactive Report : How to come from Secondary List 10 to secondary list 4? what is the
Program code? IBM
1904. Create a Function module that can be called from JAVA using JCo with an example. SAP-Labs
1905. how to use table control?if suppose i have 6 records and i want more 4 records in
sequence.How to handle this scenario?
1906. I want to disable a field in selection screen so that it does not appear while displaying.How can
i do that?wat wud be the code? IBM
1907. where was the development server? Satyam
1908. why SAP scripts and smartforms are used Unilogic-Software
1909. how can we enable hyperlink in screen painter? Unilogic-Software
1910. how can we create editor box in alv grid? give coding Unilogic-Software
1911. can we insert two records in internal table? if yes give code. Unilogic-Software
1912. what is ECC in current version of sap r/3 ECC6.0. what is full form of ECC6.0? UnilogicSoftware
1913. what is the event while entering data in screen to get next field.
1914. what is current version of sap r/3 ? HCL
1915. difference b/w classical report and intractive report
1916. what is diffrence between table control and alv grid in dialog programming in abap. Infosys
1917. why abap/4 is 4th generation language ?
1918. what is difference betwen type and like statement?
1919. Smartform : how to print a smartform with portrait style and landscape style at the same time?
TCS
1920. SmartForm : how to print a smartform layout having one portrait and one landscape? TCS
1921. A report has statements like: top-of-page. write :/. End-of-page. write:/. But the end-of-page is
not displayed ?please verify? TCS
1922. How to write file to application server?
1923. what is file handling?
1924. If i double click on any sales order no it sud take me to the transaction how?
1925. How to change selection screen dynamically?
1926. I wrote one script program,Now i want to transfer this program from development to
production system so that output is displayed correct in production.please give me the steps.In
development showing correct output but whereas in production somewhat difference.So what is the
problem?
1927. How to debug smartforms? Wipro
1928. Difference between Call screen, Leave screen and Set screen. Wipro What all are the
differences did you find in hr module between 4.7 and ECC6 versions
1929. Which FM do you use to find out who is reporting to whom
1930. What is object in OM
1931. What are the FM do we use in OM
1932. What is the transaction code to modify the hr form
1933. What is features and transaction code
1934. What is functions and transaction code
1935. What is schema and transaction code
1892.
1893.
1894.
1895.
1896.
1897.
please tell me. different ways of find out the user exist?what is the basic difference between
,user exist ,BAdi,Bapis? Cap-Gemini
2064. please any one can tell me modifytable keyword used in DDIC? what is a basic diffrence
between modify table and update key word? KPIT
2065. how can u hilight perticular row in popwindow in report programming?please any one can tell
me? Intelligroup
2066. how can u highlight perticular row in report programming? please any one can tell me?
Intelligroup
2067. please any one can tell me the material no,and sales orde number?in which table conpany
masterdata will store? Infinite-Computer-Solutions
2068. where can u use secondary index in program please tell me? is there any tool to test in
development client?is there any performance tool is thre pleaseeee tell me? Cap-Gemini
2069. can any one can give me the Fi and co flow? and the tables ? KPIT
2070. any one can tell me which is the tables can store in ddic plese dont say db02l,please give me
different ways of resideing the tables ? KPIT
2071. can any one can give me exectly the TABLES key word?
2072. ANY one can tell me what is basic diff b/w keywords STOP,CONTINUE,CHECK,EXIT, ATEXITCOMMAND? Sony
2073. in interactive reports i can use hide field for secondary list out put in ALVs for secondary list
as a out put which field r u using?in interictive list ican use HIDE in ALVs which field r u using?
Cap-Gemini
2074. How many types os LSMW are there anyone knows please tell me? Cap-Gemini
2075. in bdc session method. if u run the record in fore ground manually i have a 7 records but at
the time of record processing first record produces the error how can u process records manually
in fore ground please tell me any one knows? Sony
2076. please any one can tell me How to validate the data in Table maintinance generator?how can u
validate the table field values if u r entering the data into fields .it shows record is wrong?wher we
can done validation in table maitenance generator before getting the data as out ? Sony
2077. What are the commands for BDC to pass specified values directly to a Batch Input Session..?
Cap-Gemini
2078. How to run a report in background??and if we try to run in foreground it says"this report sud
be run in background".what can be done in this case?? 2-And how sud we stop a report running in
background?? Cap-Gemini
2079. Can any tell me ECC 5.0, ECC 6.0 Released year? and difference between them?
2080. Which one of the following statements are FALSE about Inactive objects in SAP? a)
Development Objects are always saved as inactive versions. b) An inactive version of a
Development Object is written to developers pc c) In DISPLAY mode, other users can NOT access
the code of inactive version of a developer d) Generating a runtime object is same as activating a
development object.
2081. Which one of the following statements would occur in the PBO of a dialog program using table
control? a) module user_command. b) set screen '0100'. c) loop at itab. d) loop at itab with control
itab_tc.
2082. what next in SAP-ABAP/4 is it going to be change?
2083. In select-options,how to make high as madatory.....?if we use obligatory we'll get the low as
madatory by default? Patni
2084. In material report output,if i click on any material i have to open MM01 with that material in the
field how?and from mm01 screen i have to come out what i have to do? Siemens
2085. Suppose i have table with 2 columns say 1st with Numerics and 2nd with words like 1 for one
and 2 for two......so.if i want to change the 9 numeric word as some twenty...how? Siemens
2086. I have 100 records and 75th record contains error,if i use call transaction how many records
will update the data base and if i use session method how many will update? Siemens
2087. How to make smartform output into PDF?what r the step and requirments? Siemens
2088. while creating table in ECC 6.0,it'll ask for enhancement Catagory?What is that? Siemens
2089. Diff b/w ECC6.0 ,ECC 5.0 and 4.7...... Siemens
2090. In Dialog Programming Table Control,how to make only one row editable? Siemens
2091. What is netweaver???what is the relationship with ABAP? Siemens
2063.
What is the use if we define the BAPI as method in BOR? Purpose..... Siemens
What is the diff b/w RFC enabled Functional Module and BAPI? Siemens
1/ How do u apprach if error occur in sending idocs ? 2/ where u assigned process code ? TCS
what is difference b/w like and type statements?give example? when to use like and when to
use type?
2096. dofference between templates and tables in smartforms? CTS
2097. how to cal driver program in smart forms?? CTS
2098. How to maintain the table control in BDC? Satyam
2099. Polindrome Program for string and Polindrome Program for numbers in ABAP IBM
2100. write the program for prime numbers between 1 to 1000 IBM
2101. what is ASAP methodology? How many phases are there? what is the percentage of each
phase?
2102. what comes in Timkein written test I hope some body can tell me at this id plz tell it before 9
pm 19 march Timken
2103. wtat is diff. between bdc and session method Intelligroup
2104. hoe can we write the include programs in reports
2105. how to retrieve the field label of data element in reports.(not in alv)
2106. what is table maitainance generator and how to create that? what is transaction code?
2107. can we write any interective or classical reports in alv reports if yes how?
2108. can any one tell me the following question's answer 1. How can we create PUSH Botton in
presentation layer. 2.How can we print the record. 3.If database has nor records & if we write 'for all
entries' in select statement then what will be happen. Accenture
2109. can onyone tell me , how many data classes and size categories are there ?
2110. what is a ticket?
2111. What is the function module for INDIAN PAYROLL to read table cluster for given cluster table
and sequence number?
2112. What is the significance of keyword " H I D E"
2113. What is the difference between occurs 1 and occurs 2
2114. Can we have more than one selection-screen . And how ?
2115. wat is the significance of keyword " LIKE ".
2116. how do you pass table to function module? CTS
2117. what are the similarities between internal tables and structures?
2118. which state ment is used to move identically named fields between structures?
2119. What is the Landscape in ur company? Satyam
2120. Difference between GET and GET Late? How to create a index on views?
2121. What is binary search? where it is used?
2122. What are the errors occurred in a report? TCS
2123. what is long text?
2124. How to upload the customizing data using LSMW? Satyam
2125. How to change the development class of any object? HCL
2126. how to calculate the difference between two date type of variables ? TCS
2127. How many servers present for Database servers,Presentation and Application servers in
Landscape? All these servers are present at client side or company side,means where the Database
server is Located, where the Application and Presentation servers Located in a Landscape? TCS
2128. In a script, i want to print something at end of last page only.How can i print it? Satyam
2129. What are types of Projects ? Satyam
2130. What is the difference between LSMW and CATT? L&T
2131. What is an index? By default system will create the primary index or User can create,if user
How? And also Secondary indexes by User or by defaultly system? TCS
2132. what is cardinality.how it will work in abap TCS
2133. what is index? I need exact defination? how will create a secondary index? Caritor
2134. what is difference between update and modify
2135. am facing problem in inserting multiple data from user defined selection screen to internal
table can anyone tel me any small code tht can insert multple data from screen to inernal table.
thanks in advance.
2136. WHAT ARE THE STEP LOOPS . HOW DO U PERFORM PAGE DOWN AND PAGE UP IN STEP
LOOPS
2137. explain abt EXTRACT STATEMETN
2138. what is the difference between select single * and slect upto 1 rows
2092.
2093.
2094.
2095.
What is the use of " TABLE MANTENANCE ALLOWED " . And itts transaction code
What are the function module types
what is the difference b/w linear search and binary search? (how can these search) HCL
what is the keep parameter in BDC_OPEN_GROUP function module Reliance
what is the difference b/w database and data dictionary? Reliance
if we are inserting record in BDC,if poweroff how can you know how many records inserted?
(poweroff yourside) Reliance
2145. 1.What is the difference between append structure and include structure. 2. what is the logging
of technical setting while creating db table. Accenture
2146. how can we get what are the exits available for va01 transaction? Wipro
2147. 1.what aer the text modules. 2.what is function module in report. 3.what is the land scape in u r
projwct. Cap-Gemini
2148. Utility of bdc cursor?
2149. What is an implementation project?In any job openings they desire people with at least one
project with an end to end implementation. Could u give me the details of project implementation
and the role of an abapper in the implementation? And what type of questions do the recruiters
normally ask for implementation projects? Plz reply me with a suitable answer. Regards, Rahul TCS
2150. what a full form of badi,bapi,alv,ale . VisionSoft
2151. how many fields in mara table. VisionSoft
2152. Suppose, we are creating one table. at that time we are mention table space and size category.
Generally size category is from 0 to 6 is available. suppose if we are declare size category as
0(zero). For 0 (zero) the size of rows is from 0(zero) to 19000. I have 25000 records to insert into
table. but table size is declared as 0(zero). i.e 19000 records. what about remaining 6000 records.
shall i insert in to table or not? if insert how can i do? if not insert what can i do? Please answer
me? i faced this one in TCS interview. TCS
2153. hai iam srinivas. I have done client copy in sccl for 800 client and i have stopped the process
in middle unexceptedely and after some time iam unable to login into the client 800. error message
is incorect password or inclient username. how to refresh the client or solve the problem. please
me out in it.
2154. how to create bdc for sales order ? if any one kow the steps plz mail me at
[email protected] IBM
2155. How many sessions will be opened using bdc_open_group? HP
2156. What do you do when the system crashes in the middle of batch session? Vanguard
2157. What are the problems in processing batch input session? HP
2158. How to generate and processing the session in the same program? Satyam
2159. What table stores online messages? Wipro
2160. What is the Difference between Header and Item in ABAP? VBAK-Sales Order Header,VBAPSales Order Item, how can u use these tables in one query,means by using these tables write a
select query.
2161. what r clients?what r the clients number available in a company?eg..800 client is for which
application?? IBM
2162. what is technical documentation and functional documentation? what are the steps for unit
testing? TCS
2163. could u plz provide me the details of blue printing? Role of an abapper in implementation
project? Details steps of implementation? Regards, Rahul TCS
2164. what is the RANGES stmt used in ABAP. if anybody know this answer. plz post imdtly
Accenture
2165. how to run bdc program in background? HCL
2166. how to send the idoc to multiple sub systems? TCS
2167. there is size categery(0,1,2,3)if i need more space after giving the size 0.what i have to do
now? HCL
2168. 3 types of buffering techniqes. 1.bufering not allowed 2.buffering swithed on 3.buffering not
allowed but switced on what does it means? HCL
2169. what is collective search help? HCL
2170. how to change the package of an object?i.e a report stored in ymadhuri package.now it should
be changed to ysaru HCL
2171. what is user specific parameter?
2139.
2140.
2141.
2142.
2143.
2144.
SAP Script for Billing in which Billing document number was displayed as header, Bill Type,
Bill Category, Bill Item, Cost, Base Unit of Measurement and Material number were categorically
displayed for each billing document number. plz mention the detail coding Tahnks, Rahul TCS
2209. Interactive Report that list purchase order details of a vendor. When the user double clicks on
material number it shows detail list with fields matkl, meins, brgew, ntgew, gewei.The selection
screen consist of sales organisation, distribution channel and material number. plz mention the
detail coding Tahnks, Rahul TCS
2210. Sales Order Information Report that lists information like sales order no, Item no, material no,
Quantity, Quantity unit, Net value, Currency,Sub Total, Grand Total. plz mention the detail coding
Tahnks, Rahul TCS
2211. how to Create a smart form related to gate pass to be submitted to vendors location. This
form outputs document number, date, vendors name, address, material details, quantity, unit,and
the company logo. TCS
2212. how to create module pool program using table controls based on selection criteria specified
for sales document item in the first screen and item details in the second screen. plz mention the
detail coding Tahnks, Rahul TCS
2213. how to write a Classical batch input program using transaction FK01 to create vendor/change
the vendor address into R/3 system. (Call Transaction Method) plz mention the detail coding
Tahnks, Rahul TCS
2214. How to Modify the standard invoice and sales order form to generate purchase order for
printing and upload the company logo. plz mention the detail coding Tahnks, Rahul
2215. how ro trigger a top of page in alv report? CTS
2216. how can we print both side in smartforms? what connects smartform to it's driver program? in
which event validation is done?
2217. my questions are (1) how to transport a table along with its data from dev to prod/qa server?
pls reply elaborately. if possible with screen shots. (2) i want to display like this :- * ** *** **** HCL
2218. Can any tell me some std BAPI's which r used regularly....and they use and means of it?Please
it was urgent? Accenture
2219. what is the z-transaction?? what's the use of it?? TCS
2220. How to validate the entry in Screen & dialog proframming?? Is there any way to send the
error?? TCS
2221. How to find function module or Bapi for particular transaction in sap? IBM
2222. In BDC,i have 3 transaction and one flat file with data for all those 3 transaction requires........i
want to process these 3 transaction at a time using that single flat file,if 3rd transaction fails to
upload the record,can we roll back the remaining 2 transaction or we can't?Is it possible in
BDC,How?
2223. In alv Reports,how the Output is displayed ad editable and how i can edit the same and how it
will reflect the DB?Please help........... Accenture
2224. What is Project management?I was asked weather u worked on This? Accenture
2225. I have 3 transactions,where the output of one transaction is input of another and output of 2nd
transaction is input of 3rd transaction.i have one flat file with all data for the 3 transaction.if the 3rd
transaction failed can we rollback the remaining 2 transactions or not.Is this possible in BDC,How/
Accenture
2226. What is the diff b/w load of program and Initailazatio Events? Which event triggers each time
we exectute the program? HP
2227. In MPP,i have to create a input/output Button when i click ther i have to move some other
transaction How? HP
2228. How to create Extended Idoc? HP
2229. IN Smart Form how many windows are there explain them each? Upto how many main
windows we can place in Smartform? HP
2230. Which event in Reports is equal to PBOin Module Pool Program? HP
2231. In Table Maintaince Generator for a table i need some fields to be filled default,like date from
sy-datum.........when the displays initailly....HOw HP
2232. I have 2 transactions,the output of 1st transaction is input of 2nd transaction.In this
senario...Which method we use to upload the Data,Call trans or Session maethod?How? HP
2233. Any once please tell me some interview questions regarding Smartforms?
2208.
possible to transfer data into same client using ALE? 12. Customization changes are automatically
stored in a Transport request or not? Explain 13 User id in SAP support system is called as what?
a) Userid b). SAP userid c) S userid d) None of the above.
2265. The sap for utilities is a. Program b) Function c) Approach d) Industry Solution
2266. In Work flow whats the use of WF-BATCH?
2267. What is the difference between data base objects and runtime objects?
2268. Is der any other way or tcode to process the session except SM35? IBM
2269. how to handle events in classical reports?
2270. What in script controlling? what are the events in maintenance view: Accenture
2271. i have ztable for that i had created screen in that screen i had designed tablecontrol and save
button calling ztable fields thorugh tablecontrol i have to insert the data in ztable if i press save
button the data which i had enter in table control that should b save in ztable can any one send me
the code for this for this. example is sm30 there we can directly insert the values directly in a single
shot right?. urgent Axon
2272. difference between TYPE and LIKE ? IBM
2273. Waht is "READ TABLE" command?? Whats the use of it?? Whats the syntax of the same? TCS
2274. What is the purpose of buffering? How many types of buffering? Axon
2275. What is the purpose of table maintains in se11? Axon
2276. How can I get the default values (like date, company code) in module pool programming
before the screen is displayed?? I dont wanna use VARIENTS... IBM
2277. what is OSS?please answer if anybody knows
2278. There are 4 internal tables containing data. How to put it into a final table? IBM
2279. Is multiple implementation possible for one BADI definition? If possible the how can you know
that which BADI is active. IBM
2280. How do you create secondary index. Do you have access to create secondary index? IBM
2281. How do you get your task to perform? IBM
2282. Whom you report if you face difficulty in understanding the business process given in
Functional Spec. ACS
2283. Whom do you report when you find difficulty in Tech. designing? ACS
2284. Tools used for internal communication. ACS
2285. Which function module you will use to attach a search help to a field in Selection screen? ACS
2286. Events in Reporting. Which events we can ignore while coding. ACS
2287. Under which event we can make a filed disappear on selection screen. KPIT
2288. How do you do effort estimation? Based on which parameters? KPIT
2289. Worked on support project? How do you handle serious production issue? Severity? Time
taken to resolve the issue? How you get issues/tickets?
2290. How many records a Read statement will retrieve?
2291. n an internal table you want to modify content of a particular field in a row. How to do it? HP
2292. There is a file in application server. How can you upload it and separate it as per different
fields? HP
2293. How do you monitor sessions? HP
2294. For which transaction you used BDC? HP
2295. Performance tuning. How can you know which line of code taking long time to execute? HP
2296. During performance analysis you found one select statement taking long time. How to correct
it? IBM
2297. What are the steps need to setup before creating an IDoc? IBM
2298. What was the requirement of IDoc in your project? How it was working? IBM
2299. What was the purpose of the BADI you have used? IBM
2300. How to put checkbox against a row in ALV display? IBM
2301. Suppose there is check box along with the rows. The requirement is, select the require check
boxes and press a used defined button to save all these checked row data to another table. How
can you do it? IBM
2302. What is parameter id? Where you can find parameter id for a field? IBM
2303. What are the developments you have done with Modulepool? IBM
2304. What are the developments you have done with data dictionary? IBM
2305. Have you worked with support? How ticket comes to you? What were the timings for resolving
tickets types of severity? IBM
2306. what are the types of lists in pf-status in mod pool? IBM
step by step process of abap debugger?After setting break point how to see internal table
value field value etc
2356. Have you created custom table? Do you always use existing data elements and domains or
create new ones? whatis the transaction code to see existing data elements and domains?
2357. Performance wise inner join is better or For..ALL entries? why?
2358. Where will you place data element domain and field together in an ABAP Program?
2359. How will you pass the data/programs from one system to other system?
2360. How will you print TOP-OF-PAGE in ALV Report?How will you make ALV Report interactive?
2361. In Interactive report if i try to go to 20th list and my report has only 19 list what will be output?
2362. Have you worked on Function Modules?How will you raise EXCEPTIONS in function modules?
2363. Why you say Call transaction is faster than session?
2364. How the business is carried out in your organisation?How did you get specs for coding ?
Explain me complete step by step scenario from client deciding to switch SAP to your role of
coding and after coding explain me how the object reaches back to client? Dont explain me about 5
phases like Business blueprint,realization etc?
2365. To find User exit in SD module we can use development class VMOD and find out related exits.
2366. Which development class you use for MM FICO and PP Modules? IBM
2367. What is the sequential order of triggering events in interactive report? IBM
2368. What is the sequential order of triggering events in interactive report? IBM
2369. Hi folks , this is venkat ,I am looking for SAP EDI training if you have any idea please mail me
contact details vekat.
2370. 1. Driver prog & executive prog both r same ? 2. what is difference between At selection
screen & At selection out put ? 3 . what is node used in smart form ? IBM
2371. 1/ what r the driver programe used in your script ? 2 / can we change from classical report to
interactive report ? IBM
2372. How do we see the data in Cluster table? Kennametal
2373. Describe ALV Report Cognizent
2374. how will u write a report for performance point of view ? IBM
2375. How BAPI is Different from call Transaction/Session Accenture
2376. PLEASE TELL ME SD AND MM FLOW/CYCLE WITH TRANSACTION CODE AND
CORRESPONDING TABLE TO BE UPDATED? Bosch
2377. in a report there is two options for each there is a seperate alv reportt. how to have form topof-page for both in same report.
2378. HI ALL!HOW CAN WE SEND SMS THROUGH SAP ECC5 (NOT THROUGH ECC6)???ANY BODY
KNOW THOSE PROCEDURE KY GIVE REPLY.....
2379. Hi, I have a requirement for locking the fax field in user master records. As you know user can
edit the details using the System>profile>own data (SU3), it is causing some security threat to our
model. What i want is users should not be able to change the fax field under communications when
they get into su3.I have heard of user Exist functionality but don't know how to implement it. Can
you suggest something, it will be greatly appreciated.
2380. which part of the internal table syntax determines how ABAp accesses the rows of the internal
table ?
2381. diff between BADI and ENHANCEMENT ??
2382. how COLLECT and APPAEND works
2383. how should post data from my internal table to flat file manually in bdc .please explain step by
step
2384. what is the effect when a clear ststement is used on an internal table without header line?
2385. which releationship can be established in watchpoints
2386. what "types" can be assigned to a data object in an abap
2387. Hi All, I have a scenario in Script. I want to display the data both side in a page. How can get
it? IBM
2388. What is updated Function Module. IBM
2389. Hi All, Can u tell me the difference between RFC and BAPI. I know Both are remote enabled.
IBM
2390. what is partner profiles? TCS
2355.
Hi, can any one tell me the follwoing question's answer 1.How can we validate single selection
screen field and multiple selection screen field in report and also in module pool programming.pls
give answer in brief with example.
2392. What is search help ? pls tell search help type breifly with example? CTS
2393. how to find out where to create a badi. CTS
2394. what is the difference between templates and tables. CTS
2395. requirement is to create a badi for xd02 initial screen .how to search foe it. CTS
2396. how to search for a badi? CTS
2397. what connects smartform to it's driver program?
2398. in which event validation is done? CTS
2399. how can we print both side in smartforms? CTS
2400. what connects smartform to it's driver program?
2401. in which event validation is done? CTS
2402. how can we print both side in smartforms? CTS
2403. what is mean by table control, where it is used? why it is use? IBM
2404. Why u r looking for change from current compeny? which is the best answer?
2405. what are the advantages and disadvantages in LSMW over BDC? IBM
2406. Scenario 1: I am uploading 1000 records using session method. I have an error in 950th
record. What will happen and howmany records will upload? Scenario 2: I am uploading 1000
records using Call Transaction method. I have an error in 950th record. What will happen and
howmany records will upload?
2407. difference between user-exit and customer-exit?
2408. How to do sorting in classical report? TCS
2409. what is 3 tire architecture and how does SAP utilizes this architecture. and how do netweaver
came into picture?
2410. what is 3 tire architecture and how does SAP utilizes this architecture. and how do netweaver
came into picture?
2411. where you will store your technical spec in your company? r u using any tool for that. how u
will send the same to your functional people.
2412. What is the mandatory event in LDBs.
2413. Hi, How to call transaction( Any transaction ex:xk03)from ALV Report. Where should I write
code?
2414. How to display footer in every page in ALV report?
2415. Hi, How to do sub totals in classical reports?
2416. Can I write COMMIT and ROLLBACK in user-exit? GE
2417. What is the exact use of Reuse_alv_field_catlog_merge. IBM
2418. I have two pages, In one page I want address, Header, Main & footer. In the second page I want
only Main. How to do it?
2419. what do u mean by occurs 0
2420. is it possible to upload material master data through BDC with one flat file containing both
semifinished material & row material combined?????????
2421. can anybody give me functional specification (or table name & field names) of stock analysis
report, work in progress report,generating vendor detailed list
2422. how to fetch data form without header line internal table ?
2423. difference between the workarea and headerline.plz tell me the answer
2424. defination of workarea? and header line
2425. what is the difference bet ween the appened and insert statment.plz tell me the answer.
2426. i have a doubt ,what is the difference between the workarea and headerline . plz tell me .
2427. 10> Can u give me one example where we should use only CALL TRANSACTION method in
BDC? HP
2428. We execute the BDC program in foreground and got list in C drive. If the same program we can
execute in back ground what happen?
2429. Can we write inner join between transparent table and cluster table? If both having common
fields? Cap-Gemini
2430. Logic for using table controls in BDC
2431. How to decide whether we can use BDC (OR) LSMW for a given transaction?
2432. what are the table controls in BDC ? Deloitte
2433. What type of user exits have you written? Deloitte
2391.
i have created a smartform containing table which start from middle of first page.when i run
smartform then on next page same table appears which start from middle of page.so how to get
table that start from top of next page??
2521. how we output smartform in pdf format??? anyone give me steps on that.
2522. why we call smartform as a client independent? (as we are able to retrive data from any client
dependent d/b table in smartforms. )
2523. hi my name is amit i have passed BE(CSE) with honours(72%) in 2006 yr. i have completed
SAP/ABAP training with good exposer. i need a staffing company which can provide me real time
exposer in SAP R/3. so plz help me out and send any information regarding on my mail id or tele.
no. 9999784331 thanks HP
2524. what are value table and check table ?and what are the difference between them? Cap-Gemini
2525. how to keep pushbuttons in application toolbar in alv? Cap-Gemini
2526. shell we use select-options in mpp?then how? Cap-Gemini
2527. if there is no top-of-page event in reports then what happens? Accenture
2528. what is Bapi?what is the functionality of Bapi?why we go for Bapi?
2529. what is the difference between user exit and customer exit? what is ment by cusomer exit?and
what is the difference between user exit and badi?
2530. what is the use of help view?how can we create search help for a field?in how many ways we
can give search help?
2531. what is ment by view?how many types are there ?what are they?and what is the difference
between data base view and projection view?
2532. how to see the tables of 200 in client 100?
2533. what is ment by buffering?
2534. In the scripts,Which is mandatory function module means with out Open_form and can we
write the print prg Deloitte
2535. In the User exits how you can use sub screen and please tell me the steps Deloitte
2536. In the user exits,how we can know that which field you are changing.Could any tell me what
are the steps required Deloitte
2537. 2)what will be the size of transparant table IBM
2538. i had to write the code in such a way that duplicate entries should not entered in sap data base
IBM
2539. I have two internal tables itab1 and itab2 and I had move the content of the itab1 to itab2 and
then itab1 had to deleted Accenture
2540. What is ALV?
2541. what is the unit of work IBM
2542. what is the differnce between normal funcational and ALV funcational module IBM
2543. what is naming conventions given for lock object and how you create the lock object IBM
2544. with out using chain and end chain how you will do validations IBM
2545. Where does the Hide data stored IBM
2546. 1)how can you write select statment in scripts(se71) with out touching the driver program
IBM
2547. 2)what is the differnce between user exits and Badi IBM
2548. How can you remove leading zeros of a number in script? Accenture
2549. hi friends, while sending idoc's to receiving system,i got msg type 3 and 12 in sender side.but
in receiving side while executing we02 ,i am getting error 'no idocs selected' instead of getting msg
type 53.here i am simply sending one material from one client to other client.if anybody knows that
problem ky revert back.
2550. How to upload a flat file from a legacy system into sap using BAPI ? And i also want the flat
File to be uploaded in another Client.. ie suppose i am working in client 800 , i want run the BAPI
and upload the file to Client suppose 000 directly from 800. PWC
2551. why SAP scripts are client dependent and smart forms are not? KPIT
2552. Table ztest has a secondary index on the following fields: tnum, tcode. Select * from ztest
where tnum ne '123' and tcode = '456'. Why is the index not used in the above case? Choices: a)
Indexes are not allowed on Z tables b) Variables must be used, NOT literals c) Select individual
fields, not select * d) Client is not in the where clause e) NE invalidates the use of an index Info: Can
someone explain in detail why this happened? It will be really helpful to handle to case in
Secondary index: SAP-Labs
2520.
Hi, If anyone is interested in SAP ABAP from basics to Expert. Email me your contact details to
[email protected]
2554. how many types of table types ?
2555. how to call the smart form from the report?is it Possible or not?
2556. how to make split command reusable
2557. 1/ what r the parameter used in alv report ? DataMetrix
2558. What is the max no of screen no's we create
2559. What is the difference b/w BAPI and Function module
2560. Hi All , Please mail me Interview Questions Related to SAP ABAP WITH CRM FUNCTIONAL
EXPERIENCE please help me out ASAP as i m in Great need of Help.. my email Id is
[email protected] Thanks and Regards surendhar
2553.
I want to display the different data on the multiple main windows of the form in Sapscript.
Is it possible ? If yes, then How? Accenture
2562. How you can perform field-validation in your dialog program ? IBM
2563. How we can give authorization on the fields of table control in a dialog-programming? TCS
2564. Which configuration we have to make first before we want to start Business Workflow with our
SAP R/3
2565. What is the table & field to identify the no of items (bottles) stored in one case? iQuest
2566. how to sort numbers in sap-abap using internal tables without using sort technique.
2567. Hi, My question: Iam an ABAP Programmer with 3+yrs exp would like to learn ABAP CRM . Plz
let me know the best institues(coaching centers) in HYd to learn the same.
2568. What is a BAdi? How to implement a BAdi? SAP-Labs
2569. how to caluclate sub total of some specific fields ? Ex 1 a 2000 2 a 324 3 b 3245 i want total of
all a's ,,, please dont use collect
2570. Wh bapi u have used in rfc?
2571. Suppose Idoc is strucked in the Q then how can I resend it?
2572. what is DATA ,TYPES,PaRAMETERS called in ABAP terms?
2573. What is the advantage of structures? How do you use them in the ABAP programs?
2574. can anyone tell me how to code bdc program with 2 or 3 conditions in g/l account master(fi/co)
how to make logic in choosing radio button automaticaly (for balance sheet and profit loss accout
in our case.)
2575. 1.How to pass the variables to form? 2. How did you test the form you developed? 3.what are
the outpout types and tcodes? 4.what mean by performance analysis?
2576. A company asked me to reply the below question Please send the one page note on your
understanding of your module--- topics and duration)???
2577. Hi, I am a Trainer in SAP ABAP having 2 years of experience in teaching ABAP and having 5
years of real time work experience in industry. If any body is interested email me your contact
details to [email protected] I will provide online training. Excellent material is provided. If any
one is interested for training you can contact me for further details. Free demo is provided before
joining the course. Excellent Training for reasonable price. SD and MM Concepts will be teached
freely. References will be provided upon request.
2578. WHAT IS THE USE OF SECONDARY INDEXES AND WHAT IS MAX LIMIT OD SECONDARY
INDEXES?
2579. WHAT IS TABLE BUFFERING AND ADVANTAGE? Sony
2580. WHAT IS FIELD-SYMBOLS? Sony
2581. WHAT IS TCODE TO CREATE NEW MESSAGE TYPE? Sony
2582. WHAT IS THE USE AND DIFF B/W INSERT, UPDATE AND MODIFY WHILE UPDATING THE
DATABASE TABLES? Sony
2583. WHAT IS THE DIFF B/W MACRO & SUBROUTINE? Sony
2584. What is an Extended IDOC and It's purpose? Sony
2585. can u add a new view to the existing view
2586. what is partner profile. in which table it can be stored Cognizent
2587. can any one tell me the types of smartforms Cap-Gemini
2588. what is the Currency and Quantity field in BDC? Cap-Gemini
2589. How to handle Error in LSMW. This is urgent anybody know this answer plz post me... CapGemini
2590. can anyone proide me reading material on [email protected] please thanx in advance
2561.
1.what is the difference between e-commerce 4.0 and 5.0 2.how dose price determnation takes
place using ipc 3.how dose data gets updated in your backend system 4.what is your system
landscape 5.how do you transport the data from devolopment sys to quality and from quality to
production servers. Wipro
2592. hi what is difference between REUSE_ALV_GRID_display and reuse_alv_list_display . IBM
2593. Shall we use the tables existing in the system for related applications directly (by directly
selecting from the database in the pgm) What is the common practice in industries regarding the
same? Can anybody help me?? THANKS IN ADVANCE
2594. Can we have two reports running parallely and both the reports sharing the same internal
table for processing the data? General-Mills
2595. what is diff between ECC 5.0 AND ECC 6.0 Lloyd
2596. What is the difference between field string and internal table?
2597. Where u can use the Currency Field?
2598. What is the purpose of Edit Masking? IBM
2599. What is the function of Substring? Satyam
2600. How many types of organization data? Atos-Origin
2601. Withou using SLIN transaction how would you check custom programs? Bosch
2602. Why we do Version comparison? IBM
2603. What is the difference between ECC versions and older versions? Bosch
2604. What are different types of windows in Smartform? IBM
2605. You have 5lakh records to transfer to sap from flat file. which method of bdc you wiil choose
and why? IBM
2606. How would you add fields to the sapscript without modifying the print program? IBM
2607. How would you debug custom programs at runtime? Bosch
2608. What is Deep structure and Flat structure? Bosch
2609. Can we create more than one main window in smartforms? IBM
2610. Can we create more than one main window in scripts?
2611. How to create one page in landscape and the other page in portrait in Scripts?
2612. Very important How to find user Exit for a standard SAP Object(field,screen,menu etc)?
2613. Difference between BAPI'S and Fumnction modules.?
2614. What is the difference bewtween client dependent tables and client independent tables?
2615. How to create client dependent tables and client independent tables?
2616. Difeerence between various BDC method.Which is the best one? SCS
2617. How will you validate selection screen elements?
2618. Is BSEG and BKPF transaparent tables?
2619. What is a Normal,Constant and Variable Window?
2620. Purpose of the statemement TABLE in a report?
2621. How to get POPUP SCREEN in a program?
2622. How to add Text Modules in SMARTFORMS? Mascon
2623. Purpose of PROTECT and ENDPROTECT in scrip
2624. How to get Item Header in Sales Order?
2625. We give KEEP in BDC structure...what is its purpose?
2626. What are the compulsary values in RESUSE_LIST_DISPLAY and RESUSE_LIST_GRID? TCS
2627. What is the purpose of main window in SF n Script?
2628. Difference between a table and smartform?
2629. How to rereive text elements in SF and script?
2630. Want to stop the BDC session in progress.How?
2631. What happens if there is no CLOSE_GROUP in a BDC.
2632. What is the difference between TYPE and DATA?
2633. What is the difference between TYPE and LIKE ?
2634. what is the difference between bdc and lsmw?
2635. how to print barcode in vertical manner CSC
2636. variant attached in the report. can be transportable from one server to another server IBM
2637. how to code in SMARTFORMS for MULTIPLE RECORDS? IBM
2638. what is the diff b/w error and exceptions
2639. I have 10 records in flat file. In that 7th record is error record. I want to update to data base. If i
used Call transaction method what about 7 record and what about 8,9,10 records. If i used Session
method what happen. Is it updated or stop at 7th record? HCL
2640. in which table idocs are stored? IBM
2591.
pls if any one have idea ,reply as soon as possible 1.Allied solution group inc. is a genuine
company or not ? 2.what is update module. 3.Transaction: scc3 what it is?
2642. which of the following are used to define data in abap 1)parametrs 2)tables 3)class 4)data
Infosys
2643. 6. wat is pf status interactine report?
2644. 5.wat is difference b/w dilldown and interactive report?
2645. 4.why dont use start form in script?
2646. 3. why u select the session method in bdc ? how many records wil be updated on that time?
2647. 2. wat is sub screen?
2648. 1.why dont use top of page. wat is the use?
2649. what is diffrence subroutine in report and subroutine in script..... Accenture
2650. if i login in english then top-of page will display in english.if i login in german then it will
display in german as on .. abap report how......... IBM
2651. what happend if a select statement inside aloop.... Accenture
2652. What is the testing tool in ale........ Accenture
2653. How To Debug Ale ....
2654. If u use US Database server? How can access the client? Intelligroup
2655. How can u create a new page in scripts? Intelligroup 3
2656. when we create a simple report with input field as S_VBELN (as select-options)..for any range
of values it is displaying the output...i dont want like that..only the existing ranges it must be
displayed...for ex. in sales ranges from 4969...but in input from 1 to z also displaying..please send
me the solution
2657. whats the difference between ERROR MESSAGE AND WARNING MESSAGE 4
2658. Pls reply me 1)can i debuging the idoc. 2)give some example of pool table and cluster table.
3)what is update module. Accenture
2659. how to send mail on smart form IBM
2660. what is the use of STOP,EXIT,CHECK,CONTINUE in internal table? Accenture
2661. prerequisities of FOR ALL ENTRIES Accenture
2662. what is Catch Command? IBM
2663. How data is stored in cluster table? IBM
2664. 1.how to developed inreractive report 2.how to developed classicall report.
2665. write the codes for how to handle currency and date fields in bdc IBM
2666. write the codes for how to fetch data from a select query written under end-of-setection event.
CTS
2667. How we can Hide buttons on application toolbar.?
2668. wht is the class name in inbound idoc
2669. wht is the diff. b/n initialization and lotus of event
2670. explain the scenario of ALE/IDOC
2671. how will u extract sales doc. number of corresponding billing doc. number with out using
select query IBM
2672. if i want to insert 10 laks MM records and for inserting one record it takes 1 min by using call
transaction or session method . so here is there any alternative IBM
2673. what is tablemaintanance generator ? how to create it?
2674. 1.why dont use top of page. wat is the use? 2. wat is sub screen? 3. why u select the session
method in bdc ? how many records wil be updated on that time? 4.why dont use start form in
script? 5.wat is difference b/w dilldown and interactive report? 6. wat is pf status interactine report?
2675. how top handle error in LSMW? Accenture
2676. what are userexits?? how to use it?? whats the importance of them?? can it be used in
interactive reporting to directly come to basic list?? Essar
2677. In sap script how to print bar code in vertical manner CSC
In Badi wher is the standard prograam name to add the additional progaram CSC
2678. In sap script how to print bar code in vertical manner CSC
2679. can we write a select query under end-of-selection event. and will it fetch data.
2680. how to see the last updated record in a table?
2681. Wats the difference between package and devolopment class?? Bosch
2682. what are the prerequisites for using a bapi in your program? PCS
2683. wat is a source list? Patni
2684. can we fetch data , when we write a select query under end - of - selection event. CTS
2641.
when are this three events fired and tell me whuich event is fired first ,second and third --- at
selection - screen, at selection -screen output, and at selection- screen on value request. CTS
2686. Identify the valid statement when coding a field exit (a) SUBMIT RSCA101X. (b) MESSAGE
E101. (c) MESSAGE I101. (d) BREAK-POINT. Satyam
2687. without debugging key how can i debug function module? IBM
2688. stock transfer from one plant to another plant ? i want the total description. IBM
2689. CAN WE DEBUG A IDOC? IF YES HOW TO DEBUG IN INBOUND SIDE AND OUTPUT SIDE.
2690. IN SCRIPTS IF WE HAVE EMPTY SECOND LAYOUT AND IF WE HAVE MENTIONED ABOUT IT
IN NEXT PAGE ATTRIBUTE THEN IN OUTPUT HOW WE GET THE SECOND PAGE OUTPUT.
2691. What is SQL Trace, how would you carried out performance analysis of ABAP code using SQL
Trace? Give the steps?
2692. A function group contains globally defined internal tables and function modules defined in it.
FMOD1 populates itab1 and when FMOD2 is called will itab1 contains those values being populated
by FMOD1? Accenture
2693. BAPI is efficient than BDC? The question is with options, asking which of the following is
true? Accenture
2694. To avoid screen resolution problem while recording, Accenture
2695. In module pool, when table controls are used the command that is written in both PBO and PAI
is Accenture
2696. To avoid page skipping and to write the contents in the same page itself in SAP script,
command used is Accenture
2697. Which of the following is not an exit command? Exit, Back, Cancel, Stop Accenture
2698. What is the system field that stores the level of the list? Accenture
2699. Internal table itab contains some records. If the code is like this : LOOP AT ITAB. APPEND
ITAB. ENDLOOP. What ill be the result?? Accenture
2700. Which of the following assigns work to the application server? Options ::Dispatcher, work
process, roll area Accenture
2701. 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 Bosch
2702. How to work on TCODE SE16?
2703. 1.Which of the following is not an EXIT command? options: BACK, CANCEL, STOP, EXIT? 2.To
write certain contents in sap script without skipping to the next page, which command is used?
Options: ADDRESS...ENDADDRESS, PROTECT...ENDPROTECT, AT...ENDAT 3. When using a table
control in module pool, which statement has to present in both PAI and PBO. options : FIELD,
LOOP..ENDLOOP, CHAIN...ENDCHAIN 4. Lock objects are : options : FUNCTION MODULES,
PROGRAMS, TABLES Accenture
2704. if while coding power goes off , how to retrieve the codes? IBM
2705. what are the important fields while preparing sales order,inquiry?
2706. project preparation,prepare blue print and realization what do u mean by this?
2707. suppose i want to print sap script output in different printers at a time what are the settings i'll
have to make? Colgate
2708. what is use of sap script text file header?
2709. what is difference between include structure and append structure?
2710. when we are using at new?should we use this inside the loop or outside?what will be the
effect?
2711. when we are entering a purchase order it goes to which table?
2712. what is was server in sap
2713. what is use of material master c segment(marc) table?
2714. what is use of info records,condition records in material master?
2715. where can i get free study material for dialog programming.
2716. what is version in reports?
2717. whats the difference between range & select-option?? IBM
2718. WHEN TO GO LSMW ,BAPI,BDC FOR UPLOADING DATA.GIVE ME DIFFERENT
SCENARIOS(EXAMPLES).
2685.
2793.
2794.
What is Web dynpro? when does the secondary index should be used what role it play when
we use secondary index in tables Accenture
2795. what are the Events in Application Server CSC
2796. With out any Write statement will the Top of the Page and End of Page trigger? TCS
2797. what are Program Events and Run time Events in Reports TCS
2798. How you can handle errors in BDC.IN the log file what type of error mostly will be facing in real
time TCS
2799. Difference between interactive and ALV Reports TCS
2800. How you will doing the bypass by using select statment Deloitte
2801.
2802.
2803.
2804.
2805.
2806.
2807.
2808.
2809.
2810.
Details about interface, abstract class, final class, friend class , deferred class, load class.
2811.
2812.
2813.
2814.
2815.
2816.
2817.
Concept of overriding.
2818.
2819.
Description about ME
refrence.
2820.
2821.
2822.
A brief Concept of narrow and widening casting related to OO ABAP with suitable real time
examples.
2823.
2825.
2826.
2827.
Brief idea about transient data object and persistence data object.
2828.
2829.
A brief description about Pseudo-code comment( Risk level and Duration)and handling
mechanisim.
2830.
2831.
2832.
2833.
cl_gui_container,cl_gui_custom_container,cl_gui_docking_container,cl_gui_splitter_container,cl_gui_e
asysplitter_container.
2834.
THANK TOU