Wikipedia

Search results

Monday 30 June 2014

ORA-00020: maximum number of processes exceeded

How to increase PROCESSES initialization parameter:

1.    Login as sysdba
    sqlplus / as sysdba
    
2. Check Current Setting of Parameters
    sql> show parameter sessions
    sql> show parameter processes
    sql> show parameter transactions

3.    If you are planning to increase "PROCESSES" parameter you should also plan to increase "sessions and "transactions" parameters
    A basic formula for determining  these parameter values is as follows:
    
        processes=x
        sessions=x*1.1+5
        transactions=sessions*1.1
        
4.    These paramters can't be modified in memory. You have to modify the spfile only (scope=spfile) and bounce the instance.
    sql> alter system set processes=500 scope=spfile;
    sql> alter system set sessions=555 scope=spfile;
    sql> alter system set transactions=610 scope=spfile;
    sql> shutdown abort
    sql> startup

Friday 27 June 2014

Cmclean.sql Script

set verify off;
set head off;
set timing off
set pagesize 1000

column manager format a20 heading 'Manager short name'
column pid heading 'Process id'
column pscode format a12 heading 'Status code'
column ccode format a12 heading 'Control code'
column request heading 'Request ID'
column pcode format a6 heading 'Phase'
column scode format a6 heading 'Status'


WHENEVER SQLERROR EXIT ROLLBACK;

DOCUMENT

WARNING : Do not run this script without explicit instructions
from Oracle Support 


*** Make sure that the managers are shut down *** 
*** before running this script ***

*** If the concurrent managers are NOT shut down, ***
*** exit this script now !! ***

#

accept answer prompt 'If you wish to continue type the word ''dual'': '

set feed off
select null from &answer;
set feed on


REM Update process status codes to TERMINATED

prompt
prompt ------------------------------------------------------------------------

prompt -- Updating invalid process status codes in FND_CONCURRENT_PROCESSES
set feedback off
set head on
break on manager

SELECT concurrent_queue_name manager, 
concurrent_process_id pid,
process_status_code pscode
FROM fnd_concurrent_queues fcq, fnd_concurrent_processes fcp
WHERE process_status_code not in ('K', 'S')
AND fcq.concurrent_queue_id = fcp.concurrent_queue_id
AND fcq.application_id = fcp.queue_application_id;

set head off
set feedback on
UPDATE fnd_concurrent_processes
SET process_status_code = 'K'
WHERE process_status_code not in ('K', 'S');



REM Set all managers to 0 processes 

prompt
prompt ------------------------------------------------------------------------

prompt -- Updating running processes in FND_CONCURRENT_QUEUES
prompt -- Setting running_processes = 0 and max_processes = 0 for all managers

UPDATE fnd_concurrent_queues
SET running_processes = 0, max_processes = 0;




REM Reset control codes

prompt
prompt ------------------------------------------------------------------------

prompt -- Updating invalid control_codes in FND_CONCURRENT_QUEUES
set feedback off
set head on
SELECT concurrent_queue_name manager,
control_code ccode
FROM fnd_concurrent_queues
WHERE control_code not in ('E', 'R', 'X')
AND control_code IS NOT NULL;

set feedback on
set head off
UPDATE fnd_concurrent_queues
SET control_code = NULL
WHERE control_code not in ('E', 'R', 'X')
AND control_code IS NOT NULL;

REM Also null out target_node for all managers
UPDATE fnd_concurrent_queues
SET target_node = null;


REM Set all 'Terminating' requests to Completed/Error
REM Also set Running requests to completed, since the managers are down

prompt
prompt ------------------------------------------------------------------------

prompt -- Updating any Running or Terminating requests to Completed/Error
set feedback off
set head on
SELECT request_id request,
phase_code pcode,
status_code scode
FROM fnd_concurrent_requests
WHERE status_code = 'T' OR phase_code = 'R'
ORDER BY request_id;

set feedback on
set head off
UPDATE fnd_concurrent_requests
SET phase_code = 'C', status_code = 'E'
WHERE status_code ='T' OR phase_code = 'R';





REM Set all Runalone flags to 'N'
REM This has to be done differently for Release 10

prompt
prompt ------------------------------------------------------------------------

prompt -- Updating any Runalone flags to 'N'
prompt
set serveroutput on
set feedback off
declare
c pls_integer := dbms_sql.open_cursor;
upd_rows pls_integer;
vers varchar2(50);
tbl varchar2(50);
col varchar2(50);
statement varchar2(255);
begin

