Debugging code written in assembly with Xcode

I have a program written in C calling a function written in assembly. When I run the debugger, I can step through the C code just fine, but then when it reaches the function, it won't step through the assembly code. It'll just go on to the next statement. In the assembly viewer I see:
call 0x1eda <isgreater>
and then the rest of the main function after that. How do I view the function isgreater and step through it?
My professor uses the Eclipse IDE and it can do it just fine. I'd rather use the Xcode IDE as Eclipse is very buggy.
Thanks!
Kyle.

Hi Kyle,
not sure if you've solved this already, but if you set this:
Run > Debugger Display > Disassembly Only
then it works... it doesn't work if you have 'Source and Disassembly' set for some strange reason.
-chris

Similar Messages

  • Can't debug JavaScript written under RequireJS with built-in Debugger

    Hi! I'm new to Firefox and I'm developing a website using this browser.
    The JavaScript code written in our pages conform to the RequireJS standards. When I want to debug the code, I find that the new built-in debugger of Firefox can't enter the functions correctly.
    For example, if I put a break point inside a function that is defined in a "define" function, the debugger only stops at the last line of the "define" function, and shows the information of all the global variables.
    I really like the look and feel of the debugger, but it seems not working correctly.
    See the picture of the first reply.

    You can try out the debugger in the latest Firefox Nightly release to see if it already works better in that version as the devtools are still being developed.
    *http://nightly.mozilla.org/
    *http://www.mozilla.org/en-US/firefox/channel/
    You can install multiple Firefox versions via a custom install in different installation folders and keep the current release version installed to be able to fallback to the release version in cases when the Nightly or Aurora build aren't working properly.
    Do a custom install of each version in a different program folder and use the Profile Manager to create a new profile for this version, so make sure not to start Firefox after the installation has finished.
    * https://support.mozilla.com/kb/Custom+installation+of+Firefox+on+Windows
    * http://releases.mozilla.org/pub/mozilla.org/firefox/releases/
    Create a desktop shortcut with -P "profile" appended to the target to launch each Firefox version with its own profile.<br />
    Note that the Aurora (28.0a2) and Nightly (29.0a1) build are updated daily and can be unstable being alpha releases.
    See these mozillaZine KB articles for information:
    * http://kb.mozillazine.org/Testing_pre-release_versions
    * http://kb.mozillazine.org/Profile_Manager#Creating_a_new_profile
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile

  • How to Debug code written in Include RMCSUZ10?

    In our Sales extractor 2LIS_11_VAITM we need to get information from custom Partner Functions whichwere added by the R/3 team.
    To do this we have used the SAP provided include:RMCSUZ10
    I have changed the Structure: MCPARTNER to include new fields PKUYZ, PKUYX, PNA1YZ.
    The Code in the include is as follows:
    WHEN 'YZ' .                               
        MOVE UPE_VBPA-ADRNR TO UPE_PARTNER-PKUYZ.
        MOVE UPE_VBPA-NAME1 TO UPE_PARTNER-PNA1YZ.
        WHEN 'YX' .                               
        MOVE UPE_VBPA-ADRNR TO UPE_PARTNER-PKUYX.
        MOVE UPE_VBPA-NAME1 TO UPE_PARTNER-PNA1YZ.
    These additional fields are available in the LO Pool now and I have pulled them into the extractor.
    Strangely though, this code only works in the Delta extraction mode. If we do a setup in R3 and pull the data, the fields remain blank. Does anyone have a similar experience with using this exit?
    Also I am able to debug this code only while doing setup in R3.
    Is there any other way to debug this code and how can we make it work in Full mode too?
    Thanks in advance.
    AG

    Hi AG.
    Regarding the debugging, you could do it the hard and dirty way and write an endless loop at the beginning of your logic and then enter debug mode from the process monitor (in development only of course and remember to delete it again!).
    Regards
    Jacob
    Edited by: Jacob Jansen on Dec 29, 2011 10:26 PM

  • Eclipse - debug step is not synchronise with source code.

    Hi,
    I have an web application witch run on tomcat, when Idebug the application, the debug steps are not synchronize with the source code. Same thing when I change the code , after making the jar file and putting it in the WEB-INF/lib of the web application, the modifications didn't take place. It seem that the old code always remains. I looked at the compile class in the jar file and the modifications have been taken in to account.
    what can cause this kind of behavior ? I relaunch tomcat many times without succes ?
    any help ? thanks a lot.

    Can it be the case that you compile your JAR optimized, i.e. without debug information? Then your classes are also without debug information.
    This sounds very likely as a refresh problem. Be sure that both source files in Eclipse and class files in Tomcat have the same version (e.g. with simple system.out).

  • IS Test stand support Code written in VC++ ?..IF SO How to integrate with Test Stand

    IS Test stand support Code written in VC++ ?..IF SO How to integrate with Test Stand

    If you have LabWIndows-CVI, you may also look at these threads: (may be useful for TestStand)
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=5065000000080000003C1F0000&UCATEGORY_0=_318_&UCATEGORY_S=0

  • Unable to depoly Web Serivce for the source code written in other editors

    Hi all,
    I am planning to implement webservice with the following code. But I am facing few problems with this can some body help me with this.
    The code looks like this AND IS NOT WRITTEN IN Jdeveloper BUT EDITPLUS
    package package1;
    public class Sum
    public int getSum(int a, int b)
              return a+b;
    package package2;
    public class Sub
    public int getSub(int a, int b)
              return a-b;
    package package3;
    import package1.*;
    import package2.*;
    public class Mul implements TestInterface
         Sum sm = new Sum();
         Sub sb = new Sub();
    public int getMul(int a, int b)
              return sm.getSum(a,b)*sb.getSub(a,b);
    public static void main(String [] args)
              Mul ml = new Mul();
              System.out.println(“The result of (3+6)*(3-6) is “+ ml.getMul(3,6));
    package package3;
    interface TestInterface extends java.rmi.Remote;
         public int getMul(int a, int b) throws java.rmi.RemoteException;
    I have written this in editplus. Not in Jdeveloper.
    Now I want publish getMul() as web service using Jdeveloper.
    I have created a new application work space. And from File--&gt;New
    I have choose project from existing source and imported “package3”.
    At this stage it was unable to find the class files Sum and Sub so I placed Sum.class and Sub.class in Appliction1-Project1-classes-
    Now the Mul class did not have any errors and it compiled fine. When run it gave the correct output.
    Using the web service wizard I was able to generate wsdl file , deployment descriptors etc.
    The problem I was facing was form this stage when I am trying to deploy it on to a standalone oc4j server it is not able generate the WebServices.war file and hence is not deployed on to the server.
    With the same code written in Jdeveloper everything is working fine.
    My doubts are
    1)     why is it not able to generate WebService.war file?
    2)     It is giving some ClassNotFound exception during the deployment. But when compiled and run its giving the correct output.
    3)     Even when everything was written from within the Jdevelper it did not include Sum.calss and Sub.class in WebSevice.war. Is there any way we could mention during its (WebService.war) generation , the class files to be Included.
    The other issue is how to add an existing source code to already existing project. In my case Once I have imported package3 I also want to import package2 and package1 in different steps.
    I thank in advance for helping me.
    Raja Vamshi k Gopu

    Can you tell us what you mean by correct type of project?
    You can start with an empty project. Then, you have to create an "EAR file" deployment profile (New Gallery / General / Deployment Profiles).
    So when I deploy a J2SE module onto oc4j server should I specify the class path? If so where ? How can I solve this problem?
    Once you deploy your code into oc4j, it becomes a J2EE application. You don't need to deal with the classpath - just make sure that all the required code is included in your .war file. To do so, check the list of classes packaged under the deployement properties dialog.
    Can you send me the links of few articles where I can learn more about these kind of stuff?
    If you want to assemble applications without to use JDeveloper wizard, you have another option: using the WebServiceAssembler tool that is par of the oc4j bits will help you to do this from a command line promt, and will handle the J2EE packaging aspect for you.
    See online documentation (10.1.2): http://download-west.oracle.com/docs/cd/B14099_04/web.htm
    In the "Developer's Guide", chapter 9 is about "Web Services Tools"
    For JDeveloper J2EE samples, you can start by looking at the OBE: http://www.oracle.com/technology/obe/obe_as_1012/j2ee/index.html
    Hope this helps,
    Eric

  • Can we debug code in SSIS?

    In the Script Editor you can see C# code and VB code (depending what language you use).  I can easily add a Breakpoint, but I can't seem to step through the code.  I can't hit F11 or F8; I can't click the green arrow (play button) as it's disabled. 
    How does one go about debugging code in SSIS?
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

    Thanks everyone.  I got rid fo the syntax errors.  I added a breakpoint, closed the Script Task, ran the project, and got this.
    SSIS package "c:\users\ryan\documents\visual studio 2010\Projects\Integration Services Project3\Integration Services Project3\Package.dtsx" starting.
    Error: 0x6 at Script Task: Could not load file or assembly 'Microsoft.VisualStudio.Tools.Applications.Core, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
    Error: 0xC0024104 at Script Task: The Execute method on the task returned error code 0x80070002 (Could not load file or assembly 'Microsoft.VisualStudio.Tools.Applications.Core, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its
    dependencies. The system cannot find the file specified.). The Execute method must succeed, and indicate the result using an "out" parameter.
    Task failed: Script Task
    Warning: 0x80019002 at Foreach Loop Container: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED.  The Execution method succeeded, but the number of errors raised (3) reached the maximum allowed (1); resulting in failure. This occurs when the number of
    errors reaches the number specified in MaximumErrorCount. Change the MaximumErrorCount or fix the errors.
    Warning: 0x80019002 at Package: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED.  The Execution method succeeded, but the number of errors raised (3) reached the maximum allowed (1); resulting in failure. This occurs when the number of errors reaches
    the number specified in MaximumErrorCount. Change the MaximumErrorCount or fix the errors.
    SSIS package "c:\users\ryan\documents\visual studio 2010\Projects\Integration Services Project3\Integration Services Project3\Package.dtsx" finished: Failure.
    The program '[2872] DtsDebugHost.exe: DTS' has exited with code 0 (0x0).
    Here's the image.
    Does this make any sense?
    If I edit the script, take off the breakpoint, and re-run the script, I get this.
    it looks like the package runs correctly, but it actually doesn't do anything at all!!
    Any idea what's going on?
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

  • Pattern to gain abstraction over assembly with no abstraction

    I'm interacting with a large code base (in a single assembly) written by another department (let's call it BusinessAssembly). Precious few of the objects we need to use in that assembly use interfaces. As a result, LOTS of our projects need to reference that
    assembly because there is no abstraction available and tests are difficult to write.
    To further complicate matters, it now looks as though we may need to be able to support multiple versions of the BusinessAssembly and switch between them either at build-time or run-time. E.g. BusinessAssembly2 will add new objects which we'll need to use,
    but BusinessAssembly1 won't contain those objects.
    My only promising solution so far is to create two separate projects in our solution, one that references BusinessAssembly1 (BusinessProxy1) and another that references BusinessAssembly2 (BusinessProxy2). These projects would contain proxies and decorators
    around the individual BusinessAssembly objects (e.g. BusinessUserProxy), and those proxies and decorators would implement interfaces (IBusinessUserProxy).
    If I've thought this through correctly, an abstract factory could then provide the requested proxy/decorator object from the correct proxy/decorator project at run-time and our other projects could abandon their references to the giant assembly and simply use
    the interfaces the various proxies/decorators implement.
    I'm not trying to alter the behaviour of the objects, but another consideration here is that we would like to gain the ability to provide test doubles for the various BusinessAssembly
    objects, which this approach should provide.
    However, this approach does come with a considerable amount of development overhead: when BusinessAssembly3 creates ten new objects, we'll need to write proxies and interfaces for each of those.
    My question(s): Is it an acceptable use of proxies to merely provide an interface for an object that otherwise has no interface? Would a different approach avoid the development overhead?
    Also, I'm terribly ill right now so let me know if I'm not being clear or if I didn't actually even type any real words here.

    Hi DOAHacker,
    It seems you are always copy and paste questions here, may I ask the reason? I saw the same case here:
    http://programmers.stackexchange.com/questions/259779/pattern-to-gain-abstraction-over-assembly-with-no-abstraction
    Here is Tory's answer:
    If BusinessAssembly2 contains all of BusinessAssembly1's public members, then you could write one or more Interfaces for that subset of members, which could be used as a constructor parameter in one or more Facade classes, thereby
    providing Dependency Injection. That would allow you to switch between either version of the underlying business assemblies at either design time or runtime, as needed.
    It would also allow you to build test classes that implement those interfaces, and pass those into your Facade for testing purposes.
    You'd still need to create or extend your Interfaces and Facade classes when
    BusinessAssembly3 came out. I don't see any way around that, unless using the new classes directly is acceptable.
    If those business assemblies are large, you could save yourself a lot of tedious manual work by building a little code generator that inspected them via Reflection and output Interfaces and Facade classes."
    Can you share your own idea to it?
    Best regards,
    Barry
    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.

  • Z87-GD65 debug code 03 problem

    Hello
    my system specs:
    cpu: i7 4770k
    motherboard: z87 GD65 (1.9 installed)
    SSD: Samsung 840evo msata (windows 7 x64 ultimate)
    PSU: evga g2 1300W
    GPU: 3 * Toxic 280x (11221-01-40g)
    RAM: 2 * 4gB Kingston HyperX Beast DDR3-2400mHz
    3 * x16 powered riser
    I'll use this pc for litecoin mining also sometimes for gaming (dota 2). If I plug my gpu to motherboard without PCI riser cable there is no problem but I want to use PCI riser (x16). When I plug x16 riser to motherboard, it doesn't work (actually working with 03 error) debug leds showing "03" and after 15 seconds, motherboard restart itself for one time.
    I already tried as follows:
    with riser cable, without gpu. (gen3 gen2 gen1 auto, tried all of them)    debug code 03
    with riser cable, with gpu.      (gen3 gen2 gen1 auto, tried all of them)    debug code 03
    without riser cable, with gpu.                                                                    everything is okay
    without riser cable, without gpu.                                                               everything is okay
    How I can use PCI risers for my graphic cards_? please advice.
    Thanks...

    Quote from: Sea Dog on 04-May-14, 00:49:37
    Bumps are not allowed and will probably be removed.
      >>> Forum Rules <<<
    As mentioned before, this is a non standard configuration attempt and the forum does not assist with it.
    sorry for bump.
    okay, maybe someone can explain how can i assemble this 3 gpu to my motherboard, there is not enough space for 3 gpu, because toxic 280x is thicker than double slot (2.2 slot).

  • X79A-GD65 8D Debug code 19 60 FF

    Hello everybody, i'm french and i'm problem with my MB.
    I have :
    ASUS Nvidia gtx 570
    Corsair 4*4 GO Vengeance DDR3
    Intel Core i7 3820
    Corsair TX850Watt
    When i start my pc, it reboot in cycle.
    The debug code show 19 60 FF, sometimes the debug code is only 19.
    I have check all component of my pc but i don't resolve the problem.
    Thanks.

    https://forum-en.msi.com/index.php?topic=157204.0
    Edited version;
    Before the purchase of an Intel i7 3820 for your mainboard, please check the UEFI/BIOS version installed. In most cases, there are green stickers on the BIOS chips with the 'as shipped' version written on them. On my X79A-GD65(8D), there are no green stickers, only black chips with red dots. In that situation, the only option is to check the date of manufacture & compare it to the UEFI/BIOS release dates, or contact MSI Tech Support with the serial number so they can check for you what version was shipped on the mainboard.
    How do I get my i7 3820 CPU supported? The answer is either use a CPU that is supported (i7 3930k or i7 3960X), & flash the version that supports it, take it to a pc shop that can flash for you, or send it to MSI & have them flash it for you. Please keep in mind, if the mainboard is equiped with two BIOS chips, have both chips A and B flashed.  

  • 790FX-GD70 not POSTing no debug code all LEDs on

    Hi
    I have had my 790FX-GD70 for almost the past 2 years and it has given me no real problems. But yesterday whilst playing Fallen Earth, my computer froze so I gave it a restart and it froze during windows start up. At this point I opened my case and watched the debug display and this time it froze during post, can't remember the debug code it froze on. I tried restarting a few more time and it would freezes at different points during post. At this point I remove it from its case and start barebones testing it. If I left it for a time I could get into the bios and go to the hardware monitoring page and look a the tempter of the CPU for it froze. There it reported that the tempter was 34C. Stopped testing it last night and when I turned it one this morning it would not even start to post. When I turn it on all the LEDs on the board turn on even the overclocking LED and the overclocking switch also turns and to turn off the system I have to do a hard switch off and UPS.
    I have tried it with a different UPS with no effect, tried a different graphics card with no effect. Also tried with different RAM and no RAM no effect.
    Computer  secs:
    MB: MSi 790FX-GD70
    CPU: AMD Phenom 2 X4 955 Black Edition
    UPS: Antec TRUEPOWER Quattro 850 watt
    RAM: Corsair XMS3 4Gig DDR3 can not remember the speed.
    GPU: MSI AMD Radeon R6950 twin Frozr 2
    CPU Heat Sink: Cooler Mater Hyper N520
    Any help would be great.

    Quote from: Svet on 06-May-12, 02:30:14
    try with another video card then
    Also done that to no effect, currently I don't have a spare CPU that will work on my motherboard. I was hoping that some one has had this problem before because I have never seen my computer start up with all the LEDs on as it starts up. Also the hard drive LED is on constantly even when there is no hard drive plug in.

  • Where can I find some appications' source code  written by swing

    hello, everyone
    I have studied swing for one month, and I have some basic idea of the swing.
    but I want to learn more about the swing. can anybody tell me how can I improve
    myself now or show me where can I find some appications' source code written
    by swing in the internet.
    thank you very much!
    your help is very appreciated!

    Check this tutorial:
    http://java.sun.com/docs/books/tutorial/uiswing/index.html
    It explains all the Swing components with many code samples.
    HTH
    stefan

  • Adobe Illustrator CS5 SDK not working with Xcode on Mac OS X Lion 10.7.1

    I recently was interested in developing an illustrator plug-in. I downloaded all the required files listed on the adobe site, including the pdf files.
    I was following the "getting started guide" while working on Xcode 4.1 when I saw that it required a "Carbon Bundle", since there wasn't one. I did my research and found out that I could download the bundle, which would only work on Xcode 3.2. However, when any of the sample files which are Carbon-based are loaded, Xcode 3.2 crashes while Xcode 4.1 notifies me with "Base SDK Missing".
    I would just love to have the sample code running, and I'm pretty sure I can handle it from thereon.
    Thanks in advance!

    I can get it to build on Lion with Xcode 4.1. The steps I went through were to first set all the "Build Settings" > Base SDK to Mac OS X 10.6 like below:
    Then when I built I found it would get stuck on TwirlFilter think there is a problem with Xcode as after force quiting and restarting the computer it was able to compile successfully.
    If you get any LLVM errors like error: extra qualification ... to do with AIPlatformFileDlgOpts then you just have to go to the line with the error and delete AIPlatformFileDlgOpts:: though I think that only happens if you have not done a clean before you built and there are still projects with Base SDKs set as 10.5
    Let me know how you get on,
    Robert

  • Region Monitoring iOS 7 : didEnterRegion method is not calling when app is killed by user or by OS in iOS 7 only. It is working fine when it is in background. and the same code is working fine with iOS 6 for both app in suspended mode and background mode.

    Region Monitoring iOS 7 : didEnterRegion method is not calling when app is killed by user or by OS in iOS 7 only. It is working fine when it is in background. and the same code is working fine with iOS 6 for both app in suspended mode and background mode. What changes I have to made to work great in iOS 7 also.

    I rewrote code for debugging purpose and tried to catch error using GetLastError();  method,
    but it only printed 0. Below is code snippet; I think Create() throw an exception
    and code goes to catch block. 
    LONG ConnectTS(CString strIP, UINT n_Port)
    try{
              ErrorLog(0,0,"ConnectTS is calling Create [is going to call]","");
              if(!Create())
    // Exception Line
    n_Err = GetLastError();
    return NET_INIT;
    catch(...)
                       DWORD errorCode = GetLastError();
                       CString errorMessage
                       errorMessage.Format("%lu",errorCode);
                       ErrorLog (0, 0, "Image
    System", (LPTSTR)(LPCTSTR)errorMessage);
                       return  IS_ERR_WINDOWS;
    Output: -
    ConnectTS is calling Create [is going to call]
    Image System
    0

  • DEBUG code in LR 4.0

    My windows installation of LR4 is generating a LrCatalog.log file containg DEBUG messages.
    Indicates to me there is some left-over debug code in the executable.
    It might run faster without this.
    Sample of file
    04/08/2012 11:14:28 DEBUG removing item about to be processed from queue: "Add c40-8927_8_9.tif to catalog"
    04/08/2012 11:14:28 DEBUG executing "Add c40-8927_8_9.tif to catalog"
    04/08/2012 11:23:55 DEBUG immediate execution of "Add c40-8924_5_6.tif to catalog"
    04/08/2012 11:23:55 DEBUG removing item about to be processed from queue: "Add c40-8924_5_6.tif to catalog"
    04/08/2012 11:23:55 DEBUG executing "Add c40-8924_5_6.tif to catalog"
    04/08/2012 12:00:10 DEBUG immediate execution of "Add c41-5206_7_8.tif to catalog"
    04/08/2012 12:00:10 DEBUG removing item about to be processed from queue: "Add c41-5206_7_8.tif to catalog"
    04/08/2012 12:00:10 DEBUG executing "Add c41-5206_7_8.tif to catalog"
    04/08/2012 14:34:52 DEBUG initializing writeAccessQueue
    04/08/2012 14:34:52 DEBUG immediate execution of "Add c41-4625_6_7.tif to catalog"
    04/08/2012 14:34:52 DEBUG removing item about to be processed from queue: "Add c41-4625_6_7.tif to catalog"
    04/08/2012 14:34:52 DEBUG executing "Add c41-4625_6_7.tif to catalog"

    Another user just reported this as well:
    http://forums.adobe.com/message/4326750
    He gave details of where the LrCatalog.log file was located (c:\users\<user>\documents), and with that I could see that I have one too and quickly figure out what's probably going on:
    - The logging appears to be initiated by LR itself, not by plugins. It occurred without the presence of a "config.lua" file.
    - The logging appears to come from the LR SDK's LrCatalog module, which provides plugins with access to the catalog. For example, these two lines:
    03/17/2012 09:50:23 DEBUG initializing writeAccessQueue
    03/17/2012 09:50:23 DEBUG immediate execution of "Tag: apply keywords"
    correspond to the Any Tag plugin invoking catalog:withWriteAccessDo ("Tag: apply keywords", function).  My log file had entries from other plugins that accessed the same SDK method.
    - The logging may be disabled in LR 4.1RC.  The last entry in my LrCatalog.log file occurred just before I upgraded from LR 4.0 to LR 4.1RC.

Maybe you are looking for

  • MobileMe to iCloud- many users, many devices

    Help! We're a family of four that has been working nicely with two Apple IDs for iTunes purchases, and a shared MobileMe account for sharing our contact list and multiple calendars.  We're now trying to figure out how to transition our configuration

  • HT2311 how to authorise a new iMac for iTunes

    Hi All, complete newbie to all things Apple. Just got a new iMac struggling a little with many things any advice would be very welcome ......before i go off the idea that a Mac was a good decision. Current Probs: 1. Cant find out how to authorise the

  • How to implement Multiple Roadmap step with in a roadMap

    Hi, I am trying to implement Multiple roadmap step with in a roadMap.Can any one help me on this how to do it. As of now i have added Multiple roadmap step element with in my Road map navigation and assign a data source which contains single attribut

  • Safari 4.0.3 crashes on startup

    My white MacBook (2 GHz) crashes every time I open it. Here's the report. Hope you can help. Process: Safari [486] Path: /Applications/Safari.app/Contents/MacOS/Safari Identifier: com.apple.Safari Version: 4.0.3 (5531.9) Build Info: WebBrowser-553109

  • ZGPGL - Copying Accounts and Cost Centers to the SAP system

    Hi all, When I try to copy accounts and cost centers from my excel mapping document to the SAP system I can only copy about 20 of them at a time. I have about 30,000 accounts and am wondering if there is a quicker way to do this. Thanks, Deki