Posts

Showing posts from January, 2018

Cambridge IGCSE Business Studies

Image
Endorsed by Cambridge International Examinations for the latest syllabus, this new edition of the the market-leading text provides a true international perspective. This title has been endorsed by Cambridge International Examinations for the latest Cambridge IGCSE (0450) and Cambridge O Level Business Studies (7115) syllabuses. It includes a Student's CD-ROM with every book, offering additional questions and support throughout the course and ahead of exams. - Offers an international perspective through a wide range of up-to-date case studies - Reinforces understanding through a variety of activities and discussion points - Provides examination preparation with revisions questions and summaries throughout - Written in accessible language, but with plenty of detail for top-grade students Also available: Teacher's CD-ROM (9781444176520) containing guidance on teaching the course, unique digital resources and all the answers to the exercises in the Student's Book. Downlo...

Teach Yourself PLSQL in 21 Days

Image
Sams Teach Yourself PL/SQL in 21 Days, Second Edition, quickly empowers you to create your own Oracle solutions with PL/SQL. Completely revised to cover Oracles 8i, the book provides guidance and direction, leading you through a progression of topics that begin with the basic building blocks of PL/SQL, and ending with in-depth discussions of the more commonly used advanced features of Oracles database programming environment. New topics include extended dynamic SQL within PL/SQL, Dynamic SQL within PL/SQL, use of invokers rights, autonomous transactions, interfacing PL/SQL with Java, PL/SQL Bulk Binds, parameter passing by reference, and advanced Querying. Download link http://gen.lib.rus.ec/book/index.php?md5=C6F9243361A6FCB4112F5E985E6CB3A4

Query to check Business Event and its Subscription details from Backend

Kindly enter Business event name in below query to get details for business event and its subscriptions. ===================================================== select we.name   ,we.status event_status   ,wes.status subscription_status   ,nvl(wes.phase,0) subscription_phase   ,wes.licensed_flag subscription_licensed_flag   ,we.licensed_flag event_licensed_flag   ,wes.rule_function from wf_events we   ,wf_event_subscriptions wes where   we.name like 'xxcust.oracle.apps.cust.testBusinessEvent'   and wes.event_filter_guid = we.guid; =====================================================

How to Reconcile Account Payable with GL trial balance

Image
 Kindly run the  Accounts Payable Trial Balance  for a particular period which you have already closed (or) intend to close in both AP and GL. Now Run General Ledger  Trial Balance Report  for same period. Then compare both trial balance report APTB & GLTB for all accounts.  Submit  Create Accounting  program from Payable responsibility with proper end date and Final and Post Mode parameter value as 'Yes'. After completing create accounting report again compare APTB and GLTB report. If there is still any difference then submit the GL  Account Analysis Report (180 char) " report, which will help to find whether any other source journals are posted to these liability accounts 

How to set up Tracing for Web ADI Error

Image
We can configure tracing for Web ADI activity by using below Profile options. BNE Server Log Level  : Set it to Trace BNE Server Log Path  : Enter directory path  BNE Server Log Filename  : Enter Log file name  Navigation :  Login to Oracle application  Go to System Administrator Responsibility -> Profile -> System Eneter User Name and in Profile field enter " BNE%Log% " Then click on Find. Set all 3 profile options as shown in below mention screenshot at user level.

PHP Global Variables - Superglobals

PHP Global Variables - Superglobals: Several predefined variables in PHP are "superglobals", which means that they are always accessible, regardless of scope - and you can access them from any function, class or file without having to do anything special. The PHP superglobal variables are: $GLOBALS $_SERVER $_REQUEST $_POST $_GET $_FILES $_ENV $_COOKIE $_SESSION This  TOpic will explain some of the superglobals, and the rest will be explained in later chapters. PHP $GLOBALS $GLOBALS is a PHP super global variable which is used to access global variables from anywhere in the PHP script (also from within functions or methods). PHP stores all global variables in an array called $GLOBALS[index]. The index holds the name of the variable. The example below shows how to use the super global variable $GLOBALS: Example : <?php $x = 75; $y = 25; function addition() {     $GLOBALS['z'] = $GLOBALS['x'] + $GLOBALS['y']; } addition(); echo $z; ?> ...

PHP Include() And Require() FUNCTIONS

PHP include and require Statements   : It is possible to insert the content of one PHP file into another PHP file (before the server executes it), with  the   include or require statement. The  include and require statements are identical, except upon failure: require will produce a fatal error (E_COMPILE_ERROR) and stop the script include will only produce a warning (E_WARNING) and the script will continue The  include() Function : The include() function takes all the text in a specified file and copies it into the file that uses the include function. If there is any problem in loading a file then the   include()  function generates a warning but the script will continue execution. Assume you want to create a common menu for your website. Then create a file menu.php with the following content. <a   href = "http://www.phpdevelopmenttricks.blogspot.com/index.htm" > Home </a>  - <a   hre...