I'm having problem how to know if certain SD Doc has been paid already. i had already viewed BKPF/BSEG/BSAD/BSID/BSAK/BSIK. I'm a novice ABAPER and when the requesting dept want a report, they just show the layout without proper functional specs. Co'z they dont also know where/what field. Can somebody give a hint or overview which tables links or any flagging fields that triggers a certain DR#(Billing Docs) has already been paid? Hope you can forgive me on this matter. We dont have any training/seminars bout SAP modules. We only take ABAP using SAP script only. I learned ALV through my self-study. Thanks in advance.
2005Table 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:
2 8845For retro active billing, is there any configuration to be done apart from the Pricing Procedure(with Rebate cond types)? Say suppose if i have some 1000 documents, does i get 1000credit or debit memos or is there any solution for wre i shud not get credit or debit memo.(bcoz VFRB gives us ony credit or debit) Plz do give some of ur inputs. Thanks Satvik TR
2 6101What is the recommended method to modify a standard search help to include customer defined search paths? choices: a) Add an elementary search help to the standard search help b) Enhance the standard search help with an append search help c) Add a collective search help to the standard search help d) Perform a modification to the standard search help
1 7557Where are Dictionary runtime objects used ? a) in the dictionary b) in structures c) in table "nametab" d) in work processes
1 7516If you want a subroutine U to have a formal parameter P that is used to return a value to the actual parameter . Which of the following definitions of U would you use to ensure that the value is passed back to the calling program only if the processing of U ends normally and is not terminated with a message statement ? a) Form U changing P. b) Form U using P. c) Form U changing value(P). d) Form U using value(P). e) Form U using P local P.
1 9309Why would you group corrections together? More than one answer is correct. Choices: a) To enable several corrections to be assigned to the same transport. b) To transport objects from different development classes. c) To prevent other developers from processing the same objects. d) To enable several developers to process the same object in parallel. e) To retain versions of several objects together.
2 6566Which statements are allowed if you are working with an internal table of type sorted? More than one answer is correct. a) Append b) Collect c) Sort d) Read e) Modify Note: I checked the Help.sap.com and i came to know that we can use Collect, read , Append, Modify. Just "Sort" alone cannot be used. But if you are going to say we cant append, and we cant modify then double check your answers . Also post a link from where you got the information.
2 18601Which of the following statements about R/3 instances are correct? More than one answer is correct. a) An R/3 instance is an administrative unit that combines together all the components of a R/3 system that provide one or more services. b) A central R/3 system consists of one or more Instances. c) Each instance has its own SAP buffer area. d) Each instance contains at least one dialog service. Note: I am sure about a,d. But what about c???
2 7245What must you do to undo DB changes previously issued in a dialog? More than one answer is correct. a) output E message. b) perform rollback work. c) raise exception. d) Analyze log record. e) code rollback LUW. Note: I am sure the choice A,B. But what you think about c also ? Will exception also rolls back the changes?
1 7300An update function module VF is called within subprogram VU .The program contains the call , VU on commit . At which point are the parameters for the update function VF evaluated ? a) when perform is executed b) at the beginning of function c) at commit work d) at start of v1 update e) at the end of the dialog step. Please answer only if you are very sure about this. Else please dont try.
2465What does a LDB(Logical Database) provide? a) Consistent and flexible user interface b) Central performance improvements for update accesses c) A method to access the data in a random manner d) Centrally defined authorization checks. Please answer only if you are very sure. Else pls ignore.
1 7990What technique would you use to fix the 10 leftmost columns on a list when scrolling to the right? a) Set Left Scroll-Boundary Column 10 b) Set Right Scroll-Boundary Column 10 c) Scroll List PS+<10> d) Scroll List Left Note: My answer for this question is A. But if you think different then pls give link or explain how.
3943For called program components that are of type transaction or report, what is true about the roll area (assuming processing will resume in the calling program). a) They run in their own roll area b) They run in the roll area of the caller c) Share the same roll area Note: I think Answer is C. Any comments?
2760What is NOT a valid functional area type? a) LDB b) Sequential Data Set c) Program d) Search Help e) Joined Tables note: Please answer only if you are very sure. Else pls ignore.
1 7136Post New SAP Labs Interview Questions
What is the role of session interface in hibernate?
How do I audit the sql sent to the server?
Which method will be used to delete a file ?
How do I get help in ubuntu terminal?
How do you initialize pointer variables?
I have created a command that display Source file and library. Now i want that when i enter library name and press f4 on Source file, pgm should display all the PF- SRC's in that Library. For F4 option i have used Choice program but since only limited paramters are passed in Choice pgm i am not able to paas library name and further can't call a pgm that will display list of Source files. Below is the Code snippet for CMD type object :- CMD PROMPT('Source Scan for HUB Standard') PARM KWD(SOURCE) TYPE(*CHAR) LEN(1) RSTD(*YES) + VALUES(N A) MIN(1) + CHOICE('N,A') PARM KWD(SRCFILE) TYPE(FILE) RSTD(*NO) + PROMPT('SOURCE FILE') FILE: QUAL TYPE(*NAME) LEN(10) RSTD(*NO) EXPR (*YES) + CHOICE(*PGM) + CHOICEPGM (XXXXXLIB/YYYPGM) QUAL TYPE(*NAME) LEN(10) DFT(*LIBL) + SPCVAL((*LIBL)) EXPR(*YES) PROMPT ('Library') Below is the Choice pgm:- PGM PARM(&PARM1 &PARM2) DCL VAR(&PARM1) TYPE(*CHAR) LEN (21) DCL VAR(&PARM2) TYPE(*CHAR) LEN (2000) IF COND(%SST(&PARM1 1 10) = 'CHOICE ' *AND + %SST(&PARM1 11 10) = 'SRCFILE ' *AND + (%SST(&PARM1 21 1) = 'C' *OR %SST (&PARM1 + 21 1) = 'P')) THEN (DO) /* (%SST(&PARM1 21 1) = 'C' *OR %SST (&PARM1 + */ CHGVAR VAR(&PARM2) VALUE('Name, F4 for List') ENDDO IF COND(%SST(&PARM1 1 10) = 'CHOICE ' *AND + %SST(&PARM1 11 10) = 'SRCFILE ' *AND + %SST(&PARM1 21 1) = 'P') THEN (DO) CHGVAR VAR(&PARM2) VALUE('Name, F4 for List') CALL PGM(GTSQL) PARM ('XXXXLIB') return ENDDO Thanks in Advance for looking into.
What is a Workflow Rule?
How variables are stored in memory?
How to test lightning Arrester?
Is wct charged on firm or proprietors ?
What is couchdb?
tell us something about nabard and its functions.
Can I create my own context attributes?
Is there a possibility of inducing stress cracking in an insulated stainless road tanker vessel (20 tonne capacity) if the vessel is subject to rapid filling (10 tonne /hr) with liquid methane (-160 c) assuming the vessel is at ambient. If so, where could I obtain suggested cooling rates?
How do I change columns to rows in word?