Debugging aRFC models on the ABAP side

Hi all,
is there a way to debug the RFC function modules as they are called from the WDF?
I tryed this in my controller, but it didn't work (and I donna why):
          custSave.modelInstance().getJcoClient().setAbapDebug(true);
Any help is appreciated.
Nick

HI Huseyin,
Ran across the same problem in our 4.6c environment and used the following method.
1) create wrapper function module with the same interface as the SAP function module.
2) Within wrapper function module
    - call SAP function module 'BAPI_GOODSMVT_CREATE'in
      background task
    - call 'START_OF_BACKGROUNDTASK' with no send option
3) Once you have called function module from WD then go to SM58 and you will see call to 'BAPI_GOODSMVT_CREATE' has been recorded. From here there is a menu option to within SM58 to debug.  Enjoy...
  call function 'BAPI_GOODSMVT_CREATE'
      in background task
       exporting
            goodsmvt_header       = goodsmvt_header
            goodsmvt_code         = goodsmvt_code
            testrun               = testrun
      importing
           goodsmvt_headret      = goodsmvt_headret
           materialdocument      = materialdocument
           matdocumentyear       = matdocumentyear
       tables
            goodsmvt_item         = goodsmvt_item
            goodsmvt_serialnumber = goodsmvt_serialnumber
            return                = return.
call function 'START_OF_BACKGROUNDTASK'
           exporting
                nosend = 'X'.
Regards,
Keith L.

