Archive for February, 2013
Abandonment to God : Tawakkul in Sufism
February 8th, 2013, posted in Sufismالتوكل
Abandonment to God
(Tawakkul)
The “Abandonment to God†happens when the heart confides in God to a point that the heart only leans on God;  or to be tied to God and address only to God in everything, knowing that God knows everything, and to count on what is in His hands than what is in ours. The lowest degree of “Abandonment to God†is to be in the same position as when the asker is in front of the giver, alert and anxious about his interests. De medium degree is like when it happens with a child and his mother: in all circumstance, it is only towards him that she focuses her attention. And the highest degree of “abandonment to God†is to be like a corpse – dead body –  in the hands of the washer of the dead.
These three degrees are, respectively, the ones of the vulgar, the ones of the elite and the ones of the chosen elite.  As for the first ones, a suspicion (tuhma) comes at times to the mind. Regarding the second ones, there is no wariness (ittihaam) but they get attached to their mothers because they are in need for it. And as for the ones belonging to the third degree, there is no suspicion at all, nor “interested†attachment, because they fade to their own soul (faani ‘annafsihi) and expect at all times what God will make from them.
ORACLE : How to Check Only One Item In a Check Box ?
February 7th, 2013, posted in Oracle QueriesHere i will share a tricky PL/SQL code with you.
If you want to use Check Box in oracle forms and want to restrict end user to select only one check box, how will you handle this ?
Just customize the following code and you will get the result :
declare
l_current_record number;
l_last_record   number;
begin
l_current_record := :system.trigger_record;
last_record;
l_last_record := :system.cursor_record;
first_record;
for i in 1 .. l_last_record loop
if :system.cursor_record <> l_current_record then
:SM_ACT_FLAG := 0;
end if;
next_record;
end loop;
go_record(l_current_record);
end;
*********************************************************************************************************************
Note : Please not do make backups before using these queries and also confirm them yourself or by aother means as
well.
********************************************************************************************************************