select substr(release_name, 1, 2)
into vers
from fnd_product_groups;

if vers >= 11 then
tbl := 'fnd_conflicts_domain';
col := 'runalone_flag';
else
tbl := 'fnd_concurrent_conflict_sets';
col := 'run_alone_flag';
end if;


statement := 'update ' || tbl || ' set ' || col || '=''N'' where ' || col || ' = ''Y''';
dbms_sql.parse(c, statement, dbms_sql.native);
upd_rows := dbms_sql.execute(c);
dbms_sql.close_cursor(c);
dbms_output.put_line('Updated ' || upd_rows || ' rows of ' || col || ' in ' || tbl || ' to ''N''');
end;
/



prompt 

prompt ------------------------------------------------------------------------

prompt Updates complete.
prompt Type commit now to commit these updates, or rollback to cancel.
prompt ------------------------------------------------------------------------

prompt

set feedback on

Thursday 26 June 2014

Workflow Stopped working

Issue :
******
As we found that suddenly notification mailer service component get down in our instance. we have tried to start it manually but still the same problem persists.

Solution :
********
Issue had been resolved by allowing relay on SMTP server.

E-Mail Notifications Failing for Some Users 550 5.7.1 Unable to relay (Doc ID 304582.1 )


Methods to be followed
********************

1. Unable to send to the mails for any domain except the client’s domain2. When looked into the log file FNDCPGSC***.txt ($APPLCSF/$APPLLOG), found out the following error,Oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Problem encountered when sending to {[["ADDRESS.DOMAIN.COM.AMERICAN" 
]]} -> javax.mail.SendFailedException: Invalid Addresses; nested exception is: class javax.mail.SendFailedException: 550 5.7.1 Unable to relay
oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:SendFailedException -> [["ADDRESS@DOMAIN.COM.AMERICAN" 
]] javax.mail.SendFailedException: Invalid Addresses; nested exception is: class Javax.mail.SendFailedException: 550 5.7.1 Unable to relay

3. Confirmed the same by checking the wf_notifcations table and the mails sent to the id’s outside the clients domain failed with status “FAILED” (Testes Purchase Orders to Suppliers, Workflow Test Mail, Forgot Your Password Functionality)

4. Tried to login the user through telnet and got the same error and confirmed that this is something to do with SMTP server
[applprod@perp log]$ telnet webmail.domain.in 25
Trying 192.168.1.7...
Connected to webmail.domain.in (192.168.1.7).
Escape character is '^]'.
220 EXCHMAILSERVER1.domain.in Microsoft ESMTP MAIL Service ready at Fri, 2 Jan 2009 15:36:26 +0530
HELO
250 EXCHMAILSERVER1.domain.in Hello [192.168.1.40]
MAIL FROM: wfmailer@domain.in
250 2.1.0 Sender OK
RCPT TO: address@domain.com
550 5.7.1 Unable to relay

5. The issue has been given in the notes # 374804.1, 304582.1 and 753845.1, requested the mail administrator to set the SMTP mail server to allow relaying, that is sending mail to an outside domain from that server (192.168.1.40)

6. Restarted the “Workflow Notification Mailer” through Oracle Applications Manager

7. Once done checked the notifications from purchase orders to supplier and Forgot Your Password link with other domain’s mail-id started working fine

You have encountered an unexpected error. Please contact the System Administrator for assistance

Issue :
******

After applying Patch.R12.HR_PF.B.Delta.6 - Oracle HRMS Release Update Pack 6, We have faced some of the forms library files are not generated successfully. 
While trying to click on any of the HRMS self service link, it shows "You have encountered an unexpected error. Please contact the System Administrator for assistance. 
Click here for exception details "

Soution :
*******

This issue has produced due to wrong patch application on application tier..

Refer "Multinode patching(blog)" to apply patches in multinode environment.

Because of this Appl1 and Appl2 have oracle forms and library files version mismatch occurs.
Hence I have copied required files from concurrent node and applied all the patches successfully.

Accounting program goes warning

Issue :
******

While running the accounting concurrent program, its completing with warning. The log file shows like, Unit Processor completed normally with some events in error 
and The following REVERSAL events could not be processed. The event/process status is U/U: Note: this warning may be ignored for any events whose ledger is a cash-basis ledger