Similar Messages

  • Can we get a "Add to Browser Favorites" URL from ABAP-side?

    Hi,
    via "Add to Browser Favorites", you can get a URL for opening exactly the portal page you are currently on. Is there any possibility
    to get (or create/generate) the URL for such a page from ABAP-side? We have the requirement to send e-mails from the ABAP
    backend with links (URLs) to a corresponding portal page (like the example below). This has to be done quite generic, mi.e. the server,
    the port, the application parameters, etc. cannot be hardcoded but have to be generated in a generic way.
    Thank you and kind regards,
        Florian
    PS: Example:
    http://pwdf6460.wdf.sap.corp:50000/irj/portal/ajax?navigationtarget=roles://portal_content/com.sap.pct/every_user/com.sap.pct.erp.common.bp_folder/com.sap.pct.erp.common.roles/com.sap.pct.erp.common.erp_common/com.sap.pct.erp.common.lpd_start_wd_abap&&WebDynproApplication=CPROJECTS_FPM&WebDynproConfiguration=CPROJECTS_FPM&ApplicationParameter=OBJ_EVENT%253dDPO47BAB5FEB7A55A28E10000000A424B1D47BAB5FEB7A55A28E10000000A424B1DDPO++++++++++++++++++++++++NON&NavMode=3&System=SAP_cProjects&PrevNavTarget=ROLES%253a%252f%252fportal_content%252fcom.sap.pct%252fevery_user%252fcom.sap.pct.plm.ppm.PPM50%252fcom.sap.pct.plm.ppm.Roles%252fcom.sap.pct.plm.ppm.port_prj_mgmt_showcase%252fcom.sap.pct.plm.ppm.projectmanagement_showcase%252fcom.sap.pct.plm.ppm.pm_overview%252fcom.sap.pct.plm.ppm.ws_projects%252fcom.sap.pct.plm.ppm.cpr_projects_showcase&WebDynproNamespace=sap&&NavigationContext=merge(ROLES://portal_content/every_user/general/eu_core_role/com.sap.uwl.home_core_ws/com.sap.netweaver.bc.uwl.overview%7CROLES://portal_content/every_user/general/eu_core_role/com.sap.portal.home_core/com.sap.portal.home.overview)

    Hi,
    It is hard to know exactly what to suggest since I don't know the full story behind the process you are trying to implement. However I can make some suggestions:
    1. Use short URLs. These can be configured in the portal and will allow for easier navigation. you will see this as a "quick link" parameter in the page properties.
    2. Rather then hard coding any values use a configuration table in the ABAP system.
    3. If the process starts in the portal you could have your portal application send the necessary data to the ABAP system so it could use it to generate the email (e.g. Server/Port/Parameters etc...)
    4. If it is a dual stack system you may be able to leverage the co-existance of portal an ABAP on the same server.
    5. What about using a web service on the portal to supply the URL to the ABAP system. You could call this web service from the ABAP and have the portal provide the data that way. This would be good if your process kicks off on the ABAP side and not via the portal.
    Anyway, I hope some of those suggestions help.
    BRgds,
    Simon

  • PageMethod response returning whole page, unable to debug the server side method

    Hello Guys,
    I am unable to debug my method written on server side when a call is send to it through jquery using page method.
    In response , I get the whole page.
    code:
    ASPX page:
    PageMethods.MyMethod(p1, p2, function(response){
    ASPX.CS
    [System.Web.Services.WebMethod()]
    [System.Web.Script.Services.ScriptMethod()]
    publicstaticstringMyMethod(stringp1,
    stringp2){
    //Updating database
    I did ScriptModule entry in web.config, enabled tracing,have ScriptManager and EnablePageMethods is set to true.
    Still the server side method is not getting called.
    please help.
    Ng_TechFreak

    Hi Ng_TechFreak,
    For ASP.NET questions please post in
    ASP.NET forum where you'll get better help.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How  to debug  the abap program ?

    how  to debug  the abap program ?Can anybody explain  me in details.

    Hi
    Debugger
    This section of the ABAP Workbench documentation provides information on how to use the Debugger as a test tool for finding errors in the source code of an ABAP program.
    Functional Overview
    Use
    The ABAP Debugger is an integrated test tool within the ABAP Workbench. You use it to check the program logic and to find errors in the source code of an ABAP program. In the Debugger, you can step through the source code of a program. The running program is interrupted after each step, allowing you to check its processing logic and the results of individual statements.
    As of Release 6.10, you can also run Business Server Pages (BSP) in the debugging mode. You can also display and set breakpoints here. Business Server Pages can be displayed in the Object Navigator when you select an appropriate application under BSP Application.
    Features
    The Debugger provides an efficient means of identifying errors in ABAP programs. It contains the following functions:
    Ways of starting the Debugger
    Choosing different views
    Choosing different execution options in the Debugger
    Displaying source code in the Debugger
    • Setting and deleting breakpoints
    • Setting and deleting watchpoints
    • Stopping a program at a particular statement or event
    Displaying and changing field contents at runtime
    Displaying ABAP Objects and references
    Displaying and positioning strings
    Setting and deleting database locks
    Opening the ABAP Editor, or Object Navigator
    System settings and runtime warnings
    Starting the Debugger
    There are two possible strategies for starting the Debugger in the ABAP Workbench:
    By setting breakpoints then running the program
    By running the program in debugging mode.
    Setting Breakpoints
    A breakpoint is a signal in a specific line of the program source code. This signal indicates to the ABAP runtime processor to stop the program at the relevant line and start the ABAP Debugger. A distinction is made between static and dynamic breakpoints. For further information about the different types of breakpoints and how to use them, refer to Breakpoints.
    Direct Processing
    You can start the Debugger without previously having set breakpoints. This is the best procedure to use when you want to test a program right from the beginning. It is also a useful procedure if you are not overly familiar with the program and therefore are not sure where best to set breakpoints. You can start the Debugger as follows:
    From the Object Navigator
    Select a report or transaction and choose Program ® Test ® Debugging.
    From the ABAP Editor
    Choose Program ® Execute ® Debugging (or the Debugging pushbutton).
    From any screen
    Choose System ® Utilities ® Debug ABAP.
    From any screen
    Enter /h in the command field.
    Display Modes in the Debugger
    When you are debugging a program, there are various display modes that you can use. All of the display modes have the same structure. The top part of the screen displays an extract of the program source code. The bottom part displays the information specifically available in that display mode. There are also pushbuttons on the screen allowing you to switch to the most frequently-used display modes.
    Display Modes Available Using Pushbuttons
    Fields
    The scrollable field display contains the contents of up to eight fields. The contents of the three most important system fields are always displayed. This is the default display mode in the Debugger. See also Processing Fields
    Table
    Displays the contents of an internal table. This mode allows you to display and edit the entries in an internal table. See also Processing Internal Tables
    Breakpoints
    A scrollable display containing up to 30 breakpoints. Next to each breakpoint is a counter. You can also delete breakpoints in this display. See also Managing Dynamic Breakpoints
    Watchpoints
    You can set a watchpoint for a field so that the program is interrupted whenever the value of that field changes. This display mode contains a list of watchpoints, the fields and programs to which they are assigned, the current values of the fields, and the conditions upon which the watchpoint is activated. See also Setting Watchpoints
    Calls
    This mode displays the current sequence of events, and the sequence of calls up to the current breakpoint. The last active call is displayed at the top of the list; previous calls are listed in reverse chronological order. When an event (for example, START-OF-SELECTION) concludes, it is deleted from the display.
    Overview
    This mode displays the structure of the program. It lists its events, subroutines, and modules, and shows which sections belong to which events. It also displays the section currently being processed.
    Settings
    This mode displays the current Debugger settings. You can change the settings by selecting or deselecting various options. For further information, refer to Settings and Warnings
    Other Display Modes
    You can access other display modes by choosing Goto ® Display data object.
    Single field
    Displays the contents and technical attributes of a field.
    Structured
    field
    Displays the components of a structure, along with their contents and attributes. If you double-click a component, the system displays detailed information for it.
    Strings
    Display the content and current length of the string. You can also display part of the content by means of offset and length.
    Internal table
    Displays the type, line numbers and contents of an internal table.
    Object
    Displays the structure of an ABAP Object.
    For further information on these displays, refer to Displaying Attributes and Displaying ABAP Objects
    Checking System Programs for Errors
    To check a program or program component that is part of the ABAP Workbench (for example, the Screen Painter), you must use the system Debugger. To start the system Debugger, choose System ® Utilities ® Debug System from any screen. To stop the system Debugger, choose Debugger ® Debugging off.
    Displaying Program Attributes
    You can display the attributes Fixed Point Arithmetic, System Program, and Unicode Checks of the program that has just been executed by choosing Goto ® Further Information ® Program Attributes.
    Restarting the Debugger
    If you choose Debugging ® Restart, debugging mode is stopped and the system takes you to the initial screen of the last transaction you called. If, for example, you started an ABAP program in debugging mode from transaction SE38 (ABAP Editor), choosing Debugging ® Restart will take you back to the screen titled ABAP Editor: Initial Screen. If you want to restart the program in debugging mode, choose Debugging.
    Breakpoints
    Apart from direct execution of an ABAP program in the Debugger, it is also possible to start the Debugger call by the exact setting of a breakpoint. This is achieved by setting one or more of these breakpoints in the program. A breakpoint is a signal at a particular point in the program that tells the ABAP runtime processor to interrupt processing and start the Debugger. The program runs normally until the breakpoint is reached.
    There is also a special kind of breakpoint called a watchpoint. When you use watchpoints, the Debugger is not activated until the contents of a particular field change. For further information, refer to Watchpoints.
    Breakpoint Variants
    The Debugger contains different breakpoint variants:
    Static
    The BREAK-POINT statement in an ABAP program. Static breakpoints are not normally user-specific. However, you can make them user-specific.
    Directly-set
    dynamic breakpoints
    Can be set in the ABAP Editor or the Debugger. Dynamic breakpoints are always user-specific, and are deleted when you log off from the R/3 System.
    Breakpoints
    at statement
    The Debugger stops the program directly before the specified statement is executed.
    Breakpoints
    at subroutine
    The Debugger stops the program directly before the specified subroutine is called.
    Breakpoint at function module
    The Debugger stops the program directly before the specified function module is called.
    Breakpoint at method
    The Debugger stops the program directly before the specified method is called.
    Breakpoints at system exceptions
    The Debugger stops the program directly after a system exception, that is, after a runtime error has been intercepted.
    Static Breakpoints
    Static breakpoints are not normally user-specific. Once a user has inserted the statement BREAK-POINT or BREAK name in an ABAP program, the system always interrupts the program at that point for that user or only for the user name. This procedure is only useful in the development phase of an application, when the program execution is always to be interrupted at the same place. For further information, refer to Static Breakpoints.
    In HTTP sessions, a static breakpoint is skipped if you did not set additional dynamic HTTP breakpoints in the editor of a BSP page. Instead, a corresponding system log entry is written, which can be checked using transaction SM21.
    Dynamic Breakpoints
    Dynamic breakpoints are user-specific. Therefore, you should use them if you only want the program to be interrupted when you run it yourself, not when it is being executed by other users. All dynamic breakpoints are deleted when you log off from the R/3 System.
    Dynamic breakpoints are more flexible than static breakpoints, because you can deactivate or delete them at runtime. They have the following advantages:
    You do not have to change the program code
    You can set them even when the program is locked by another programmer
    You can define a counter that only activates the breakpoint after it has been reached
    Special dynamic breakpoints are useful when you want to interrupt a program directly before a particular ABAP statement, a subroutine, or an event, but do not know exactly where to find it in the source code. Event here is used to refer to the occurrence of a particular statement, for example, or calling up a method. Special dynamic breakpoints are user-specific. You can only set them in the Debugger. For further information, refer to Dynamic Breakpoints.
    In HTTP sessions, the system stops both at static and dynamic breakpoints if a dynamic breakpoint was set in the editor of a BSP page before program execution.
    Lifetime and Transfer of Breakpoints
    A static breakpoint remains intact as long as the BREAK-POINT or BREAK-POINT name statement is not removed from the source code. Without saving, dynamic breakpoints only remain intact in the relevant internal session. However, they are effective during the entire user session, if they are saved by choosing Breakpoints ® Save in the ABAP Debugger. For more details on the subject of sessions and user sessions, refer to Modularization Techniques in the ABAP keyword documentation.
    If you call an HTTP session during a user session, only the HTTP breakpoints are loaded when the HTTP session is started. You activate HTTP debugging in the ABAP Editor by choosing Utilities ® Settings ® HTTP Debugging. Depending on the setting, the system then displays either the HTTP or standard breakpoints in the Editor.
    If you call an update session during a user session, breakpoints that were defined beforehand in the calling processing unit are copied to the new update session, where they can be displayed under Breakpoints. If, in the ABAP Debugger, you check Update Debugging under Settings and then, for example, call the update module func using CALL FUNCTION func IN UPDATE TASK, a new window is opened in which you can debug this function module in the update session. All the breakpoints that were set in the calling processing unit can also be processed here.
    Breakpoints at Statements
    You can use this special kind of dynamic breakpoint to interrupt a program directly before an ABAP statement is processed.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    To set a breakpoint at an ABAP statement:
    1.Choose Breakpoint ® Breakpoint at ® Statement...
    The following dialog box appears:
    2.Enter the ABAP statement.
    The system sets a breakpoint at all points in the program at which the ABAP statement occurs.
    3.Choose ENTER.
    The breakpoint applies to all lines containing the specified statement.
    Result
    The system confirms the breakpoint and adds it to the list in the display. When you finish your debugging session, the breakpoint is automatically deleted unless you have explicitly saved it.
    Breakpoints at Subroutines
    You can use this special kind of dynamic breakpoint to interrupt a program directly before a subroutine is called.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    To set a breakpoint for a subroutine:
    Choose Breakpoint ® Breakpoint at ® Event/Subroutine.
    The following dialog box then appears:
    Enter the name of the subroutine before which you want to interrupt the program. By default, the Program field contains the name of the program that is currently active. The system sets a breakpoint wherever the specified subroutine occurs in the program code.
    Choose ENTER.
    Result
    The system confirms the breakpoint. The breakpoint is added to the breakpoints displayed.
    Breakpoints at Function Module
    You can use this kind of dynamic breakpoint to interrupt a program directly before a function module is called.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    To set a breakpoint for a function module:
    Choose Breakpoint ® Breakpoint at ® Function module...
    The following dialog box appears:
    Enter the name of the function module before which you want to interrupt the program. The system sets a breakpoint wherever the specified event, module pool, or subroutine occurs in the program code.
    Choose ENTER.
    Result
    If you entered a valid function module name, the system confirms that the breakpoint has been set. If the function module exists in the system, the new breakpoint is added to the display list.
    Breakpoints at Methods
    You can use this special kind of dynamic breakpoint to interrupt a program directly before a method is called.
    Prerequisites
    You must be already running the program in the debugger.
    Procedure
    To set a breakpoint for methods:
    1. Choose Breakpoint ® Breakpoint at ® Method...
    The following dialog box then appears:
    2. Enter the name of the method and class before which you want to interrupt the program. A breakpoint is then set each time the specified processing block appears in the source code.
    3. Choose ENTER.
    Result
    The system confirms the breakpoint. The breakpoint is added to the list in the display.
    Breakpoints at System Exceptions
    You can use this special form of dynamic breakpoint to interrupt a program immediately after a runtime error has occurred.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    To set a breakpoint at a system exception:
    Choose Breakpoint ® Breakpoint at ® System exception.
    Result
    The system confirms the breakpoint. The breakpoint is added to the breakpoints displayed.
    When a system exception is triggered, a warning triangle appears in the line containing the statement that caused it. If you double-click the warning triangle, the internal name of the runtime error appears.
    Static Breakpoints
    You should only use static breakpoints during the development phase of an application. You must remove them from your program before you transport it.
    Setting Breakpoints
    To set a static breakpoint, use the ABAP statement BREAK-POINT . Place the breakpoint in the line at which you want to interrupt the program.
    program RSDEBUG_01.
    if SY-SUBRC 0.
    break-point.
    endif.
    When you run the program, the runtime processor interrupts it when the breakpoints occur. You can number your breakpoints to make them easier to identify ( BREAK-POINT 1, BREAK-POINT 2 …).
    Static breakpoints are not normally user-specific. The program is, therefore, always interrupted as soon as the runtime processor reaches the line containing the breakpoint. The program is interrupted regardless of the user who executes it.
    However, you can set user-specific static breakpoints using the BREAK statement followed by your user name. For example, if you use the statement BREAK SMITH , the program is only interrupted when user Smith runs it. Although user-specific breakpoints appear in the program code, they are not active when other users run the program. You should, however, be careful if an application is being used by several users with the same name.
    Deleting Breakpoints
    Since static breakpoints apply to all users, you must remove them from the program once you have finished testing it. In the ABAP Editor, you can find breakpoints quickly by choosing Utilities ® Global search. You can also use the Extended Program Check to find them.
    If you do not remove static breakpoints from your program, they will be transported to your production system. This could cause serious problems in the production system.
    Dynamic Breakpoints
    You can set up to 30 dynamic breakpoints without changing the program code. Dynamic breakpoints can be set either in the ABAP Editor or directly in the Debugger.
    Setting Dynamic Breakpoints in the ABAP Editor
    You can set dynamic breakpoints in the ABAP Editor regardless of whether you are in display or change mode. You can also set breakpoints directly from within the Debugger at runtime. To set a dynamic breakpoint in the ABAP Editor:
    Position the cursor on the line of the source code at which you want to set the breakpoint.
    Choose Utilities ® Breakpoints ® Set or the Stop icon. The system confirms that the breakpoint has been set.
    To display a list of all dynamic breakpoints in a program, choose Utilities ® Breakpoints ® Display. You can use this list to navigate to a particular breakpoint or to delete one or more breakpoints from the program.
    Setting Dynamic Breakpoints in Debugging Mode
    To set a dynamic breakpoint in the Debugger:
    Position the cursor on the line in which you want to set the breakpoint.
    Select the line by double-clicking it or choosing Breakpoint ® Set/delete.
    The system sets the breakpoint, and displays a small stop sign to the left of the relevant line. If the line already contained a breakpoint, it is deleted.
    When you finish your debugging session, the breakpoint is automatically deleted unless you have explicitly saved it.
    Saving Breakpoints
    If you want to leave the Debugger temporarily, you can save your dynamic breakpoints so that they are still active when you return to the Debugger within the same terminal session.
    To save the breakpoints that you have set in the Debugger:
    Choose Breakpoint ® Save.
    The system saves all of the breakpoints that you have set in the current program. These breakpoints will remain active until you either explicitly delete them or log off from the system.
    You can also delete breakpoints that you have saved:
    By deleting individual breakpoints from the display and then saving again. In this case, only your selected breakpoints will be deleted.
    By choosing Breakpoint ® Delete all. In this case, the system deletes all dynamic breakpoints.
    Managing Dynamic Breakpoints
    The ABAP Debugger provides a convenient user interface for managing breakpoints. To open the breakpoint display, choose Breakpoints, or, from the menu, Goto ® Control debugging ® Breakpoints.
    Example
    Functions
    This display mode contains the following functions for breakpoints:
    Breakpoint Display
    The scrollable breakpoint display contains up to 30 dynamic breakpoints. For breakpoints that you set directly, the program name and line number at which the breakpoint occurs are displayed. For special breakpoint forms, the list displays the statements, events, subroutines, and module calls at which the relevant breakpoints are set.
    Counter
    In the breakpoint display, you can specify a counter. When you use a counter, the breakpoint is not activated until it has been reached a specified number of times. For example, if you enter 5 for the counter, the breakpoint is not activated until it is reached for the fifth time. After the breakpoint has been activated, it remains so, and the counter no longer appears in the breakpoint display.
    Deleting Breakpoints
    Position the cursor on the breakpoint that you want to delete, and either double-click the line or choose Breakpoint ® Set/delete. To delete all breakpoints, choose Breakpoint ® Delete all.
    Activating and Deactivating Breakpoints
    Position the cursor on the breakpoint that you want to activate or deactivate and choose Breakpoint ® Activate/deactivate.
    Watchpoints
    Like a breakpoint, a watchpoint is an indicator in a program that tells the ABAP runtime processor to interrupt the program at a particular point. Unlike breakpoints, however, watchpoints are not activated until the contents of a specified field change. Watchpoints, like dynamic breakpoints, are user-specific, and so do not affect other users running the same program. You can only define watchpoints in the Debugger.
    Use
    You set watchpoints in the Debugger to monitor the contents of specific fields. They inform you when the value of a field changes. When the value changes, the Debugger interrupts the program.
    Features
    You can set up to five watchpoints in a program.
    See also Setting Watchpoints.
    You can also specify the conditions on which a watchpoint is to become active.
    You can specify logical conditions between up to five conditional watchpoints.
    See Specifying a Logical Expression.
    You can define watchpoints as either local or global. If you define a global watchpoint, it is active in all called programs. Local watchpoints are only active in the specified program.
    You can change and delete watchpoints.
    See Changing Watchpoints.
    You can use watchpoints to display changes to the references of strings, data and object references, and internal tables.
    See Memory Monitoring with Watchpoints
    Setting Watchpoints
    If you want to interrupt a program when the contents of a field or structure change, use a watchpoint. You can set up to five watchpoints, including watchpoints for strings.
    A watchpoint can be either local or global. Local watchpoints are only valid in the specified program. Global watchpoints are valid in the specified program, and also in all the other programs it calls.
    Procedure
    To set a watchpoint, start the Debugger and proceed as follows:
    Choose Breakpoint ® Create watchpoint or the corresponding pushbutton. The Create Watchpoint dialog box appears:
    Decide whether you want to set a local or global watchpoint.
    Enter the program and the name of the field for which you want to set the watchpoint. In the Program field, the name of the program currently running is always defaulted.
    If you want your watchpoint to be activated each time the contents of the field change, the definition is now complete, and you can return to the Debugger by pressing ENTER .
    To create a conditional watchpoint, that is only activated when a particular situation arises, choose one of the following relational operators.
    Operator
    Meaning
    <
    Less than
    <=
    Less than or equal
    =
    Equal
    <>
    Not equal
    =
    Greater than or equal
    Greater than
    You can use the Comparison field option to specify whether the comparison is to be carried out with a value that you specify or with the contents of another field. Depending on your choice from step 6, enter a value or a field for the comparison.
    Result
    The system confirms the watchpoint and adds it to the list in the display. When you finish your debugging session, the watchpoint is automatically deleted unless you have explicitly saved it.
    Specifying Logical Links
    If you have more than one conditional watchpoint, you can specify a logical link between them:
    OR
    Only one of the specified conditions must be met
    AND
    All of the conditions must be met.
    Changing Watchpoints
    Choose Goto ® Control debugging ® Watchpoints or the Watchpoints pushbutton to display the watchpoint list. The following dialog box appears:
    Choose the pencil icon in the line containing the watchpoint you want to change.
    Change the watchpoint attributes in the Create/Change Watchpoint.
    Choose ENTER .
    Deleting Watchpoints
    You cannot delete watchpoints by choosing Breakpoint ® Delete or Breakpoint ® Deactivate/activate. Instead, proceed as follows:
    Choose Goto ® Control debugging ® Watchpoints or the Watchpoints pushbutton to display the watchpoint list.
    Choose the trashcan icon in the line containing the watchpoint you want to delete.
    Memory Monitoring with Watchpoints
    You can use watchpoints to display changes to the references of strings, data and object references, and internal tables. By placing an ampersand (&) in front of the object name, you can display the reference in question in hexadecimal format. With internal tables, you can also display the table header by placing an asterisk (*) at the beginning of the name.
    &objectname
    Displays the references of strings, internal tables as well as data and object references
    *itab
    Displays the table header of the internal table itab
    Example
    If a watchpoint is set for the object in question at runtime, the program is stopped as soon as the reference is changed. A short dump can be intercepted in this way to stop the program being terminated when the memory is overwritten.
    Analyzing Source Code
    The Debugger contains an extensive range of functions that help you to analyze the source code of a program. You can step through the source code of a program in four different ways. For further information, refer to Stepping Through the Source Code
    For information about functions within the source code display, see Displaying the Source Code
    There are also different display modes that provide various information and display the contents of individual fields, tables, and so on:
    Reward if usefull

  • Debuging the ABAP Programs

    Generally how does the ABAPer do debug the programs in real time environment, and how to check the the performance of the programs.

    Hi,
    there are few methods for the same..
    one using a break point(stop button in editor),
    using tcode /h or going to utilities - abap debugger.
    performance you can check using tcode se30.
    if you want to learn debugging for all the objects go through these links..
    <b>and do reward all the helpful answers for all your questions</b>
    ABAP DEBUGGING
    http://help.sap.com/saphelp_webas620/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9cbb7716-0a01-0010-58b1-a2ddd8361ac0
    Debug Program scheduled Background
    Re: Debugging Report which is scheduled in background
    regards,
    pankaj singh

  • I can only figure out how to debug on the flex side

    I am calling CFC methods from my flex applications but I can
    only figure out how to debug on the flex side. Is it possible to
    debug on the CFC methods begin called from flex? I don't think this
    is possible but you may prove me wrong :)

    Thanks.
    As a workaround I tried returning the thing that I suspect
    the problem lies:
    <cffunction name="updateField" access="remote"
    returntype="String">
    <cfargument name="field" required="true"
    type="string">
    <cfargument name="currencyName" required="true"
    type="string">
    <!--- <cfargument name="currencyID" required="true"
    type="Numeric"> --->
    <cfargument name="value" required="true"
    type="Numeric">
    <cfquery name="q" datasource="#datasource#">
    update tbale
    set <cfqueryparam value="#arguments.field#"
    cfsqltype="cf_sql_varchar"> =
    <cfqueryparam value="#arguments.value#"
    cfsqltype="cf_sql_float">
    where currencyName =
    <cfqueryparam value="#arguments.currencyName#"
    cfsqltype="cf_sql_varchar">
    </cfquery>
    <cfset flash.result="update RATES #arguments.field#" >
    <cfreturn flash.result>
    </cffunction>
    but the following line does not return the correct string:
    <cfset flash.result="update RATES #arguments.field#" >
    I do I add arguments to the string?

  • Problem with model N73. Sometimes the other side h...

    I have Nokia N73 and in start very big problem. Sometimes someone which I speak with complain that hear me very bad, with noise, sound like a robot (Level of signal on the both sides is exelent). It is a new phone, and I sent it to Nokia servis. They reinstalled software and sent me phone back, but after 2 or 3 days I used a bluetooth headset in the car and the problem reappeared. The same thing was when I disconected bluetooth headset. In a setup of phone there is one option "Network mode" with 3 suboptions: Dual mode, UMTS and GSM. Initialy it was setup on Dual mode. I changed to GSM. After reseting phone the problem was disappeared, but I am not sure that the problem is solved.
    I'll be very greatfull if anybody know what is the problem, and posibly solution.

    I have the exact same problem. Everything works great exept for the fact that everyone I speak to using Bluetooth headsets complain that I sound "tinny", "weak" or "robot-like".
    I've tried with two different headsets (Jabra JX10 and Nokia BH-200) and the problem is the same. I have also tried to reset the headsets, delete pairing and pair them all over again - still the same problem.
    Seems like the Bluetooth and 3G signals/frequencies may interfere with each other or something.
    The wired headset that came with the phone works without problems. Problem is only there when using Bluetooth headsets.
    Any solution?
    Regards,
    Michael

  • About send TCP package to other server program with the ABAP

    I have a server program, it receipt the tcp data package,then process,then return the result with tcp package.
    the data come from the sap system.
    for example, the material master record.
    I can use the abap to get the data,but i have no idea to send the data to server progam and receipt the result.
    How to do it? Who can help me.Thanks a lot.
    Best regards.
    LnSinco.

    > As an experiment, I tried going the other way. That it, I started up the
    > Simple Data Server VI on the Windows PC. I then "pointed" my SGI client at
    > the server on the PC. It works, ... sort of. I am getting an
    > appropriately sized list of numbers displayed on the SGI host, but while
    > most look like floating point values, some look like VERY large integers.
    >
    > I believe I have a data representation problem. That is, I don't know if I
    > should expect to send (server-side) or see (client-side) C programming
    > variables of type 4-byte floats, 8 byte doubles, or something else. Also, I
    > am not certain how many values I should expect to send/see in each message.
    > I think the default for the Simple Data Client/Server programs is 200
    > points
    , but I am not sure what that really means, either.
    >
    By default, LV converts all of the datatypes to be in big endian form.
    I'm not sure about your SGI, but if it is a little endian machine, then
    that will cause problems. If that is the case, you will want to swap
    the words and bytes of the four byte values.
    To debug this more easily, you might just make sure you send over very
    predictable data such as 0, 1, 2, 3, etc. Lots of times these are
    tested with random data, but that makes it pretty hard to see a pattern
    when the data is wrong.
    Greg McKaskle

  • How to consume the Abap web service in Java web-dynpro

    Hi Everyone,
    I want to consume ABAP web service in java web dynpro.
    so when i tried to create model in java web-dynpro, it gave me an error message saying "Invalid WSDL or WSDL not found".
    i think this error message is because, to access the WSDL of abap web-service, we need username and password, but the dialog box in java web-dynpro is not programmed to take username and password from us and send it to the server to get the WSDL.
    i came to this conclusion because i was able to successfully test my abap web-service in java portal. the java portal asked me the username and password to open the WSDL.
    So, please help me to consume the abap web service in java web-dynpro.
    Thanks in advance
    Regards
    Vikas

    Hi Vikas ,
       while creating a model in web-dynpro try to use the "import web service model" option and if you are using local server choose the local server option so that you can get the available web services which are in server, select one among them and continue you process.I think this is the some what easy way .
    If you want use the URL for wsdl better to once test the available service in server and copy that WSDL URL and paste over  WSDL textbox.
    I think this is pretty help ful to you
    Best Regards
    Srikatnh

  • Uc540 to Callmanager all working but no Voicemail from the Callamanger side

    I have created a connection between the UC540 and Cisco Callmanager 6.  I am using a H323 gateway connection and can call each site via 4 didgit dialing.   My issue is that the calls from the Callmanager side trying to go to the UC540 side can not hear VOICEMAIL prompts.  It goes into a fast busy.  Calling from teh Uc540 side to the Callmanager side is fine.  I can get phones and voicemail mail.  Has anyone had any experience with this?  I do notice that my Dial-peer to the callmanager side is H323... but the dial-peer to the Voicemail side of UC540 is SIP.  Has anyone got this working?  I have full connectivity to each VLAN from each IP subnet.  I can PING all Voice and Data VLANS.  One thing to know is this is using a site to site VPN connection as well.. so their is also a tunnel involved... but everything is working and I have connectivity.
    John NIkolatos
    www.niktek.com

    Ok here are the debugs.  I did not have anything for "show dspfarm profile" so I added conferencing using hte CCA.  Which created a DSPFARM for me. 
    onnys#show dspfarm profile
    Dspfarm Profile Configuration
    Profile ID = 1, Service = CONFERENCING, Resource ID = 1 
    Profile Description : DO NOT MODIFY, active CCA conference profile - CCA2.0 codec729
    Profile Service Mode : Non Secure
    Profile Admin State : UP
    Profile Operation State : ACTIVE
    Application : SCCP   Status : ASSOCIATED
    Resource Provider : FLEX_DSPRM   Status : UP
    Number of Resource Configured : 4
    Number of Resource Available : 4
    Maximum conference participants : 8
    Codec Configuration: num_of_codecs:6
    Codec : g711ulaw, Maximum Packetization Period : 30 , Transcoder: Not Required
    Codec : g711alaw, Maximum Packetization Period : 30 , Transcoder: Not Required
    Codec : g729ar8, Maximum Packetization Period : 60 , Transcoder: Not Required
    Codec : g729abr8, Maximum Packetization Period : 60 , Transcoder: Not Required
    Codec : g729r8, Maximum Packetization Period : 60 , Transcoder: Not Required
    Codec : g729br8, Maximum Packetization Period : 60 , Transcoder: Not Required
    sonnys#
    *************DEBUGS*******************
    sonnys#
    034798: Sep  4 19:12:50.182: //-1/00FA9B800F00/CCAPI/cc_api_display_ie_subfields:
       cc_api_call_setup_ind_common:
       cisco-username=Alvin Cruz
       ----- ccCallInfo IE subfields -----
       cisco-ani=3240
       cisco-anitype=0
       cisco-aniplan=0
       cisco-anipi=0
       cisco-anisi=1
       dest=4299
       cisco-desttype=0
       cisco-destplan=0
       cisco-rdie=FFFFFFFF
       cisco-rdn=
       cisco-rdntype=-1
       cisco-rdnplan=-1
       cisco-rdnpi=-1
       cisco-rdnsi=-1
       cisco-redirectreason=-1   fwd_final_type =0
       final_redirectNumber =
       hunt_group_timeout =0
    034799: Sep  4 19:12:50.186: //-1/00FA9B800F00/CCAPI/cc_api_call_setup_ind_common:
       Interface=0x8764AB74, Call Info(
       Calling Number=3240,(Calling Name=)(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed),
       Called Number=4299(TON=Unknown, NPI=Unknown),
       Calling Translated=FALSE, Subscriber Type Str=Unknown, FinalDestinationFlag=TRUE,
       Incoming Dial-peer=2003, Progress Indication=NULL(0), Calling IE Present=TRUE,
       Source Trkgrp Route Label=, Target Trkgrp Route Label=, CLID Transparent=FALSE), Call Id=2411
    034800: Sep  4 19:12:50.186: //-1/00FA9B800F00/CCAPI/ccCheckClipClir:
       In: Calling Number=3240(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed)
    034801: Sep  4 19:12:50.186: //-1/00FA9B800F00/CCAPI/ccCheckClipClir:
       Out: Calling Number=3240(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed)
    034802: Sep  4 19:12:50.186: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    034803: Sep  4 19:12:50.186: :cc_get_feature_vsa malloc success
    034804: Sep  4 19:12:50.186: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    034805: Sep  4 19:12:50.186:  cc_get_feature_vsa count is 3
    034806: Sep  4 19:12:50.186: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    034807: Sep  4 19:12:50.186: :FEATURE_VSA attributes are: feature_name:0,feature_time:2334987224,feature_id:2682
    034808: Sep  4 19:12:50.186: //2411/00FA9B800F00/CCAPI/cc_api_call_setup_ind_common:
       Set Up Event Sent;
       Call Info(Calling Number=3240(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed),
       Called Number=4299(TON=Unknown, NPI=Unknown))
    034809: Sep  4 19:12:50.186: //2411/00FA9B800F00/CCAPI/cc_process_call_setup_ind:
       Event=0x887F6700
    034810: Sep  4 19:12:50.186: //-1/xxxxxxxxxxxx/CCAPI/cc_setupind_match_search:
       Try with the demoted called number 4299
    034811: Sep  4 19:12:50.186: //2411/00FA9B800F00/CCAPI/ccCallSetContext:
       Context=0x8B2FAE84
    034812: Sep  4 19:12:50.186: //2411/00FA9B800F00/CCAPI/cc_process_call_setup_ind:
       >>>>CCAPI handed cid 2411 with tag 2003 to app "_ManagedAppProcess_Default"
    034813: Sep  4 19:12:50.190: //2411/00FA9B800F00/CCAPI/ccCallProceeding:
       Progress Indication=NULL(0)
    034814: Sep  4 19:12:50.190: //2411/00FA9B800F00/CCAPI/ccCallSetupRequest:
       Destination=, Calling IE Present=TRUE, Mode=0,
       Outgoing Dial-peer=2000, Params=0x8B2EF414, Progress Indication=NULL(0)
    034815: Sep  4 19:12:50.190: //2411/00FA9B800F00/CCAPI/ccCheckClipClir:
       In: Calling Number=3240(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed)
    034816: Sep  4 19:12:50.190: //2411/00FA9B800F00/CCAPI/ccCheckClipClir:
       Out: Calling Number=3240(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed)
    034817: Sep  4 19:12:50.194: //2411/00FA9B800F00/CCAPI/ccCallSetupRequest:
       Destination Pattern=4299, Called Number=4299, Digit Strip=FALSE
    034818: Sep  4 19:12:50.194: //2411/00FA9B800F00/CCAPI/ccCallSetupRequest:
       Calling Number=3240(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed),
       Called Number=4299(TON=Unknown, NPI=Unknown),
       Redirect Number=, Display Info=Alvin Cruz
       Account Number=Alvin Cruz, Final Destination Flag=TRUE,
       Guid=00FA9B80-AD52-6104-0F00-7202AC1064F7, Outgoing Dial-peer=2000
    034819: Sep  4 19:12:50.194: //2411/00FA9B800F00/CCAPI/cc_api_display_ie_subfields:
       ccCallSetupRequest:
       cisco-username=Alvin Cruz
       ----- ccCallInfo IE subfields -----
       cisco-ani=3240
       cisco-anitype=0
       cisco-aniplan=0
       cisco-anipi=0
       cisco-anisi=1
       dest=4299
       cisco-desttype=0
       cisco-destplan=0
       cisco-rdie=FFFFFFFF
       cisco-rdn=
       cisco-rdntype=-1
       cisco-rdnplan=-1
       cisco-rdnpi=-1
       cisco-rdnsi=-1
       cisco-redirectreason=-1   fwd_final_type =0
       final_redirectNumber =
       hunt_group_timeout =0
    034820: Sep  4 19:12:50.194: //2411/00FA9B800F00/CCAPI/ccIFCallSetupRequestPrivate:
       Interface=0x877DC764, Interface Type=3, Destination=, Mode=0x0,
       Call Params(Calling Number=3240,(Calling Name=Alvin Cruz)(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed),
       Called Number=4299(TON=Unknown, NPI=Unknown), Calling Translated=FALSE,
       Subscriber Type Str=Unknown, FinalDestinationFlag=TRUE, Outgoing Dial-peer=2000, Call Count On=FALSE,
       Source Trkgrp Route Label=, Target Trkgrp Route Label=, tg_label_flag=0, Application Call Id=)
    034821: Sep  4 19:12:50.194: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    034822: Sep  4 19:12:50.194: :cc_get_feature_vsa malloc success
    034823: Sep  4 19:12:50.194: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    034824: Sep  4 19:12:50.194:  cc_get_feature_vsa count is 4
    034825: Sep  4 19:12:50.194: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    034826: Sep  4 19:12:50.194: :FEATURE_VSA attributes are: feature_name:0,feature_time:2334986104,feature_id:2683
    034827: Sep  4 19:12:50.194: //2412/00FA9B800F00/CCAPI/ccIFCallSetupRequestPrivate:
       SPI Call Setup Request Is Success; Interface Type=3, FlowMode=1
    034828: Sep  4 19:12:50.194: //2412/00FA9B800F00/CCAPI/ccCallSetContext:
       Context=0x8B2EF3C4
    034829: Sep  4 19:12:50.194: //2411/00FA9B800F00/CCAPI/ccSaveDialpeerTag:
       Outgoing Dial-peer=2000
    034830: Sep  4 19:12:50.198: //2412/00FA9B800F00/CCAPI/cc_api_call_proceeding:
       Interface=0x877DC764, Progress Indication=NULL(0)
    034831: Sep  4 19:12:50.202: //2412/00FA9B800F00/SIP/Msg/ccsipDisplayMsg:
    Sent:
    INVITE sip:[email protected]:5060 SIP/2.0
    Via: SIP/2.0/UDP 10.1.10.2:5060;branch=z9hG4bK17C1321
    Remote-Party-ID: "Alvin Cruz" ;party=calling;screen=yes;privacy=off
    From: "Alvin Cruz" ;tag=1D2BA668-1AC4
    To:
    Date: Tue, 04 Sep 2012 19:12:50 GMT
    Call-ID: [email protected]
    Supported: 100rel,timer,resource-priority,replaces,sdp-anat
    Min-SE:  1800
    Cisco-Guid: 0016423808-2907857156-0251687426-2886755575
    User-Agent: Cisco-SIPGateway/IOS-12.x
    Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTER
    CSeq: 101 INVITE
    Max-Forwards: 70
    Timestamp: 1346785970
    Contact:
    Expires: 180
    Allow-Events: telephone-event
    Content-Length: 0
    034832: Sep  4 19:12:50.214: //2412/00FA9B800F00/SIP/Msg/ccsipDisplayMsg:
    Received:
    SIP/2.0 100 Trying
    Via: SIP/2.0/UDP 10.1.10.2:5060;branch=z9hG4bK17C1321
    To:
    From: "Alvin Cruz" ;tag=1D2BA668-1AC4
    Call-ID: [email protected]
    CSeq: 101 INVITE
    Content-Length: 0
    Timestamp: 1346785970
    034833: Sep  4 19:12:50.254: //2412/00FA9B800F00/SIP/Msg/ccsipDisplayMsg:
    Received:
    SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP 10.1.10.2:5060;branch=z9hG4bK17C1321
    To: ;tag=dsc1cb9c32
    From: "Alvin Cruz" ;tag=1D2BA668-1AC4
    Call-ID: [email protected]
    CSeq: 101 INVITE
    Content-Length: 0
    Contact:
    Allow: INVITE, BYE, CANCEL, ACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO
    Cisco-Gcid: [email protected]
    034834: Sep  4 19:12:50.254: //2412/00FA9B800F00/CCAPI/cc_api_call_alert:
       Interface=0x877DC764, Progress Indication=NULL(0), Signal Indication=SIGNAL RINGBACK(1)
    034835: Sep  4 19:12:50.258: //2412/00FA9B800F00/CCAPI/cc_api_call_alert:
       Call Entry(Retry Count=0, Responsed=TRUE)
    034836: Sep  4 19:12:50.258: //2411/00FA9B800F00/CCAPI/ccCallAlert:
       Progress Indication=NULL(0), Signal Indication=SIGNAL RINGBACK(1)
    034837: Sep  4 19:12:50.258: //2411/00FA9B800F00/CCAPI/ccCallAlert:
       Call Entry(Responsed=TRUE, Alert Sent=TRUE)
    034838: Sep  4 19:12:50.258: //2412/00FA9B800F00/CCAPI/cc_api_get_called_ccm_detected:
       CallInfo(ccm detected=0)
    034839: Sep  4 19:12:50.258: //2411/00FA9B800F00/CCAPI/ccCallNotify:
       Data Bitmask=0x7, Call Id=2411
    034840: Sep  4 19:12:50.258: //2412/00FA9B800F00/CCAPI/cc_api_get_called_ccm_detected:
       CallInfo(ccm detected=0)
    034841: Sep  4 19:12:50.262: //2411/00FA9B800F00/CCAPI/cc_api_get_delay_xport:
       CallInfo(delay xport=FALSE)
    034842: Sep  4 19:12:50.298: //2412/00FA9B800F00/SIP/Msg/ccsipDisplayMsg:
    Received:
    SIP/2.0 200 Ok
    Via: SIP/2.0/UDP 10.1.10.2:5060;branch=z9hG4bK17C1321
    To: ;tag=dsc1cb9c32
    From: "Alvin Cruz" ;tag=1D2BA668-1AC4
    Call-ID: [email protected]
    CSeq: 101 INVITE
    Content-Length: 184
    Contact:
    Content-Type: application/sdp
    Allow: INVITE, BYE, CANCEL, ACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO
    Cisco-Gcid: [email protected]
    v=0
    o=CUE 11733024 2 IN IP4 10.1.10.1
    s=SIP Call
    c=IN IP4 10.1.10.1
    t=0 0
    m=audio 21428 RTP/AVP 0 101
    a=rtpmap:0 PCMU/8000
    a=rtpmap:101 telephone-event/8000
    a=fmtp:101 0-15
    034843: Sep  4 19:12:50.298: //2412/00FA9B800F00/CCAPI/cc_api_event_indication:
       Event=91, Call Id=2412
    034844: Sep  4 19:12:50.298: //2412/00FA9B800F00/CCAPI/cc_api_event_indication:
       Event Is Sent To Conferenced SPI(s) Directly
    034845: Sep  4 19:12:50.298: //2412/00FA9B800F00/CCAPI/cc_api_caps_ind:
       Destination Interface=0x0, Destination Call Id=-1, Source Call Id=2412,
       Caps(Codec=0x1, Fax Rate=0x2, Vad=0x1,
       Modem=0x0, Codec Bytes=160, Signal Type=2)
    034846: Sep  4 19:12:50.298: //2412/00FA9B800F00/CCAPI/cc_api_caps_ind:
       Caps(Playout Mode=1, Playout Initial=60(ms), Playout Min=40(ms),
       Playout Max=1000(ms), Fax Nom=300(ms))
    034847: Sep  4 19:12:50.302: //2412/00FA9B800F00/CCAPI/cc_api_call_connected:
       Interface=0x877DC764, Data Bitmask=0x1, Progress Indication=NULL(0),
       Connection Handle=0
    034848: Sep  4 19:12:50.302: //2412/00FA9B800F00/CCAPI/cc_api_call_connected:
       Call Entry(Connected=TRUE, Responsed=TRUE, Retry Count=0)
    034849: Sep  4 19:12:50.302: //2411/00FA9B800F00/CCAPI/cc_api_call_disconnected:
       Cause Value=127, Interface=0x8764AB74, Call Id=2411
    034850: Sep  4 19:12:50.302: //2411/00FA9B800F00/CCAPI/cc_api_call_disconnected:
       Call Entry(Responsed=TRUE, Cause Value=127, Retry Count=0)
    034851: Sep  4 19:12:50.306: //2411/00FA9B800F00/CCAPI/ccConferenceCreate:
       (confID=0x8B3D6128, callID1=0x96B, gcid=0-0-0-0, tag=0x0)
    034852: Sep  4 19:12:50.306: //2412/00FA9B800F00/CCAPI/ccConferenceCreate:
       (confID=0x8B3D6128, callID2=0x96C, gcid=0-0-0-0, tag=0x0)
    034853: Sep  4 19:12:50.306: //2411/00FA9B800F00/CCAPI/ccConferenceCreate:
       Conference Id=0x8B3D6128, Call Id1=2411, Call Id2=2412, Tag=0x0
    034854: Sep  4 19:12:50.306: //2411/xxxxxxxxxxxx/CCAPI/cc_api_get_xcode_stream:
    034855: Sep  4 19:12:50.306: cc_api_get_xcode_stream : 4702
    034856: Sep  4 19:12:50.306: //2411/00FA9B800F00/CCAPI/cc_api_bridge_done:
       Conference Id=0x236, Source Interface=0x8764AB74, Source Call Id=2411,
       Destination Call Id=2412, Disposition=0x0, Tag=0x0
    034857: Sep  4 19:12:50.306: //2412/xxxxxxxxxxxx/CCAPI/cc_api_get_xcode_stream:
    034858: Sep  4 19:12:50.306: cc_api_get_xcode_stream : 4702
    034859: Sep  4 19:12:50.306: //2412/xxxxxxxxxxxx/CCAPI/cc_api_get_xcode_stream:
    034860: Sep  4 19:12:50.306: cc_api_get_xcode_stream : 4702
    034861: Sep  4 19:12:50.306: //2412/00FA9B800F00/CCAPI/cc_api_bridge_done:
       Conference Id=0x236, Source Interface=0x877DC764, Source Call Id=2412,
       Destination Call Id=2411, Disposition=0x0, Tag=0x0
    034862: Sep  4 19:12:50.306: //2411/00FA9B800F00/CCAPI/cc_generic_bridge_done:
       Conference Id=0x236, Source Interface=0x877DC764, Source Call Id=2412,
       Destination Call Id=2411, Disposition=0x0, Tag=0x0
    034863: Sep  4 19:12:50.310: //2411/00FA9B800F00/CCAPI/ccConferenceCreate:
       Call Entry(Conference Id=0x236, Destination Call Id=2412)
    034864: Sep  4 19:12:50.310: //2412/00FA9B800F00/CCAPI/ccConferenceCreate:
       Call Entry(Conference Id=0x236, Destination Call Id=2411)
    034865: Sep  4 19:12:50.310: //2411/00FA9B800F00/CCAPI/cc_process_notify_bridge_done:
       Conference Id=0x236, Call Id1=2411, Call Id2=2412
    034866: Sep  4 19:12:50.314: //2411/00FA9B800F00/CCAPI/ccConferenceDestroy:
       Conference Id=0x236, Tag=0x0
    034867: Sep  4 19:12:50.314: //2411/00FA9B800F00/CCAPI/cc_api_bridge_drop_done:
       Conference Id=0x236, Source Interface=0x8764AB74, Source Call Id=2411,
       Destination Call Id=2412, Disposition=0x0, Tag=0x0
    034868: Sep  4 19:12:50.314: //2412/00FA9B800F00/CCAPI/cc_api_bridge_drop_done:
       Conference Id=0x236, Source Interface=0x877DC764, Source Call Id=2412,
       Destination Call Id=2411, Disposition=0x0, Tag=0x0
    034869: Sep  4 19:12:50.314: //2411/00FA9B800F00/CCAPI/cc_generic_bridge_done:
       Conference Id=0x236, Source Interface=0x877DC764, Source Call Id=2412,
       Destination Call Id=2411, Disposition=0x0, Tag=0x0
    034870: Sep  4 19:12:50.314: //2412/00FA9B800F00/CCAPI/ccCallDisconnect:
       Cause Value=0, Tag=0x0, Call Entry(Previous Disconnect Cause=0, Disconnect Cause=0)
    034871: Sep  4 19:12:50.318: //2412/00FA9B800F00/CCAPI/ccCallDisconnect:
       Cause Value=0, Call Entry(Responsed=TRUE, Cause Value=0)
    034872: Sep  4 19:12:50.318: //2411/00FA9B800F00/CCAPI/ccCallDisconnect:
       Cause Value=127, Tag=0x0, Call Entry(Previous Disconnect Cause=0, Disconnect Cause=127)
    034873: Sep  4 19:12:50.318: //2411/00FA9B800F00/CCAPI/ccCallDisconnect:
       Cause Value=127, Call Entry(Responsed=TRUE, Cause Value=127)
    034874: Sep  4 19:12:50.318: //2411/00FA9B800F00/CCAPI/cc_api_get_transfer_info:
       Transfer Number Is Null
    034875: Sep  4 19:12:50.326: //2411/00FA9B800F00/CCAPI/cc_api_call_disconnect_done:
       Disposition=0, Interface=0x8764AB74, Tag=0x0, Call Id=2411,
       Call Entry(Disconnect Cause=127, Voice Class Cause Code=0, Retry Count=0)
    034876: Sep  4 19:12:50.326: //2411/00FA9B800F00/CCAPI/cc_api_call_disconnect_done:
       Call Disconnect Event Sent
    034877: Sep  4 19:12:50.326: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    034878: Sep  4 19:12:50.326: :cc_free_feature_vsa freeing 8B2D13D0
    034879: Sep  4 19:12:50.326: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    034880: Sep  4 19:12:50.326:  vsacount in free is 3
    034881: Sep  4 19:12:50.326: //2412/00FA9B800F00/SIP/Msg/ccsipDisplayMsg:
    Sent:
    ACK sip:[email protected]:5060;transport=udp SIP/2.0
    Via: SIP/2.0/UDP 10.1.10.2:5060;branch=z9hG4bK17D1502
    From: "Alvin Cruz" ;tag=1D2BA668-1AC4
    To: ;tag=dsc1cb9c32
    Date: Tue, 04 Sep 2012 19:12:50 GMT
    Call-ID: [email protected]
    Max-Forwards: 70
    CSeq: 101 ACK
    Allow-Events: telephone-event
    Reason: Q.850;cause=0
    Content-Length: 0
    034882: Sep  4 19:12:50.330: //2412/00FA9B800F00/SIP/Msg/ccsipDisplayMsg:
    Sent:
    BYE sip:[email protected]:5060;transport=udp SIP/2.0
    Via: SIP/2.0/UDP 10.1.10.2:5060;branch=z9hG4bK17E1303
    From: "Alvin Cruz" ;tag=1D2BA668-1AC4
    To: ;tag=dsc1cb9c32
    Date: Tue, 04 Sep 2012 19:12:50 GMT
    Call-ID: [email protected]
    User-Agent: Cisco-SIPGateway/IOS-12.x
    Max-Forwards: 70
    Timestamp: 1346785970
    CSeq: 102 BYE
    P-RTP-Stat: PS=0,OS=0,PR=0,OR=0,PL=0,JI=0,LA=0,DU=0
    Content-Length: 0
    034883: Sep  4 19:12:50.334: //2412/00FA9B800F00/SIP/Msg/ccsipDisplayMsg:
    Received:
    SIP/2.0 200 Ok
    Via: SIP/2.0/UDP 10.1.10.2:5060;branch=z9hG4bK17E1303
    To: ;tag=dsc1cb9c32
    From: "Alvin Cruz" ;tag=1D2BA668-1AC4
    Call-ID: [email protected]
    CSeq: 102 BYE
    Content-Length: 0
    034884: Sep  4 19:12:50.338: //2412/00FA9B800F00/CCAPI/cc_api_call_disconnect_done:
       Disposition=0, Interface=0x877DC764, Tag=0x0, Call Id=2412,
       Call Entry(Disconnect Cause=0, Voice Class Cause Code=0, Retry Count=0)
    034885: Sep  4 19:12:50.338: //2412/00FA9B800F00/CCAPI/cc_api_call_disconnect_done:
       Call Disconnect Event Sent
    034886: Sep  4 19:12:50.338: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    034887: Sep  4 19:12:50.338: :cc_free_feature_vsa freeing 8B2D0F70
    034888: Sep  4 19:12:50.338: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    034889: Sep  4 19:12:50.338:  vsacount in free is 2
    sonnys#

  • "An error occured while working on the Data Model in the workbook" on some workbooks published to Power BI site

    Hello,
    I am using the Power BI for Office 365, and I have published several Excel 2013 workbooks having Power Pivot Data Models.
    I have a problem on some of the workbooks, once a slicer is selected, I get the error: "An error occurred while working on the Data Model in the workbook" and the slicers do not affect the charts.
    Some workbooks work perfectly fine. I am using the same user for all workbooks when creating and publishing. I tried with small workbooks less than < 10 MB size and larger workbooks > 10 MB. There is no rule, some workbooks larger than 10 MB work perfectly
    with the slicers effecting the charts, and some don't. Similarly for smaller size.
    Any ideas of how I can debug the cause of the issue? 
    Appreciate any feedback, 
    Thanks,
    Grace

    Hi Grace,
    I assume that the experience in the Excel client is working fine, right?
    Are you getting a correlation id with the error?
    Please send us a bit more information / samples to reproduce over email to
    this address.
    thanks,
    Guy
    GALROY

  • I have a macbook and it is a dual boot system, I would like to be able to see the mac side of the system on a larger monitor.  I can hook to a hdmi cable and see the pc side, but not the mac side, any suggestions?

    I have a macbook that I bought second hand.  The mac has a dual boot system with bootcamp on one side and snow leopard on the other.  I would like to be able to hook to a larger hdmi monitor so that in both systems I could see better since on the leopard side the computer has PS4.  I have purchased the dvi to HDMI accessory and purchased the HDMI to DVI cable, and can see fine on the bootcamp side, but nothing on the leopard side.  Could somebody help me with configuring things so that it will see both side? 
    Also on a minor note, I need to purchase a new battery for this item and don't know which one to purchase.  Any help would be greatly appreciated, especially with the display/monitor issue.
    Thanks Sue
    ps sorry but the operating system is OS X

    When you try to use the Mac side on your external monitor do you get a blank screen or do you see the aurora background?
    It would help to know which one of the 9 different models of MacBook you have. To see which model you have go to the Apple in the upper left corner and select About This Mac, then click on More Info. When System Profiler comes up check the Model Identifier and post it back here.

  • My Macbook Pro has a black screen when running in Bootcamp Windows 7. Since I updated the mac side my windows side now starts up with completely black screen - no prompt, nothing, Cap keys still light up as does mouse and DVD drive seems to run.

    My Macbook Pro has a black screen when running in Bootcamp Windows 7. Since I updated the mac side my windows side now starts up with completely black screen - no prompt, nothing, Cap keys still light up as does mouse and DVD drive seems to run.
    Will not show up in safe mode, will not show when started from Windows 7 DVD.
    I suspect the Mac update wiped out my PC video drivers but can not think of a way to re-install?
    Can see the PC volume from Mac side with files.
    I've looked at all the online solutions so far and have tried most of them without success. Please help!
    Specs:
    2009 Macbook Pro, 3.06 GHz Intel 2 core, Max 10.6.8.
      Model Name:          MacBook Pro
      Model Identifier:          MacBookPro5,2
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          3.06 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          6 MB
      Memory:          4 GB
      Bus Speed:          1.07 GHz
      Boot ROM Version:          MBP52.008E.B05
      SMC Version (system):          1.42f4
      Serial Number (system):          7302300GANE
      Hardware UUID:          B2D4B4B4-CD92-5C7A-BDC2-527D30DD8DF3
      Sudden Motion Sensor:
      State:          Enabled

    EDIT: RESOLVED
    For anyone else who finds their way here like I did, this link did it for me: https://forums.geforce.com/default/topic/527599/windows-8-issues-solved-please-r ead-if-you-39-re-having-black-screen-and-or-flickering-/
    Specifically, the posts by Dunsany and valkyr did the trick.  I booted in safe mode, uninstalled and deleted the Nvidia driver, disabled automatic driver installation, and restarted normally.  I then manually downloaded and installed the previous Nvidia driver for my graphics card (which at the time of this writing was 335.23, rather than the latest which was 337.88), and everything is now bueno!
    Two hiccoughs along the way: First, when I tried to uninstall the Nvidia driver the first time, when I restarted I got the login screen (which was a good sign), but it quickly went black again.  I powered down, restarted in safe mode again, and repeated the uninstallation process, and it worked the second time.  Second, when I started the manual install of the 335.23 driver, the computer played a sound similar to the one for disconnecting a USB device, and the screen went black.  I'd seen a lot about trying to increase the brightness (though it hadn't worked up to this point; but if you haven't tried it yet, might as well); I tried it, and it worked! So far I'm back up and running. [/fingers crossed]
    Hope this helps someone else!

  • I purchased a seagate 5T hard drive that I would like to partition and have time machine on one side and drag and drop on the other side. Is this possible, and if so how?

    I purchased a Seagate 5T external harddrive which stated it was for both Mac and PC.
    I want to partition the drive so I can have a partition for time machine and a partition for drag and drop.
    My Mac book pro 17inch model has parallels. I would like a partition for time machine for the mac side and a partition for the PC side as well and a third partition for just saving work files so I don't clog up my laptop.  IS this possible? DrMAV

    yes it is possible using 'disk utility'. format the time machine backup as Mac OS Extended( journaled). The windows partition can use FAT32.

  • My Macbook Pro Retina's USB port on the right side not working at all

    Dear all,
    I received my macbook pro 15inch with retina display a week ago, but not until today had I got the chance to use the USB port on the right side, only to find out that it is not connecting to anything at all. I have tried to use my iPhone 4 and iPad 3 with two different cables, my USB thumb drive, and my Blackberry 9900, none of them are charging nor shown in iTunes/Finder. All of above works on the left and on other windows machines too.
    I'm also not able to charge my Blackberry with the usb port on the left side, thought it would pop up a message saying "charging not supported" on the phone.
    For you information, I have applied both updates including the one released few days ago. I have also tried to reset the PRAM. Also, I have migrated from my old late 2008 13inch unibody Macbook using Migration Assistant, not sure if this would affect anything.
    I'm aware that there have been reports and discussions regarding the USB port not been able to run devices on 3.0 speed, but I wonder if anyone else have the same problem with me, where the port simply not connecting to anything at all?

    I also have a problem with the USB port on the right side of my Retina MBP.  The USB3.0 port on the left side works fine, even with high speed external SSD enclosures, like the OWC Mercury Extreme Pro 6G which enables me to copy large files at a sustained rate of 160-170MB/sec.  Wow USB3.0 and the Mercury SSD is a FAAAAST combination connected to the Retina MBP.
    However, like the forum entries about the USB3.0 ports in general on the new Retina MBP, the USB3.0 port on the RIGHT side is plagued with dropping intermittently, disconnecting my external hard drives while copying large files AS WELL AS disconnecting while just sitting there connected to an external hard drive and doing nothing.
    Therefore, since I don't feel like returning my Retina MBP and waiting weeks for a replacement, I have chosen to only use the left side USB3.0 port for now.
    I have my suspicions about why the right side USB port might be more problematic than the left side one.  I found this older post on the internet about how "Not all USB ports are created equal on MacBooks..." that talks about how on older models of MacBooks one of the USB ports shares a USB hub with multiple other devices like the iSight camera etc. therefore making it less tolerant of heavy traffic or something like that.  (http://www.wired.com/gadgetlab/2008/05/the-macbook-all/)
    Therefore, I wonder if the right side USB port is sharing a USB internal hub where-as the left side one is more 'dedicated' and therefore in my case able to handle the high speed transfers/traffic I am throwing at it with my external SSDs.
    I have also read that USB3.0 in general, on non-Macs, has had trouble for years.  For instance, some forum entries on Apple Support Communities and other non-Apple forums has made mention that 'they' are not surprised at the problems encountered on USB3.0 external hard drives connected to the Retina MBP because Windows laptops have had a lot of flakey problems with USB3.0 for 'years'. 
    Also, I have recently purchased a "Buffalo" external Thunderbolt 1TB drive from OWC and have been doing Clones onto that drive for several weeks.  I use SuperDuper to clone >600GB of data on my 768GB Retina MBP several times a week.  And, I have (knock on wood) not had any problems with the stability of my externally connected Thunderbolt drive.
    So, in my case, I am racking it up to high-speed stresses on the USB3.0 ports at least in part...and perhaps the possibility that the LEFT side USB port on the Retina MBP is more dependable and/or a more dedicated USB port than the right side one.
    This doesn't really solve your problem, but it may at least help you feel like you are not alone.

Maybe you are looking for

  • MPEG 2?

    Just purchased CS6 through the Creative Cloud today, and everything is great except for one issue with the AME. For some reason the media encoder has no capability to open to export MPEG 2 files. I have two systems and this is true of both of them. P

  • Dates receiving email has changed from today's date to thirty years ago

    Hello, starting receiving emails from a government department yesterday (11/12/2014) and these are dated 1/01/1970. Can anyone help me with this? All other emails from various other sources are dated correctly.

  • Where does a new contact get stored when Exchange and iCloud are configured?

    I have Contact (and mail and calendar) configured for iCloud and Exchange. When I add a new contact, how do I determin where it is stored? When I click Add (via the + or Command N) I get Which account will hold the new contact? Thank you

  • Unblock iphone 5

    Hello everyone, how do I unblock my iphone 5 so I can use it in a different country? Thanks for the help!!

  • Event ID 36888 - Schannel - A fatal alert was generated and sent to the remote endpoint.

    Exchange 2013:  2 x multi-role in one DAG - on-premise Performing remote mailbox migration using internet (*non-exchange web-based  tool*), to ship data from cloud Ex2010 server to Ex013 on-premise. Have multiple failures when doing the mailbox data