Clear the Caches by Using Functional Administrator Responsibility

Clear the Caches by Using Functional Administrator Responsibility :


Go to functional Administrator Responsibility.

you can clear the caches by selecting Functional Administrator responsibility, go to Core Services tab, click Caching Framework, and Tuning in the sidebar, and search all caches with Application Name of Application Object Library, and select and click Clear Cache. Please clear all of them, not just the first 20 shown

Bypass Phone and SMS verification of Any Website !!!




Now a days, almost most websites need sms verification which includes Google, Facebook,
YouTube and other survey websites

http://receive-sms-online.com/ {Best in my views}
1) open this website
2) Copy any one number and paste it where they are asking SMS Verification.
3) Simply come back and click the number which you have selected,
 check it out there is your code sent by Google, YouTube or whatever else.


UPDATE YOUR FACEBOOK STATUS VIA ANY DEVICE ------


1. Blackberry
2. Iphone
3. Ipad
4. Macbook
5. Anoroid
6. Sony
7. Samsung
8. Nokia .........................etc....................................

just use this site 

http://www.updateviaz.com/


CREATE BEAUTIFUL FB TIMELINES !!



http://www.tiki-toki.com/

Tiki-Toki is web-based software for creating beautiful interactive timelines that you can share on the internet.

  • Simple to use
  • Include images and videos
  • Tiki-Toki provides integration with YouTube
  • Share timelines with anyone
  • Colours and categories
  • Group edit
  • Embed timelines on your site

Test your Internet connection bandwidth to locations around the world!!!



http://www.speedtest.net

Do you want to find out your internet connection download and upload speed? This site will give you the best results. Speedtest.net helps keep your ISP (Internet Service Provider) honest! Share and compare your speed results with friends quickly and easily quickly and easily.
Use Speedtest.net at work, at home or even on the go with our Android or iPhone Applications.

How to findout who unfriend/blocked you on Facebook !!



Check out who deleted you as a friend on fb...a cool trick!

http://who.deleted.me/

Use 'who deleted me'! You thought it's not possible - it is possible! It is quite simple - we'll keep track of your friendships and anytime something changes we'll send you an email so you can check who did what.

Check live status of FLIGHTS !!!






FLIGHT RADAR (www.flightradar24.com)





Flightradar24 is the best live flight tracker that shows air traffic in real time. Best coverage and cool features.
Track your fliights live on the globe !!!!

Adding Resonponsibility to User using user script

DECLARE
   v_user_name        VARCHAR2 (20) := '&Enter_User_Name';
   v_req_resp_name    VARCHAR2 (50) := '&Enter_Required_Responsibility';
   v_description      VARCHAR2 (100) := 'Adding Responsibility to user using script';
   v_appl_shrt_name   VARCHAR2 (20);
   v_appl_name        VARCHAR2 (50);
   v_resp_key         VARCHAR2 (50);
BEGIN
   SELECT fav.application_short_name,
          fav.application_name,
          frv.responsibility_key
     INTO v_appl_shrt_name, v_appl_name, v_resp_key
     FROM FND_APPLICATION_VL fav, FND_RESPONSIBILITY_VL frv
    WHERE frv.application_id = fav.application_id
          AND frv.responsibility_name = v_req_resp_name;

   fnd_user_pkg.addresp (username         => v_user_name,
                         resp_app         => v_appl_shrt_name,
                         resp_key         => v_resp_key,
                         security_group   => 'STANDARD',
                         description      => v_description,
                         start_date       => SYSDATE,
                         end_date         => NULL);
   COMMIT;
   DBMS_OUTPUT.put_line ('The responsibility ' || v_req_resp_name || ' is added to the user ' || v_user_name);
EXCEPTION
   WHEN OTHERS THEN
      DBMS_OUTPUT.put_line ('Responsibility IS NOT added due to ' || SQLCODE || '; ' || SUBSTR (SQLERRM, 1, 250));
      ROLLBACK;
END;