Solution :
********

Profile Option : Concurrent:OPP Response Timeout
Internal Name : CONC_PP_RESPONSE_TIMEOUT
Description : Specifies the amount of time a manager waits for OPP to respond to its request for post processing.

Profile Option : Concurrent:OPP Process Timeout
Internal Name : CONC_PP_PROCESS_TIMEOUT
Description : Specifies the amount of time the manager waits for the OPP to actually process the request.

We need to increase the value of these profile options.
I have set to 2000 for both the profile options.

There is no optimum value and you have to set it according to your business needs and according to the number of reports you have and how big they are.

Concurrent Requests Fail Due to Output Post Processing (OPP) Timeout (Doc ID 352518.1)


Oracle Forms and PL/SQL Library files compilation manually

bash-3.2$ frmcmp_batch.sh module=/FMSAPP/R12/apps/apps_st/appl/au/12.0.0/resource/HR_GEN.pll userid=apps/fms4r0d output_file=/FMSAPP/R12/apps/apps_st/appl/au/12.0.0/resource/HR_GEN.plx module_type=LIBRARY batch=yes compile_all=special

bash-3.2$ frmcmp_batch.sh module=/FMSAPP/R12/apps/apps_st/appl/au/12.0.0/forms/US/APPSTAND.fmb userid=apps/fms4r0d output_file=/FMSAPP/R12/apps/apps_st/appl/pay/12.0.0/forms/US/APPSTAND.fmx module_type=form compile_all=special
Forms 10.1 (Form Compiler) Version 10.1.2.3.0 (Production)

Forms 10.1 (Form Compiler): Release  - Production

Copyright (c) 1982, 2005, Oracle.  All rights reserved.

Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
     With the Partitioning, OLAP, Data Mining and Real Application Testing options
PL/SQL Version 10.1.0.5.0 (Production)
Oracle Procedure Builder V10.1.2.3.0 - Production
Oracle Virtual Graphics System Version 10.1.2.0.0 (Production)
Oracle Multimedia Version 10.1.2.0.2 (Production)
Oracle Tools Integration Version 10.1.2.0.2 (Production)
Oracle Tools Common Area Version 10.1.2.0.2
Oracle CORE     10.1.0.5.0      Production
Compiling package specification APP_CUSTOM...
   No compilation errors.

Compiling package specification APP_CUSTOM...
   No compilation errors.

Compiling package body APP_CUSTOM...
   No compilation errors.

Compiling EXPORT trigger on form...
   No compilation errors.

Compiling CLOSE_THIS_WINDOW trigger on form...
   No compilation errors.

Compiling WHEN-FORM-NAVIGATE trigger on form...
   No compilation errors.

Compiling LASTRECORD trigger on form...
   No compilation errors.

Compiling STANDARD_ATTACHMENTS trigger on form...
   No compilation errors.

Compiling ZOOM trigger on form...
   No compilation errors.

Compiling WHEN-NEW-FORM-INSTANCE trigger on form...
   No compilation errors.

Compiling WHEN-NEW-RECORD-INSTANCE trigger on form...
   No compilation errors.

Compiling PRE-FORM trigger on form...
   No compilation errors.

Compiling WHEN-NEW-ITEM-INSTANCE trigger on form...
   No compilation errors.

Compiling WHEN-NEW-BLOCK-INSTANCE trigger on form...
   No compilation errors.

Compiling QUERY_FIND trigger on form...
   No compilation errors.

Compiling MENU_TO_APPCORE trigger on form...
   No compilation errors.

Compiling APPCORE_TO_CALENDAR trigger on form...
   No compilation errors.

Compiling CLOSE_WINDOW trigger on form...
   No compilation errors.

Compiling ACCEPT trigger on form...
   No compilation errors.

Compiling PRE-POPUP-MENU trigger on form...
   No compilation errors.

Compiling WHEN-WINDOW-CLOSED trigger on form...
   No compilation errors.

Compiling KEY-EDIT trigger on form...
   No compilation errors.

Compiling KEY-F9 trigger on form...
   No compilation errors.

Compiling KEY-F0 trigger on form...
   No compilation errors.

Compiling KEY-F1 trigger on form...
   No compilation errors.

Compiling KEY-F2 trigger on form...
   No compilation errors.

Compiling KEY-F3 trigger on form...
   No compilation errors.

Compiling KEY-F4 trigger on form...
   No compilation errors.

