Hi,
I have a record like this:
I fill the record with values (60761, 'TEST', 'invalid' ) from SELECT INTO...
In test i have assignement:
So that means while debugging in watch window these variables must show the same values:
But, as you can see in print screen, the value of kriterijus_rec.pavadinimas is NULL while the value of pavadinimas is 'TEST'. But they should be the same in WATCH window.
I have a record like this:
TYPE rec_kriterijus_typ IS RECORD (
id kriterijai.id%TYPE,
pavadinimas kriterijai.pavadinimas%TYPE,
busenos_kodas busenos.kodas%TYPE
);
I fill the record with values (60761, 'TEST', 'invalid' ) from SELECT INTO...
In test i have assignement:
pavadinimas := kriterijus_rec.pavadinimas;
id := kriterijus_rec.id;
kodas := kriterijus_rec.busenos_kodas;
So that means while debugging in watch window these variables must show the same values:
pavadinimas equals to kriterijus_rec.pavadinimas
id equals to kriterijus_rec.id
kodas equals to kriterijus_rec.busenos_kodas
But, as you can see in print screen, the value of kriterijus_rec.pavadinimas is NULL while the value of pavadinimas is 'TEST'. But they should be the same in WATCH window.
