in report gui we are giving customer number if it is wrong
entry then how to write the code to restrict wrong entry?
Answer Posted / raju
Hi Busha,
i want to check the field kunnr from kna1, then
parameter : pa_kunnr type kunnr. (This is input field)
select single kunnr into pa_kunnr
from kna1
where kunnr eq pa_kunr.
if sy-subrc ne o.
message i000(zexp). ( zexp is message class,
i message type
000 message number)
endif.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What do you understand by work area and internal tables in abap? Why do we use it?
what is 3 tire architecture and how does SAP utilizes this architecture. and how do netweaver came into picture?
How many lists can a program can produce?
How do you find the information on the current screen? : abap bdc
In which table the material master data is stored?
Did you use buffering?
What is PS structure
What is the difference of update types in call transaction method ? : abap bdc
what are the various types of parameters and how are they distinguished from one another?
What is the different between template and a table?
What is static attribute
What are the types of bdc s?
What is the difference between dialog program and a report?
What are the domains and data elements?
If A is the super class of B. And both the classes have constructor. We create an object of class B. Then which constructor will be called? If both then in which order?