Compiling KEY-F5 trigger on form...
   No compilation errors.

Compiling KEY-F6 trigger on form...
   No compilation errors.

Compiling KEY-F7 trigger on form...
   No compilation errors.

Compiling KEY-F8 trigger on form...
   No compilation errors.

Compiling KEY-LISTVAL trigger on TEXT_ITEM130 item in BLOCKNAME data block...
   No compilation errors.

Compiling KEY-PREV-ITEM trigger on SAMPLE_FOLDER data block...
   No compilation errors.

Compiling KEY-NEXT-ITEM trigger on SAMPLE_FOLDER data block...
   No compilation errors.

Compiling KEY-EXEQRY trigger on SAMPLE_FOLDER data block...
   No compilation errors.

Compiling PRE-QUERY trigger on SAMPLE_FOLDER data block...
   No compilation errors.

Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SAMPLE_FOLDER data block...
   No compilation errors.

Compiling POST-BLOCK trigger on SAMPLE_FOLDER data block...
   No compilation errors.

Compiling PRE-BLOCK trigger on SAMPLE_FOLDER data block...
   No compilation errors.

Compiling WHEN-NEW-ITEM-INSTANCE trigger on CURRENT_RECORD_INDICATOR item in DETAILBLOCK data block...
   No compilation errors.

Compiling WHEN-NEW-ITEM-INSTANCE trigger on DRILLDOWN_RECORD_INDICATOR item in DETAILBLOCK data block...
   No compilation errors.

Compiling KEY-LISTVAL trigger on TEXT_ITEM88 item in DETAILBLOCK data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on OPEN item in FOLDER_TOOLS data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on SAVE item in FOLDER_TOOLS data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on NEW item in FOLDER_TOOLS data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on DELETE item in FOLDER_TOOLS data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on SHOW item in FOLDER_TOOLS data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on HIDE item in FOLDER_TOOLS data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on WIDEN item in FOLDER_TOOLS data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on SHRINK item in FOLDER_TOOLS data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on UP item in FOLDER_TOOLS data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on LEFT item in FOLDER_TOOLS data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on RIGHT item in FOLDER_TOOLS data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on DOWN item in FOLDER_TOOLS data block...
   No compilation errors.

Compiling KEY-EXIT trigger on FOLDER_CONTROL data block...
   No compilation errors.

Compiling KEY-DOWN trigger on FOLDER_CONTROL data block...
   No compilation errors.

Compiling KEY-CREREC trigger on FOLDER_CONTROL data block...
   No compilation errors.

Compiling KEY-COMMIT trigger on FOLDER_CONTROL data block...
   No compilation errors.

Compiling KEY-CLRREC trigger on FOLDER_CONTROL data block...
   No compilation errors.

Compiling KEY-CLRBLK trigger on FOLDER_CONTROL data block...
   No compilation errors.

Compiling KEY-NXTREC trigger on FOLDER_CONTROL data block...
   No compilation errors.

Compiling KEY-CLRFRM trigger on FOLDER_CONTROL data block...
   No compilation errors.

Compiling KEY-UP trigger on FOLDER_CONTROL data block...
   No compilation errors.

Compiling KEY-PRVREC trigger on FOLDER_CONTROL data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on SHOW_QUERY item in FOLDER_CONTROL data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on OK_SAVE_FOLDER item in FOLDER_CONTROL data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on CANCEL_SAVE_FOLDER item in FOLDER_CONTROL data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on OK_ALTER_PROMPT item in FOLDER_CONTROL data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on CANCEL_ALTER_PROMPT item in FOLDER_CONTROL data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on DEFAULT_PROMPT item in FOLDER_CONTROL data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on OK_WHERE_CLAUSE item in FOLDER_CONTROL data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on OK_AUTOSIZE item in FOLDER_CONTROL data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on CANCEL_AUTOSIZE item in FOLDER_CONTROL data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on OK_SORT_DATA item in FOLDER_CONTROL data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on CANCEL_SORT_DATA item in FOLDER_CONTROL data block...
   No compilation errors.

Compiling WHEN-RADIO-CHANGED trigger on CALENDAR data block...
   No compilation errors.

Compiling KEY-OTHERS trigger on CALENDAR data block...
   No compilation errors.

Compiling KEY-NEXT-ITEM trigger on CALENDAR data block...
   No compilation errors.

