After executing this 'if' statement there is no further process...pls help.

After executing this 'if' statement there is no further process...please help me to solve this problem...
whats wrong with that query....
if :SALARY_DETAILS.TOTAL_DAYS<=:SALARY_DETAILS.TOTAL_MONTHLY_DAYS AND
:SALARY_DETAILS.TOTAL_DAYS>=(:SALARY_DETAILS.WORKING_DAYS+:SALARY_DETAILS.NO_OF_ABSENTS+:SALARY_DETAILS.LEAVES+:SALARY_DETAILS.LOP) then
end if;

Use dbms_output.put_line to trace our way through the program to see what is happening.
From the information you provided different things can be happening.
* the IF condition might evaluate to false and the if block is being bypassed
* there is nothing to happen inside the IF block, or internal IF conditions are preventing anything from happening
Put debugging messages both inside the IF block and outside to help figure out what is happening

Similar Messages

  • My MacBook Pro is running very hot after lion install.  Are there any hardware changes that will help? What can I do to get it back to normal?

    My MacBook Pro is running very hot after lion install.  Are there any hardware changes that will help? What can I do to get it back to normal?

    I get the impression that most of the users on older hardware experiences similar temperature issues on Lion for a long time now. Awaiting for confirmation from the original poster.
    In the meantime I'm just cautious with regards to pushing the machine to such extreme temps, since something tells me such behaviour which includes monitor flickering and the likes is nothing but abnormal for any type of use...
    Any clues if 10.7.5 does anything on this? If not I'm afraid i see myself going back to SL for good...

  • HT201441 hi i cant activate my iphone 5 after update ot ios 7. i have only one apple id , but when i enter i see that i cant activate with this id.  I cant use my iphone pls help me how to activate

    hi my id is do** @gmail.com, I buy from BG Globul on 9.9.2013. When i upgrade on ios 7 i cant activte becouse when i enter id and pass for appstore i see that i cant activate the phone with this id.
    I dont have another id
    Pls help me!
    <Personal Information Edited by Host>

    Hello GDonkov,
    I'd suggest taking a look through the following article for information and steps that can help get your iPhone activated.
    iPhone: Troubleshooting activation issues
    http://support.apple.com/kb/TS3424
    Cheers,
    Allen

  • Forgot your answers? Send reset security info email ..... this link not see in my apple accound pls help

    Forgot your answers? Send reset security info email.  this link not see in my apple accound pls  help i am used another id is alredy located

    The send reset link will only show on your account if you already have a rescue email address (which is not the same thing as an alternate email address) set up on your account. If you haven't checked whether you have the link then go to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account, then click on 'Password and Security' on the left-hand side of that page and on the right-hand side of the screen (similar to the screenshot in the second post on this thread) you might see an option below the questions to send reset info to a rescue email address.
    If you don't get the link (you won't be able to add a rescue email address until you can answer 2 of your questions) then you will need to contact iTunes Support or Apple to get the questions reset.
    e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then 'Forgotten Apple ID security questions'
    or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5312 . Or you could change to 2-step verification : http://support.apple.com/kb/HT5570

  • My macbook air does not start up successfully. when i turn on the power, it just turn blue after the apple logo, how to reboot or repair,.. pls help me what is the buttons command... thanks in advance.

    pls help me how to reboot my macbook air,.. because starting it up was not successful. the screen just turns blue after the apple logo appeared.

    i know loads of people who have had this problem including me.  The Java script update apparently had some virus that has overloaded the start up disk.   I took to apple who said i have to have the machine rebuilt but first i have to go to a data recovery company to get back everything that was on it.  Data recovery company have quoted me nearly £1000. 

  • I can't update/downloads an app from app store by using by iphone 4s. The icon will change to blank keep waiting, this problem was trouble me for 1 week. pls help me.I try all the method (reset/change date setting)no help my network is ok.

    I can not update/download an app from app store by using my iphone 4s. I try every method by re-setting date/time and reboot the phone etc.NO Help.
    The icon will change to blank keep waiting & can not go in & use in. Anyone have solution for this. pls help me...tks

    .local indicates local activity by the computer host Williams-macbook-pro.local=hostname@domain . The UID of 501 is the standard UID of a local computer administrator.
    Copy and paste this little script in your terminal:
    if [ "SSH_CONNECTION ]; then
         echo I am remote
    else
         echo I am local
    fi
    A return of "i am local" ensures there is no remote connection to your machine (through SSH).
    In the future, to avoid remote entry, I would recommend not posting your IP address though.

  • Getting error while executing this select statement

    Hi All,
    I am new to this community.
    I am getting error whie compiling the below code. Its telling 'Text' is invalid identifier. Also i want to know how can we obtain 'parseable' version of the below query?
    my basic intention is to create a trigger header through a select statement and show it the complete text as a single column..
    select text from
    (select 'CREATE OR REPLACE TRIGGER '||SUBSTR(column_name,2,4)||'aud
    AFTER INSERT
    OR UPDATE
    OF '||column_name||',
    OR DELETE ON '||table_name||'
    FOR EACH ROW'
    FROM(SELECT lower(REPLACE(column_name,'O_','')) column_name , /*changing O to O_*/
    lower(replace(t.table_name,'_A_','_')) table_name,
    lower(t.table_name) table_name1,
    c.column_id
    FROM all_tab_columns c,
    (SELECT object_name table_name
    FROM all_objects
    WHERE object_name LIKE '%/_A/_%' ESCAPE '/') t
    WHERE c.table_name(+) = t.table_name
    AND SUBSTR(column_name(+),1,2) = 'O_'))

    thanks prathamesh. it solved the problem. i have one more question.
    as of now it creates single create trigger statement for each column on a table.
    example:
    CREATE OR REPLACE TRIGGER ust_aud
    AFTER INSERT
    OR UPDATE
    OF cust_id,
    OR DELETE ON characteristic_t
    FOR EACH ROW
    however, i want to create trigger for all columns in a single statement. can you please help me how to do it?
    basically want to 'CREATE TRIGGER' for all columns in a table. i am finding difficult how to change my query to suit this!!
    i am pasting my original query again for your reference. pls advise...
    example:
    CREATE OR REPLACE TRIGGER ust_aud
    AFTER INSERT
    OR UPDATE
    OF cust_id,
    fixed_item_val,
    copy_item_val,
    rgn_id,
    txn_id,
    OR DELETE ON characteristic_t
    FOR EACH ROW
    ORIGINAL QUERY
    select text from
    (select 'CREATE OR REPLACE TRIGGER '||SUBSTR(column_name,2,4)||'aud
    AFTER INSERT
    OR UPDATE
    OF '||column_name||',
    OR DELETE ON '||table_name||'
    FOR EACH ROW' text
    FROM(SELECT lower(REPLACE(column_name,'O_','')) column_name , /*changing O to O_*/
    lower(replace(t.table_name,'_A_','_')) table_name,
    lower(t.table_name) table_name1,
    c.column_id
    FROM all_tab_columns c,
    (SELECT object_name table_name
    FROM all_objects
    WHERE object_name LIKE '%/_A/_%' ESCAPE '/') t
    WHERE c.table_name(+) = t.table_name
    AND SUBSTR(column_name(+),1,2) = 'O_'))

  • HT1212 My iPad was locked & disabled & tried every possible way to restore but nothing is working - After select Restore, & waited for updates to finish, gets iPad Cannot be resotred at this time because server could not be contacted - Pls help

    Friends,
    My iPad2 was locked and disabled because my kids entered several times the passcode and now it is locked. I tried every possible ways and read all related items and followed precisely articel http://support.apple.com/kb/HT1212 but after i restored and update teh iPad, itunes keeps giveing me the same message:
    The iPad "iPad" cannot be restored at this time because the iPad software update server could not becontacted or is temporarily unavailable.
    I tired at different time of teh day and noght and different days yet kept getting the same message.
    Pls assist me as now the iPad is useless
    Regards,
    Joe

    If reset doesn't work, try and force the iPad into Recovery Mode.
    Recovery Mode
    1. Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to turn off.
    3.While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    4. Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears, release the Home button. iTunes should alert you that it has detected a device in recovery mode. Click OK, and then click Restore to restore the device.
    Note: Data will be lost. You may have to repeat the above many times.

  • HT201407 i just update my iphone 3gs to ios 6.0.1 and after that its not working.... i activated it again to restore but then it will say please insert sim card even though there is sim card inside.pls help. i need to use my mobile.

    please help

    LOL! - you poor bugger, Ognyan!
    I'm starting to serihously think this phone has been jailbroken... I've got a senior technical support advisor at Apple who is working on the case. He has gone through everything he can possibly think of, but won't take "no" for an answer.
    At the moment, he has logged everything with the Engineering Department, who is going to look into it further using the IMEI number and see what they come up with. If worse comes to worse, Apple will apparently replace the phone for a fee. The problem is that it is 800+ days out of warranty...
    Anyway, we'll see how we go. If anybody has got any ideas about this, please continue to provide answers. I appreciate all responses

  • Hot corners are awesome! full screen apps are awesome. apple doesn't want me to use both at the same time. WHY? it really seems like apple did this on purpose. there is no other explanation. please help or change! i'm trying to work here...

    nice text box .... what do you expect me to type in here? do you want me to ask my questions in 15 different ways?
    have a nice day, and thank you for your time

    ok, i'll do it the friendli way in another post

  • Just upgraded from Ipad1 to 3rd Gen. Can't sync apps. Device is trying to sync and shows almost 25 apps as 'waiting' but there is no further progress.  Help!!

    Please help if anyone knows how to sync apps on Ipad3. I've tried syncing device to i-cloud and it shows as though it is fully updated.  However, on the device there are almost 25 icons for apps which are greyed out and show the message 'waiting' under them.  I can't pause any of the downloads.  Also, the device is trying to download an app which I've previously deleted.  As a result, I can't use the device for anything web-related as it just locks up.
    Has anyone got any suggestions?   Another forum suggested to untick 'auto sync apps' re-sync then tick 'auto sync apps and re-sync again.  This hasn't worked.

    For the first time sync I would recommend turning off icloud and doing a usb sync with itunes on a mac or pc, if possible.  How robust is the wireless network you are using?

  • After update my imac to yosemite automatically power off ifself.pls help

    hi friends , I updated my imac (24-inch,Early 2009) to yosemite and update was ok.after update i restart imac  then it is booting and showing apple log and coming to password page then automatically power off ifself. if i start with safe mode it is working fine. can everyone help me.

    Hi.
    You are running into a problem that many users of the 24-inch, early 2009 iMac 9,1's have encountered (including me).  The Sudden Shutdown Syndrome is the scourge of many iMacs and Mac Book Pros.
    Unfortunately, I believe that the only solution is for Apple/nVidia to revisit their geForce Tesla drivers and figure out if the power management is correct.
    In your case, I'd try this:
    1)  Boot up your computer in safe mode and log into your user account.
    2)  In the Finder menu, select Go > Go to Folder...
    3)  Type: " ~/Library/Caches" (without quotes) into the box and press return.  You will be taken to the Caches folder.
    4)   Select all the files in the folder and move to the trash (do not trash the folder itself).  At this point, just leave them in the trash...don't erase them.
    5)  Go back to the Finder menu, select Go > Go to Folder...
    6)  Type: "/Library/Caches" (without quotes) into the box and press return.
    7)  Do the same thing you did in 4)  This time, though, you will be asked for an administrator's password.
    8)  Restart your computer in normal mode and attempt login.
    9)  If you can log to the desktop, you may delete your trash.
    Hopefully this will get you into your account.  If it doesn't, you may have to do a clean install of Yosemite, go back to Mavericks, or wait for an update.
    Good luck!

  • How to use a update statement which has a string containing '&' -  Pls help

    When used the following select statment in SQL plus it is working fine:
    SELECT * FROM REDEMPTION_OFFERS
    WHERE portfolio=203 AND display_description= '$100 Bed Bath'||' & '||'Beyond Gift Card' AND ext_redemption_type_lc = 'ERT_CERT'
    But when using the same statement in a Update statement it is not working. Can some one please help me: Thanks in advance
    UPDATE REDEMPTION_OFFERS SET LONG_DESCRIPTION = 'null'
    WHERE portfolio=203 AND display_description= '$100 Bed Bath'||' & '||'Beyond Gift Card' AND ext_redemption_type_lc = 'ERT_CERT'

    When used the following select statment in SQL plus
    it is working fine:
    SELECT * FROM REDEMPTION_OFFERS
    WHERE portfolio=203 AND display_description= '$100
    Bed Bath'||' & '||'Beyond Gift Card' AND
    ext_redemption_type_lc = 'ERT_CERT'
    But when using the same statement in a Update
    statement it is not working. Can some one please
    help me: Thanks in advance
    UPDATE REDEMPTION_OFFERS SET LONG_DESCRIPTION =
    'null'
    WHERE portfolio=203 AND display_description= '$100
    Bed Bath'||' & '||'Beyond Gift Card' AND
    ext_redemption_type_lc = 'ERT_CERT'looks like You are using the UPDATE statement in SQL*PLUS too. Your statement is also working....
    SQL> select * from a;
            F1 F2        F3
             1           BED BATH
             2           BED BATH
             5           BED BATH
             3           BED BATH
            -2           BED BATH
            -4           BED BATH
            -1           BED BATH
    7 rows selected.
    SQL> update a set f3 = 'BED '||'&'||' BATH';
    7 rows updated.
    SQL> select * from a;
            F1 F2        F3
             1           BED & BATH
             2           BED & BATH
             5           BED & BATH
             3           BED & BATH
            -2           BED & BATH
            -4           BED & BATH
            -1           BED & BATH
    7 rows selected.

  • How to run this procedure .......pls help with example

    /*it shows an warning */
    --how to remove this warning
    CREATE PROCEDURE EMP_TITLE_GENERATOR (EMP_GENDER IN CHAR (1),EMP_TITLE OUT VARCHAR2)
    IS
    BEGIN
    EMP_TITLE:=DECODE(EMP_GENDER,'M','Mr','F','Ms','INVALID');
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE(SQLERRM);
    END;
    Edited by: 923746 on Apr 18, 2012 7:58 PM
    Edited by: 923746 on Apr 18, 2012 7:59 PM

    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> CREATE PROCEDURE EMP_TITLE_GENERATOR (EMP_GENDER IN VARCHAR2,EMP_TITLE OUT VARCHAR2)
      2  IS
      3  begin
      4  select DECODE(EMP_GENDER,'M','Mr','F','Ms','INVALID') into emp_title from dual;
      5  EXCEPTION
      6  WHEN OTHERS THEN
      7  dbms_output.put_line(sqlerrm);
      8  END;
      9  /
    Procedure created.
    SQL> set serveroutput on
    SQL> DECLARE
      2    EMP_GENDER VARCHAR2(200);
      3    EMP_TITLE VARCHAR2(200);
      4  BEGIN
      5    EMP_GENDER := 'F';
      6 
      7    EMP_TITLE_GENERATOR(
      8      EMP_GENDER => EMP_GENDER,
      9      EMP_TITLE => EMP_TITLE
    10    );
    11    DBMS_OUTPUT.PUT_LINE('EMP_TITLE = ' || EMP_GENDER);
    12    DBMS_OUTPUT.PUT_LINE('EMP_TITLE = ' || EMP_TITLE);
    13  END;
    14  /
    EMP_TITLE = F
    EMP_TITLE = Ms
    PL/SQL procedure successfully completed.
    SQL>

  • I can't sync iphone with itunes via USB, Im using windows 8.1 system, after update7.0.6 itunes was not detect the iphone, pls help....

    can't sync itunes with iphone via USB, windows 8.1 system

    Right click on your device under Portable devices and click on Uninstall and when the uninstaller box pop ups select delete the driver and click OK. Now click on Scan for hardware changes on top of the page and see if you get apple mobile device support driver under USB Devices and if not then disconnect your device from the computer and try to connect it to a different USB port and check also open control panel and select Apple Mobile Device  Support from the List and Click on Repair and check. If still the device is not showing under USB then uninstall the following services from your computer.
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if unable to uninstall ignore and move to next)
    Bonjour
    Apple Application Support
    Restart your computer once after the uninstallation is completed and then download latest version of iTunes from http://WWW.apple.com/iTunes/download
    Locate the iTunes setup file and right click the file and run the installation file as Administrator and let the installation complete.
    Then check if your device gets deteced in iTunes and if still the device is not detecting in itunes then go to device manager and see under Usb if you can see Apple Mobile Device Support Driver and continue with the step. 5 of above given link in my previous post. And if still thedevice is not showing under USB then right click on your device under potable device and click update driver and first check for updates automatically and see under USB if you see the driver now and if not then go back to device under portable device select update driver, let me choose driver from the list, Have disk, browse file in the following location " C://Program Files/Common Files/Apple/Mobile Device Support/Drivers and select usbaapl file and install the same (if you can't find the driver on above location then look for the driver in Program Files(x86) instead of Program files and if you can't find usbaapl then look for usbaapl64 and complete the installation and then restart the computer and check if your device get recognized in iTunes.
    Note: when installing the drivers keep the iTunes closed till the drivers installation is completed.

