Which Tcode can be used to compare 2 tables
SE12
SCUO
RSA3
SE13
Which Tcode can be used to manipulate table behind a Tcode?
SE26
SE16
SE51
SE49
Tcode Variants maintenance is done by this Tcode?
SEU
SE88
SHDO
SE92
Which Tcode delete jobs from BDC??
SE28
SE39
SE41
Which Tcode is used to analyse the dump condition?
ST21
ST22
ST23
ST24
Which Tcode is used to build a Class?
SE25
SE37
SE24
SE11
Tcode for transport maintenance generator?
se9
se10
se92
se93
onPrint Object handler can be used to generate code for objects which are directly opened, via URL.
True
False
Buckets are lost after a TimeOut, or when the server is rebooted
Partially true, ( only when server is rebooted )
Concept of Buckets don't exist.
A TextObject having ID=100, has initial value of "Intial Value" The following code operation is performed on it. var test=new WebObject()// Line 1 var test1=new WebObject()// Line 2 test.loadById(100)// Line 3 write(test.text) // Line 4 test.text = "New 1" // Line 5 write(test.text)// Line 6 test1.loadById(100)// Line 7 write(test1.text)// Line 8 What values will the write statements on Line 4, Line 6 and Line 8 result.
Initial Value, New 1, Initial Value
Initial Value, New 1, New 1
Initial Value, New 1, Line 7 will result in a Runtime error
Compilation Error due to Line 7 ( Duplicate Loading )