Compiling KEY-PREV-ITEM trigger on CALENDAR data block...
   No compilation errors.

Compiling KEY-ENTER trigger on CALENDAR data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on CALENDAR data block...
   No compilation errors.

Compiling WHEN-LIST-CHANGED trigger on CALENDAR data block...
   No compilation errors.

Compiling WHEN-MOUSE-CLICK trigger on CALENDAR data block...
   No compilation errors.

Compiling KEY-DOWN trigger on CALENDAR data block...
   No compilation errors.

Compiling KEY-UP trigger on CALENDAR data block...
   No compilation errors.

Compiling KEY-NXTREC trigger on CALENDAR data block...
   No compilation errors.

Compiling KEY-PRVREC trigger on CALENDAR data block...
   No compilation errors.

Compiling WHEN-MOUSE-DOUBLECLICK trigger on CALENDAR data block...
   No compilation errors.

Compiling WHEN-VALIDATE-ITEM trigger on TIMEZONE_NAME item in CALENDAR data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on SHOW_TIMEZONES_DATETIME item in CALENDAR data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on PREV_MONTH item in CALENDAR data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on NEXT_MONTH item in CALENDAR data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on NEXT_YEAR item in CALENDAR data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on PREV_YEAR item in CALENDAR data block...
   No compilation errors.

Compiling KEY-NXTBLK trigger on QUERY_FIND data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on CLEAR item in QUERY_FIND data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on NEW item in QUERY_FIND data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on FIND item in QUERY_FIND data block...
   No compilation errors.

Compiling WHEN-CLEAR-BLOCK trigger on SAMPLE_MULTI data block...
   No compilation errors.

Compiling KEY-CLRREC trigger on SAMPLE_MULTI data block...
   No compilation errors.

Compiling KEY-F2 trigger on SAMPLE_MULTI data block...
   No compilation errors.

Compiling KEY-F3 trigger on SAMPLE_MULTI data block...
   No compilation errors.

Compiling KEY-CREREC trigger on SAMPLE_MULTI data block...
   No compilation errors.

Compiling PRE-BLOCK trigger on SAMPLE_MULTI data block...
   No compilation errors.

Compiling POST-BLOCK trigger on SAMPLE_MULTI data block...
   No compilation errors.

Compiling SELECT_ALL trigger on SAMPLE_MULTI data block...
   No compilation errors.

Compiling DESELECT_ALL trigger on SAMPLE_MULTI data block...
   No compilation errors.

Compiling WHEN-MOUSE-CLICK trigger on SAMPLE_MULTI data block...
   No compilation errors.

Compiling WHEN-NEW-RECORD-INSTANCE trigger on SAMPLE_MULTI data block...
   No compilation errors.

Compiling KEY-DELREC trigger on SAMPLE_MULTI data block...
   No compilation errors.

Compiling KEY-EXIT trigger on PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling KEY-DOWN trigger on PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling KEY-CREREC trigger on PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling KEY-COMMIT trigger on PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling KEY-CLRREC trigger on PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling KEY-CLRBLK trigger on PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling KEY-NXTREC trigger on PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling KEY-CLRFRM trigger on PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling KEY-UP trigger on PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling KEY-PRVREC trigger on PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling WHEN-LIST-CHANGED trigger on OBJECT_TYPE item in PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling WHEN-LIST-CHANGED trigger on OBJ1 item in PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling WHEN-LIST-CHANGED trigger on OBJ2 item in PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling WHEN-LIST-CHANGED trigger on OBJ4 item in PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling WHEN-VALIDATE-ITEM trigger on OBJ3 item in PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling WHEN-LIST-CHANGED trigger on PROP item in PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on UPDATE_PROPERTIES item in PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on REFRESH item in PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger on CANCEL_PROPERTIES item in PROGRESS_INDICATOR data block...
   No compilation errors.

Compiling WHEN-CUSTOM-ITEM-EVENT trigger on PJC item in BLK_PJC data block...
   No compilation errors.

Compiling WHEN-MOUSE-UP trigger in FOLDER_PROMPT_MULTIROW property class...
   No compilation errors.

Compiling WHEN-BUTTON-PRESSED trigger in FOLDER_OPEN property class...
   No compilation errors.


Created form file /FMSAPP/R12/apps/apps_st/appl/pay/12.0.0/forms/US/APPSTAND.fmx