Maybe you are looking for

  • How to send "SPOOL" on SAP MAil or external mail in background???

    I tried using 'SO_DOCUMENT_REPOSITORY_MANAGER' function but it failed when I run it in background. I learned that it calls a screen at the middle of the process which needs user input to go on with the process. Is there other way that I could send sp

  • So syncing new events on iCal is not automatic?

    I have 2 computers and an iPhone and it is very important that I keep my calendars and event alarms in sync but this has been a problem since "upgrading" to the new Calendar beta. Now, when I add an event on, say, my home iMac (running Snow Leopard)

  • How to overwrite a log and bad file in external table in oracle 10g

    Hi, I have used external table in oracle 10g.whenever use select query in external table orace internally create one log file in specified directory, but this log file is growing.How can i overwrite the log file(old to replace with new).I need overwr

  • Annotation for EJB 3

    I'm a java programmer for a few years . I'm new EJB environment. ejb is very difficlut to get. and futhermore, like @EJB, what's @XXX form? does any body know the simple starting point? any artices or information is welcomed. Thanks.

  • How do I update my iMac 7.1 software to accept the latest version of iTunes and hence talk to my iPad3?

    I have an iMac 7.1 purchased in 2007 which currently has OS X 10.5.8. Until 6 months ago it happily synched with my iPad3. Now it doesnt because I do not have the latest version of iTunes and that will not download because it is not supported by the