ExportButton meet error.

Hi All:
I got a error when use exportButton to export a VO data after querying the VO.
My VO is like:
select
column1,
column2
from table t
where t.id = :1
and t.name = :2
when export the queried data , it got errors as:
Error Page
Exception Details.
oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: ??????? SQL ?????: select
column1,
column2
from table t
where t.id = :1
and t.name = :2
     at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source)
If I set the VO as
select
column1,
column2
from table t
where t.id = 123
and t.name = 'name'
the export button can works normally.
how to solve it?
ORACLE JDEVELOPER
Studio Edition Version 10.1.3.3.0.3
Build JDEVADF_10/1/3/3/0_NT_RELEASE

Hi Ajay:
My CO class is:
public void processFormRequest(OAPageContext pageContext,
OAWebBean webBean) {
super.processFormRequest(pageContext, webBean);
String costcenter = pageContext.getParameter("SearchCostCenter");
String period_name = pageContext.getParameter("SearchPeriod");
String sob_id = pageContext.getParameter("SearchSOBID");
OAApplicationModule am = pageContext.getApplicationModule(webBean);
Serializable[] parameters = { costcenter, period_name, sob_id };
if (pageContext.getParameter("SearchBtn") != null) {
am.invokeMethod("initQuery", parameters);
} else {
am.invokeMethod("initQueryVO", parameters);
My AMImpl class is :
public ExpBudgetVOImpl getExpBudgetVO1() {
return (ExpBudgetVOImpl)findViewObject("ExpBudgetVO1");
public void initQuery(String costcenter, String period_name,
String sob_id) {
ExpBudgetVOImpl voimpl = getExpBudgetVO1();
voimpl.initQuery(costcenter, period_name, sob_id);
public void initQueryVO(String costcenter, String period_name,
String sob_id) {
ExpBudgetVOImpl voimpl = getExpBudgetVO1();
voimpl.initQueryVO(costcenter, period_name, sob_id);
My VOImpl class is:
public void initQuery(String costcenter, String period_name,
String sob_id) {
setWhereClauseParams(null);
setWhereClauseParam(0, costcenter);
setWhereClauseParam(1, period_name);
setWhereClauseParam(2, sob_id);
executeQuery();
public void initQueryVO(String costcenter, String period_name,
String sob_id) {
setWhereClauseParam(0, costcenter);
setWhereClauseParam(1, period_name);
setWhereClauseParam(2, sob_id);
My VO sql is:
SELECT cgh.contacted_segment,
cgh.ledger_id,
cgh.chart_of_accounts_id,
cgh.code_combination_id,
cgh.currency_code,
cgh.actual_flag,
cgh.segment1,
cgh.segment2,
cgh.segment3,
cgh.period_year,
cgh.period_num,
cgh.year_budget,
cgh.ytd_budget,
cgh.ytd_actual,
cgh.ytd_expense
FROM cux_gl_budget_balances_his cgh, gl_sets_of_books gso
WHERE 1 = 1
AND cgh.segment2 =
CUX_GL_BUDGET_UTIL_PKG.GET_SEGMENT2_PARENT(X_SEGMENT => :1,
X_SEGMENT_FVS_ID => cgh.segment2_fvs_id)
AND cgh.period_name = :2
AND to_char(cgh.ledger_id) = nvl(:3, '0')
AND cgh.currency_code = gso.CURRENCY_CODE
AND cgh.ledger_id = gso.SET_OF_BOOKS_ID
When click SearchBtn button , the Data can be queried normally.
The page have a messageComponentLayout and an advanceTable.
the exportButton is the tableaction of advacneTable.
Thanks a lot.
David

Similar Messages

  • Borland VisiBroker for java meet error when Installed Oracle 8i(V8.1.6)

    Oracle modified some register key value of Java Runtime
    Evironment which result in Java2IDL.exe's runninng error. I
    fixed the value in /software/javasoft/java runtime environment
    and reset the currentversion key to 1.3. Oralce use jre1.1.7.
    Can oracle meet errors when change it to sun jre1.3.1? May
    upgrade oracle jre1.1.7 to high version ? Tell me how to. Please
    tell me where to download If Oracle can't use Sun JRE1.3 . How
    can I deal with this problem and let VisiBroker for java and
    VisiBroker for C++ work well?
    Best Regards

    Hi,
    I am not aware of a sqlplus v8 for macosx so the nonexistence of it might be your problem. The way I remember it, there are sqlnet libs that are usable from other apps. What you could do is install the v9.2 developers release. This contains sqlplus and in that case just make sure the directory containing sqlplus is in your PATH (you also need a few other environment variables; they are set in DBENV).
    Ronald.
    http://ronr.nl/unix-dba

  • Meet error when extending FileWriter with JDK1.5.0

    There is a fragment of Java code as follows:
    import java.io.File;
    import java.io.FileDescriptor;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.Writer;
    public class FilterFileWriter extends FileWriter
         private short _tokenCounter = 0;     
         private StringBuffer _buffer = new StringBuffer();
         private String _pattern = "Bioseq-set";
         private String _lastAppend = "";     
         private boolean _doWrite = true;
         public void write(char[] arg0, int arg1, int arg2) throws IOException
              super.write(arg0, arg1, arg2);
         public void write(int arg0) throws IOException
              if( _doWrite )
                   super.write( arg0 );
              if(_lastAppend.equalsIgnoreCase( pattern ) && !doWrite && arg0 == 60 )
                   _doWrite = true;
                   super.write( arg0 );
                   _lastAppend = "";
         public void write(String arg0, int arg1, int arg2) throws IOException
              super.write(arg0, arg1, arg2);
         public void write(char[] arg0) throws IOException
              //Launcher.getLoggerInstance().info( "Writing array " + arg0[0] );
              super.write(arg0);
         public void write(String str) throws IOException
              if( str.equalsIgnoreCase( _pattern ) )
                   if( _lastAppend.equalsIgnoreCase( "</" ) )
                        _doWrite = false;
                        _lastAppend = str;
                        return;
              if( str.equalsIgnoreCase( "</" ) )
                   _lastAppend = str;
                   return;
              if( _lastAppend.equalsIgnoreCase( "</" ) )
                   super.write( _lastAppend );
              if( _doWrite )
                   super.write( str );
              if( str.trim().length() > 0 )
                   _lastAppend = str;
         public void write( String str, boolean force ) throws Exception
              if( force )
                   super.write( str );
         public FilterFileWriter(File arg0) throws IOException
              super(arg0);
         public FilterFileWriter(File arg0, boolean arg1) throws IOException
              super(arg0, arg1);
         public FilterFileWriter(FileDescriptor arg0)
              super(arg0);
         public FilterFileWriter(String arg0) throws IOException
              super(arg0);
         public FilterFileWriter(String arg0, boolean arg1) throws IOException
              super(arg0, arg1);
         private boolean hasPattern()
              return buffer != null && buffer.toString().indexOf( _pattern ) >= 0;
    When compiling, meet following error:
    The return type is incompatible with Appendable.append(char), Writer.append(char),Writer.append(char)
    Why? and How to resolve this error?
    Thanks a lot!

    Did you ever find a solution to this problem? I just installed jdk 1.5_03 and I get the following error from a class that does not have any of the methods described in the error below.
    The return type is incompatible with Appendable.append(char), Writer.append(char), Writer.append(char)

  • Lync 2013 with outlook 2010 meeting error

    I have installed lync basic 2013 with outlook 2010. The meeting add in is in place, but I get an error when trying to set up a Lync meeting "unable to identify the calendar owner"
    What to do to correct this?

    Hi,
    You seem to get the error “Unable to identify the calendar owner. Please contact your support team.”
    This is caused if the Online Meeting Add-in for Lync 2010 cannot determine the Simple Mail Transfer Protocol (SMTP) or Session Initiation Protocol (SIP) address of your Microsoft Outlook account. You need to contact your Exchange administrator.
    If you mail server does not support online meeting(such as a pop3 server), you can join the meeting as anonymous user through the meeting URL.
    You can also create a new profile to check the result:
    http://support.microsoft.com/kb/829918/en-us
    Regards,
    Melon Chen
    TechNet Community Support

  • Can you help me? I meet  errors when I do incomplete recovery with RMAN

    In recover step, There are following errors:
    RMAN-11001: Oracle Error: ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01152: file 1 was not restored from a sufficiently old backup
    ORA-01110: data file 1: '/d/db/oradata/db01/system01.dbf'
    question:
    1. Should I restore archive log files generated on July 16th back to orignal archive directory in order to avoid to recover failure?
    2. Or Should I add the command "sql 'alter system archive log current'" in the backup script in order to avoid to recover failure?
    The following is the detail information:
    The database is ok when I try to do incomplete recovery database that was fully backed up on July,16th,2004. The database is oracle 8.1.7 and is in the archive mode:
    The following is the backup script:
    run {
    allocate channel 'dev_0' type 'sbt_tape'
    parms 'ENV=(OB2BARTYPE=Oracle8,OB2APPNAME=db01,OB2BARLIST=ora8i_online)';
    backup incremental level 0 filesperset 1
    format 'ora8i_online<db01_%s:%t:%p>.dbf'
    database
    include current controlfile
    archivelog all delete input;
    I use it to do a full backup on July 16th,17th successfully.
    And I use the following scripts to do incomplete recovery:
    run {
    allocate channel 'dev_0' type 'sbt_tape'
    parms 'ENV=(OB2BARTYPE=ORACLE8,OB2APPNAME=db01)';
    sql "alter database mount";
    set until time ='17.07.2004';
    restore database;
    recover database;
    sql "alter database open resetlogs";
    sql "alter database open";
    There script is successful in restore step. But there are some errors in recover step. The detail information is showing in following log:
    RMAN-03022: compiling command: allocate
    RMAN-03023: executing command: allocate
    RMAN-08030: allocated channel: dev_0
    RMAN-08500: channel dev_0: sid=13 devtype=SBT_TAPE
    RMAN-08526: channel dev_0: HP OpenView OmniBack II A.04.10/176
    RMAN-03022: compiling command: sql
    RMAN-06162: sql statement: alter database mount
    RMAN-03023: executing command: sql
    RMAN-03022: compiling command: set
    RMAN-03022: compiling command: restore
    RMAN-03022: compiling command: IRESTORE
    RMAN-03023: executing command: IRESTORE
    RMAN-08016: channel dev_0: starting datafile backupset restore
    RMAN-08502: set_count=2056 set_stamp=531622798 creation_time=16.07.2004
    RMAN-08089: channel dev_0: specifying datafile(s) to restore from backup set
    RMAN-08016: channel dev_0: starting datafile backupset restore
    RMAN-08502: set_count=2180 set_stamp=531623409 creation_time=16.07.2004
    RMAN-08089: channel dev_0: specifying datafile(s) to restore from backup set
    RMAN-08523: restoring datafile 00001 to /d/db/oradata/db01/system01.dbf
    RMAN-08023: channel dev_0: restored backup piece 1
    RMAN-08511: piece handle=netace_ora8i_online<db01_2180:531623409:1>.dbf tag=null params=NULL
    RMAN-08024: channel dev_0: restore complete
    RMAN-08023: channel dev_0: restored backup piece 1
    RMAN-08511: piece handle=netace_ora8i_online<db01_2212:531623994:1>.dbf tag=null params=NULL
    RMAN-08024: channel dev_0: restore complete
    RMAN-03022: compiling command: recover
    RMAN-03022: compiling command: recover(1)
    RMAN-03022: compiling command: recover(2)
    RMAN-03022: compiling command: recover(3)
    RMAN-03023: executing command: recover(3)
    RMAN-08054: starting media recovery
    RMAN-03022: compiling command: recover(4)
    RMAN-03026: error recovery releasing channel resources
    RMAN-11001: Oracle Error: ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01152: file 1 was not restored from a sufficiently old backup
    ORA-01110: data file 1: '/d/db/oradata/db01/system01.dbf'
    RMAN-08031: released channel: dev_1
    RMAN-08031: released channel: dev_2
    RMAN-08031: released channel: dev_0
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure during compilation of command
    RMAN-03013: command type: recover
    RMAN-03002: failure during compilation of command
    RMAN-03013: command type: recover(4)
    RMAN-06003: ORACLE error from target database: ORA-01220: file based sort illegal before database is open
    ORA-06512: at "SYS.X$DBMS_RCVMAN", line 7220
    ORA-06512: at "SYS.X$DBMS_RCVMAN", line 5053
    ORA-06512: at line 1
    I repeat my questions:
    1. Should I restore archive log files generated on July 16th back to original archive directory in order to avoid to recover failure?
    2. Or Should I add the command "sql 'alter system archive log current'" in the backup script in order to avoid to recover failure?
    Can you help me ? Thank you.

    which o.s u are using i can't help you as i never worked on ver 8i,i can tell you incomplete recovery on oracle 9i on win 2000 server.
    thanks : alok kumar

  • Did you meet error AM840 when processing IDocs of BP?

    Hi,
    When I process IDocs of BP, there is a popup which said "Database error deleting from table ADRCOMC MessageNo:AM840". I have searched Notes, but no useful information founded.
    Do you know the cause of that error? How to solve it?
    Thanks!
    Best regards,
    Long

    hi,
    do you delete any address data for your business partner ?
    try to check address adata from you IDOC
    to see if it's correct
    you can send an IDOC from your BP and check
    if you populate the address data in the same way
    Regards,
    michal

  • Did you meet error AM840 when processing IDocs?

    Hi,
    When I process IDocs of BP, there is a popup which said "Database error deleting from table ADRCOMC MessageNo:AM840". I have searched Notes, but no useful information founded.
    Do you know the cause of that error? How to solve it?
    Thanks!
    Best regards,
    Long

    Hi Sudheer,
    Sorry, I made a mistake. You are right. The problem is because that some records of communication type are missing in table ADRCOMC.
    Then I firstly check if it has missing data, then do processing.
    Another question, currently when I usd Tcode: BD87 and select some IDocs when are not processed. If I click "Process" button, the program "RBDAPP01" should be executed and select the IDocs to be processed firstly. But at this step it often run exceed timeout. I looked at process via SM51 and found that when executing "Select * from BUT0TP...." statement, it needs very long time and then execeed timeout.  Do you know why?
    Thank you very much for your help!
    Best regards,
    Long

  • Jabber for iPhone: Jabber IM: Instant WebEx Meeting not working

    Team,       
    I used this before many times in my demo script and even documented it here:
    https://supportforums.cisco.com/docs/DOC-26327
    The last time I had this work for me was months ago, and an iOS phone update on the phone as well as both Jabber IM app and WebEx App updates on iPhone have occurred.  I have the latest of them all.
    I just tried this morning, and when I am chatting with a contact within Jabber IM client (which is WebEx Messenger SaaS for my IM/P), I can click his/her Contact Card (upper Right) and get a screen that has a link to “INSTANT MEEING”
    When I click it, it launches Webex, but spins for a few seconds and then just shows me my current WebEx schedule.  A meeting is not started and sent to the person I am chatting with.
    This is broken as far as I can tell. Others in my organization can successfully use this capability.
    I uninstalled and reinstalled BOTH Jabber IM for iPhone and Webex,  Logged into both and tried again.  Still fails trying to start an Instant Meeting
    here is the log (BOLD with Spaces above and below suspicious messages...)
      Anyone else notice this? 
    05/14/13 11:25:50.454 [369:2311] Info--WebExAppDelegate::init, model iPhone 6.1.3
    05/14/13 11:25:50.527 [369:2311] Info--i3DKit: RendererGL[0]::initGL2: begin, with sharedRenderer = 0
    05/14/13 11:25:50.553 [369:2311] Info--i3DKit: RendererGL[1c5b7d80]::initGL2: end, succeeded
    05/14/13 11:25:50.669 [369:2311] Performance(0ms)--WebExAppDelegate::applicationDidFinishLaunching version 4.0, model 0
    05/14/13 11:25:50.795 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:25:50.796 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 1, keepalive = 1
    05/14/13 11:25:50.803 [369:2311] Info--CFURLConnection: 1c5efcf0, ::Start, Post: 0, timeout: 0
    05/14/13 11:25:50.836 [369:2311] Info--CFURLConnection: 1c5f4870, ::Start, Post: 0, timeout: 0
    05/14/13 11:25:50.850 [369:2311] Performance(181ms)--initializeMainUI Done
    05/14/13 11:25:50.850 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:0
    05/14/13 11:25:53.091 [369:2311] Info--CFURLConnection: 1c5efcf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:25:53.127 [369:2311] Info--CFURLConnection: 1c5f4870, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:25:54.833 [369:2311] Info--CFURLConnection: 1c5bcda0, ::Start, Post: 0, timeout: 0
    05/14/13 11:25:55.268 [369:2311] Info--CFURLConnection: 1c5bcda0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:10.900 [369:2311] Performance(20051ms)--check the sites of email begin!
    05/14/13 11:26:10.901 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4026
    05/14/13 11:26:10.906 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4026, excuted APIType:3
    05/14/13 11:26:10.916 [369:2311] Info--CFURLConnection: 1c56a420, ::Start: https://glapi.webex.com/gla/GLAService, Post: 1c557680, timeout: 0
    05/14/13 11:26:10.925 [369:2311] Info--CFURLConnection: 1c5e5ce0, ::Start: https://glapi-bts.webex.com/gla/GLAService, Post: 1de1fbd0, timeout: 0
    05/14/13 11:26:10.929 [369:2311] Info--CFURLConnection: 1c563780, ::Start: https://glapi.webex.com.cn/gla/GLAService, Post: 1c545e50, timeout: 10
    05/14/13 11:26:13.077 [369:2311] Info--CFURLConnection: 1c56a420, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:13.079 [369:2311] Info--GLApiRequest::CheckResponseData, CMD:4026
    05/14/13 11:26:13.082 [369:2311] Info--GLApiRequest::OnParseCheckSSO, sso site:0, no SSO sites:2
    05/14/13 11:26:13.082 [369:2311] Info--GLApiRequest::OnRequestFinish, GLA:glapi.webex.com, Command-4026 is finished!
    05/14/13 11:26:13.082 [369:2311] Info--GLApisCtrl::OnCheckUserFinished
    05/14/13 11:26:13.166 [369:2311] Info--CFURLConnection: 1c5e5ce0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:13.166 [369:2311] Info--GLApiRequest::CheckResponseData, CMD:4026
    05/14/13 11:26:13.168 [369:2311] Info--GLApiRequest::OnParseCheckSSO, sso site:1, no SSO sites:0
    05/14/13 11:26:13.168 [369:2311] Info--GLApiRequest::OnRequestFinish, GLA:glapi-bts.webex.com, Command-4026 is finished!
    05/14/13 11:26:13.168 [369:2311] Info--GLApisCtrl::OnCheckUserFinished
    05/14/13 11:26:13.808 [369:2311] Info--CFURLConnection: 1c563780, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:13.808 [369:2311] Info--GLApiRequest::CheckResponseData, CMD:4026
    05/14/13 11:26:13.809 [369:2311] Info--GLApiRequest::OnParseCheckSSO, sso site:0, no SSO sites:0
    05/14/13 11:26:13.809 [369:2311] Info--GLApiRequest::OnRequestFinish, GLA:glapi.webex.com.cn, Command-4026 is finished!
    05/14/13 11:26:13.809 [369:2311] Info--GLApisCtrl::OnCheckUserFinished
    05/14/13 11:26:13.809 [369:2311] Info--APICtrlMgr::GetEvent, inCommandID:4026, failed:0
    05/14/13 11:26:13.810 [369:2311] Performance(2909ms)--check the sites of email end!
    05/14/13 11:26:21.251 [369:2311] Performance(7441ms)--Search users begin!
    05/14/13 11:26:21.251 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4009
    05/14/13 11:26:21.252 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4009, excuted APIType:3
    05/14/13 11:26:21.254 [369:2311] Info--CFURLConnection: 1f88f590, ::Start: https://glapi.webex.com/gla/GLAService, Post: 1f88f570, timeout: 0
    05/14/13 11:26:21.258 [369:2311] Info--CFURLConnection: 1f8c1f20, ::Start: https://glapi-bts.webex.com/gla/GLAService, Post: 1f8b3c60, timeout: 0
    05/14/13 11:26:21.262 [369:2311] Info--CFURLConnection: 1deb35d0, ::Start: https://glapi.webex.com.cn/gla/GLAService, Post: 1deb35b0, timeout: 10
    05/14/13 11:26:23.069 [369:2311] Info--CFURLConnection: 1f8c1f20, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:23.071 [369:2311] Info--GLApiRequest::CheckResponseData, CMD:4009
    05/14/13 11:26:23.072 [369:2311] Info--GLApiRequest::CheckResponseData, GLA:glapi-bts.webex.com, Cmd:4009, ExceptionID:500105, Reason:Sign in failed. User name or password is invalid or the user is inactive or locked
    05/14/13 11:26:23.073 [369:2311] Info--GLApiRequest::OnRequestFinish, GLA:glapi-bts.webex.com, Command-4009 is finished!
    05/14/13 11:26:23.073 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished
    05/14/13 11:26:23.439 [369:2311] Info--CFURLConnection: 1deb35d0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:23.440 [369:2311] Info--GLApiRequest::CheckResponseData, CMD:4009
    05/14/13 11:26:23.441 [369:2311] Info--GLApiRequest::CheckResponseData, GLA:glapi.webex.com.cn, Cmd:4009, ExceptionID:500105, Reason:Sign in failed. User name or password is invalid or the user is inactive or locked
    05/14/13 11:26:23.441 [369:2311] Info--GLApiRequest::OnRequestFinish, GLA:glapi.webex.com.cn, Command-4009 is finished!
    05/14/13 11:26:23.441 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished
    05/14/13 11:26:23.464 [369:2311] Info--CFURLConnection: 1f88f590, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:23.464 [369:2311] Info--GLApiRequest::CheckResponseData, CMD:4009
    05/14/13 11:26:23.465 [369:2311] Info--GLApiRequest::OnRequestFinish, GLA:glapi.webex.com, Command-4009 is finished!
    05/14/13 11:26:23.465 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished
    05/14/13 11:26:23.466 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished, all requests finished!
    05/14/13 11:26:23.466 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished, glapi.webex.com have 1 users been found!
    05/14/13 11:26:23.466 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished, glapi-bts.webex.com have 0 users been found!
    05/14/13 11:26:23.466 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished, glapi.webex.com.cn have 0 users been found!
    05/14/13 11:26:23.466 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished, 1 users been found!
    05/14/13 11:26:23.466 [369:2311] Info--APICtrlMgr::GetEvent, inCommandID:4009, failed:0
    05/14/13 11:26:23.466 [369:2311] Performance(2215ms)--Search users Done!
    05/14/13 11:26:26.613 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4002
    05/14/13 11:26:26.615 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4002, excuted APIType:1
    05/14/13 11:26:26.615 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4002
    05/14/13 11:26:26.615 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4033
    05/14/13 11:26:26.616 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4033, excuted APIType:2
    05/14/13 11:26:26.616 [369:2311] Info--URLAPICtrl:OnCommand, inCommandID:4033
    05/14/13 11:26:26.616 [369:2311] Info--URLAPICtrl::OnGetFeatureConfig
    05/14/13 11:26:26.616 [369:2311] Info--CFURLConnection: 1f8a4e30, ::Start: https://cdw.webex.com/cdw/featureconfig.php?AT=GC&TYPE=PT, Post: 0, timeout: 0
    05/14/13 11:26:27.760 [369:2311] Info--CFURLConnection: 1f8a4e30, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:27.762 [369:2311] Info--URLAPICtrl:OnParseResponse, inCommandID:4033
    05/14/13 11:26:27.762 [369:2311] Info--URLAPICtrl::OnParseGetFeatureConfig
    05/14/13 11:26:27.762 [369:2311] Info--URLAPICtrl::CheckResponseData, CMD:4033
    05/14/13 11:26:27.763 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4030
    05/14/13 11:26:27.764 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4030, excuted APIType:2
    05/14/13 11:26:27.764 [369:2311] Info--URLAPICtrl:OnCommand, inCommandID:4030
    05/14/13 11:26:27.764 [369:2311] Info--URLAPICtrl::OnGetEncryptedPWD, userName:steve.distefano
    05/14/13 11:26:27.764 [369:2311] Info--URLAPICtrl::OnGetEncryptedPWD, Meet already have encrypted password!
    05/14/13 11:26:27.765 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4102
    05/14/13 11:26:27.766 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4102, excuted APIType:2
    05/14/13 11:26:27.766 [369:2311] Info--URLAPICtrl:OnCommand, inCommandID:4102
    05/14/13 11:26:27.766 [369:2311] Info--CFURLConnection: 1f8b9870, ::Start: https://cdw.webex.com/cdw/user.php?AT=GetAuthInfo&UN=steve%2Edistefano&EPW=MSU1YjdjNmU4YzFlY2RmOTQ5NzcxNzdmYTI2NmRmNmVkN2M1NWM2ZTEzZjY3OWEwOGMwZGQ3YmI0OWI2ZjkxNzUxNzgwMzFhMjEzZDQ3NDEyZWE5YmY3ODNkYjE5MWZhM2U3NDMzZjQ0ZDU0MGY3OTEzMWE3YTdmMGFiN2JhOWFlODNlZTgzODhh&isUTF8=1, Post: 0, timeout: 0
    05/14/13 11:26:28.641 [369:2311] Info--CFURLConnection: 1f8b9870, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:28.642 [369:2311] Info--URLAPICtrl:OnParseResponse, inCommandID:4102
    05/14/13 11:26:28.642 [369:2311] Info--URLAPICtrl::OnParseGetToken
    05/14/13 11:26:28.642 [369:2311] Info--URLAPICtrl::CheckResponseData, CMD:4102
    05/14/13 11:26:28.643 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4028
    05/14/13 11:26:28.644 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4028, excuted APIType:1
    05/14/13 11:26:28.644 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4028
    05/14/13 11:26:28.644 [369:2311] Info--XMLAPICtrl::OnInitUserInfo, userName:steve.distefano
    05/14/13 11:26:28.646 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:26:28.646 [369:2311] Info--CFURLConnection: 1f8be0e0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f8bdfa0, timeout: 0
    05/14/13 11:26:30.251 [369:2311] Info--CFURLConnection: 1f8be0e0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:30.252 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4028
    05/14/13 11:26:30.253 [369:2311] Info--XMLAPICtrl::OnParseInitUserInfo
    05/14/13 11:26:30.253 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4028
    05/14/13 11:26:30.289 [369:2311] Info--HandleEvent: 6, 1, 0
    05/14/13 11:26:30.368 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:26:30.369 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:26:30.373 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2997
    05/14/13 11:26:30.376 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:26:30.376 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:26:30.409 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:26:30.409 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:26:30.409 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:26:30.409 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:26:30.411 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:26:30.412 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f8f7cd0, timeout: 0
    05/14/13 11:26:31.348 [369:2311] Info--URLConnection: 1f8e9080, :didFinishLoading
    05/14/13 11:26:31.349 [369:2311] Info--QsAgent: request 3 return 643 bytes data:
    <?xml version="1.0" encoding="UTF-8"?>
    <serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service" xmlns:com="http://www.webex.com/schemas/2002/06/common" xmlns:ep="http://www.webex.com/schemas/2002/06/service/ep" xmlns:meet="http://www.webex.
    05/14/13 11:26:31.352 [369:2311] Info--QsAgent: current user's site id = 475259
    05/14/13 11:26:31.352 [369:2311] Info--QsAgent: current user's user id = 496095747
    05/14/13 11:26:31.439 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:31.439 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:26:31.439 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:26:31.443 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:26:31.444 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:26:31.444 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:26:31.445 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:26:31.446 [369:2311] Performance(7980ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:26:31.701 [369:2311] Info--URLConnection: 1f8e6460, :didFinishLoading
    05/14/13 11:26:31.702 [369:2311] Info--QsAgent: request 4 return 19986 bytes data:
    <?xml version="1.0" encoding="UTF-8"?>
    <serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service" xmlns:com="http://www.webex.com/schemas/2002/06/common" xmlns:ns1="http://www.webex.com/schemas/2002/06/service/site" xmlns:event="http://www.we
    05/14/13 11:26:31.726 [369:2311] Info--QsAgent: call site.GetSite return ns1:iPhoneDusting true
    05/14/13 11:26:32.265 [369:2311] Info--URLConnection: 1f8e9a60, :didFinishLoading
    05/14/13 11:26:32.266 [369:2311] Info--QsAgent: request 7 return 173 bytes data:
    <?xml version="1.0" encoding="UTF-8"?>
    <GetCommonData><Status>SUCCESS</Status><CommonDataList><SupportiPhoneDusting>1</SupportiPhoneDusting></CommonDataList></GetCommonData>
    05/14/13 11:26:32.267 [369:2311] Info--QsAgent: GetJabberAccout for user "steve.distefano"
    05/14/13 11:26:33.085 [369:2311] Info--URLConnection: 1c54fac0, :didFinishLoading
    05/14/13 11:26:33.085 [369:2311] Info--QsAgent: request 12 return 280 bytes data:
    <?xml version="1.0" encoding="UTF-8"?>
    <GetJabberAccount><Result>Success</Result><Information><Name>[email protected]</Name><Password>*nFn)7-I</Password><JabberBoshUrl>https://im1.ciscowebex.com/isj1</JabberBoshUrl></Inform
    05/14/13 11:26:33.696 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:26:33.828 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:26:33.841 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:26:33.842 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:26:33.842 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:26:33.842 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:26:42.135 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:26:42.136 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:26:42.136 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:26:42.136 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:26:42.136 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:26:42.136 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:26:42.774 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:26:42.774 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:26:42.775 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2985
    05/14/13 11:26:42.775 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:26:42.775 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:26:42.775 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:26:42.776 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:26:42.777 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:26:42.777 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:26:42.777 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:26:42.778 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f8f6ee0, timeout: 0
    05/14/13 11:26:43.797 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:43.798 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:26:43.798 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:26:43.803 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:26:43.804 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:26:43.804 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:26:43.804 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:26:43.804 [369:2311] Performance(12359ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:26:47.962 [369:2311] Info--CFURLConnection: 1f8b3750, ::Start, Post: 0, timeout: 0
    05/14/13 11:26:50.323 [369:2311] Info--CFURLConnection: 1f8b3750, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:54.013 [369:2311] Info--CFURLConnection: 1f88efa0, ::Start, Post: 0, timeout: 0
    05/14/13 11:26:57.125 [369:2311] Info--CFURLConnection: 1f88efa0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:27:00.862 [369:2311] Info--CFURLConnection: 1c544480, ::Start, Post: 0, timeout: 0
    05/14/13 11:27:03.106 [369:2311] Info--CFURLConnection: 1c544480, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:27:05.432 [369:2311] Info--CFURLConnection: 1c5e3290, ::Start, Post: 0, timeout: 0
    05/14/13 11:27:05.798 [369:2311] Info--CFURLConnection: 1c5e3290, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:27:27.531 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:27:27.541 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:27:27.551 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:27:27.552 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:27:27.552 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:27:27.552 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:27:55.715 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:27:55.716 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:27:55.717 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:27:55.718 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:27:55.718 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:27:55.718 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:27:56.264 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:27:56.264 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:27:56.265 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2911
    05/14/13 11:27:56.266 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:27:56.266 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:27:56.267 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:27:56.267 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:27:56.268 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:27:56.268 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:27:56.268 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:27:56.269 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f8e4cf0, timeout: 0
    05/14/13 11:27:57.156 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:27:57.156 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:27:57.157 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:27:57.160 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:27:57.160 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:27:57.160 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:27:57.160 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:27:57.160 [369:2311] Performance(73356ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:28:03.649 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:28:03.699 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:28:03.709 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:28:03.709 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:28:03.709 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:28:03.709 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:28:08.549 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:28:08.549 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:28:08.551 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:28:08.551 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:28:08.551 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:28:08.551 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:28:09.255 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:28:09.255 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:28:09.256 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2898
    05/14/13 11:28:09.256 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:28:09.256 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:28:09.256 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:28:09.257 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:28:09.258 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:28:09.258 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:28:09.258 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:28:09.259 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f887e70, timeout: 0
    05/14/13 11:28:11.056 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:28:11.056 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:28:11.057 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:28:11.060 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:28:11.060 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:28:11.060 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:28:11.060 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:28:11.060 [369:2311] Performance(13899ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:28:19.313 [369:2311] Info--CFURLConnection: 1f87f9b0, ::Start, Post: 0, timeout: 0
    05/14/13 11:28:19.569 [369:2311] Info--CFURLConnection: 1f87f9b0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:28:23.857 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:28:23.865 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:28:23.885 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:28:23.885 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:28:23.885 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:28:23.885 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:30:10.934 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:30:10.943 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:30:10.943 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:30:10.943 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:30:10.943 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:30:10.943 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:30:11.261 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:30:11.261 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:30:11.262 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2776
    05/14/13 11:30:11.263 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:30:11.263 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:30:11.263 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:30:11.263 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:30:11.264 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:30:11.264 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:30:11.264 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:30:11.265 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1de032d0, timeout: 0
    05/14/13 11:30:11.829 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:30:12.197 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:30:12.197 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:30:12.197 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:30:12.200 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:30:12.201 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:30:12.201 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:30:12.201 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:30:12.201 [369:2311] Performance(121141ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:30:16.620 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:0
    05/14/13 11:30:20.060 [369:2311] Info--CFURLConnection: 1c562f70, ::Start, Post: 0, timeout: 0
    05/14/13 11:30:20.318 [369:2311] Info--CFURLConnection: 1c562f70, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:30:23.415 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:30:23.425 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:30:23.435 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:30:23.436 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:30:23.436 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:30:23.436 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:31:04.315 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:31:04.317 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:31:04.317 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:31:04.318 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:31:04.318 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:31:04.318 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:31:04.761 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:31:04.761 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:31:04.762 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2723
    05/14/13 11:31:04.762 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:31:04.762 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:31:04.762 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:31:04.762 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:31:04.764 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:31:04.764 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:31:04.765 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:31:04.765 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f8f3e40, timeout: 0
    05/14/13 11:31:06.365 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:31:06.365 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:31:06.365 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:31:06.368 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:31:06.369 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:31:06.369 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:31:06.369 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:31:06.369 [369:2311] Performance(54168ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:31:10.686 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:31:10.697 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:31:10.708 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:31:10.708 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:31:10.708 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:31:10.709 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:36:00.610 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:36:00.612 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:36:00.612 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:36:00.612 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:36:00.612 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:36:00.612 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:36:01.254 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:36:01.254 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:36:01.255 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2426
    05/14/13 11:36:01.255 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:36:01.255 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:36:01.256 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:36:01.256 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:36:01.257 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:36:01.257 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:36:01.257 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:36:01.258 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1c5f2060, timeout: 0
    05/14/13 11:36:01.539 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:36:02.408 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:36:02.408 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:36:02.408 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:36:02.411 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:36:02.412 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:36:02.412 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:36:02.412 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:36:02.412 [369:2311] Performance(296044ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:36:04.376 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:0
    05/14/13 11:36:07.628 [369:2311] Info--CFURLConnection: 1f8e42b0, ::Start, Post: 0, timeout: 0
    05/14/13 11:36:07.835 [369:2311] Info--CFURLConnection: 1f8e42b0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:36:10.516 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:36:10.526 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:36:10.544 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:36:10.544 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:36:10.544 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:36:10.544 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:38:06.831 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:38:06.843 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:38:06.843 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:38:06.843 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:38:06.844 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:38:06.844 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:38:07.260 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:38:07.260 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:38:07.262 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2300
    05/14/13 11:38:07.263 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:38:07.263 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:38:07.263 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:38:07.263 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:38:07.264 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:38:07.264 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:38:07.265 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:38:07.265 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f8b4b20, timeout: 0
    05/14/13 11:38:08.358 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:38:08.358 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:38:08.358 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:38:08.361 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:38:08.362 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:38:08.362 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:38:08.362 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:38:08.362 [369:2311] Performance(125949ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:38:17.494 [369:2311] Info--HandleEvent: 1, 0, 0
    05/14/13 11:38:17.494 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 0
    05/14/13 11:38:17.496 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:38:17.496 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:38:17.496 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:38:17.496 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:38:17.498 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:38:17.498 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:38:17.499 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:38:17.500 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1ded3130, timeout: 0
    05/14/13 11:38:18.308 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:38:18.309 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:38:18.309 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:38:18.312 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:38:18.312 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:38:18.313 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:38:18.313 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:38:18.313 [369:2311] Performance(9951ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:38:18.730 [369:2311] Info--HandleEvent: 1, 0, 0
    05/14/13 11:38:18.730 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 0
    05/14/13 11:38:18.732 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:38:18.732 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:38:18.733 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:38:18.733 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:38:18.734 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:38:18.735 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:38:18.735 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:38:18.736 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1c5f8460, timeout: 0
    05/14/13 11:38:19.727 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:38:19.727 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:38:19.727 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:38:19.730 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:38:19.731 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:38:19.731 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:38:19.731 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:38:19.731 [369:2311] Performance(1418ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:38:27.969 [369:2311] Info--CFURLConnection: 1c562f70, ::Start, Post: 0, timeout: 0
    05/14/13 11:38:28.183 [369:2311] Info--CFURLConnection: 1c562f70, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:38:31.382 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:38:31.396 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:38:31.407 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:38:31.407 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:38:31.407 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:38:31.407 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:38:35.325 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:38:35.325 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:38:35.325 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:38:35.326 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:38:35.326 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:38:35.326 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:38:35.760 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:38:35.761 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:38:35.762 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2272
    05/14/13 11:38:35.762 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:38:35.762 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:38:35.762 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:38:35.762 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:38:35.764 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:38:35.764 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:38:35.765 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:38:35.765 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f8eb960, timeout: 0
    05/14/13 11:38:36.748 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:38:36.748 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:38:36.748 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:38:36.751 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:38:36.751 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:38:36.751 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:38:36.752 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:38:36.752 [369:2311] Performance(17021ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:38:39.608 [369:2311] Info--CFURLConnection: 1f8e0fa0, ::Start, Post: 0, timeout: 0
    05/14/13 11:38:39.847 [369:2311] Info--CFURLConnection: 1f8e0fa0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:38:49.681 [369:2311] Info--OnScheduleMeeting
    05/14/13 11:38:49.683 [369:2311] Info--CFURLConnection: 1c54f960, ::Start, Post: 0, timeout: 0
    05/14/13 11:38:49.952 [369:2311] Info--CFURLConnection: 1c54f960, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:38:54.173 [369:2311] Info--CFURLConnection: 1c5e0120, ::Start, Post: 0, timeout: 0
    05/14/13 11:38:54.340 [369:2311] Info--CFURLConnection: 1c5e0120, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:39:02.216 [369:2311] Info--CFURLConnection: 1f8f5f10, ::Start, Post: 0, timeout: 0
    05/14/13 11:39:02.483 [369:2311] Info--CFURLConnection: 1f8f5f10, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:39:23.016 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:39:23.159 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:39:23.168 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:39:23.168 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:39:23.168 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:39:23.168 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:39:25.209 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:39:25.209 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:39:25.209 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:39:25.209 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:39:25.209 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:39:25.210 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:39:25.761 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:39:25.761 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:39:25.762 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2222
    05/14/13 11:39:25.762 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:39:25.762 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:39:25.763 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:39:25.763 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:39:25.778 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:39:25.778 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:39:25.778 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:39:25.779 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1c563cc0, timeout: 0
    05/14/13 11:39:27.031 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:39:27.031 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:39:27.031 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:39:27.034 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:39:27.034 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:39:27.034 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:39:27.035 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:39:27.035 [369:2311] Performance(50283ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:39:30.002 [369:2311] Info--CFURLConnection: 1deaeda0, ::Start, Post: 0, timeout: 0
    05/14/13 11:39:30.185 [369:2311] Info--CFURLConnection: 1deaeda0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:39:32.958 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:39:32.967 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:39:32.988 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:39:32.989 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:39:32.989 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:39:32.989 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:47:58.611 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:47:58.621 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:47:58.623 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:47:58.623 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:47:58.623 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:47:58.623 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:47:59.253 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:47:59.253 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:47:59.254 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 1708
    05/14/13 11:47:59.255 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:47:59.255 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:47:59.255 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:47:59.255 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:47:59.256 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:47:59.256 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:47:59.260 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:47:59.261 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f899d30, timeout: 0
    05/14/13 11:48:00.535 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:48:00.536 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:48:00.536 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:48:00.542 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:48:00.542 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:48:00.542 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:48:00.542 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:48:00.542 [369:2311] Performance(513507ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:48:05.476 [369:2311] Info--CFURLConnection: 1c5be060, ::Start, Post: 0, timeout: 0
    05/14/13 11:48:05.667 [369:2311] Info--CFURLConnection: 1c5be060, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:48:08.582 [369:2311] Info--CFURLConnection: 1c5125f0, ::Start, Post: 0, timeout: 0
    05/14/13 11:48:08.803 [369:2311] Info--CFURLConnection: 1c5125f0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0

    I am now running Webex 4.1 on my iPhone and Jabber IM 9.0.5 and the problem changed a little bit.
    Now I can click Instant Meeting and a chat with the WebEx URL is actually sent to the person I am IMing with and then can open webex and can see the meeting has not yet been started.
    On the iPhone however, while it launches Webex it prompts me for my instant meeting PW, which I confirmed is correct (also also confirmed it was sent to the other party in the IM), but when I enter it is says:
    UNABLE to Join or Start the meeting
    Error Code: 100200   Contact Cisco Webex Support
    Then it just sits and spins.
    I called Webex and they said 100200 means trying to start a meeting from an unsupport service.
    Si I just now tried to just start an instant meeting from my iPhone using just Webex and got the same error.  TAC has me on hold.
    TAC suggested I uninstall and reinstall Webex Meetings 4.1 on the iPhone.
    I did.  It worked.
    CASE CLOSED.  That was easy

  • Error when i create accounting

    frist of all sorry if i put this message in wrong subject or wrong thread.this is my frist time in forum
    dear all,
    i use ebs r12 12.1.2 os Linux x86-64
    when i create accounting i meet error this log :
    Application Object Library: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    FNDWFBG module: Workflow Background Process
    Current system time is 15-APR-2011 01:39:37
    **Starts**15-APR-2011 01:39:37
    **Ends**15-APR-2011 01:39:37
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Successfully resubmitted concurrent program FNDWFBG with request ID 450126 to start at 15-APR-2011 01:53:18 (ROUTINE=AFPSRS)
    Executing request completion options...
    Output is not being printed because:
    The print option has been disabled for this report.
    ------------- 1) PRINT   -------------
    Finished executing request completion options.
    Concurrent request completed successfully
    Current system time is 15-APR-2011 01:39:37
    Subledger Accounting: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XLAACCPB module: Create Accounting
    Current system time is 16-JAN-2012 12:43:15
    XDO Data Engine Version No: 5.6.3
    Resp: 20639
    Org ID : 81
    Request ID: 450125
    All Parameters: P_APPLICATION_ID=200:P_SOURCE_APPLICATION_ID=200:P_DUMMY=Y:P_LEDGER_ID=2023:P_PROCESS_CATEGORY_CODE=PAYMENTS:P_END_DATE="2012/01/10 00:00:00":P_CREATE_ACCOUNTING_FLAG=Y:P_DUMMY_PARAM_1=Y:P_ACCOUNTING_MODE=D:P_DUMMY_PARAM_2=:P_ERRORS_ONLY_FLAG=N:P_REPORT_STYLE=D:P_TRANSFER_TO_GL_FLAG=:P_DUMMY_PARAM_3=:P_POST_IN_GL_FLAG=:P_GL_BATCH_NAME=test11:P_MIN_PRECISION=:P_INCLUDE_ZERO_AMOUNT_LINES=N:P_REQUEST_ID=:P_ENTITY_ID=:P_SOURCE_APPLICATION_NAME=Payables:P_APPLICATION_NAME=Payables:P_LEDGER_NAME=SMI_PL:P_PROCESS_CATEGORY_NAME=Payments:P_CREATE_ACCOUNTING=Yes:P_ACCOUNTING_MODE_NAME=Draft:P_ERRORS_ONLY=No:P_ACCOUNTING_REPORT_LEVEL=Detail:P_TRANSFER_TO_GL=:P_POST_IN_GL=:P_INCLUDE_ZERO_AMT_LINES=No:P_VALUATION_METHOD_CODE=:P_SECURITY_INT_1=:P_SECURITY_INT_2=:P_SECURITY_INT_3=:P_SECURITY_CHAR_1=:P_SECURITY_CHAR_2=:P_SECURITY_CHAR_3=:P_CONC_REQUEST_ID=:P_INCLUDE_USER_TRX_ID_FLAG=N:P_INCLUDE_USER_TRX_IDENTIFIERS=No:DebugFlag=Y:P_USER_ID=1110
    Data Template Code: XLAACCPB
    Data Template Application Short Name: XLA
    Debug Flag: Y
    {P_ACCOUNTING_REPORT_LEVEL=Detail, P_DUMMY=Y, P_ACCOUNTING_MODE_NAME=Draft, P_ERRORS_ONLY_FLAG=N, P_REPORT_STYLE=D, P_GL_BATCH_NAME=test11, P_END_DATE=2012/01/10 00:00:00, P_SECURITY_INT_3=, P_SECURITY_INT_2=, P_SECURITY_INT_1=, P_VALUATION_METHOD_CODE=, P_POST_IN_GL=, P_TRANSFER_TO_GL=, P_TRANSFER_TO_GL_FLAG=, P_INCLUDE_USER_TRX_IDENTIFIERS=No, P_USER_ID=1110, P_PROCESS_CATEGORY_NAME=Payments, P_ERRORS_ONLY=No, P_DUMMY_PARAM_3=, P_SECURITY_CHAR_3=, P_DUMMY_PARAM_2=, P_SECURITY_CHAR_2=, P_DUMMY_PARAM_1=Y, P_SECURITY_CHAR_1=, P_ENTITY_ID=, P_PROCESS_CATEGORY_CODE=PAYMENTS, P_INCLUDE_ZERO_AMT_LINES=No, P_LEDGER_ID=2023, P_POST_IN_GL_FLAG=, P_APPLICATION_ID=200, P_INCLUDE_USER_TRX_ID_FLAG=N, P_APPLICATION_NAME=Payables, P_REQUEST_ID=, P_CONC_REQUEST_ID=, P_LEDGER_NAME=SMI_PL, P_SOURCE_APPLICATION_ID=200, P_CREATE_ACCOUNTING=Yes, P_CREATE_ACCOUNTING_FLAG=Y, P_MIN_PRECISION=, P_SOURCE_APPLICATION_NAME=Payables, P_INCLUDE_ZERO_AMOUNT_LINES=N, P_ACCOUNTING_MODE=D}
    Calling XDO Data Engine...
    [011612_124319140][][STATEMENT] oracle.jdbc.driver.OracleBlobInputStream@179f36b
    [011612_124319242][][STATEMENT] Logger.init(): *** DEBUG MODE IS OFF. ***
    [011612_124319244][][STATEMENT] DataTemplate.getTmpDir(): system-temp-dir property value from DATABASE: /usr/temp
    [011612_124319246][][STATEMENT] Template parsing started...
    [011612_124319389][][STATEMENT] Data Template ......
    [011612_124319389][][STATEMENT] oracle.xml.parser.v2.XMLDocument@19fdbcb
    [011612_124319525][][STATEMENT] Inside properties Parser...
    [011612_124319525][][STATEMENT] db_fetch_size=20
    [011612_124319526][][STATEMENT] Inside parameterParser...
    [011612_124319527][][STATEMENT] Parameter:P_REQUEST_ID Default value:
    [011612_124319527][][STATEMENT] Parameter:P_ENTITY_ID Default value:
    [011612_124319527][][STATEMENT] Parameter:P_SOURCE_APPLICATION_ID Default value:
    [011612_124319527][][STATEMENT] Parameter:P_SOURCE_APPLICATION_NAME Default value:
    [011612_124319527][][STATEMENT] Parameter:P_APPLICATION_ID Default value:
    [011612_124319527][][STATEMENT] Parameter:P_APPLICATION_NAME Default value:
    [011612_124319527][][STATEMENT] Parameter:P_DUMMY Default value:
    [011612_124319527][][STATEMENT] Parameter:P_LEDGER_ID Default value:
    [011612_124319527][][STATEMENT] Parameter:P_LEDGER_NAME Default value:
    [011612_124319527][][STATEMENT] Parameter:P_PROCESS_CATEGORY_CODE Default value:
    [011612_124319528][][STATEMENT] Parameter:P_PROCESS_CATEGORY_NAME Default value:
    [011612_124319528][][STATEMENT] Parameter:P_END_DATE Default value:
    [011612_124319528][][STATEMENT] Parameter:P_CREATE_ACCOUNTING_FLAG Default value:
    [011612_124319528][][STATEMENT] Parameter:P_CREATE_ACCOUNTING Default value:
    [011612_124319528][][STATEMENT] Parameter:P_DUMMY_PARAM_1 Default value:
    [011612_124319528][][STATEMENT] Parameter:P_ACCOUNTING_MODE Default value:
    [011612_124319528][][STATEMENT] Parameter:P_DUMMY_PARAM_2 Default value:
    [011612_124319528][][STATEMENT] Parameter:P_ERRORS_ONLY_FLAG Default value:
    [011612_124319528][][STATEMENT] Parameter:P_REPORT_STYLE Default value:
    [011612_124319528][][STATEMENT] Parameter:P_ACCOUNTING_MODE_NAME Default value:
    [011612_124319528][][STATEMENT] Parameter:P_ERRORS_ONLY Default value:
    [011612_124319528][][STATEMENT] Parameter:P_ACCOUNTING_REPORT_LEVEL Default value:
    [011612_124319529][][STATEMENT] Parameter:P_TRANSFER_TO_GL_FLAG Default value:
    [011612_124319529][][STATEMENT] Parameter:P_TRANSFER_TO_GL Default value:
    [011612_124319529][][STATEMENT] Parameter:P_DUMMY_PARAM_3 Default value:
    [011612_124319529][][STATEMENT] Parameter:P_POST_IN_GL_FLAG Default value:
    [011612_124319529][][STATEMENT] Parameter:P_POST_IN_GL Default value:
    [011612_124319529][][STATEMENT] Parameter:P_GL_BATCH_NAME Default value:
    [011612_124319529][][STATEMENT] Parameter:P_MIN_PRECISION Default value:
    [011612_124319529][][STATEMENT] Parameter:P_INCLUDE_ZERO_AMOUNT_LINES Default value:
    [011612_124319529][][STATEMENT] Parameter:P_INCLUDE_ZERO_AMT_LINES Default value:
    [011612_124319530][][STATEMENT] Parameter:P_VALUATION_METHOD_CODE Default value:
    [011612_124319530][][STATEMENT] Parameter:P_SECURITY_INT_1 Default value:
    [011612_124319530][][STATEMENT] Parameter:P_SECURITY_INT_2 Default value:
    [011612_124319530][][STATEMENT] Parameter:P_SECURITY_INT_3 Default value:
    [011612_124319530][][STATEMENT] Parameter:P_SECURITY_CHAR_1 Default value:
    [011612_124319530][][STATEMENT] Parameter:P_SECURITY_CHAR_2 Default value:
    [011612_124319530][][STATEMENT] Parameter:P_SECURITY_CHAR_3 Default value:
    [011612_124319530][][STATEMENT] Parameter:P_CONC_REQUEST_ID Default value:
    [011612_124319531][][STATEMENT] Parameter:P_INCLUDE_USER_TRX_ID_FLAG Default value:
    [011612_124319531][][STATEMENT] Parameter:P_INCLUDE_USER_TRX_IDENTIFIERS Default value:
    [011612_124319531][][STATEMENT] Parameter:P_USER_ID Default value:
    [011612_124319531][][STATEMENT] Inside dataQueryParser...
    [011612_124319535][][STATEMENT] Inside dataStructureParser...
    [011612_124319540][][STATEMENT] Group ...report
    [011612_124319541][][STATEMENT] Group ...APPLICATION
    [011612_124319542][][STATEMENT] Group ...APPLICATION_FLAG
    [011612_124319543][][STATEMENT] Group ...NO_ACTION_EVT
    [011612_124319544][][STATEMENT] Group ...ACCT_PROG_ERRORS
    [011612_124319545][][STATEMENT] Group ...EVENT_CLASS_S
    [011612_124319545][][STATEMENT] Group ...LEDGER_S
    [011612_124319546][][STATEMENT] Group ...BALANCE_TYPE_S
    [011612_124319547][][STATEMENT] Group ...EVENT
    [011612_124319548][][STATEMENT] Group ...AE_HEADERS
    [011612_124319550][][STATEMENT] Group ...AE_LINES
    [011612_124319551][][STATEMENT] Group ...AE_ERRORS
    [011612_124319552][][STATEMENT] Group ...NO_ENTRY_EVENTS
    [011612_124319553][][STATEMENT] Template parsing completed...
    [011612_124319553][][STATEMENT] Setting Data Template
    [011612_124319553][][STATEMENT] Setting JDBC Connection
    [011612_124319576][][STATEMENT] Paramter :P_REQUEST_ID Value :
    [011612_124319642][][STATEMENT] Paramter :P_ENTITY_ID Value :
    [011612_124319642][][STATEMENT] Paramter :P_SOURCE_APPLICATION_ID Value :200
    [011612_124319642][][STATEMENT] Paramter :P_SOURCE_APPLICATION_NAME Value :Payables
    [011612_124319642][][STATEMENT] Paramter :P_APPLICATION_ID Value :200
    [011612_124319642][][STATEMENT] Paramter :P_APPLICATION_NAME Value :Payables
    [011612_124319642][][STATEMENT] Paramter :P_DUMMY Value :Y
    [011612_124319642][][STATEMENT] Paramter :P_LEDGER_ID Value :2023
    [011612_124319642][][STATEMENT] Paramter :P_LEDGER_NAME Value :SMI_PL
    [011612_124319643][][STATEMENT] Paramter :P_PROCESS_CATEGORY_CODE Value :PAYMENTS
    [011612_124319643][][STATEMENT] Paramter :P_PROCESS_CATEGORY_NAME Value :Payments
    [011612_124319658][][STATEMENT] Paramter :P_END_DATE Value :2012/01/10 00:00:00
    [011612_124319658][][STATEMENT] Paramter :P_CREATE_ACCOUNTING_FLAG Value :Y
    [011612_124319658][][STATEMENT] Paramter :P_CREATE_ACCOUNTING Value :Yes
    [011612_124319658][][STATEMENT] Paramter :P_DUMMY_PARAM_1 Value :Y
    [011612_124319658][][STATEMENT] Paramter :P_ACCOUNTING_MODE Value :D
    [011612_124319658][][STATEMENT] Paramter :P_DUMMY_PARAM_2 Value :
    [011612_124319658][][STATEMENT] Paramter :P_ERRORS_ONLY_FLAG Value :N
    [011612_124319658][][STATEMENT] Paramter :P_REPORT_STYLE Value :D
    [011612_124319658][][STATEMENT] Paramter :P_ACCOUNTING_MODE_NAME Value :Draft
    [011612_124319658][][STATEMENT] Paramter :P_ERRORS_ONLY Value :No
    [011612_124319658][][STATEMENT] Paramter :P_ACCOUNTING_REPORT_LEVEL Value :Detail
    [011612_124319658][][STATEMENT] Paramter :P_TRANSFER_TO_GL_FLAG Value :
    [011612_124319658][][STATEMENT] Paramter :P_TRANSFER_TO_GL Value :
    [011612_124319659][][STATEMENT] Paramter :P_DUMMY_PARAM_3 Value :
    [011612_124319659][][STATEMENT] Paramter :P_POST_IN_GL_FLAG Value :
    [011612_124319659][][STATEMENT] Paramter :P_POST_IN_GL Value :
    [011612_124319659][][STATEMENT] Paramter :P_GL_BATCH_NAME Value :test11
    [011612_124319750][][STATEMENT] Paramter :P_MIN_PRECISION Value :
    [011612_124319751][][STATEMENT] Paramter :P_INCLUDE_ZERO_AMOUNT_LINES Value :N
    [011612_124319751][][STATEMENT] Paramter :P_INCLUDE_ZERO_AMT_LINES Value :No
    [011612_124319751][][STATEMENT] Paramter :P_VALUATION_METHOD_CODE Value :
    [011612_124319772][][STATEMENT] Paramter :P_SECURITY_INT_1 Value :
    [011612_124319837][][STATEMENT] Paramter :P_SECURITY_INT_2 Value :
    [011612_124319891][][STATEMENT] Paramter :P_SECURITY_INT_3 Value :
    [011612_124319891][][STATEMENT] Paramter :P_SECURITY_CHAR_1 Value :
    [011612_124319891][][STATEMENT] Paramter :P_SECURITY_CHAR_2 Value :
    [011612_124319892][][STATEMENT] Paramter :P_SECURITY_CHAR_3 Value :
    [011612_124319958][][STATEMENT] Paramter :P_CONC_REQUEST_ID Value :
    [011612_124319958][][STATEMENT] Paramter :P_INCLUDE_USER_TRX_ID_FLAG Value :N
    [011612_124319958][][STATEMENT] Paramter :P_INCLUDE_USER_TRX_IDENTIFIERS Value :No
    [011612_124319958][][STATEMENT] Paramter :P_USER_ID Value :1110
    [011612_124319958][][STATEMENT] Setting Parameters
    [011612_124319958][][STATEMENT] Setting Parameters
    [011612_124319960][][STATEMENT] Start process Data
    [011612_124319960][][STATEMENT] Process Data ...
    [011612_124319966][][STATEMENT] Executing data triggers...
    [011612_124319966][][STATEMENT] BEGIN
    XLA_CREATE_ACCT_RPT_PVT.P_REQUEST_ID := :P_REQUEST_ID ;
    XLA_CREATE_ACCT_RPT_PVT.P_ENTITY_ID := :P_ENTITY_ID ;
    XLA_CREATE_ACCT_RPT_PVT.P_SOURCE_APPLICATION_ID := :P_SOURCE_APPLICATION_ID ;
    XLA_CREATE_ACCT_RPT_PVT.P_SOURCE_APPLICATION_NAME := :P_SOURCE_APPLICATION_NAME ;
    XLA_CREATE_ACCT_RPT_PVT.P_APPLICATION_ID := :P_APPLICATION_ID ;
    XLA_CREATE_ACCT_RPT_PVT.P_APPLICATION_NAME := :P_APPLICATION_NAME ;
    XLA_CREATE_ACCT_RPT_PVT.P_DUMMY := :P_DUMMY ;
    XLA_CREATE_ACCT_RPT_PVT.P_LEDGER_ID := :P_LEDGER_ID ;
    XLA_CREATE_ACCT_RPT_PVT.P_LEDGER_NAME := :P_LEDGER_NAME ;
    XLA_CREATE_ACCT_RPT_PVT.P_PROCESS_CATEGORY_CODE := :P_PROCESS_CATEGORY_CODE ;
    XLA_CREATE_ACCT_RPT_PVT.P_PROCESS_CATEGORY_NAME := :P_PROCESS_CATEGORY_NAME ;
    XLA_CREATE_ACCT_RPT_PVT.P_END_DATE := :P_END_DATE ;
    XLA_CREATE_ACCT_RPT_PVT.P_CREATE_ACCOUNTING_FLAG := :P_CREATE_ACCOUNTING_FLAG ;
    XLA_CREATE_ACCT_RPT_PVT.P_CREATE_ACCOUNTING := :P_CREATE_ACCOUNTING ;
    XLA_CREATE_ACCT_RPT_PVT.P_DUMMY_PARAM_1 := :P_DUMMY_PARAM_1 ;
    XLA_CREATE_ACCT_RPT_PVT.P_ACCOUNTING_MODE := :P_ACCOUNTING_MODE ;
    XLA_CREATE_ACCT_RPT_PVT.P_DUMMY_PARAM_2 := :P_DUMMY_PARAM_2 ;
    XLA_CREATE_ACCT_RPT_PVT.P_ERRORS_ONLY_FLAG := :P_ERRORS_ONLY_FLAG ;
    XLA_CREATE_ACCT_RPT_PVT.P_REPORT_STYLE := :P_REPORT_STYLE ;
    XLA_CREATE_ACCT_RPT_PVT.P_ACCOUNTING_MODE_NAME := :P_ACCOUNTING_MODE_NAME ;
    XLA_CREATE_ACCT_RPT_PVT.P_ERRORS_ONLY := :P_ERRORS_ONLY ;
    XLA_CREATE_ACCT_RPT_PVT.P_ACCOUNTING_REPORT_LEVEL := :P_ACCOUNTING_REPORT_LEVEL ;
    XLA_CREATE_ACCT_RPT_PVT.P_TRANSFER_TO_GL_FLAG := :P_TRANSFER_TO_GL_FLAG ;
    XLA_CREATE_ACCT_RPT_PVT.P_TRANSFER_TO_GL := :P_TRANSFER_TO_GL ;
    XLA_CREATE_ACCT_RPT_PVT.P_DUMMY_PARAM_3 := :P_DUMMY_PARAM_3 ;
    XLA_CREATE_ACCT_RPT_PVT.P_POST_IN_GL_FLAG := :P_POST_IN_GL_FLAG ;
    XLA_CREATE_ACCT_RPT_PVT.P_POST_IN_GL := :P_POST_IN_GL ;
    XLA_CREATE_ACCT_RPT_PVT.P_GL_BATCH_NAME := :P_GL_BATCH_NAME ;
    XLA_CREATE_ACCT_RPT_PVT.P_MIN_PRECISION := :P_MIN_PRECISION ;
    XLA_CREATE_ACCT_RPT_PVT.P_INCLUDE_ZERO_AMOUNT_LINES := :P_INCLUDE_ZERO_AMOUNT_LINES ;
    XLA_CREATE_ACCT_RPT_PVT.P_INCLUDE_ZERO_AMT_LINES := :P_INCLUDE_ZERO_AMT_LINES ;
    XLA_CREATE_ACCT_RPT_PVT.P_VALUATION_METHOD_CODE := :P_VALUATION_METHOD_CODE ;
    XLA_CREATE_ACCT_RPT_PVT.P_SECURITY_INT_1 := :P_SECURITY_INT_1 ;
    XLA_CREATE_ACCT_RPT_PVT.P_SECURITY_INT_2 := :P_SECURITY_INT_2 ;
    XLA_CREATE_ACCT_RPT_PVT.P_SECURITY_INT_3 := :P_SECURITY_INT_3 ;
    XLA_CREATE_ACCT_RPT_PVT.P_SECURITY_CHAR_1 := :P_SECURITY_CHAR_1 ;
    XLA_CREATE_ACCT_RPT_PVT.P_SECURITY_CHAR_2 := :P_SECURITY_CHAR_2 ;
    XLA_CREATE_ACCT_RPT_PVT.P_SECURITY_CHAR_3 := :P_SECURITY_CHAR_3 ;
    XLA_CREATE_ACCT_RPT_PVT.P_CONC_REQUEST_ID := :P_CONC_REQUEST_ID ;
    XLA_CREATE_ACCT_RPT_PVT.P_INCLUDE_USER_TRX_ID_FLAG := :P_INCLUDE_USER_TRX_ID_FLAG ;
    XLA_CREATE_ACCT_RPT_PVT.P_INCLUDE_USER_TRX_IDENTIFIERS := :P_INCLUDE_USER_TRX_IDENTIFIERS ;
    XLA_CREATE_ACCT_RPT_PVT.P_USER_ID := :P_USER_ID ;
    :XDO_OUT_PARAMETER := 1;
    END;
    [011612_124319966][][STATEMENT] 1:null :
    [011612_124319966][][STATEMENT] 2:null :
    [011612_124319967][][STATEMENT] 3:200 :
    [011612_124319967][][STATEMENT] 4:Payables :
    [011612_124319967][][STATEMENT] 5:200 :
    [011612_124319967][][STATEMENT] 6:Payables :
    [011612_124319967][][STATEMENT] 7:Y :
    [011612_124319967][][STATEMENT] 8:2023 :
    [011612_124319967][][STATEMENT] 9:SMI_PL :
    [011612_124319967][][STATEMENT] 10:PAYMENTS :
    [011612_124319967][][STATEMENT] 11:Payments :
    [011612_124319968][][STATEMENT] 12:2012-01-10 00:00:00.0 :
    [011612_124319968][][STATEMENT] 13:Y :
    [011612_124319968][][STATEMENT] 14:Yes :
    [011612_124319968][][STATEMENT] 15:Y :
    [011612_124319968][][STATEMENT] 16:D :
    [011612_124319968][][STATEMENT] 17: :
    [011612_124319968][][STATEMENT] 18:N :
    [011612_124319968][][STATEMENT] 19:D :
    [011612_124319968][][STATEMENT] 20:Draft :
    [011612_124319968][][STATEMENT] 21:No :
    [011612_124319968][][STATEMENT] 22:Detail :
    [011612_124319968][][STATEMENT] 23: :
    [011612_124319968][][STATEMENT] 24: :
    [011612_124319968][][STATEMENT] 25: :
    [011612_124319968][][STATEMENT] 26: :
    [011612_124319968][][STATEMENT] 27: :
    [011612_124319968][][STATEMENT] 28:test11 :
    [011612_124319969][][STATEMENT] 29:null :
    [011612_124319969][][STATEMENT] 30:N :
    [011612_124319969][][STATEMENT] 31:No :
    [011612_124319969][][STATEMENT] 32: :
    [011612_124319969][][STATEMENT] 33:null :
    [011612_124319969][][STATEMENT] 34:null :
    [011612_124319969][][STATEMENT] 35:null :
    [011612_124319969][][STATEMENT] 36: :
    [011612_124319969][][STATEMENT] 37: :
    [011612_124319969][][STATEMENT] 38: :
    [011612_124319969][][STATEMENT] 39:null :
    [011612_124319969][][STATEMENT] 40:N :
    [011612_124319969][][STATEMENT] 41:No :
    [011612_124319969][][STATEMENT] 42:1110 :
    [011612_124319971][][STATEMENT] Executing data triggers...
    [011612_124319971][][STATEMENT] Declare
    l_flag Boolean;
    BEGIN
    l_flag := XLA_CREATE_ACCT_RPT_PVT.BeforeReport ;
    if (l_flag) then
    :XDO_OUT_PARAMETER := 1;
    end if;
    end;
    [011612_124319994][][EXCEPTION] SQLException encounter while executing data trigger....
    java.sql.SQLException: ORA-20001: -: XLA-95103: An internal error occurred. Please inform your system administrator or support representative that:
    An internal error has occurred in the program xla_create_acct_rpt_pvt.BeforeReport . ORA-20001: -: XLA-95103: An internal error occurred.
    ORA-06512: at "APPS.APP_EXCEPTION", line 72
    ORA-06512: at "APPS.XLA_EXCEPTIONS_PKG", line 110
    ORA-06512: at "APPS.XLA_EXCEPTIONS_PKG", line 289
    ORA-06512: at "APPS.XLA_EXCEPTIONS_PKG", line 162
    ORA-06512: at "APPS.XLA_CREATE_ACCT_RPT_PVT", line 275
    ORA-06512: at line 4
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1034)
         at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:191)
         at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:950)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1225)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3387)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3488)
         at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:3857)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
         at oracle.apps.xdo.dataengine.XMLPGEN.executeTriggers(XMLPGEN.java:650)
         at oracle.apps.xdo.dataengine.XMLPGEN.processData(XMLPGEN.java:263)
         at oracle.apps.xdo.dataengine.XMLPGEN.processXML(XMLPGEN.java:215)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeXML(XMLPGEN.java:254)
         at oracle.apps.xdo.dataengine.DataProcessor.processDataStructre(DataProcessor.java:390)
         at oracle.apps.xdo.dataengine.DataProcessor.processData(DataProcessor.java:355)
         at oracle.apps.xdo.oa.util.DataTemplate.processData(DataTemplate.java:334)
         at oracle.apps.xdo.oa.cp.JCP4XDODataEngine.runProgram(JCP4XDODataEngine.java:294)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    Oracle error 20100: java.sql.SQLException: ORA-20100: Error: FND_FILE failure. Unable to create file, o0010400.tmp in the directory, /usr/tmp.
    You will find more information in the request log.
    ORA-06512: at "APPS.FND_FILE", line 417
    ORA-06512: at "APPS.FND_FILE", line 526
    ORA-06512: at "APPS.FND_CONCURRENT", line 1328
    ORA-06512: at line 1
    has been detected in FND_CONCURRENT.SET_INTERIM_STATUS.+---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 450125 on node ORAAPPS at 16-JAN-2012 12:43:20.
    Post-processing of request 450125 failed at 16-JAN-2012 12:43:21 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 16-JAN-2012 12:43:21
    anyone have same problem and already solving ??
    Thanks,
    Mahardika

    [011612_124319994][][EXCEPTION] SQLException encounter while executing data trigger....
    java.sql.SQLException: ORA-20001: -: XLA-95103: An internal error occurred. Please inform your system administrator or support representative that:
    An internal error has occurred in the program xla_create_acct_rpt_pvt.BeforeReport . ORA-20001: -: XLA-95103: An internal error occurred.
    ORA-06512: at "APPS.APP_EXCEPTION", line 72
    ORA-06512: at "APPS.XLA_EXCEPTIONS_PKG", line 110
    ORA-06512: at "APPS.XLA_EXCEPTIONS_PKG", line 289
    ORA-06512: at "APPS.XLA_EXCEPTIONS_PKG", line 162
    ORA-06512: at "APPS.XLA_CREATE_ACCT_RPT_PVT", line 275
    ORA-06512: at line 4Please make sure you have no invalid objects.
    Please also see these docs.
    R12: Ap Invoice Online Accounting with Final Post Ends With Errors ORA-20001 XLA-95103 [ID 853424.1]
    FAACCPB Create Accounting Internal Error xla_create_acct_rpt_pvt.BeforeReport [ID 783493.1]
    CSTCRACC Create Accounting Err ORA-20001 Xla-95103 Internal Error Occurred ORA-01400 [ID 1309124.1]
    CSTCRACC - Create Accounting - Cost Management Completes With Errors: java.sql.SQLException, ORA-20001, XLA-95103 [ID 1252703.1]
    Create Accounting Concurrent Program Errors - ORA-20001 XLA-95103 [ID 1392267.1]
    Create Accounting Error Due To Invalid Package Apps.Ap_payment_extract_details_v [ID 1366269.1]
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 450125 on node ORAAPPS at 16-JAN-2012 12:43:20.
    Post-processing of request 450125 failed at 16-JAN-2012 12:43:21 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    Also check OPP log file ($APPLCSF/$APPLLOG/FNDOPP* file).
    Thanks,
    Hussein

  • Error T400 screen with stripes when I install window 64 bit

    Pls help me, with win 32 bit I didn't meet error the screen with stripes but when i install win 64 bit then the screen have  stripes, i have updated full drivers for it.
    Solved!
    Go to Solution.

    Are you using two sticks of unequal capacity ram.
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • Measure studio 8.0 error

    when i use vs2003 ,new to setup measure mfc application,meet error,like below:
    An unexpected error has occurred.
       at EnvDTE._DTE.LaunchWizard(String VSZFile, Object[]& ContextParams)
       at NationalInstruments.VSDesigner.VS.VsDTE.LaunchWizard(String vszFile, Object[]& contextParams)
       at NationalInstruments.Cpp.ProjectWizards.CppProjectWizards.RunWizard(Object[]& contextParams)
       at NationalInstruments.VSDesigner.Wizards.VsProjectWizard.Execute()
       at NationalInstruments.VSDesigner.Wizards.VsWizard.Execute(Object application, Int32 hwndOwner, Object[]& contextParams, Object[]& customParams, wizardResult& retVal)

    Hi z12345678,
    I see that nobody has responded to your message so I was wondering if you are still having problems? By the nature of the message, the first step to try would be to perform a repair on Measurement Studio as it seems something is corrupt with the integration between VIsual Studio and Measurement Studio.
    Best Regards,
    Message Edited by Jonathan N on 04-29-2007 08:37 PM
    Jonathan N.
    National Instruments

  • Cannot find the configuration file .../dataModel/common/bc4j.xcfg?

    Hi!
    I'm using Jdeveper 10.1.3 EA, when i run my application i meet error:
    Exception in thread main
    oracle.jbo.ConfigException: JBO-33001: Cannot find the configuration file /com/fss/isp/admin/dataModel/common/bc4j.xcfg in the classpath
         at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:365)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:281)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:482)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.findOrCreateSessionCookie(DataControlFactoryImpl.java:144)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:250)
         at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:73)
         at oracle.adf.model.BindingContext.get(BindingContext.java:454)
         at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:280)
         at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:248)
         at oracle.adf.model.binding.DCUtil.findContextObject(DCUtil.java:383)
         at oracle.adf.model.binding.DCIteratorBinding.<init>(DCIteratorBinding.java:129)
         at oracle.jbo.uicli.binding.JUIteratorBinding.<init>(JUIteratorBinding.java:59)
         at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:87)
         at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:51)
         at oracle.adf.model.binding.DCIteratorBindingDef.createExecutableBinding(DCIteratorBindingDef.java:225)
         at oracle.adf.model.binding.DCBindingContainerDef.createExecutables(DCBindingContainerDef.java:295)
         at oracle.adf.model.binding.DCBindingContainerDef.createBindingContainer(DCBindingContainerDef.java:424)
         at oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:54)
         at oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:43)
         at oracle.adf.model.BindingContext.get(BindingContext.java:480)
         at oracle.jbo.uicli.jui.JUPanelBinding.setup(JUPanelBinding.java:93)
         at oracle.jbo.uicli.controls.JUTestFrame.createBindingCtxAndSetUpMenu(JUTestFrame.java:168)
         at oracle.jbo.uicli.controls.JUTestFrame.<init>(JUTestFrame.java:121)
         at oracle.jbo.uicli.controls.JUTestFrame.startTestFrame(JUTestFrame.java:84)
         at com.fss.isp.admin.view.PanelGroup.main(PanelGroup.java:113)
    Process exited with exit code 1.
    How to can i fix problem?
    thanks!

    Refer
    New to JDeveloper - cannot find the configuration file
    Re: JBO-33001: Cannot find the configuration file /model/common/bc4j.xcfg

  • Help! I can't open kdesvn handbook.

    I have tried rapidsvn but I like kdesvn more.
    but I can't read the kdesvn handbook, because .... I meet error message below:
    Could not launch kde help center:
    Could not find service 'khelpcenter'
    my window manager is xfce4.4,  and I have already installed kde4.1 . I know kdesvn need kde3.x 's helpcenter, but I don't how to install the old kde helpcenter.

    The problem with could not find service is cause you dont have kde3 handbook, simple as that
    KDE4.1.1 isn't backward compatible with kde3.
    Here is the online version http://www.alwins-world.de/programs/kdesvn/kdesvn_dok/
    if you like kde3 just look for kdemod-legacy & tanis's kde 3.5.10's repo.

  • System status REL is active , Message no. BS013,CO88 COST-BY-SALES-ORDER

    Hi Experts,
    I meet error when i do the production order settlement"CO88" ,
    Which the production mode is cost-by-sales-order undifferentiated mode.
    the error information as bellow:
    System status REL is active (ORD XXXXX)
    Message no. BS013
    Diagnosis
    Object ORD XXXXXX has system status REL (Released).  According to this status, transaction 'settelemtn' is not allowed.
    Procedure
    You can only carry out the requested function if this is allowed according to the status of the object.
    Pls. Help in resolving.
    Best Regards,

    Dear Szymon and Mukthar,
          Fisrtly,Thank you for your help!
          I have changed the status "TECO"(the status is "TECO PCNF DLV  PRC  GMPS MANC SETC"),then I settlement the production order.
         The system still error:
    "Debit from actual settlement" not allowed (Sys. status REL, object VB0000000015000010)
    Message no. BS051
    Diagnosis
    The status check for the status object VB0000000015000010 indicated that the procedure "Debit from actual settlement" cannot be performed because Sys. status REL forbids it.
    System Response
    Procedure "Debit from actual settlement" is not performed.
    Procedure
    If procedure "Debit from actual settlement" is to be performed, the Sys. status REL of object VB0000000015000010 must be reset.
    Other statuses than Sys. status REL can also prevent the procedure. This message does not tell you all statuses which currently prevent procedure "Debit from actual settlement".
    Regards!
    Gang.Tian
    remark:
    I use the MTO mode, the receiver of settlement is SALES ORDER.(the settlement rule is SDI)

  • Starting Multiple Meetings

    Hi !!!
    Can any one please give me procedure to start multiple
    meetings with single flash file using flash media server
    components.
    Let me explain clearly----
    I started a meeting with flash media server components and
    deployed to tomacat. I can able to run the application and other
    users are also able to join to my meeting.
    But, I need to have multiple meeting sessions for different
    users and user must join to my meeting if he is having my meeting
    key.
    Is this possible with Flash Media Server Components?? If yes
    pleaese explain me
    Thanks in Advacne
    Anil Golla

    Hi Sam,
    I don't think it's a good idea for one script to start multiple app servers. I think you want to reduce some manual work? But running the SAP standard script 'startsap' twice is not that complex. In other words, you make the simple thing complicated....
    Why the one-step run script is not recommended? Because you must ensure that the central instance is started successfully once after you run the script startsap. Even you have a command in the script to detect this, it cannot be 100% garanteed that the CI is started without any errors. In other hand, the command to detect CI status is not 100% stable. You cannot easily control it when it meets error.
    The best way is you monitor it yourself.
    Regards

Maybe you are looking for