HELP: Issue on debugging

Hi all,
I have a flex app that loads a module.
And I am trying to debug the code on the module but the breakpoints that I set were being ignored (I made sure I don't have "Skip the Breakpoints" checked).
And when it stop on an error on one of the functions, I couldn't go into the source code by double-clicking the function call on the debug window.
I notice that it displays the function like this on the window:
com.Yadayada.Module.module1:Module1Controller/setInfo [no source]
What would be causing this to be [no source]? I did verify it's in the correct source Lookup path.
Please enlighten me.
Thx!

Hi Alex,
I build it through Flex builder.
Well, I finally did make it to work but I did in a very odd way:
On the main app, I have to make a property declaration to any of the type that's available in the module.
But I think the reason why I have to to do this is due to the way I setup the project.
My project is being setup to allow me to be able to test module in an independently before integrating it to my production project.
Thx for the reply Alex!

Similar Messages

  • Issue in debugging

    Hi All,
    I am facing an issue in debugging a BSP application.
    I placed an external break point in oncreate, oninitialization and oninputprocessing event but its not taking me to the break point.
    I have even tried with having some BREAK-POINT hard coded , but it doesn't help.
    I have tried with placing an external break point in layout and activated the HTTP debugging in SICF, even after that it doesn't work.
    I have not set default user name password for the application in SICF and also my user id in the external debugging option of Utilities->ABAP editor -> debugging is same as the one which i am giving while executing the page.
    But I am not able to debug the application.
    But when I tried debugging some other BSP applications, I am able to do that.
    your inputs will be very helpful.
    Thanks in advance.

    Hi Jyothi,
    Login userid and Debugger user id should be the same. If not debugging will not call.
    1) Have you given any user credintials while testing.
    2) Have you checked the debug user : utilities-> settings-> debugging-> check the user.
    Regards,
    Eswar.

  • Help me to debug this function.

    public Frame getParentFrame()
    Container container = null;
    for(container = getParent();!(container instanceof Frame); ){
    container = container.getParent();/*/
    return (Frame)container;
    When I use this function , it will wrong at the line marked "*"(I put this program at the applet),please help me to debug this program.

    Let me translate that into something that the average programmer could understand, instead of that awful for-statement...public Frame getParentFrame() {
      Container container = getParent();
      while (!(container instanceof Frame)) {
         container = container.getParent(); // Error here?
      return (Frame)container;
    }Now, you say it has an error at that line? Okay, to debug it you look at the error message. And then you figure out what's wrong with that line of code that causes that message. Sorry, that's all I can say because you didn't mention what the actual error was.

  • Help needed in debugging dynamic SQL.

    When I pass the p_deptno =30 and run the below code the refcursor returns the rows.But when I pass the dpetno =null then it goes to the condition if p_job is not null and throws an error.Can any one please help me in debugging this code.
    declare
    p_deptno number:=null;
    p_job varchar2(30):='SALESMAN';
    v_sql varchar2(4000);
    l_ename varchar2(30);
      TYPE my_cursor IS REF CURSOR;
      RC my_cursor;
    begin
      v_sql := 'select ename
                from emp
               where 1=1';
      if p_deptno is not null then
        v_sql := v_sql||' AND deptno='||p_deptno;
      else
        if p_job is not null then
          v_sql := v_sql||' AND job='||p_job;
        end if;
      end if;
      OPEN RC FOR v_sql;
      LOOP
        FETCH RC INTO l_ename;
        EXIT WHEN RC%NOTFOUND;
        dbms_output.put_line(l_ename);
      END LOOP;
      CLOSE RC;
    END;Thanks.
    Edited by: user3565577 on Mar 6, 2010 8:44 PM

    Hi
    I've mocked up a simple test and it seems to use the indexes when I try with one or the other values being supplied, I've made an assumption on the indexes you have (i.e. single column indexes on job and deptno),
    --indexes on emp table:
    p2056@dbapw01> @indexes
    Enter value for table_name: emp
    Enter value for owner: p2056
    INDEX_OWNER                    INDEX_NAME                INDEX_TYPE                  PAR COLUMN_NAME                    STATUS
    P2056                          EMPI1                     NORMAL                      NO  DEPTNO                         VALID
    P2056                          EMPI2                     NORMAL                      NO  JOB                            VALID
    2 rows selected.
    --when accessing with a job value
    p2056@dbapw01> explain plan for select *
      2  from emp
      3  where (
      4   (null is null and job = 'SALESMAN')
      5   OR
      6   ('SALESMAN' is null and deptno = null)
      7   OR
      8   ('SALESMAN' is null and null is null)
      9         );
    Explained.
    p2056@dbapw01> @xplan
    PLAN_TABLE_OUTPUT
    Plan hash value: 1888885832
    | Id  | Operation                   | Name  | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |       |     2 |   154 |     1   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| EMP   |     2 |   154 |     1   (0)| 00:00:01 |
    |*  2 |   INDEX RANGE SCAN          | EMPI2 |     2 |       |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("JOB"='SALESMAN')
    --when accessing with a deptno value
    p2056@dbapw01> explain plan for select *
      2  from emp
      3  where (
      4   (2 is null and job = null)
      5   OR
      6   (null is null and deptno = 2)
      7   OR
      8   (null is null and 2 is null)
      9         );
    Explained.
    p2056@dbapw01> @xplan
    PLAN_TABLE_OUTPUT
    Plan hash value: 1336173234
    | Id  | Operation                   | Name  | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |       |     1 |    77 |     1   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| EMP   |     1 |    77 |     1   (0)| 00:00:01 |
    |*  2 |   INDEX RANGE SCAN          | EMPI1 |     1 |       |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("DEPTNO"=2)

  • Issue with Multithreading and vertical scroll bar - help needed to debug!!!

    I have been working on a desktop Visual Studio 2010 application for quite a few years. It is written in C++ and MFC. This code is a combination of code I have written and code I inherited. It worked great for years on Windows XP, but when I ported
    it to Windows 7, a tricky problem has come up that I am having the darnest time trying to figure out
    In summary, it is a single .exe desktop application. There is the main thread (thread A), which launches another thread (thread B). Both threads share a pointer to a single window object which displays events. This window also implements a vertical and horizontal
    scroll bar. 
    The interaction and message processing between the threads seems a little sticky to me. Both threads A and B call the same member function of the CWnd object. BUT, Thread B ALSO posts messages to thread A's queue.
    So, in thread B, you will see code like this, which makes a direct call to the output window object, AND THEN it also posts a message to Thread A's mainframe window like this...
    if( m_pEventLog )
    pOutputWindow->AddLine("Some test...");
    if( m_phNotifyWnd[RECEIVE] && m_puiEventWMsg[RECEIVE] ) {
    ::PostMessage( m_phNotifyWnd[RECEIVE], m_puiEventWMsg[RECEIVE], 0, (LPARAM) pPkt );
    WHEN thread A receives the message that thread B posted above, it only does the following:
    LRESULT CMainFrame::OnSocketReceive( WPARAM, LPARAM lParam )
    CSPkt* pPkt;
    CRWPkt* pRWPkt;
    CSPktSocket* pSocket;
    ULONG ulType;
    CString csTemp;
    CBSWords bsWords;
    CSSSWords sssWords;
    CRWPkt* pLoopBackRWMsg; // used if we have to send a loopback msg back to sender
    CLMsg lmsg;
    m_wndTextWindow.AddLine("Test message");
    return 0;
    So both threads are writing to the output window via the .AddLine() member function.
    void COutputWnd::AddLine( CString& strLine, COLORREF crColor )
    UpdateVScroll();
    return;
    And this function then makes a call to :UpdateVScroll().  The problem seems to arise because thread B does a
    post to thread A, where thread A in turn writes to the output window. Eventually, the program
    HANGS in the call to
    SetScrollInfo() below...
    void COutputWnd::UpdateVScroll()
    CSingleLock lock( &m_CSVertScrollLock ); // lock things up while we are in here
    BOOL bok = lock.Lock();
    if (lock.IsLocked() == TRUE)
    int iMax = m_FifoIndices.GetHighestIndex();
    if( iMax < ( m_iMaxViewableLines - 1 ) )
    iMax = 0;
    //SetScrollRange( SB_VERT, 0, iMax, FALSE );
    //SetScrollRange( SB_VERT, 0, 9, FALSE );
    SCROLLINFO scrollinfo;
    scrollinfo.cbSize = sizeof(SCROLLINFO);
    scrollinfo.fMask = SIF_RANGE;
    scrollinfo.nMin=0;
    scrollinfo.nMax= iMax;
    SetScrollInfo(SB_VERT, &scrollinfo, FALSE);
    lock.Unlock();
    It doesn't take long for the program to hang...maybe about 10 seconds. 
    When I hit DEBUG->BREAK ALL, I get the output below in the CALL STACK WINDOW.
    ntdll.dll!770070f4()
    [Frames below may be incorrect and/or missing, no symbols loaded for ntdll.dll]
    user32.dll!76c0cde0()
    user32.dll!76c018d9()
    >
    mfc100d.dll!AfxInternalPumpMessage()  Line 153 + 0x13 bytes
    C++
    mfc100d.dll!CWinThread::PumpMessage()  Line 900
    C++
    mfc100d.dll!CWinThread::Run()  Line 629 + 0xd bytes
    C++
    mfc100d.dll!_AfxThreadEntry(void * pParam=0x0022f6a4)  Line 122 + 0x13 bytes
    C++
    msvcr100d.dll!_callthreadstartex()  Line 314 + 0xf bytes
    C
    msvcr100d.dll!_threadstartex(void * ptd=0x004f97c0)  Line 297
    C
    kernel32.dll!762cee1c()
    ntdll.dll!770237eb()
    ntdll.dll!770237be()
    NOTE: If I never make the call to SetScrollInfo(), the program never HANGS.
    Sooo....I am trying to determine if there is a fundamental issue with the way the threads are communicating that is causing the issue, or if maybe I have a memory overwrite. It always hangs in ::SetScrollInfo(), no matter what I comment and uncomment. This
    makes me think that scroll bat behavior is different in Windows 7 than on XP, but I have not been able to find any documentation about it. 
    Can anyone provide any insight as to what may be the cause of the program hanging>

    It might look like working but it will crash eventually. The windows are thread affine and other thread must never touch other threads windows. Sometimes you might get along but usually it just crashes.
    Thread B must use PostMessage ( or SendMessage if suncronous action is require) to thread A's windows to achieve correct updating. Some very basic calls are implemented directly with SendMessage so they are safe to use but then you must individually check
    which ones are safe.
    Also having multiple SendMessage calls from B to A require rendezvous which might cause other problems ( thread B stalls or program deadlocks, depending on other program structure).
    So PostMessage is the way to do it ( or create yourself another inter-thread mechanism, possible but usually too much troble)

  • Help needed in debugging the BADI: BBP_CREATE_REQ_BACk

    Hi,
    I  need help in debugging a BADI which causing an error ' SE142 please enter quantity in line 3000111'.
    This happens only when number items in the cart are more than four and only for Service category items for which we have this BADI, if the items were less than or equal to 4, follow on document is created.
    Please let me know what could be the error.
    Thank you,
    Manyam
    METHOD if_ex_bbp_create_req_back~fill_req_interface.
    Method Parameters:
    *LOGICAL_SYSTEM     TYPE BBP_BACKEND_DEST-LOG_SYS OPTIONAL
    *REQ_ITEMS            TYPE BBP_REQ_ITEM_SPOOL
    *REQ_ITEM_ACCOUNT     TYPE BBP_REQ_ACCT_SPOOL
    *REQ_ITEM_TEXT     TYPE BBP_REQ_TEXT_SPOOL
    *REQ_LIMITS            TYPE BBP_REQ_LIMITS_SPOOL
    *REQ_CONTRACT_LIMITS     TYPE BBP_REQ_LIMITS_CONTR_SPOOL
    *REQ_SERVICES            TYPE BBP_REQ_SERV_SPOOL
    *REQ_SERV_ACCOUNT     TYPE BBP_REQ_SERV_ACC_SPOOL
    *REQ_SERV_TEXT     TYPE BBP_REQ_SERV_TEXT_SPOOL
    *REQ_ADDRDELIVERY     TYPE BBP_REQ_ADDRDELIVERY_SPOOL
    This is the logic to create a Service Requisition based on a service
    material group selected in the Shopping Cart.  This logic is based on
    SAP's standard function SPOOL_RQ_READ_BAPI_EXPORTS from which this
    BADI is called.
    INSERT FUNCTION SPOOL_RQ_READ_BAPI_EXPORTS TO REPROCESS DATA FOR
    SERVICE SPECIAL REQUESTS.  -- IOK 07/13/01
    *function spool_rq_read_bapi_exports.
    ""Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(REQNO) LIKE  REQHEAD-REQNO
    *"     VALUE(REQUIS_NUMBER) LIKE  BAPIEBANC-PREQ_NO
    *"  EXPORTING
    *"     VALUE(SKIP_ITEMS_WITH_ERROR) LIKE  BAPIMMPARA-SELECTION
    *"     VALUE(LOGICAL_SYSTEM) LIKE  BBP_BACKEND_DEST-LOG_SYS
    *"  TABLES
    *"      REQUISITION_ITEMS STRUCTURE  BAPIEBANC
    *"      REQUISITION_ACCOUNT_ASSIGNMENT STRUCTURE  BAPIEBKN
    *"      REQUISITION_ITEM_TEXT STRUCTURE  BAPIEBANTX
    *"      REQUISITION_LIMITS STRUCTURE  BAPIESUHC
    *"      REQUISITION_CONTRACT_LIMITS STRUCTURE  BAPIESUCC
    *"      REQUISITION_SERVICES STRUCTURE  BAPIESLLC
    *"      REQUISITION_SRV_ACCASS_VALUES STRUCTURE  BAPIESKLC
    *"      RETURN STRUCTURE  BAPIRETURN
    *"      REQUISITION_SERVICES_TEXT STRUCTURE  BAPIESLLTX
    *"      REQUISITION_ADDRDELIVERY STRUCTURE  BBPS_RQADDRDELIVERY_46
    *"      CONTROL_RECORD STRUCTURE  BBP_CONTROL_RECORD
    *"  EXCEPTIONS
    *"      INTERNAL_ERROR
    ---- Data Declaration -  from LBBP_BS_RQTOP -
    - Header                         -
      DATA: reqheader TYPE reqhead.
    - Header services                -
      DATA: reqheaders TYPE reqheads.
    - References -
      TYPES: reqreferences_type TYPE reqref.
      DATA:  reqreferences      TYPE STANDARD TABLE OF reqreferences_type
                                     INITIAL SIZE 10.
      DATA:  l_reqreferences    TYPE reqreferences_type,
             x_reqreferences    TYPE reqreferences_type.
    - Administrative lines requirement request -
      TYPES: reqlines_type TYPE reqline.
      DATA:  reqlines      TYPE STANDARD TABLE OF reqlines_type
                                INITIAL SIZE 10.
      DATA:  l_reqlines    TYPE reqlines_type.
    - MRO-Lines requirement request -
      TYPES: reqlinemas_type TYPE reqlinema_eci.
      DATA:  reqlinemas      TYPE STANDARD TABLE OF reqlinemas_type
                                  INITIAL SIZE 10.
      DATA:  l_reqlinemas    TYPE reqlinemas_type.
    - SRV-Lines requirement request -
      TYPES: reqlinesrs_type TYPE bbps_reqlinesr_eci.
      DATA:  reqlinesrs      TYPE STANDARD TABLE OF reqlinesrs_type
                                  INITIAL SIZE 10.
      DATA:  l_reqlinesrs    TYPE reqlinesrs_type.
    - Texts requirement request -
      TYPES: reqtexts_type TYPE reqtext.
      DATA:  reqtexts      TYPE STANDARD TABLE OF reqtexts_type
                                INITIAL SIZE 10.
      DATA:  l_reqtexts    TYPE reqtexts_type.
    *- Delivery address
      TYPES: reqaddress_type TYPE reqaddress.
      DATA:  reqaddress      TYPE STANDARD TABLE OF reqaddress_type
                                  INITIAL SIZE 10.
      DATA:  l_reqaddress    TYPE reqaddress_type.
    - Account assignment requirement request -
      TYPES: reqaccts_type TYPE reqacct_470.
      DATA:  reqaccts      TYPE STANDARD TABLE OF reqaccts_type
                                INITIAL SIZE 10.
      DATA:  l_reqaccts    TYPE reqaccts_type.
    - tablekey with the shortlife-line -
      DATA: BEGIN OF shortkey,
               client   TYPE ec_client, "REQLINE-CLIENT,
               reqno    TYPE ec_reqno,  "REQLINE-REQNO,
               reqsline TYPE reqsline,  "REQLINE-REQSLINE,
               reqlline TYPE reqlline,  "REQLINE-REQLLINE,
            END OF shortkey.
    - tablekey with the longlife-line -
      DATA: BEGIN OF longkey,
               client   TYPE ec_client, "REQLINE-CLIENT,
               reqno    TYPE ec_reqno,  "REQLINE-REQNO,
               reqlline TYPE reqlline,  "REQLINE-REQLLINE,
            END OF longkey.
      DATA: BEGIN OF bankey,
                preq_no    TYPE banfn, "BAPIEBAN-PREQ_NO,
                preq_item  TYPE bnfpo, "BAPIPOGN-PREQ_ITEM,
            END OF bankey.
    any other working fields
      DATA: h_preq_item     TYPE bnfpo,       "BAPIEBANC-PREQ_ITEM,
            h_srv_item      TYPE bnfpo,       "BAPIEBANC-PREQ_ITEM,
            h_logsys        TYPE log_system.  "reqref-logical_system.
      DATA: h_serial_no     TYPE dzebkn.      "BAPIEBKN-SERIAL_NO.
      DATA: h_packno_item   TYPE packno,      "BAPIESLL-PCKG_NO,
            h_packno_srv    TYPE packno,      "BAPIESLL-PCKG_NO,
            h_introw        TYPE srv_line_no, "BAPIESLL-LINE_NO,
            h_serial_no_srv TYPE dzekkn,      "BAPIESKN-SERIAL_NO,
            h_srv_outl_created,
            next TYPE i,
            h_index         LIKE sy-tabix,
            h_wempf         TYPE wempf.       "bapiekkn-gr_rcpt.
    ------ End of std data declaration -
      DATA:   l_req_items               TYPE bapiebanc,
              l_req_item_account        TYPE bapiebkn,
              l_req_item_text               TYPE bapiebantx,
              l_req_limits               TYPE bapiesuhc,
              l_req_contract_limits      TYPE bapiesucc,
              l_req_services               TYPE bapiesllc,
              l_req_serv_account        TYPE bapiesklc,
              l_req_serv_text               TYPE bapieslltx,
              l_req_addrdelivery        TYPE bbps_rqaddrdelivery_46.
      DATA:
           old_req_items           TYPE STANDARD TABLE OF bapiebanc,
           old_req_item_account    TYPE STANDARD TABLE OF bapiebkn,
           old_req_item_text       TYPE STANDARD TABLE OF bapiebantx,
           old_req_limits          TYPE STANDARD TABLE OF bapiesuhc,
           old_req_contract_limits TYPE STANDARD TABLE OF bapiesucc,
           old_req_services        TYPE STANDARD TABLE OF bapiesllc,
           old_req_serv_account    TYPE STANDARD TABLE OF bapiesklc,
           old_req_serv_text       TYPE STANDARD TABLE OF bapieslltx,
           old_req_addrdelivery    TYPE STANDARD TABLE OF
                                              bbps_rqaddrdelivery_46.
      DATA: l_mat_group TYPE comm_category-category_id.
      DATA: f_change_required TYPE c,
            f_limit_change    TYPE c,
            f_mat_sr_change   TYPE c,
            f_first_change    TYPE c VALUE 'X'.
    Data declaration for Shopping Cart number and PO number
      DATA: reqno          TYPE ec_reqno,
            requis_number  TYPE banfn.
      DATA: l_current_item TYPE bnfpo,
            line_item(5)   TYPE n.
    ---- Begin Processing ----
      DATA: l_requis_number TYPE banfn.   "jms 022802
    DEBUG TOOL ****** Goto SM50
    *data: i type i value 1.
    *while i <> 0.
    i = i + 1.
    *endwhile.
    END DEBUG TOOL *******
    Get Req Number and Shopping Cart Number
    read table req_items into l_req_items index 1.
    requis_number = l_req_items-preq_no.
    select single reqno
         into  (reqno)
         from  reqref
         where refnumber = requis_number.
    read detailed data from the requirement request
    call function 'BBP_REQREQ_GETDETAIL'
          EXPORTING
               reqno               = reqno
          IMPORTING
               req_header          = reqheader
               req_header_srv      = reqheaders
          TABLES
               req_reference       = reqreferences
               req_line            = reqlines
               req_line_mat        = reqlinemas
               req_line_srv        = reqlinesrs
               req_text            = reqtexts
               req_acct            = reqaccts
               req_address         = reqaddress
          EXCEPTIONS
               not_found           = 1
               foreign_lock        = 2
               no_enqueue_possible = 3
               others              = 4.
    if sy-subrc <> 0.
       raise internal_error.
       exit.
    endif.
    Begin JMS
    PO_NUM = PO_HEADER-PO_NUMBER.
    CMH Data declaration
      TYPES: et_header TYPE bbp_pds_sc_header_d.
      DATA:  t_et_header TYPE STANDARD TABLE OF et_header INITIAL SIZE 0,
             x_et_header TYPE et_header.
      TYPES: et_item TYPE bbp_pds_sc_item_d.
      DATA:  t_et_item TYPE STANDARD TABLE OF et_item INITIAL SIZE 0,
             x_et_item TYPE et_item.
      TYPES: sc_header TYPE bbp_pds_sc_header_d.
      DATA:  x_sc_header TYPE sc_header.
      TYPES: sc_is_pd TYPE xfeld.
      DATA:  l_sc_is_pd TYPE sc_is_pd.
      TYPES: sc_item TYPE bbp_pds_sc_item_d.
      DATA:  t_sc_item TYPE STANDARD TABLE OF sc_item INITIAL SIZE 0,
             x_sc_item TYPE sc_item.
      TYPES: sc_account TYPE bbp_pds_acc.
      DATA:  t_sc_account TYPE STANDARD TABLE OF sc_account INITIAL SIZE 0,
             x_sc_account TYPE sc_account.
      TYPES: sc_partner TYPE bbp_pds_partner.
      DATA:  t_sc_partner TYPE STANDARD TABLE OF sc_partner INITIAL SIZE 0,
             x_sc_partner TYPE sc_partner.
      TYPES: sc_confirm TYPE bbp_pds_con.
      DATA:  t_sc_confirm TYPE STANDARD TABLE OF sc_confirm INITIAL SIZE 0,
             x_sc_confirm TYPE sc_confirm.
      TYPES: sc_longtext TYPE bbp_pds_longtext.
      DATA:  t_sc_longtext TYPE
               STANDARD TABLE OF sc_longtext INITIAL SIZE 0,
             x_sc_longtext TYPE sc_longtext.
      TYPES: sc_limit TYPE bbp_pds_limit.
      DATA:  t_sc_limit TYPE STANDARD TABLE OF sc_limit INITIAL SIZE 0,
             x_sc_limit TYPE sc_limit.
      TYPES: sc_orgdata TYPE bbp_pds_org.
      DATA:  t_sc_orgdata TYPE
               STANDARD TABLE OF sc_orgdata INITIAL SIZE 0,
             x_sc_orgdata TYPE sc_orgdata.
      TYPES: sc_tax TYPE bbp_pds_tax.
      DATA:  t_sc_tax TYPE STANDARD TABLE OF sc_tax INITIAL SIZE 0,
             x_sc_tax TYPE sc_tax.
      TYPES: sc_pridoc TYPE bbp_pds_prc.
      DATA:  t_sc_pridoc TYPE STANDARD TABLE OF sc_pridoc INITIAL SIZE 0,
             x_sc_pridoc TYPE sc_pridoc.
      TYPES: sc_messages TYPE bbp_pds_messages.
      DATA:  t_sc_messages TYPE
               STANDARD TABLE OF sc_messages INITIAL SIZE 0,
             x_sc_messages TYPE sc_messages.
      TYPES: sc_actval TYPE bbp_pds_actval.
      DATA:  t_sc_actval TYPE STANDARD TABLE OF sc_actval INITIAL SIZE 0,
             x_sc_actval TYPE sc_actval.
      TYPES: sc_acc_actval TYPE bbp_pds_actval.
      DATA:  t_sc_acc_actval TYPE STANDARD TABLE OF sc_acc_actval
                                                          INITIAL SIZE 0,
             x_sc_acc_actval TYPE sc_acc_actval.
      TYPES: sc_header_rel TYPE bbp_pds_hrel.
      DATA:  t_sc_header_rel TYPE STANDARD TABLE OF sc_header_rel
                                                          INITIAL SIZE 0,
             x_sc_header_rel TYPE sc_header_rel.
      TYPES: sc_itmlim_rel TYPE bbp_pds_ilrel.
      DATA:  t_sc_itmlim_rel TYPE STANDARD TABLE OF sc_itmlim_rel
                                                          INITIAL SIZE 0,
             x_sc_itmlim_rel TYPE sc_itmlim_rel.
      TYPES: it_cuf_item_type TYPE bbps_cuf_item.
      DATA:  t_it_cuf_item TYPE STANDARD TABLE OF it_cuf_item_type
                                                          INITIAL SIZE 0,
             x_it_cuf_item TYPE it_cuf_item_type.
    - Contract limits                -
      TYPES: reqconlimits_type TYPE reqheads.
      DATA:  reqconlimits      TYPE STANDARD TABLE OF reqconlimits_type
                                INITIAL SIZE 10.
      DATA:  l_reqconlimits    TYPE reqconlimits_type.
      DATA:   lv_abort      TYPE xfeld,
              lv_is_pd      TYPE xfeld,
              lv_deliv_date LIKE sy-datum,
              lv_tabix      LIKE sy-tabix,
              lv_line       TYPE introw,
              lv_msarg      TYPE char200,
              lv_sc_guid    TYPE bbp_pdview_iap-header,
              lv_req_guid   TYPE bbp_pdview_iap-header.
      DATA: x_requis_number TYPE bapiebanc.
      IF NOT req_items[] IS INITIAL.
        CLEAR l_requis_number.
        READ TABLE req_items INTO x_requis_number INDEX 1.
        l_requis_number = x_requis_number-preq_no.
        requis_number = x_requis_number-preq_no.
      ENDIF.
    Get PO Guid from Backend Table.
      SELECT SINGLE guid
             INTO   lv_req_guid
             FROM   bbp_pdbei
             WHERE  be_object_id   =  l_requis_number
             AND    be_object_type = 'BUS2105'.
    Get Shopping Cart Guid from PO Guid
      SELECT SINGLE header
             INTO   lv_sc_guid
             FROM   bbp_pdview_iap
             WHERE  guid = lv_req_guid.
    Get detail from shopping cart
      CALL FUNCTION 'BBP_PD_SC_GETDETAIL'
        EXPORTING
          i_guid                  = lv_sc_guid
          i_with_itemdata         = 'X'
        IMPORTING
          e_header                = x_sc_header
          ev_is_pd                = l_sc_is_pd
        TABLES
          e_item                  = t_sc_item
          e_account               = t_sc_account
          e_partner               = t_sc_partner
          e_confirm               = t_sc_confirm
          e_longtext              = t_sc_longtext
          e_limit                 = t_sc_limit
          e_orgdata               = t_sc_orgdata
          e_tax                   = t_sc_tax
          e_pridoc                = t_sc_pridoc
          e_messages              = t_sc_messages
          e_actval                = t_sc_actval
          e_acc_actval            = t_sc_acc_actval
          e_header_rel            = t_sc_header_rel
          e_itmlim_rel            = t_sc_itmlim_rel.
      lv_is_pd = l_sc_is_pd.
    message handling
      IF NOT t_sc_messages[] IS INITIAL.
        CALL FUNCTION 'BBP_BS_ADD_MESSAGES'
          IMPORTING
            ev_abort    = lv_abort
          TABLES
            it_messages = t_sc_messages.
      ENDIF.
    if error occured set alert/ exception.
      IF NOT lv_abort IS INITIAL.
        CALL FUNCTION 'BBP_ALERT_SB_LOCAL'
          EXPORTING
            msgid              = 'BBP_PD'
            msgno              = 280
            msgarg1            = lv_msarg
          EXCEPTIONS
            invalid_parameters = 1
            OTHERS             = 2.
       RAISE internal_error.
      ENDIF.
    map shopping cart in new structure into old structure to be able
    to continue with the old coding
      REFRESH t_sc_messages.
      CALL FUNCTION 'BBP_SC_MAP_PD_TO_REQ'
        EXPORTING
          is_new_header    = x_sc_header
        IMPORTING
          es_reqhead       = reqheader
          es_req_heads     = reqheaders
         es_cuf_header    = is_cuf_header
        TABLES
          et_req_reference = reqreferences
          et_req_line      = reqlines
          et_req_line_mat  = reqlinemas
          et_req_line_srv  = reqlinesrs
          et_req_text      = reqtexts
          et_req_acct      = reqaccts
          et_req_address   = reqaddress
          et_req_conlimit  = reqconlimits
          it_new_items     = t_sc_item
          it_account       = t_sc_account
          it_partner       = t_sc_partner
          it_longtext      = t_sc_longtext
          it_limit         = t_sc_limit
          it_orgdata       = t_sc_orgdata
          it_tax           = t_sc_tax
          it_actval        = t_sc_actval
          it_itmlim_rel    = t_sc_itmlim_rel
          et_messages      = t_sc_messages.
         et_cuf_item      = it_cuf_item
         et_cuf_acc       = it_cuf_acc.
      IF NOT t_sc_messages[] IS INITIAL.
    message handling
        CALL FUNCTION 'BBP_BS_ADD_MESSAGES'
          IMPORTING
            ev_abort    = lv_abort
          TABLES
            it_messages = t_sc_messages.
      ENDIF.
    if error occured set alert/ exception.
      IF NOT lv_abort IS INITIAL.
        CALL FUNCTION 'BBP_ALERT_SB_LOCAL'
          EXPORTING
            msgid              = 'BBP_PU'
            msgno              = 326
            msgarg1            = lv_msarg
          EXCEPTIONS
            invalid_parameters = 1
            OTHERS             = 2.
       RAISE internal_error.
      ENDIF.
    End insert 03/26/2003
    ReqReferences doesn't list the PO item number.  We'll need that to
    associate the WBS to a Service Sub Item later.  Let's put it in.
      SORT reqreferences BY client refnumber reqlline.
      LOOP AT reqreferences INTO x_reqreferences.
        IF x_reqreferences-refline IS INITIAL.
          IF l_requis_number = x_reqreferences-refnumber. "jms 022802
            ADD 1 TO line_item.
          ELSE.
            l_requis_number = x_reqreferences-refnumber.  "jms 022802
            line_item = 1.
          ENDIF.
        Accumulate the line item
          x_reqreferences-refline = line_item.
          MODIFY reqreferences FROM x_reqreferences INDEX sy-tabix.
        ENDIF.
      ENDLOOP.
      SORT reqlines      BY client reqno reqlline.
      SORT reqreferences BY client reqno reqlline counter.
      SORT reqlinemas    BY client reqno reqsline reqlline.
      SORT reqlinesrs    BY client reqno reqsline reqlline.
      SORT reqaccts      BY client reqno reqlline serial_no. " note 359605
      CLEAR: h_preq_item.
      CLEAR: h_srv_item, h_srv_outl_created,
             h_packno_item, h_packno_srv, h_introw.
    First, the Shopping Cart number should be extracted from REQREF table
    based on the Req number.
    take all items with the specific reference number
      LOOP AT reqreferences
         INTO l_reqreferences                                  "iok 091701
        WHERE refnumber EQ requis_number.
       if logical_system is initial.
         logical_system = l_reqreferences-logical_system.
       endif.
        MOVE-CORRESPONDING l_reqreferences TO longkey.
      read table reqlines with key longkey binary search.
        READ TABLE reqlines INTO l_reqlines                    "iok 091701
            WITH KEY client = longkey-client
                      reqno = longkey-reqno
                   reqlline = longkey-reqlline
                   BINARY SEARCH.
        CHECK sy-subrc EQ 0.
        h_preq_item = l_reqlines-reqsline+5(5).
      clear h_preq_item.
      Change line_type based on Material Group
      add code here later.
        CLEAR: f_change_required,
               f_mat_sr_change,
               f_limit_change.
        SELECT SINGLE category_id
          INTO l_mat_group
          FROM comm_category
         WHERE category_guid = l_reqlines-category.
      Check if Services Special Request
        IF l_reqlines-catalogid IS INITIAL AND
           l_reqlines-product   IS INITIAL AND
           l_mat_group(1)        = 'S'     AND
           l_reqlines-line_type  = '1'.     "Service Special Request
        Set flags for future processing
          l_reqlines-line_type = '3'.
          f_change_required    = 'X'.
          f_limit_change       = 'X'.
      Check if Material Special Request
        ELSEIF l_reqlines-catalogid IS INITIAL AND
               l_reqlines-product   IS INITIAL AND
               l_mat_group(1)       <> 'S'     AND
               l_reqlines-line_type = '1'. "Material Special Request
        Set flags for future processing
          f_change_required = 'X'.
          f_mat_sr_change = 'X'.
        ENDIF.
        CHECK f_change_required = 'X'.
      For Material Special Requests only need to select and store UNSPSC
      code   -- iok 092401
        IF f_mat_sr_change = 'X'.
        Get UNSPSC code (first hit) based on Material Group and store
        in text id B05.   iok 092101
          READ TABLE req_items INTO l_req_items
              WITH KEY preq_item = h_preq_item
                       mat_grp   = l_mat_group.
          READ TABLE req_item_text INTO l_req_item_text
              WITH KEY preq_no   = requis_number
                       preq_item = l_req_items-preq_item
                       text_id = 'B05'.
          IF sy-subrc <> 0.
            CLEAR l_req_item_text.
          Find a UNSPSC Code from a Material Group .. even it's arbitrary
            SELECT unspsc_code UP TO 1 ROWS
                 FROM zxl8_category_id
                 INTO l_req_item_text-text_line
                WHERE category_id = l_mat_group.
            ENDSELECT.
          If nothing found then fill in a dummy UNSPSC.  The first
          letter of the Material will designate whether it's a Material
          or Service.
            IF sy-subrc NE 0.
            Move the Material Group value into a holding variable
              CONCATENATE l_mat_group(1) 'XXXXXXXX'
                     INTO l_req_item_text-text_line.
            ENDIF.
            l_req_item_text-preq_no   = requis_number.
            l_req_item_text-preq_item = l_req_items-preq_item.
            l_req_item_text-text_id   = 'B05'.
            INSERT l_req_item_text INTO TABLE req_item_text.
          ENDIF.
          CONTINUE.  "to next item.
        ENDIF.
        IF f_first_change = 'X' AND f_limit_change = 'X'.
        Save old P.Req. data and clear tables
          old_req_items[]           = req_items[].
          old_req_item_account[]    = req_item_account[].
          old_req_item_text[]       = req_item_text[].
          old_req_limits[]          = req_limits[].
          old_req_contract_limits[] = req_contract_limits[].
          old_req_services[]        = req_services[].
          old_req_serv_account[]    = req_serv_account[].
          old_req_serv_text[]       = req_serv_text[].
          old_req_addrdelivery[]    = req_addrdelivery[].
          REFRESH:  req_items,
                    req_item_account,
                  req_item_text,
                    req_limits,
                    req_contract_limits,
                    req_services,
                    req_serv_account,
                    req_serv_text.
                  req_addrdelivery.
          CLEAR f_first_change.
        ENDIF.
      Limit
        IF l_reqlines-line_type EQ '3'.
          and not reqheaders-limit is initial.
          DATA: l_reqreferences_temp   TYPE reqreferences_type.
        +JMS 2/26/2002
          CLEAR l_reqreferences_temp.
          READ TABLE reqreferences INTO l_reqreferences_temp
            WITH KEY client   = longkey-client
                     reqno    = longkey-reqno
                     reqlline = longkey-reqlline
                     BINARY SEARCH.
          IF sy-subrc = 0.
            h_preq_item = l_reqreferences_temp-refline.
          ENDIF.
          CLEAR l_req_items.
          READ TABLE old_req_items INTO l_req_items
              WITH KEY preq_item = h_preq_item.
          MOVE-CORRESPONDING l_req_items TO reqheaders.
          reqheaders-begdate   = l_req_items-deliv_date.
          reqheaders-limit     = l_req_items-c_amt_bapi.
          reqheaders-exp_value = l_req_items-c_amt_bapi.
          reqheaders-gr_ind    = 'X'.
          reqheaders-reqno     = l_req_items-preq_no.           "jms 022602
          CLEAR l_req_items.
    INSERT FORM **** CREATE_SERVICE_ITEM
          h_packno_item = h_packno_item + 1.
          h_packno_srv  = h_packno_srv  + 10000.
          h_introw      = h_introw + 1.
          CLEAR l_req_items.                                 " Note 364396
          MOVE-CORRESPONDING reqheaders TO l_req_items.
          l_req_items-preq_no = reqheaders-reqno.               "jms 022602
         l_REQ_ITEMS-PREQ_NO = REQUIS_NUMBER.                 "jms 022602
    l_REQ_ITEMS-PREQ_ITEM = H_PREQ_ITEM + 1.    "iok 091801
          l_req_items-preq_item = h_preq_item.                  "iok 091801
          l_current_item = h_preq_item.                         "iok 092101
          h_srv_item  = l_req_items-preq_item.
          h_preq_item = h_preq_item + 1.
          IF NOT reqheaders-limit IS INITIAL OR
             NOT reqheaders-exp_value IS INITIAL.
            IF reqheaders-gr_ind IS INITIAL.
              l_req_items-item_cat = '1'.
            ELSE.
              l_req_items-item_cat = '9'.
            ENDIF.
            l_req_items-deliv_date = reqheaders-begdate.
          ELSE.
            l_req_items-item_cat = '9'.
          ENDIF.
          IF l_req_items-del_datcat IS INITIAL.
            l_req_items-del_datcat = '1'.
          ENDIF.
          l_req_items-quantity = 1.
          l_req_items-pckg_no  = h_packno_item.
          IF l_req_items-preq_name EQ space.
            l_req_items-preq_name = sy-uname.
          ENDIF.
          APPEND l_req_items TO req_items.
    END OF FORM INSERTION ********
          l_req_limits-pckg_no    = h_packno_item.
          l_req_limits-limit      = reqheaders-limit.
          l_req_limits-exp_value  = reqheaders-exp_value.
          l_req_limits-no_limit   =  reqheaders-no_limit.
          l_req_limits-no_frlimit = 'X'.
          APPEND l_req_limits TO req_limits.
    *.... Account assignment
        clear requisition_srv_accass_values.
          CLEAR l_req_serv_account.
          l_req_serv_account-pckg_no = h_packno_item.
          MOVE-CORRESPONDING l_reqlines TO longkey.
        read table reqaccts with key longkey binary search. "iok 091801
          READ TABLE reqaccts INTO l_reqaccts                   "iok 091801
            WITH KEY client   = longkey-client
                     reqno    = longkey-reqno
                     reqlline = longkey-reqlline
                     BINARY SEARCH.
          IF sy-subrc = 0.
            LOOP AT reqaccts
                INTO l_reqaccts
                WHERE reqno    = l_reqreferences-reqno
                AND   reqlline = l_reqreferences-reqlline.
    INSERT FULL FORM *********** FILL_REQ_ACCT_SRV
              DATA: acctcomp1 TYPE bapiebkn,
                    acctcomp2 TYPE bapiebkn,
                    high_serial TYPE dzekkn.  "LIKE BAPIEKKN-SERIAL_NO.
              CLEAR l_req_serv_account-serial_no.
              CLEAR acctcomp1.
              MOVE-CORRESPONDING l_reqaccts TO acctcomp1.
              CLEAR: acctcomp1-preq_no,
                     acctcomp1-preq_item,
                     acctcomp1-serial_no,
                     acctcomp1-created_on,
                     acctcomp1-created_by,
                     acctcomp1-preq_qty,
                     acctcomp1-distr_perc,
                     acctcomp1-change_id,
                     acctcomp1-currency.
              LOOP AT req_item_account INTO l_req_item_account.
                CLEAR acctcomp2.
      MOVE-CORRESPONDING l_req_item_account TO ACCTCOMP2.  "is blank
                CLEAR: acctcomp2-preq_no,
                       acctcomp2-preq_item,
                       acctcomp2-serial_no,
                       acctcomp2-created_on,
                       acctcomp2-created_by,
                       acctcomp2-preq_qty,
                       acctcomp2-distr_perc,
                       acctcomp2-change_id,
                       acctcomp2-currency.
               IF acctcomp1 EQ acctcomp2  AND h_srv_outl_created IS INITIAL.
                l_req_serv_account-serial_no = l_req_item_account-serial_no.
                  EXIT.
                ENDIF.
                high_serial = l_req_item_account-serial_no.
              ENDLOOP.
              h_srv_outl_created = ' '.
              IF l_req_serv_account-serial_no IS INITIAL.
                MOVE-CORRESPONDING l_reqaccts TO l_req_item_account.
               l_REQ_item_ACCOUNT-PREQ_NO   = REQUIS_NUMBER.   "jms 022702
                l_req_item_account-preq_no = l_req_items-preq_no."jms 022702
                l_req_item_account-preq_item = h_srv_item.
    REQUISITION_ACCOUNT_ASSIGNMENT-WBS_ELEM_E = REQACCT-BBP_PROJECT.
                l_req_item_account-serial_no = high_serial + 1.
                l_req_serv_account-serial_no = l_req_item_account-serial_no.
                APPEND l_req_item_account TO req_item_account.
              ENDIF.
    END OF FORM INSERTION ***********
              h_serial_no = h_serial_no + 1.
              l_req_serv_account-serno_line = h_serial_no.
              l_req_serv_account-percentage = l_reqaccts-distr_perc.
              APPEND l_req_serv_account TO req_serv_account.
            ENDLOOP.
    INSERT FULL FORM **************** CONVERT_ACCOUNT_***_CAT
    data: account_tab LIKE bbp_pds_acc OCCURS 0 WITH HEADER LINE.
            DATA: account_tab TYPE STANDARD TABLE OF bbp_pds_acc.
            DATA: l_account_tab TYPE bbp_pds_acc.
            DATA: h_knttp TYPE knttp.
          move the accounting data to that item into the interface table
                LOOP AT reqaccts
               INTO l_reqaccts
              WHERE reqno    EQ l_reqreferences-reqno
                AND reqlline EQ l_reqreferences-reqlline.
              MOVE-CORRESPONDING l_reqaccts TO l_account_tab.
              APPEND l_account_tab TO account_tab.
            ENDLOOP.
          call the convert API
            CALL FUNCTION 'BBP_ACCCAT_MAP_EXP'
                 EXPORTING
                      i_logical_system = logical_system
                 IMPORTING
                      e_r3_acc_cat     = h_knttp
                 TABLES
                      i_pd_account     = account_tab.
            IF h_knttp IS INITIAL.
              h_knttp = 'X'.
            ENDIF.
          +JMS 2/14/2002 Issue #1590
            CLEAR   account_tab.
            REFRESH account_tab.
          account assignment category - set in the correct item
            LOOP AT req_items
               INTO l_req_items
              WHERE preq_item EQ l_req_item_account-preq_item.
              l_req_items-acctasscat = h_knttp.
              MODIFY req_items FROM l_req_items INDEX sy-tabix.
            ENDLOOP.
    END OF FORM INSERTION ************
          ELSE.
    INSERT FULL FORM ************* Form  CONVERT_ACCOUNT_***_CAT_U
            LOOP AT req_items
               INTO l_req_items
              WHERE preq_item EQ l_current_item.
              l_req_items-acctasscat = 'U'.
              MODIFY req_items FROM l_req_items INDEX sy-tabix.
            ENDLOOP.
    END OF FORM INSERTION ************
          ENDIF.
        Get UNSPSC code (first hit) based on Material Group and store
        in text id B05.   iok 092101
          READ TABLE req_items INTO l_req_items
              WITH KEY preq_item = l_current_item
                       mat_grp   = l_mat_group.
          READ TABLE req_item_text INTO l_req_item_text
              WITH KEY preq_no   = requis_number
                       preq_item = l_req_items-preq_item
                       text_id   = 'B05'.
          IF sy-subrc <> 0.
            CLEAR l_req_item_text.
          Get UNSPSC Code from Material Group .. even if arbitrary
            SELECT unspsc_code UP TO 1 ROWS
              FROM zxl8_category_id
              INTO l_req_item_text-text_line
             WHERE category_id = l_mat_group.
            ENDSELECT.
          If nothing found then fill in a dummy UNSPSC.  The first
          letter of the Material will designate whether it's a Material
          or Service.
            IF sy-subrc NE 0.
            Move the Material Group value into a holding variable
              CONCATENATE l_mat_group(1) 'XXXXXXX'
                     INTO l_req_item_text-text_line.
            ENDIF.
            l_req_item_text-preq_no   = requis_number.
            l_req_item_text-preq_item = l_req_items-preq_item.
            l_req_item_text-text_id   = 'B05'.
            INSERT l_req_item_text INTO TABLE req_item_text.
          ENDIF.
        Don't send Internal Note to Backend
         delete req_item_text where text_id = 'B02'.
    Service -- NOT NEEDED -- IOK 07/13/01
       elseif not reqlines-reqsline is initial
             and reqlines-line_type eq '2'.
         move-corresponding reqlines to shortkey.
         read table reqlinesrs with key shortkey binary search.
         if sy-subrc = 0.
           h_serv = reqlinesrs.
           append h_serv.
         endif.
    material item -- NOT NEEDED -- IOK 07/13/01
        ENDIF.
      ENDLOOP.
    Services -- NOT NEED -- IOK 07/13/01
      IF f_limit_change = 'X'.
      Check multiple account assignment
        LOOP AT req_items INTO l_req_items.
          h_index = sy-tabix.
          CLEAR next.
          LOOP AT req_item_account
             INTO l_req_item_account
            WHERE preq_item EQ l_req_items-preq_item.
            next = next + 1.
          ENDLOOP.
          IF next > 1.
            l_req_items-distrib    = '2'. "prozentuale Verteilung
            l_req_items-part_inv   = '1'.
            l_req_items-gr_non_val = 'X'.
           MODIFY req_items FROM l_req_items INDEX h_index.     "217191
         modify requisition_items.                                "217191
          ENDIF.
        ENDLOOP.
      ENDIF.
    Remap delivery address for backend processing
      LOOP AT req_addrdelivery INTO l_req_addrdelivery.
        MOVE:  l_req_addrdelivery-name_2   TO l_req_addrdelivery-name,
               l_req_addrdelivery-c_o_name TO l_req_addrdelivery-name_2.
        CLEAR: l_req_addrdelivery-c_o_name.
        MODIFY req_addrdelivery FROM l_req_addrdelivery INDEX sy-tabix.
      ENDLOOP.
    CHM 07/16/2003 Changed created by to always be actual creator even
                   for on behalf of situations
        LOOP AT req_items
           INTO l_req_items.
          l_req_items-created_by = x_sc_header-created_by.
          MODIFY req_items FROM l_req_items INDEX sy-tabix.
        ENDLOOP.
    CMH - end change
    MA 12/10/04 - Pass MP2 number from Manu Prod# to Req Item Text
    LOOP AT req_items INTO l_req_items.
        READ TABLE t_sc_item into x_sc_item
             WITH KEY number_int  = l_req_items-preq_item.
        l_req_item_text-preq_no   = requis_number.
        l_req_item_text-preq_item = l_req_items-preq_item.
        l_req_item_text-text_id   = 'B06'.
        l_req_item_text-text_line = x_sc_item-manu_prod.
        INSERT l_req_item_text INTO TABLE req_item_text.
    ENDLOOP.
    ENDMETHOD.

    Any help guys?
    Thanks
    Manyam

  • Help needed in debugging null pointer exception

    I am debugging one seeded report in R12. It is erroring out with the following error.
    Calling XDO Data Engine...
    java.lang.NullPointerException
    at
    oracle.apps.xdo.oa.util.DataTemplate.getDataTemplate(DataTemplate.java:281)
    at oracle.apps.xdo.oa.util.DataTemplate.<init>(DataTemplate.java:133)
    at
    oracle.apps.xdo.oa.cp.JCP4XDODataEngine.runProgram(JCP4XDODataEngine.java:282)
    -> data definition exists but i didn't see anything against 'XML Schema', 'Data Template', 'Preview Data'. Buttons against them are also greyed out.
    ->I have tried searching XML Publisher Administrator ->Templates. But i didnot find anything.
    ->XDO_LOBS has record against this report.
    -> Data Template(.xml file) exists in the following location $XLA_TOP/patch/115/publisher/defs
    Can anybody help me in resolving this issue.
    Thanks in Advance,
    Srini

    Hi Srini
    This forum is for customers - please use the ML I sent you for questions.
    Regards
    Tim
    http://blogs.oracle.com/xmlpublisher

  • Search Help Issue

    Hi All,
    I'm facinng one strange issue with search helps.  I have devloped online form in WDA with some F4 helps(I have used "Value Help button from Webdynpro Native) .
    If I click search help buttons 15 times, the whole browser is closing with out any warning or error. I have been analysing why it is happening, but no use till  now. I have seen browser log using HTTP Watch and Debug Webdynpro application etc.
    Did any one face this issue? Is there any parametere setting or something? Or Is any other setting in ADS or J2ee or Adobe or any where???
    Any pointer will  be really apprecaited. Going live very soon in days..:)... Till now I couldnt realize this issue, infact tested in Dev and QA...but never tried keep on clicking for few times, until user pointed it out..
    Can some one also try clicking for 15 times any search help and see , is it the same case?
    Apprecaite your response.
    Version Details:
    SAP ECC 6.0
    SAP_BASIS     700     0016     SAPKB70016     SAP Basis Component
    SAP_ABA     700     0016     SAPKA70016     Cross-Application Component
    Findings:
    I was reducing the form size gradually like deleting some script, and fields... then number of hits  increasing. I mean now after the changes the count increased to 22 then application is closing..
    Regards,
    Ravi
    Edited by: Ravi Devarasetty on Apr 2, 2010 11:51 AM

    Hi Otto,
    I have already gone through that Snote. Nothing related to my issue. Probably I should open an OSS message.
    New Findings:
    I thought It is the problem with search helps, but after testing rigorously...the same problem with Submit Button. After clicking 22 times the applicaion gets closed automatially...
    I doubt some related to Sizing????
    Regards,
    Ravi
    Edited by: Ravi Devarasetty on Apr 3, 2010 10:03 AM

  • Please help - issue with ng sound when scrolling

    Heya all,
    I have an ASUS P5B Deluxe Wi-Fi board with the latest BIOS (26), Vista Ultimate 32bit, a P82 case, E6400 @ 3.2GHz, 2GB RAM, 8800GTS and a lovely x-fi xtreme-music soundcard, which sits in the bottom PCI slot - the gfx card is obviously in the top PCI-E slot.
    Basically, whenever I'm listening to music via my PC (usual app Winamp, although WMP is used too at times) or watching DVDs etc, any movement of the mouse, or rather the scroll wheel of the mouse, results in a loud crackling and breakup of audio.
    In fact, after some further testing, it seems like whenever something graphically changes on the screen (whether it be scrolling, a web page loading, a window opening etc), anything at all, this loud and ultra annoying issue occurs. The sound at start-up also crackles and breaks up.
    I've tried reinstalling drivers for the x-fi and for my gfx card - neither helped. I've tried different drivers for both my GFX and x-fi. Again, no joy.
    I'm now using the Creative official vista drivers CD and we updated the drivers to 2.5.002. GFX-wise I'm using the latest NVidia publically released drivers as per their site.
    I'm at my wits end - can anyone help or throw any light on the issue please?
    Oddly, I've only just re-installed Vista as I've fitted a new HDD. The installation before, with exactly the same board, drivers etc etc, worked fine.
    Perhaps I should reformat Vista and try again?

    Amit,
    Thank you so much for your response. I also never thought that it would behave differently.
    I am just using one variable called CurrYear in my BR.
    Yes, I am guessing something is going wrong with the second point that you mentioned. That I have 0 level members selected in Page/POV and in EAS it is manually taking parent values.
    Well, I did a comparision but didn't see any differences though. I am using SETUPDATE CALC ON statement in my BR.
    Can you suggest me on how can I fix this?
    Thank you !
    ~ Adella

  • Performance Issues with Debugging even in Display Mode

    Hi not certain if this would sit in Security, ABAP or Basis, but lets start here as it is security related.
    S_DEVELOP with any activity on DEBUG on a production system is a concern, but what are the performance related issues when a super user has to go into debug in display only on a production system because of a really complex issue?
    I've heard in the past of a scenario where system performance was impacted, and we have notes around the allocation of S_DEVELOP display DEBUG access to this point. (I've summarised these below)
    The risk with debug is associated with the length of time that the actual debugging process is being performed.
    u2022     Work processes are dedicated solely to the users for the duration of the debug. If these are being performed for a long time, these can cause issues with not enough work processes being available.
    u2022     It can cause DB2 locks. If the debug session last awhile, DB2 locks are not released. This impacts the availability of tablespaces, thus, affecting various transactions running across the system.
    Even with these concerns, security will often get asked for debug display access.
    As security is about risk identification, assessment and then controlled access what do other organisations do?
    Options (not exhaustive) are "No Debug ever" or "Debug display only via a fire fight or super user on a time limited basis".
    We are currently in the "debug display only via fire fight" camp, but would like to canvas opinion on this.
    As one of the concepts of security is Availability of data (and to an extent ensuring the systems are up and running) do the performance risks push the security function to the "No Debug Ever" stance.

    If you need to debug in production, then 9 times out of 10 you need to do root-cause analysis: The developer is the problem.
    Writing sloppy code and not testing properly should not be an excuse for debugging in production.
    But of course, there are exceptions even when you do try to keep them to a minimum.
    To add to Jurjen's comments, also note that the debugger only has a limited capability of doing a rollback. So you can quite easily and unintentionally create inconsistencies in the system - also in display mode - which is an integrity problem, and typically more critical than availability problems or even potential confidentiality concerns.
    Cheers,
    Julius
    Edited by: Julius Bussche on May 15, 2009 10:50 AM

  • Please Help, Issues when batch processing Multi Frame images in Fireworks

    I hope someone will know how to do this and tell me where I am going wrong.
    Objective 1
    I have a large number of images that all have the exact same number of frames (4) and are all exactly the same size that I want to get resized, cropped and water marked (when I say 'watermarked I mean have my websites logo pasted in a specificlocation on each frame, I have my websites logo as a seperate .png file which I copy from).
    Current Process
    I create a command which will crop the image then paste my companys url/log onto the first frame, move it to the correct location on the frame then copy it again and then paste it onto each of the other frames, the command then resizes the image tot he exact proportions I want.
    I start a batch process and use my command, making sure that I also export from the .png to animated gif (and I edit the settings to make it 256 animated gif).
    Error 1
    The process described above resizes and crops my images however it does NOT put the watermark in the correct place, it seems to put it int he right place on the first frame and then in a different place on all the followingn frames thus giving the effect of the watermark jumping around. Which is obviously NOT what I want.
    Question 1
    Please let me know what process I should be following to correct the Error 1 above.
    Objective & Question 2
    I want to do exactly the same thing as shown above but this time the files have a varying number of frames (from 2 to 45 frames (or instances as CS4 seems to call them)). Is there a way to paste my logo to the to the exact same location on ALL frames?
    Other information
    I have tried WHXY Paste extension and I can not see how to use that to solve the issue. I have also tried 'Paste in Place' however I can not see how to use the Paste In Place extension as it is not appering in my list of commands.
    Many thanks in advance for your help.
    Andy

    Andy, you could start a batch process which will do most of the things you are asking for. THe batch process can be done using Fireworks. The right way to start is going to Archivo / Procesar por Lotes and then follow all the different option this tool has to offer.  Yes, I know I gave you the names in Spanish but that is the way I use Adobe Fireworks.
    I hope this was usefull for you!
    Best regards,
    Frank Meier | Curso Arreglos Florales

  • Can someone please help me with debugging these Lync client logs

    Hi,
    We have a mobile client on an Android device which is refusing to sign in.
    from the device you can browse to https://lyncdiscover.domain.com and also
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root and both times recvieve the download prompt.
    However it will not log in, yet other are not having any problems.
    Any advice?
    Thanks
    4:21:17 PM INFO APPLICATION:Successfully started the GetUserUrlOperation request for
    http://lyncdiscoverinternal.domain.com/?sipuri=sip:[email protected]
    Oct 17, 2012 4:21:17 PM INFO APPLICATION:CLogonSession::setNewActualState() state=1
    Oct 17, 2012 4:21:17 PM INFO UcClientStateManager: New UI State: ActualState = IsSigningIn DesiredState = BeSignedOut  DataAvailable = false
    Oct 17, 2012 4:21:17 PM INFO TRANSPORT:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    Oct 17, 2012 4:21:17 PM INFO TRANSPORT:<SentRequest>
    Oct 17, 2012 4:21:17 PM INFO TRANSPORT:To:http://lyncdiscoverinternal.domain.com/
    Oct 17, 2012 4:21:17 PM INFO TRANSPORT:HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    Oct 17, 2012 4:21:17 PM INFO TRANSPORT:
    Oct 17, 2012 4:21:17 PM INFO TRANSPORT:</SentRequest>
    Oct 17, 2012 4:21:17 PM INFO TRANSPORT:Sending request(UcwaAutoDiscoveryRequest) to server type = 0
    Oct 17, 2012 4:21:17 PM ERROR HttpConnection:
    Oct 17, 2012 4:21:17 PM VERBOSE HttpConnection: post request:
    http://lyncdiscoverinternal.domain.com/
    Oct 17, 2012 4:21:17 PM VERBOSE HttpConnection: send request:
    http://lyncdiscoverinternal.domain.com/
    Oct 17, 2012 4:21:17 PM ERROR HttpConnection:
    Oct 17, 2012 4:21:17 PM ERROR TRANSPORT:CHttpConnection exception: java.net.UnknownHostException
    Oct 17, 2012 4:21:17 PM INFO TRANSPORT:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    Oct 17, 2012 4:21:17 PM INFO TRANSPORT:Sending event to main thread for request(0x2051958)
    Oct 17, 2012 4:21:17 PM ERROR TRANSPORT:CHttpConnection exception: java.net.UnknownHostException
    Oct 17, 2012 4:21:17 PM INFO TRANSPORT:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    Oct 17, 2012 4:21:17 PM INFO TRANSPORT:Sending event to main thread for request(0x200ac30)
    Oct 17, 2012 4:21:17 PM INFO APPLICATION:LogonSession::signIn() succeeded
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:Notifying response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:Req. event received: responseErrorCode=E2-2-1
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:No more req. timing out
    Oct 17, 2012 4:21:18 PM ERROR APPLICATION:Request failed.  Error - E2-2-1
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:UcwaAutoDiscoveryGetUserUrlOperation completed with url =
    https://lyncdiscoverinternal.domain.com/?sipuri=sip:[email protected], userUrl = , status = E2-2-1
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:Response received for req. <unknown>: E2-2-1 (RemoteNetworkTemporaryError); Done with req.; Stopping resend timer
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:Notifying response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:Req. event received: responseErrorCode=E2-2-1
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:No more req. timing out
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:UrlRedirectAndTrustResolver complete with url =
    http://lyncdiscoverinternal.domain.com/, Hops = 1, status = E2-2-1
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:Response received for req. <unknown>: E2-2-1 (RemoteNetworkTemporaryError); Done with req.; Stopping resend timer
    Oct 17, 2012 4:21:18 PM INFO UcClientStateManager: New UI State: ActualState = IsSigningIn DesiredState = BeSignedIn  DataAvailable = false
    Oct 17, 2012 4:21:18 PM VERBOSE ActivityMonitor: Activity Create: com.microsoft.office.lync.ui.options.SigningInActivity
    Oct 17, 2012 4:21:18 PM VERBOSE ActivityMonitor: Activity Start: com.microsoft.office.lync.ui.options.SigningInActivity
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:CUcwaAutoDiscoverGetUserUrlOperation::onEvent received.  Status = E2-2-1, url =
    http://lyncdiscoverinternal.domain.com/
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:UcwaAutoDiscoveryGetUserUrlOperation completed with url =
    http://lyncdiscoverinternal.domain.com/?sipuri=sip:[email protected], userUrl = , status = E2-2-1
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:AutoDiscovery: Falling back to probing external urls
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:Starting CUrlRedirectAndTrustResolver with url =
    https://lyncdiscover.domain.com/?sipuri=sip:[email protected], maxHops = 10
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:CUrlRedirectAndTrustResolver::processUrl called with url =
    https://lyncdiscover.domain.com/, hopCount = 0, maxHops = 10
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:UrlRedirectAndTrustResolver complete with url =
    https://lyncdiscover.domain.com/, Hops = 0, status = S0-0-0
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:getSpecificCredential returning the following credential for credType (1) serviceId (4)
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:Credential information: credType (1) signInName () domain () username () password.empty() (1) compatibleServiceIds(0)
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:Added Request(UcwaAutoDiscoveryRequest) to Request Processor queue
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:Submitting new req. <unknown>
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:Successfully started the GetUserUrlOperation request for
    https://lyncdiscover.domain.com/?sipuri=sip:[email protected]
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:<SentRequest>
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:Starting CUrlRedirectAndTrustResolver with url =
    http://lyncdiscover.domain.com/?sipuri=sip:[email protected], maxHops = 10
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:To:https://lyncdiscover.domain.com/?sipuri=sip:[email protected]
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:CUrlRedirectAndTrustResolver::processUrl called with url =
    http://lyncdiscover.domain.com/, hopCount = 0, maxHops = 10
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:</SentRequest>
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:Sending request(UcwaAutoDiscoveryRequest) to server type = 0
    Oct 17, 2012 4:21:18 PM VERBOSE HttpConnection: post request:
    https://lyncdiscover.domain.com/?sipuri=sip:[email protected]
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:getSpecificCredential returning the following credential for credType (1) serviceId (4)
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:Credential information: credType (1) signInName () domain () username () password.empty() (1) compatibleServiceIds(0)
    Oct 17, 2012 4:21:18 PM VERBOSE HttpConnection: send request:
    https://lyncdiscover.domain.com/?sipuri=sip:[email protected]
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:Added Request(UcwaAutoDiscoveryRequest) to Request Processor queue
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:<SentRequest>
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:To:http://lyncdiscover.domain.com/
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:</SentRequest>
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:Sending request(UcwaAutoDiscoveryRequest) to server type = 0
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:Submitting new req. <unknown>
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:Successfully started the GetUserUrlOperation request for
    http://lyncdiscover.domain.com/?sipuri=sip:[email protected]
    Oct 17, 2012 4:21:18 PM VERBOSE HttpConnection: post request:
    http://lyncdiscover.domain.com/
    Oct 17, 2012 4:21:18 PM VERBOSE HttpConnection: send request:
    http://lyncdiscover.domain.com/
    Oct 17, 2012 4:21:18 PM VERBOSE ActivityMonitor: Activity Stop: com.microsoft.office.lync.ui.options.CredentialsActivity
    Oct 17, 2012 4:21:18 PM VERBOSE ActivityMonitor: Activity Destroy: com.microsoft.office.lync.ui.options.CredentialsActivity
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x0
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:<ReceivedResponse>
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:HttpHeader:Cache-Control no-cache
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:HttpHeader:Connection Keep-Alive
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:HttpHeader:Content-Length 2052
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:HttpHeader:Content-Type text/html
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:HttpHeader:Pragma no-cache
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:HttpHeader:StatusCode 403
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML dir=ltr><HEAD><TITLE>The page cannot be displayed</TITLE>
    <STYLE id=L_defaultr_1>A:link {
     FONT: 8pt/11pt verdana; COLOR: #ff0000
    A:visited {
     FONT: 8pt/11pt verdana; COLOR: #4e4e4e
    </STYLE>
    <META content=NOINDEX name=ROBOTS>
    <META http-equiv=Content-Type content="text-html; charset=UTF-8">
    <META content="MSHTML 5.50.4522.1800" name=GENERATOR></HEAD>
    <BODY bgColor=#ffffff>
    <TABLE cellSpacing=5 cellPadding=3 width=410>
      <TBODY>
      <TR>
        <TD id=L_defaultr_0 valign=middle align=left width=360>
          <H1 id=L_defaultr_2 style="FONT: 13pt/15pt verdana; COLOR: #000000"><ID id=L_defaultr_3><!--Problem-->The page cannot be displayed
    </ID></H1></TD></TR>
      <TR>
        <TD width=400 colSpan=2><FONT id=L_defaultr_4
          style="FONT: 8pt/11pt verdana; COLOR: #000000"><ID id=L_defaultr_5><B>Explanation: </B>There is a problem with the page you are trying to reach and it cannot be displayed.</ID></FONT></TD></TR>
      <TR>
        <TD width=400 colSpan=2><FONT id=L_defaultr_6
          style="FONT: 8pt/11pt verdana; COLOR: #000000">
          <HR color=#c0c0c0 noShade>
          <P id=L_defaultr_7><B>Try the following:</B></P>
          <UL>
            <LI id=L_defaultr_8><B>Refresh page:</B> Search for the page again by clicking the Refresh button. The timeout may have occurred due to Internet congestion.
    <LI id=L_defaultr_9><B>Check spelling:</B> Check that you typed the Web page address correctly. The address may have been mistyped.
    <LI id=L_defaultr_10><B>Access from a link:</B> If there is a link to the page you are looking for, try accessing the page from that link.
          </UL>
          <HR color=#c0c0c0 noShade>
          <P id=L_defaultr_11>Technical Information (for support personnel)</P>
          <UL>
            <LI id=L_defaultr_12>Error Code: 403 Forbidden. The page must be viewed over a secure channel (Secure Sockets Layer (SSL)). Contact the server administrator. (12311)
            </UL></FONT></TD></TR></TBODY></TABLE></BODY></HTML>
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:</ReceivedResponse>
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:Sending event to main thread for request(0x2021230)
    Oct 17, 2012 4:21:18 PM INFO TRANSPORT:Notifying response of request(UcwaAutoDiscoveryRequest) with status = 0x2203000f
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:Req. event received: responseErrorCode=E2-3-15
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:No more req. timing out
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:UrlRedirectAndTrustResolver complete with url =
    http://lyncdiscover.domain.com/, Hops = 1, status = E2-3-15
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:Response received for req. <unknown>: E2-3-15 (RemoteNetworkPermanentError); Done with req.; Stopping resend timer
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:CUcwaAutoDiscoverGetUserUrlOperation::onEvent received.  Status = E2-3-15, url =
    http://lyncdiscover.domain.com/
    Oct 17, 2012 4:21:18 PM INFO APPLICATION:UcwaAutoDiscoveryGetUserUrlOperation completed with url =
    http://lyncdiscover.domain.com/?sipuri=sip:[email protected], userUrl = , status = E2-3-15
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x0
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:<ReceivedResponse>
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:HttpHeader:Cache-Control no-cache
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:HttpHeader:Connection Keep-Alive
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:HttpHeader:Content-Length 429
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:HttpHeader:Content-Type application/vnd.microsoft.rtc.autodiscover+xml;v=1
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:HttpHeader:Date Wed, 17 Oct 2012 20:21:20 GMT
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:HttpHeader:Expires -1
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:HttpHeader:Pragma no-cache
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:HttpHeader:Server Microsoft-IIS/7.5
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:HttpHeader:StatusCode 200
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:HttpHeader:X-AspNet-Version 2.0.50727
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:HttpHeader:X-MS-Server-Fqdn LYNC1-FE1.edge.local
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:HttpHeader:X-Powered-By ASP.NET
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:<?xml version="1.0" encoding="utf-8"?><AutodiscoverResponse AccessLocation="External" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="<Root><Link">http://www.w3.org/2001/XMLSchema"><Root><Link
    token="Domain" href="<Link">https://webext.domain.com/Autodiscover/AutodiscoverService.svc/root/domain"/><Link token="User" href="</Root></AutodiscoverResponse">https://webext.domain.com/Autodiscover/AutodiscoverService.svc/root/user"/></Root></AutodiscoverResponse>
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:</ReceivedResponse>
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:location value is external
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:User url is
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root/user
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:Sending event to main thread for request(0x1fcb4c8)
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:Notifying response of request(UcwaAutoDiscoveryRequest) with status = 0x0
    Oct 17, 2012 4:21:19 PM INFO APPLICATION:Response received
    Oct 17, 2012 4:21:19 PM INFO APPLICATION:No more req. timing out
    Oct 17, 2012 4:21:19 PM INFO APPLICATION:Received a root response
    Oct 17, 2012 4:21:19 PM INFO APPLICATION:UcwaAutoDiscoveryGetUserUrlOperation completed with url =
    https://lyncdiscover.domain.com/?sipuri=sip:[email protected], userUrl =
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root/user, status = S0-0-0
    Oct 17, 2012 4:21:19 PM INFO APPLICATION:Response received for req. <unknown>: S0-0-0 (Success); Done with req.; Stopping resend timer
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:getSpecificCredential returning the following credential for credType (1) serviceId (1)
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:Credential information: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (0) compatibleServiceIds(0)
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:getSpecificCredential returning the following credential for credType (1) serviceId (4)
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:Credential information: credType (1) signInName () domain () username () password.empty() (1) compatibleServiceIds(0)
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:Received a request to get the meta data of type 0 for url
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root/user
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:Base service url constructed is
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:Sending Unauthenticated get to get the web-ticket url
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:getSpecificCredential returning the following credential for credType (1) serviceId (4)
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:Credential information: credType (1) signInName () domain () username () password.empty() (1) compatibleServiceIds(0)
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:Added Request(UnauthenticatedGetRequest) to Request Processor queue
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:Waiting on Meta Data from
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root/user
    Oct 17, 2012 4:21:19 PM INFO APPLICATION:Submitting new req. <unknown>
    Oct 17, 2012 4:21:19 PM INFO APPLICATION:Submitting Authenticated AutoDiscovery request to
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root/user
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:Sent Request(UnauthenticatedGetRequest) to Request Processor
    Oct 17, 2012 4:21:19 PM INFO TRANSPORT:Sending request(UnauthenticatedGetRequest) to server type = 0
    Oct 17, 2012 4:21:19 PM VERBOSE HttpConnection: post request:
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root/user
    Oct 17, 2012 4:21:19 PM VERBOSE HttpConnection: send request:
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root/user
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Received response of request(UnauthenticatedGetRequest) with status = 0x0
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:<ReceivedResponse>
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:Cache-Control no-cache
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:Connection Keep-Alive
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:Content-Length 1293
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:Content-Type text/html
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:Date Wed, 17 Oct 2012 20:21:20 GMT
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:Expires -1
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:Pragma no-cache
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:Server Microsoft-IIS/7.5
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:StatusCode 401
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:X-MS-Server-Fqdn LYNC1-FE1.edge.local
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:X-MS-WebTicketURL
    https://webext.domain.com/WebTicket/WebTicketService.svc
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:X-Powered-By ASP.NET
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
    <title>401 - Unauthorized: Access is denied due to invalid credentials.</title>
    <style type="text/css">
    <!--
    body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
    fieldset{padding:0 15px 10px 15px;}
    h1{font-size:2.4em;margin:0;color:#FFF;}
    h2{font-size:1.7em;margin:0;color:#CC0000;}
    h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;}
    #header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;
    background-color:#555555;}
    #content{margin:0 0 0 2%;;}
    .content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;;}
    -->
    </style>
    </head>
    <body>
    <div id="header"><h1>Server Error</h1></div>
    <div id="content">
     <div class="content-container"><fieldset>
      <h2>401 - Unauthorized: Access is denied due to invalid credentials.</h2>
      <h3>You do not have permission to view this directory or page using the credentials that you supplied.</h3>
     </fieldset></div>
    </div>
    </body>
    </html>
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:</ReceivedResponse>
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Sending event to main thread for request(0x1ef4188)
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Received response for meta data request of type 120 with status 0
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Endpoint url constructed from unauth-get response is
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Base service url constructed from unauth-get-response is
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Added a binding based on the unauth-get response
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:MetaData retrieval for url
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root/user completed with status 0
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Received a request to get the meta data of type 0 for url
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root/user
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Base service url constructed is
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Found a binding with AuthType 16
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:getSpecificCredential returning the following credential for credType (1) serviceId (1)
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Credential information: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (0) compatibleServiceIds(0)
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Request to get web ticket for
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:No Cached web-ticket found.
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Received request for a new token for
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:getSpecificCredential returning the following credential for credType (1) serviceId (4)
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Credential information: credType (1) signInName () domain () username () password.empty() (1) compatibleServiceIds(0)
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Received a request to get the meta data of type 2 for url
    https://webext.domain.com/webticket/webticketservice.svc
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Sending Mex request get the meta data for the endpoint
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:getSpecificCredential returning the following credential for credType (1) serviceId (4)
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Credential information: credType (1) signInName () domain () username () password.empty() (1) compatibleServiceIds(0)
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Added Request(MetaDataRequest) to Request Processor queue
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Sent Request(MetaDataRequest) to Request Processor
    Oct 17, 2012 4:21:20 PM VERBOSE HttpConnection: set body(POST)- length=486
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Sending request(MetaDataRequest) to server type = 1
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Waiting on Meta Data from
    https://webext.domain.com/webticket/webticketservice.svc
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Waiting on the token
    Oct 17, 2012 4:21:20 PM VERBOSE HttpConnection: post request:
    https://webext.domain.com/webticket/webticketservice.svc/mex
    Oct 17, 2012 4:21:20 PM VERBOSE HttpConnection: send request:
    https://webext.domain.com/webticket/webticketservice.svc/mex
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Received response of request(MetaDataRequest) with status = 0x0
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:MEX response received.
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:<ReceivedResponse>
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:Cache-Control private
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:Connection Keep-Alive
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:Content-Length 18343
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:Content-Type application/soap+xml; charset=utf-8
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:Date Wed, 17 Oct 2012 20:21:20 GMT
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:Server Microsoft-IIS/7.5
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:StatusCode 200
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:X-AspNet-Version 2.0.50727
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:X-MS-Server-Fqdn LYNC1-FE1.edge.local
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:HttpHeader:X-Powered-By ASP.NET
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:<s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing"><s:Header><a:Action
    s:mustUnderstand="1">http://schemas.xmlsoap.org/ws/2004/09/transfer/GetResponse</a:Action></s:Header><s:Body><Metadata xmlns="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsx="<wsx:MetadataSection">http://schemas.xmlsoap.org/ws/2004/09/mex"><wsx:MetadataSection
    Dialect="http://schemas.xmlsoap.org/wsdl/" Identifier="http://tempuri.org/" xmlns=""><wsdl:definitions name="WebTicketService" targetNamespace="http://tempuri.org/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
    xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract"
    xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"
    xmlns:tns="http://tempuri.org/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsa10="<wsp:Policy">http://www.w3.org/2005/08/addressing"><wsp:Policy wsu:Id="WebTicketServiceWinNegotiate_policy"><wsp:ExactlyOne><wsp:All><http:NegotiateAuthentication
    xmlns:http="<af:Binding">http://schemas.microsoft.com/ws/06/2004/policy/http"/><af:Binding xmlns:af="urn:component:Microsoft.Rtc.WebAuthentication.2010"/><sp:TransportBinding
    xmlns:sp="<wsp:Policy><sp:TransportToken><wsp:Policy><sp:HttpsToken">http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"><wsp:Policy><sp:TransportToken><wsp:Policy><sp:HttpsToken
    RequireClientCertificate="false"/></wsp:Policy></sp:TransportToken><sp:AlgorithmSuite><wsp:Policy><sp:Basic256/></wsp:Policy></sp:AlgorithmSuite><sp:Layout><wsp:Policy><sp:Strict/></wsp:Policy></sp:Layout></wsp:Policy></sp:TransportBinding></wsp:All></wsp:ExactlyOne></wsp:Policy><wsp:Policy
    wsu:Id="WebTicketServiceCert_policy"><wsp:ExactlyOne><wsp:All><af:Binding xmlns:af="urn:component:Microsoft.Rtc.WebAuthentication.2010"/><sp:TransportBinding xmlns:sp="<wsp:Policy><sp:TransportToken><wsp:Policy><sp:HttpsToken">http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"><wsp:Policy><sp:TransportToken><wsp:Policy><sp:HttpsToken
    RequireClientCertificate="false"/></wsp:Policy></sp:TransportToken><sp:AlgorithmSuite><wsp:Policy><sp:Basic256/></wsp:Policy></sp:AlgorithmSuite><sp:Layout><wsp:Policy><sp:Strict/></wsp:Policy></sp:Layout><sp:IncludeTimestamp/></wsp:Policy></sp:TransportBinding><sp:EndorsingSupportingTokens
    xmlns:sp="<wsp:Policy><sp:X509Token">http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"><wsp:Policy><sp:X509Token sp:IncludeToken="<wsp:Policy><sp:RequireThumbprintReference/><sp:WssX509V3Token10/></wsp:Policy></sp:X509Token><sp:SignedParts><sp:Header">http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient"><wsp:Policy><sp:RequireThumbprintReference/><sp:WssX509V3Token10/></wsp:Policy></sp:X509Token><sp:SignedParts><sp:Header
    Name="To" Namespace="</sp:SignedParts></wsp:Policy></sp:EndorsingSupportingTokens><sp:Wss11">http://www.w3.org/2005/08/addressing"/></sp:SignedParts></wsp:Policy></sp:EndorsingSupportingTokens><sp:Wss11
    xmlns:sp="<wsp:Policy><sp:MustSupportRefKeyIdentifier/><sp:MustSupportRefIssuerSerial/><sp:MustSupportRefThumbprint/><sp:MustSupportRefEncryptedKey/></wsp:Policy></sp:Wss11><sp:Trust10">http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"><wsp:Policy><sp:MustSupportRefKeyIdentifier/><sp:MustSupportRefIssuerSerial/><sp:MustSupportRefThumbprint/><sp:MustSupportRefEncryptedKey/></wsp:Policy></sp:Wss11><sp:Trust10
    xmlns:sp="<wsp:Policy><sp:MustSupportIssuedTokens/><sp:RequireClientEntropy/><sp:RequireServerEntropy/></wsp:Policy></sp:Trust10><wsaw:UsingAddressing/></wsp:All></wsp:ExactlyOne></wsp:Policy><wsp:Policy">http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"><wsp:Policy><sp:MustSupportIssuedTokens/><sp:RequireClientEntropy/><sp:RequireServerEntropy/></wsp:Policy></sp:Trust10><wsaw:UsingAddressing/></wsp:All></wsp:ExactlyOne></wsp:Policy><wsp:Policy
    wsu:Id="WebTicketServiceMachineCert_policy"><wsp:ExactlyOne><wsp:All><sp:TransportBinding xmlns:sp="<wsp:Policy><sp:TransportToken><wsp:Policy><sp:HttpsToken">http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"><wsp:Policy><sp:TransportToken><wsp:Policy><sp:HttpsToken
    RequireClientCertificate="false"/></wsp:Policy></sp:TransportToken><sp:AlgorithmSuite><wsp:Policy><sp:Basic256/></wsp:Policy></sp:AlgorithmSuite><sp:Layout><wsp:Policy><sp:Strict/></wsp:Policy></sp:Layout><sp:IncludeTimestamp/></wsp:Policy></sp:TransportBinding><sp:EndorsingSupportingTokens
    xmlns:sp="http://schemas.xmlsoap.org
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:</ReceivedResponse>
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Sending event to main thread for request(0x1f10140)
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Received response for meta data request of type 80 with status 0
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:MetaData retrieval for url
    https://webext.domain.com/webticket/webticketservice.svc completed with status 0
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Received a request to get the meta data of type 2 for url
    https://webext.domain.com/webticket/webticketservice.svc
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Found a binding with AuthType 32
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:getSpecificCredential returning the following credential for credType (1) serviceId (1)
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Credential information: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (0) compatibleServiceIds(0)
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Added Request(WebTicketRequest) to Request Processor queue
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Sent Request(WebTicketRequest) to Request Processor
    Oct 17, 2012 4:21:20 PM VERBOSE HttpConnection: set body(POST)- length=1439
    Oct 17, 2012 4:21:20 PM INFO TRANSPORT:Sending request(WebTicketRequest) to server type = 1
    Oct 17, 2012 4:21:20 PM VERBOSE HttpConnection: post request:
    https://webext.domain.com/webticket/webticketservice.svc/auth
    Oct 17, 2012 4:21:20 PM VERBOSE HttpConnection: send request:
    https://webext.domain.com/webticket/webticketservice.svc/auth
    Oct 17, 2012 4:21:22 PM INFO TRANSPORT:Received response of request(WebTicketRequest) with status = 0x0
    Oct 17, 2012 4:21:22 PM INFO TRANSPORT:Decoding the WebTicket Response
    Oct 17, 2012 4:21:22 PM INFO TRANSPORT:WebTicket RSTR received.
    Oct 17, 2012 4:21:22 PM INFO TRANSPORT:<ReceivedResponse>
    Oct 17, 2012 4:21:22 PM INFO TRANSPORT:HttpHeader:Cache-Control private
    Oct 17, 2012 4:21:22 PM INFO TRANSPORT:HttpHeader:Connection Keep-Alive
    Oct 17, 2012 4:21:22 PM INFO TRANSPORT:HttpHeader:Content-Length 684
    Oct 17, 2012 4:21:22 PM INFO TRANSPORT:HttpHeader:Content-Type text/xml; charset=utf-8
    Oct 17, 2012 4:21:22 PM INFO TRANSPORT:HttpHeader:Date Wed, 17 Oct 2012 20:21:24 GMT
    Oct 17, 2012 4:21:22 PM INFO TRANSPORT:HttpHeader:Server Microsoft-IIS/7.5
    Oct 17, 2012 4:21:22 PM INFO TRANSPORT:HttpHeader:StatusCode 500
    Oct 17, 2012 4:21:22 PM INFO TRANSPORT:HttpHeader:X-AspNet-Version 2.0.50727
    Oct 17, 2012 4:21:22 PM INFO TRANSPORT:HttpHeader:X-MS-Server-Fqdn LYNC1-FE1.edge.local
    Oct 17, 2012 4:21:23 PM INFO TRANSPORT:HttpHeader:X-Powered-By ASP.NET
    Oct 17, 2012 4:21:23 PM INFO TRANSPORT:<s:Envelope xmlns:s="<faultcode">http://schemas.xmlsoap.org/soap/envelope/"><s:Body><s:Fault><faultcode xmlns:a="a:FailedAuthentication</faultcode><faultstring">http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">a:FailedAuthentication</faultcode><faultstring
    xml:lang="en-US">No valid security token.</faultstring><detail><OCSDiagnosticsFault xmlns="urn:component:Microsoft.Rtc.WebAuthentication.2010" xmlns:i="<Ms-Diagnostics-Fault><ErrorId>28020</ErrorId><Reason>No">http://www.w3.org/2001/XMLSchema-instance"><Ms-Diagnostics-Fault><ErrorId>28020</ErrorId><Reason>No
    valid security token.</Reason></Ms-Diagnostics-Fault><NameValuePairs xmlns:a="</OCSDiagnosticsFault></detail>http://schemas.microsoft.com/2003/10/Serialization/Arrays"/></OCSDiagnosticsFault></detail></s:Fault></s:Body></s:Envelope>
    Oct 17, 2012 4:21:23 PM INFO TRANSPORT:</ReceivedResponse>
    Oct 17, 2012 4:21:23 PM INFO TRANSPORT:Sending event to main thread for request(0x1f27f50)
    Oct 17, 2012 4:21:23 PM INFO TRANSPORT:Received webticket resposne with status 570621954
    Oct 17, 2012 4:21:23 PM INFO TRANSPORT:Raising WebTicketEvent for
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root and
    https://webext.domain.com/webticket/webticketservice.svc with status 570621954
    Oct 17, 2012 4:21:23 PM INFO TRANSPORT:Web-Ticket retrieval for url
    https://webext.domain.com/autodiscover/autodiscoverservice.svc/root completed with status 570621954
    Oct 17, 2012 4:21:23 PM ERROR TRANSPORT:Failing the original request as we weren't able to get thewebticket
    Oct 17, 2012 4:21:23 PM INFO TRANSPORT:Notifying response of request(UcwaAutoDiscoveryRequest) with status = 0x22030002
    Oct 17, 2012 4:21:23 PM INFO APPLICATION:Req. event received: responseErrorCode=E2-3-2
    Oct 17, 2012 4:21:23 PM INFO APPLICATION:No more req. timing out
    Oct 17, 2012 4:21:23 PM INFO APPLICATION:Received autodiscovery response with status 570621954
    Oct 17, 2012 4:21:23 PM INFO APPLICATION:Raising Autodiscovery event with status 570621954 for eventType 0
    Oct 17, 2012 4:21:23 PM ERROR APPLICATION:Auto-discovery failed. Analysing the failure
    Oct 17, 2012 4:21:23 PM INFO APPLICATION:Raising Autodiscovery event with status 570621954 for eventType 0
    Oct 17, 2012 4:21:23 PM ERROR APPLICATION:Auto-discovery failed, aborting sign-in!
    Oct 17, 2012 4:21:23 PM INFO APPLICATION:CLogonSession::setNewActualState() state=0
    Oct 17, 2012 4:21:23 PM INFO UcClientStateManager: New UI State: ActualState = IsSignedOut DesiredState = BeSignedIn  DataAvailable = false
    Oct 17, 2012 4:21:23 PM ERROR APPLICATION:Alert received! Type 16384, level 0, error E2-3-2, context ''
    Oct 17, 2012 4:21:23 PM INFO APPLICATION:Response received for req. <unknown>: E2-3-2 (RemoteNetworkPermanentError); Done with req.; Stopping resend timer
    Oct 17, 2012 4:21:23 PM VERBOSE ActivityMonitor: Activity Create: com.microsoft.office.lync.ui.options.CredentialsActivity
    Oct 17, 2012 4:21:23 PM VERBOSE ActivityMonitor: Activity Start: com.microsoft.office.lync.ui.options.CredentialsActivity
    Oct 17, 2012 4:21:23 PM VERBOSE ActivityMonitor: Activity Stop: com.microsoft.office.lync.ui.options.SigningInActivity
    Oct 17, 2012 4:21:23 PM VERBOSE ActivityMonitor: Activity Destroy: com.microsoft.office.lync.ui.options.SigningInActivity
    Oct 17, 2012 4:21:30 PM VERBOSE ActivityMonitor: Activity Create: com.microsoft.office.lync.ui.options.CredentialsOptionsActivity
    Oct 17, 2012 4:21:30 PM VERBOSE ActivityMonitor: Activity Start: com.microsoft.office.lync.ui.options.CredentialsOptionsActivity
    Oct 17, 2012 4:21:30 PM VERBOSE ActivityMonitor: Activity Stop: com.microsoft.office.lync.ui.options.CredentialsActivity
    Oct 17, 2012 4:21:31 PM INFO APPLICATION:Mode 1 scheduled to timeout in 30.000000s
    Oct 17, 2012 4:21:31 PM INFO APPLICATION:No SendUpdate schedule action. timerStarted=0, timerNeedsToRun=0, channelState=0, timerAction=0
    Oct 17, 2012 4:21:31 PM VERBOSE ActivityMonitor: Activity Create: com.microsoft.office.lync.ui.options.AboutActivity
    Oct 17, 2012 4:21:31 PM VERBOSE ActivityMonitor: Activity Start: com.microsoft.office.lync.ui.options.AboutActivity
    Oct 17, 2012 4:21:31 PM VERBOSE ActivityMonitor: Activity Stop: com.microsoft.office.lync.ui.options.CredentialsOptionsActivity
    Oct 17, 2012 4:21:32 PM VERBOSE LyncUtils: Compress adding: cmlog0.log

    Hi,
    Please use other Mobile (eg. Windows mobile)devices to log in the Lync server then check the issue again. From the above logs, looks like the lync server is not able to authenticate your credential. PLease make sure you use the correct
    Sip address and password to sign in.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Help needed in debugging callablestatement changing performance

    Looking for some help debugging a performance problem.
    We are in the process of converting an ASP web application running on IIS to a java web application running on OAS. We have java code using a CallableStatement that calls an Oracle PL/SQL Procedure that runs inserts and updates as needed and does not return anything.
    When the Java application calls the procedure using the same parameters and doing the exact same work the execution time is either 3 minutes or 30 minutes. We have narrowed down the location of the slowdown and when it takes 30 minutes to execute it appears to be hanging during a cursor execution. What would cause the execution times to vary so much?
    Here's another piece to the puzzle. When the procedure is called from IIS with the exact same parameters that were used from OAS the procedure ALWAYS runs in 3 minutes. Why would IIS performance be so consistent and OAS so inconsistent?
    Any debugging suggestions would be greatly appreciated.
    Thanks,
    Bob

    user4908334 wrote:
    We are in the process of converting an ASP web application running on IIS to a java web application running on OAS. We have java code using a CallableStatement that calls an Oracle PL/SQL Procedure that runs inserts and updates as needed and does not return anything.
    More information is needed on that.
    There is one proc or 50?
    The proc is being called one time or 50 times?
    You are not using Batching right?
    When the procedure is called from IIS with the exact same parameters that were used from OAS the procedure ALWAYS runs in 3 minutesYou are running the java server on exactly the same box as IIS?
    The java code is using exactly the same database as IIS? (Did you verify this?)

  • Enhancing F4 Search Help Issue - Standard Component

    Hello All,
    We have a requirement in SRM to customize couple of standard Search helps attached to the Webdynpro components. As such I know the concept of how we can handle this requirement but hitting an issue.
    Standard Working scenario -
    1) Standard Structure available with multiple fields. Two fields that are of our interest are SH_VALUE and SH_VALUE_LABEL.
    2) Standard Search help for this being used has fields VALUE and VALUE_LABEL.
    3) In the Structure the both the fields SH_VALUE and SH_VALUE_LABEL are mapped to the Search help VALUE and VALUE_LABEL.
    4) In the WD component the node is mapped to the standard structure.
    Running the application and the picking up the values from F4 on the SH_VALUE field will return its corresponding value and also map the SH_VALUE_LABEL field with the Label from the F4 since the structure and Search help mapping are there.
    So far good when its standard.
    Issue I am facing -
    We need to modify this standard search help to customize our needs.
    1) Did a Copy of the standard Search help and then modified to suit our needs. The output structure of the search is still the same as the standard one.
    2) Did a Post Exit in the WD component to call our custom search help through the below code -
    data lo_nd_attrib type ref to if_wd_context_node.
    data lo_nd_attrib_info type ref to if_wd_context_node_info.
    lo_nd_attrib = wd_context->path_get_node( path = `ATTRIBUTES_DATA.ATTR_DTLS_MULT` ).
    lo_nd_attrib_info = lo_nd_attrib->get_node_info( ).
    lo_nd_attrib_info->set_attribute_value_help( name = 'SH_VALUE' value_help_mode = '121' value_help = 'Z_ORG_ATTR' ).
    lo_nd_attrib_info->set_attribute_value_help( name = 'SH_VALUE_LABEL' value_help_mode = '121' value_help = 'Z_ORG_ATTR' ).
    Running the application just returns the SH_VALUE field but does not get the data for the SH_VALUE_LABEL.
    Is there something wrong in the way I am calling the Custom Search help or should I need to approach this differently?
    Thanks,
    Nagarajan.

    Hi Nagarajan,
    Well, you are trying to set the search help to both attributes ( sh_value, sh_value_label) individually and it is having no link between these two attributes
    i.e. once you select a value from search help of SH_VALUE, its no where linked that the other details to be passed to SH_VALUE_LABEL.
    We generally, do the linking of attributes to search help parameters at structure level as below
    So, if you need the same behaviour, then you need to assign the Zsearch help at strucuture field SH_VALUE and link the parameters to both fields SH_VALUE & SH_VALUE_LABEL
    In case, if find it not possible to to this way,
    You need to populate the value of field SH_VALUE_LABEL upon selection of value from search help of SH_VALUE.
    i.e. by registering the search help selection event to an OnEnter action and write the logic to populate the value to SH_VALUE_LABEL
    Please refer the below link
    Automatically Trigger onEnter event after selecting value from the Value Help(F4 Help)
    Hope this helps you.
    Regards,
    Rama

  • Help - issue with update 10.2.0.429

    I updated my Z10 to10.2.0.429, now I have to keep taking my battery out  to send or read text messages and twitter no longer updates.  Also my battery runs down really quickly.  My Z10 is less than a year old.  (about 8 months).  Now when I connect to BB link, it says there is a problem accessing my drives on the device so it can't synch or perform a back up. It also says that my devise and s/w is up to date.  HELP!

    I've found that sometimes reloading the OS you just loaded does the trick. The OS has been tested by BlackBerry and is fit for release so that isn't the issue. 
    Plug your phone in to your PC and open BlackBerry Link. Once your phone has connected, click your phone on the left panel then click Backup and Restore. Start by doing a backup of it. Once that has completed, click Backup and Restore again but this time click Restore. Choose the backup file you just created and load it.
    Why reloading the same OS works, I don't know. I just know that it's helped me on more than one occasion so I often recommend to other users to do it.
    Keep us posted on your progress.  
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

Maybe you are looking for