Anda di halaman 1dari 3

What is lock Object ?

Lock Object is a relationship defined in the Data Dictionary between a main table and possible secondary tables

lock object is used to prevent the several users to access the same data record at the same time.

Select option work like _____________on Selection Screen ?

The system treats select-options like an internal table.<br><br>This table will have four columns - sign high low and option.This is used to set teh attributes on the select <br>
Which sysgtem variable have current value during execution ?

BDC OK_code
What is the main point while using controll bareak in internal table ?

when you are using control break commands.internal table must be sorted with key field.and control-break commands must be used in between the LOOP and ENDLOOP only.

The Precautions taken care while using Control Break Statements are:<br>1.Sort the internal table before we use Control Break Statements.<br>2.We Must compulsory place the Control Break Statements with in loop ....endloop.<br>EX:(Sample Code)<br>sort itab by vbeln.<br>loop at itab.<br>at first.<br>write:/ 'VBELN'.<br>endat.<br>at new vbeln.<br><some code><br>endat.<br>at end of vbeln.<br><some code><br>endat.<br>at last.<br><some code><br>endat.<br>endat.<br>endloop.<br><br>if we want some more information plz mail to my id gunuputi.kiran@gmail.com<br> We are using Control break statements for calculations perfus. Before using control break statement should be sort and these statements should be used in between loop and endloop except on change off
What is Field sysmbol ?

You can use field symbols to make the program more dynamic. In this exanmple the name of a table control is substituted<br>by a field symbol. Thus you cal call the form with any internal table, using the name of the tabl?control as a parameter. <br><br>Example<br><br>form insert_row<br> using p_tc_name. <br><br>fieldsymbols <tc> type cxtab_control. "Table control<br><br>assign (p_tc_name) to <tc>.<br><br><br>* insert 100 lines in table control<br><br><tc>-lines = 100.<br><br>

Field Symbol is very much conceptually similar with Pointers in c language.


Which one is not an exit comand ? (Exit, cencle, stop, back)

STOP. <br>Effect :The statement STOP is only to be used in executable programs<br><br>EXIT. <br><br>Effect :If the EXIT statement is executed outside of a loop, it will immediately terminate the current processing block. <br><br>BACK. <br>Effect : This statement positions the list cursor on the first position of the first line in a logical unit.<br><br>So "Cancle" is not an exit command<br>
Explain about roll area , Dispatcher, ABAP-Processor.

Dispatcher recieves the request from client and assigns the request to one of the work process.<br><br>Roll area: Each workprocess works in a particular memory that memory is known as Role Area, which consists of User context and session data.<br><br>ABAP- Processor <br>
How do you connect to the remote server if you are working from the office for the client in remote place.

WAS web application server or ITS are generally used for this purpose. If you are sitting at your office with a server which is in the system and the other server is at the clients place you can generate IDOC, intermidiate documents which carry the data you want to transfer or the documents you want to transfer, these IDOC are interpretted by the system at the recieving end with the message class with which it is bound with. If you want to logon a system which is very distant..then remote login can be used this depends on the internet speed.
How do you see the authorization checks

In the interactive reporting, the first event you enter is "initialisation" that is used for the authorization checks , mainly the administrator is responsible for that purposes and he only has the authority for that.
What is difference between dialog program and a report?

using reports we can dispaly the data insert and modify the data * its executable program where as in dialog programming we can create our own screens and transactions we can't execute directly this

Using Report: we can dispaly, insert and modify the data.Its executable program. Dialog Programming: we can create our own screens and transactions.we can't execute directly this.

Posted by: bhanu

Contact bhanu

In dialog programming we can do addition deletion or modification, but in report we can do data extraction

Anda mungkin juga menyukai