XCode CC2014 value summary debugger problems

In previous versions of XCode I have used data formatters to see the values of PMString and the likes. But in XCode5 developing for CC2014, XCode reports the data formatter as valid, but for the individual variables reports "Summary Unavailable".
Has anyone a solution to this problem ?

No. Since we still support CS5 & CS6 my solution is to develop in XCode3 and then compile in XCode5 to get plug-ins for CC2014. This solves the problem for now, but I would very much like to figure why it does not work.

Similar Messages

  • Value-added tax problem about free goods!

    Hi All,
    I've got a value-added tax problem.....
    Can anyone can come out with a solution.
    Here is the Business Scenario....
    One product company offen give some free goods to its customer company for test or probation. In pricing, the free goods have no income so that the value-added tax is zero, but by the law, the product company must pay the VAT(value-added tax) base on the cost of the free goods.
    How to implement this in SD R/3 Scenario...
    Can any one of you suggest me a solution for this plz..
    Regards,
    wang-yuzhen.

    Hi,
    You need to bring in a consition type "VPRS" in your pricing procedure. The VAT will be determined based on this condition type. VPRS is a statistical condition type. That means eventhough it appears with a value it will potentially not be displayed in your invoice. The invoice value will be 0 and there will be no account posting for this condition type

  • WIP Value Summary

    Hello
    Could someone please explain what 'This Level' and 'Previous Level' mean in WIP Value Summary screen.
    Path to this screen
    WIP > WIP Value summary > select the 'Level' Tab
    Also what is cost relieved and cost incurred.
    Thanks,
    Deva

    Hi,
    This is related to costing level, normally in mfg there is first level of routing and there costing for sub assembly which previous level system do the differentiate.
    Cost Incurred is actual cost occured for job and releive from estimated cost as per predefine BOM & routing other goes as variances
    regards
    Arshad

  • Audigy Value Delay Recording Problem

    Hi, I just bought a new audigy value soundblaster. Here is my problem almost similar to the others here but my soundcard is just lower than them - audigy value:
    For example, I will record one track, and then record a second track, playing along to exactally what I hear. When the second track mixes down, there is an offset between the two tracks on the order of two or three tenths of a second. This offset produces a noticible doubling effect, and requires me to go in and move the audio track around so that it plays properly.
    I tried it with Cakewalk and Adobe audition. What is the best khz of sound to save a recording to? On my ASIO setting, it is set to Audition Windows Driver, which it's speed is set to 2048, the lowest i can get is at 512. When I tried 512, it's doing good except that there are some 1 sec pause every 10 seconds on the track.

    You need set the ASIO latency through CT ASIO panel and not through Audition settings. ASIO Panel has only settings as milliseconds so if you select 10 or lower value your delay problems should be fixed.
    jutapa

  • Debugger Problems with both 2.4 and 3.0

    I've been developing a Cocoa app for Tiger using 2.4.x for the last year or so and have frequently been having problems with the debugger. Breakpoints are triggered correctly but the debugger will hang, for 10-20 seconds when stepping through the code, complaining of time-outs.
    Thankfully, this didn't happen during every debug run and I chalked it up to Xcode's debugger being slightly flakey. It was irritating, but I would simply restart the debugger and most times I could then debug far enough before the debugger started hanging to get the information I needed.
    In addition, variable display was frequently blatantly incorrect, often showing "out of scope" for variables which are guaranteed to be valid and in scope.
    I upgraded to Leopard last week and immediately installed Xcode 3.
    Debugger reliability has gone from bad to worse. Inline "in-Editor" debugging doesn't work at all. Never. It seems to be completely broken. The current position indicator never moves from the line with the triggered breakpoint.
    I have had more success with the traditional debugger set-up, but the reliability is much, much worse than with 2.4 under Tiger. It's so bad that I am faced with going back to 2.4 to do any serious debugging, which is something I really don't want to have to do...
    The behavior under 3.0 is as follows: The breakpoints trigger reliably, but single-stepping sometimes doesn't work at all. Instead of stepping into/over method calls, I just land in the assembly for the symbol:
    asm dyldstub_objcmsgSend
    Stepping in, over or out does nothing. The debugger never gets onto/into the line/method I want to step to. Debugging seems to be fine in certain modules/files, and refuses to work at all in others. All breakpoints are in application code (i.e. not in frameworks or dynamic libraries).
    The variables view is also frequently plagued by incorrect "out of scope" or "invalid" values.
    This is driving me absolutely nuts. A reliable debugger is the absolute minimum I need to get anything done and Xcode 3's debugger has proven to be hugely frustrating so far.
    Here's some more information about my development environment:
    1) I'm running Xcode 3 general release on a GM Leopard installation. I did a clean Leopard install. I am running on a 2GHz Core Duo MacBook Pro.
    2) My Xcode project was originally created by 2.4 and 3.0 was able to open it OK.
    3) I am building a Cocoa app which is dependent on 4 custom Objective C frameworks. The 4 framework projects are part of the application's Xcode project.
    4) The xcodeproj files are 2.4 format allowing me to develop/debug under Tiger with 2.4 if necessary. I am targeting the 10.4u SDK.
    5) The application is heavily multi-threaded
    Any thanks in getting the Xcode 3 debugger working would be vastly appreciated.
    Thanks,
    Simon
    Message was edited by: siwi

    siwi wrote:
    There goes that idea. Your configuration is almost identical to mine. I think we may be the only people using Objective-C++.
    If the behavior I am seeing is just 'par for the course' with GDB then I should be able to verify this by using GDB directly. Does anyone have any pointers on debugging a Cocoa app with GDB (without the Xcode front-end)?
    You can always display the Console and type GDB commands in by hand.
    If this is indeed a GDB issue (and therefore is endemic to Xcode) then I would be very surprised/disappointed. How could anybody do any serious development on Linux/OS X with this stuff?
    You indicated that you are familiar with Visual Studio. That must mean you are used to development on a PC. MacOS X is still (and now, officially) in the UNIX camp. Yes, GDB is a joke compared to Visual Studio or Codewarrior (RIP). But it isn't that bad for a free UNIX debugger. The Sun Forte debugger is a little better, but not a great deal. You can debug with it (GDB) but you'll have to get used to it. But on UNIX, developers just don't rely on debuggers as much as PC developers. It is a different culture. They also almost never use anything but C and never write multithreaded code. If you stick to single threaded C code, you'll find that Xcode and GDB work just fine. On a PC, I'm more apt to go right to the debugger. On UNIX, I'll see if I can fix it with printf/NSLog first. The debugger is more of a last resort.
    Plus, this is Xcode 3.0, note the ".0". I've only played with it for a few minutes now, but I can tell it still needs some work. I'm sure Apple knows that too. We have to get used to it too. It seems quite a bit different.
    If anyone from Apple's tools division/group is reading this thread then I would really appreciate some guidance on this...
    They aren't. You might try one of the developer mailing lists. I have gotten good information from the mailing lists and had people send me vicious e-mails because I didn't agree with them. Your mileage may vary.

  • Summary Coloumn Problem

    I developed PO report, i created one summary column out side the group. I have place one field in under Group frame which it shows PO Grand Total, now user want at same place they dont move poistion, they would like to see PO indiviual Total, that means each po total instead of PO Grand Total.
    If you run report for PO Range: PO From : 101 and PO From :102
    PO:101
    Item Price
    ABC 1.1
    DEF 2.1
    PO:102
    Item Price
    ADE 1.5
    DEK 2.5
    PO TOTAL: 7.2(Right now it will show like these)
    Now they need
    PO No:101
    Item Price
    ABC 1.1
    DEF 2.1
    PO Total : 3.2
    PO:102
    Item Price
    ADE 1.5
    DEK 2.5
    PO Total : 4.0
    I can solve that problem easy way, but problem i dont want move any repating frames or any group frame, bcoz that total layout print on pre print stationary. With out chaning any thing instead PO Grand Total, can i show PO Indiviual Total(please remember po total field is in group frame, not in reapting frame).
    Your early suggestion will aprreciate.
    Thanks

    To do this without any additional repeating frame will require that you calculate the value in format triggers and store the result in a PL/SQL package variable.
    You can then use an srw.set_field_num(0, <plsql package variable>) to insert the PL/SQL package variable value into the total field in your layout.
    The main problems with this approach are the difficulty in calculating, re-setting the value and ensuring the value is correct.
    - Since the format trigger may execute more than once for any specific instance of the object, you also need something like a count column to make sure you only add the value once.
    - You need to re-set the package variable on each change in the PO repeating frame (or create an array so that you have all values for all PO's).

  • SQL Developer version 1.0.0.15.57 Debugger problem

    I use SQL Developer create a package and debug the pl/sql code. I try to use SUBSTR function as below:
    temp VARCHAR2(32000);
    temp:= p_string; --parameter input
    temp := SUBSTR(temp, 2, LENGTH(temp));
    In debugger Watches panel LENGTH(temp) Value display ? no real value.
    Please help.
    Ted

    Hi Ted,
    I agree function calls should be evaluated. You can log an enhancement request on SQL Developer Exchange (and you'll get my vote).
    For the time being, use another temporary variable to hold the evaluation of the functions calls:
    temp2 := LENGTH(temp);
    temp := SUBSTR(temp, 2, temp2);
    Then watch temp2 instead LENGTH(temp).
    As for your specific problem, if you would have RTFM:
    - The third parameter of SUBSTR is optional: if you omit, all remaining characters will be returned. So no need for the SUBSTR here!
    - The third parameter of SUBSTR means length, not ending position. So temp := SUBSTR(temp, 2, LENGTH(temp)); will always fail, since you are 2 positions out of bounds.
    Regards,
    K.

  • Flex debugger problem?

    Guys.. i have some problem with flex debugger...
    well...
    i´m trying to debug my application.. bug something doesnt seens right...
    on flex build 3... i´m chossing to debug my main aplication...
    everything goes well... my application runs on INTERNET EXPLORER.. so i go to the flex builder ... and click on FLEX DEBUGGING...
    in the DEBUG PANNEL.. appers to me that i´m connected...
    but.. in the variables... breakpoints and expressions.. nothing appears!
    see the image:
    someone can help me?
    cya

    The debugging view allows you to set breakpoints, watch variables, etc.
    You need to set the breakpoints in functions where you want the code to stop.
    And watch variables may have no value unless you are currently stopped by a breakpoint, and they may have no value if the variable has no valid value at that point in the code, as variables go in and out of existance and scope.
    If this post answers your question of helps, please mark it as such.

  • Netbeans 6.0 debugger problem

    The debugger passes through the breakpoint as if there wasn't one. It's probably some kind of option because one of my colleagues, who uses the same version, has no problems with the debugger. Any ideas?

    You have to have you breakpoint on a line of executable, reachable code. If it's on a comment or on code that is not in the execution path--conditional that will be skipped due to the test value, then you will not be able to reach it.
    Other than that, post a specific example. If it's a problem with your debugger, then it would also be more appropriate to post in the forum for that IDE/Debugger.
    if(false){
      //none of these lines will ever be reached by your debugger
      System.out.println("Hello, this can never be reached");
    }

  • Jdeveloper debugger problem

    Hi,
    I have JDeveloper 9.0.3.1 and jdk1.4 and I am having problems while debugging. Does the Jdev debugger execute methods ?
    ex:
    public class TesteDebug
    public TesteDebug()
    System.out.println("Value: "+getValue());
    public String getValue()
    return "3";
    public static void main(String[] args)
    TesteDebug testeDebug = new TesteDebug();
    when i put a breakpoint on line "System.out.pri..." and select just the method call "getValue()", nothing works: inspect, watch, ..... Any ideas ?
    Thank you.
    Albert

    Hi,
    I have JDeveloper 9.0.3.1 and jdk1.4 and I am having problems while debugging. Does the Jdev debugger execute methods ?
    ex:
    public class TesteDebug
    public TesteDebug()
    System.out.println("Value: "+getValue());
    public String getValue()
    return "3";
    public static void main(String[] args)
    TesteDebug testeDebug = new TesteDebug();
    when i put a breakpoint on line "System.out.pri..." and select just the method call "getValue()", nothing works: inspect, watch, ..... Any ideas ?
    Thank you.
    Albert

  • Interactively changing values to table problem: indicator and control table, and why it does not work after a while...?

    I have been producing a VI that loads a set of data and displays it in a table: A table control is initialised with an empty variable, the loaded data takes the place of the variable and fills the table, while some headers are added. That table feeds an intensity graph to give a pictorial impression of the data.
    With this scheme, a user can change any value of the table, and the changes are interactively reflected on the graph.
    Problem: after few saving of the VI, the access to the table doesn't work anymore. It is the same with all my numerical controls in the VI where it should be possible to enter a value.
    If anybody has an idea on the potential
    causes of these problem, I would be really grateful as it is very useful...when it works !
    Regards,
    Elie Allouis

    I can not image what is causing the error. Would you be willing to post some code to see if we can reproduce the problem?
    Jeremy7

  • Blog summary widget problem

    I am getting reports that some users cannot load my iWeb '08 site. I have looked into it and not everyone is affected the same. In safari it's fine but in firefox on a mac it only loads a partial page with a js error. On a windows pc it's a crap-shoot as to if it will load or not. I can get my pc to load it with ie 7 but others cannot. Searching the forums and google I can see that I am not the only one with this problem.
    It seems that the "Blog Summary Widget" is the error. I have tried everything including File / Publish All
    How can I fix this?
    http://web.mac.com/mdavison1/Studebaker_Road/Home/Home.html
    or
    www.studebakerroad.com

    Same problem
    I detect tha the Tools for webmaster of Google generate errors 404 (not found) to all the references to files locates into the Widget subdirectory:
    something like ..
    http://www.mydomain.es/mysite/Scripts/Widgets/BlogSummary 404 (No se ha encontrado)
    http://www.mydomain.es/mysite/Scripts/Widgets/BlogSummary/ 404 (No se ha encontrado)
    http://www.mydomain.es/mysite/Scripts/Widgets/Comments 404 (No se ha encontrado)
    http://www.mydomain.es/mysite/Scripts/Widgets/Comments/ 404 (No se ha encontrado)
    exploring the files with terminal these file are in the directory.
    is some path variable into the code generated that is not composed in the right way ?

  • Debugger problem while activating Datasource in BW 7.4 Sysytem

    Hi All.
    I am getting very strange problem on BI 7.4. Whenever I try to activate datasource, I get the debugger launched up in a separate window. I have to manually Step Over the code (F6) each time for about 2-3 minutes. Then on the original window, I get message that Datasource is activated.
    However the second debug window is still open with an hourglass. I have to manually STOP TRANSACTION and close that window.
    If I dont Step Over the code then my datasource does not get activated so I have to do this step.
    What could be causing this frustrating problem. Is there a way to disable this debugger..

    Hi Ram,
    Thanks for your inputs.
    still my problem not resolved. Not only data source even if I tried to activate transformation, DTP which installed from BI content & custom DTP also  getting same problem.
    This is not upgraded one, as freshly installed BW 7.4 and couple of hours before only established RFC connection b/w ECC & BW dev systems.
    As per this version all BI content components were installed by basis team.

  • Value Mapping causing problems in Adapter Engine?

    Hello, I was hoping someone might be able to help me with a problem we are having in our XI system.  I created a new value mapping group that has N:1 values. There are about 80 different values that I convert to 1 value.  I have been using 1:1 value mappings successfully and I tested out the N:1 scenario just fine also.  However, at the time I activated this new value mapping group, all of my resulting messages in the adapter engine are being held in a status of 'To Be Delivered'.  There are no errors in the RWB and the BASIS admin cannot find any errors in the J2EE logs.  Does any one have any ideas on possible causes for this condition?

    This problem has been corrected by a restart of the J2EE engine.  Still not certain what the root cause was, but this is the second time a restart has fixed a problem coinciding with a value mapping group object activation.

  • Neb ABAP Debugger Problem

    Hi Friends,
    I am working on SAP GUI 710 & ECC 6. When I am debugging, new abap debugger is opening and I can do analysis normally. When we finish the debugging and want to exit, the debugging session is not closing and i get the following message on top of beugging window "ABAP Debugger Control Session 3 (Exclisive)". I want to know if there is any settings to be done to aviod this.
    Thanks.............
    Regards,
    Chandu

    Hi Prabhakar,
    What actually you are quoting as a problem is standard behavior of ECC 6 New debugger. As you open first debugger session it always display in header "ABAP Debugger Control Session #  (Exclusive/ Not exclusive)' and this debugger will be separately closed when the full program will be executed and if you are in mid of execution then this debugger will not be closed. I simulated the scenario for a print program ad checked the same.
    Please re vert back in case of still problem persist.
    Thanks,
    Anshul

Maybe you are looking for

  • Using ADF in E-Business Suite

    Hello We are trying to develop an ADF page which can be accessible through Oracle E-Business Suite (EBS) and user should be able to achieve navigation between EBS and ADF both ways. I have come across following document on Oracle support which mentio

  • Adobe LiveCycle - Repeating Tables on a dynamic form - issue!!!! Please help

    Hi there I have a dynamic licensed form that 3 user groups will be using. User Group A - completes one section, locks the form and sends to User Group B User Group B - completes rest of form, form is locked unbeknownst to user group B, they send it b

  • Why won't my sisters computer load my iTunes in homeshare?

    my sisters itunes cant load my itunes music despite me being able to access hers. help please.

  • Soundblaster 5.1 prob

    I cannot get sound from all fi've speakers. Speaker test works on left/right front and center and sub. Bottom left and right have no sound. I have reinstalled twice and run diagnostic test which did on the second test show MIDI failed. I have everyth

  • Adding KeyEvents to cardLayout tabs

    I am upgrading an app that used a cardLayout to create tab functionality. I am trying to add a Tab-Key or Arrow-key functionality to this cardLayout that would allow for me to shift thru the tabs, the tabs are drawn tabs icons, I use a mouseListener