unknown


{ City } unknown
< Country > india
* Profession * ceo
User No # 33142
Total Questions Posted # 0
Total Answers Posted # 4

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 10
Users Marked my Answers as Wrong # 8
Questions / { unknown }
Questions Answers Category Views Company eMail




Answers / { unknown }

Question { 4685 }

what is result set of an inner join at database level ?


Answer

if we use inner join it shows the data from parent table
which has data in child table.

Is This Answer Correct ?    6 Yes 0 No

Question { 5730 }

How to get the no of records using select statement?


Answer

data: wa_t001 type t001,
t_t001 type table of t001.

select * into table t_t001 from t001.

loop at t_t001 into wa_t001.
write: no.of records sy-tabix.
endloop.

Is This Answer Correct ?    0 Yes 8 No


Question { 3714 }

Landscape of your company and what are their names?


Answer

the system set up maintained at client space is known as
landscape.

we use 3 system landscape
1.production where consultatants are involved
2.testing where tester involved
3.production it is connected to enduser

Is This Answer Correct ?    0 Yes 0 No

Question { HP, 5463 }

There is a file in application server. How can you upload it
and separate it as per different fields?


Answer

open dataset p_file for input in textmode encoding default.
if sy-subrc = 0.
do.
read dataset p_file into w_rec.
if sy-subrc = 0.
split w_rec at ',' into wa_final-fld1
wa_final-fld2
.
.
.

append wa_final to i_final.
else.
exit.
enddo.

Is This Answer Correct ?    4 Yes 0 No