How to debug program that runs SAPScript

Hello,
How can I step through the program (in debug ) that prepare the data to load into SAPScript form?  I already know how to activate SAPScript debugger, SE37 -> Utilities -> Activate Debugger.  However, this only takes me to the form where the data has already been prepared for output.  I  need to be able to step through the program logic so can understand how it got the data to be displayed on the print output.  Another word, I want to be in the ABAP debug mode.  I placed some breakpoints in the program but it never hit it.   Please advise.
Thank you.

figured it out.

Similar Messages

  • How to debug program RVADEK01 for SAPSCRIPT FORM  S_PICK_SINGLE

    Hello Experts,
    Am using TCODE VL01N to print out the Form SD_PICK_SINGLE ,I tried to activate the debugger on the Form in SE71 after that executed the driver program RVADEK01 which didnt work so I tried to execute the tcode VL01N but nothing happens .Unfortunately both ways seems not to trigger the debugger to stop at the Form,.Can anyone help ?
    Thank you
    JA

    Hi,
    Think you have not done the output type configuration correctly in NACE transaction. Check with the following scenarios.
    1. In NACE transaction, check whether the correct program and SAP script is assigned against the output type which you are selecting in VL01N transaction for the printout.
    2. Try using transaction VL02N or VL03N once the delivery is created. Make sure that the OUTPUT TYPE which is configured with the program and SAP script is triggered in the respective delivery.

  • HT4410 If I install Windows 7 on my MacBook Pro using Bootcamp, now having 2 start up drives, do I select the Windows drive, then I can install a software program that runs only on a PC?

    If I install Windows 7 on my MacBook Pro using Bootcamp, now having 2 start up drives, do I select the Windows drive, then I can install a software program that runs only on a PC?

    Thank you

  • How to write a program that runs on a port like a deamon or service?

    hi,
    how to write a program in java that runs on a port like a deamon or service, accepts requests from client, process the request and gives responce.
    for ex. tomcat runs on 8080 port as deamon or service.
    is it socket programming? if yes please give me a simple program which runs on a specific port.
    ex. a program running on a port talking two integers and return the total.
    thanks and regards,
    moses.

    I suggest you read
    [http://java.sun.com/docs/books/tutorial/networking/sockets/clientServer.html]
    For more
    [http://www.google.co.uk/search?q=serversocket+tutorial]

  • Does anyone know how to convert a Filemaker flat file to some other program that runs on Lion?

    I have a flat file of 200 recipes in Filemaker. It is searchable and prints the recipes on 4x6 cards.
    How can I get the same funtionality without getting an expensive new version of FM that runs on Lion?

    In order to password protect files or folders, you need to create an encrypted disk image. Then what ever is copied to the disk image will be protected.
    The directions to do this are here
    http://support.apple.com/kb/ht1578
    Allan

  • Read the names of the files in ABAP program that runs in the background

    Hello,
    I have a program that uploads information from file on application server.
    What I can't figure still is how to get the <b>names </b>of the files that are in <b>specific directory</b>.
    There is an other application that will post those files into this directory. I wont to get file names and file types from this directory and put it into an internal table.
    File names are changing based on date and version.
    Please keep in mind that the program runs in the background, (presentation server is not included in the process)
    Thanks in advance,
    Milan

    Hi,
    one epossible solution that i have used is:
    1. Create an operating system comand with transaction SM69
    command  OS                              OS-command  Parameter
    ZDIR         Windows NT Customer  cmd.exe          /C dir &
    2. Call Functionmodul
      CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
        EXPORTING
          COMMANDNAME                         = 'ZDIR'
          ADDITIONAL_PARAMETERS               = P_PARA1
      OPERATINGSYSTEM                     = SY-OPSYS
      TARGETSYSTEM                        = SY-HOST
      DESTINATION                         =
      STDOUT                              = 'X'
      STDERR                              = 'X'
      TERMINATIONWAIT                     = 'X'
      TRACE                               =
       IMPORTING
          STATUS                              = G_OK
      EXITCODE                            =
        TABLES
          EXEC_PROTOCOL                       = GTBL_PROTO
       EXCEPTIONS
         NO_PERMISSION                       = 1
         COMMAND_NOT_FOUND                   = 2
         PARAMETERS_TOO_LONG                 = 3
         SECURITY_RISK                       = 4
         WRONG_CHECK_CALL_INTERFACE          = 5
         PROGRAM_START_ERROR                 = 6
         PROGRAM_TERMINATION_ERROR           = 7
         X_ERROR                             = 8
         PARAMETER_EXPECTED                  = 9
         TOO_MANY_PARAMETERS                 = 10
         ILLEGAL_COMMAND                     = 11
         WRONG_ASYNCHRONOUS_PARAMETERS       = 12
         CANT_ENQ_TBTCO_ENTRY                = 13
         JOBCOUNT_GENERATION_ERROR           = 14
         OTHERS                              = 15
    3. Loop at GTBL_PROTO and make your coding with the filenames
    Hope this helps
    Regards
    Bernd

  • How to load programs to run in vista mode?

    I'm trying to load two programmes, Microsoft Office 2007, and perfect disk, and neither of them will load.
    I remember reading somewhere on this message board, that you could load programs to run in vista mode, how do you do that?

    Please post the exact error messages that you are getting when you are trying to load Office 2007. I've loaded it on several builds of Win 7 on several different machines without issue.
    Are you using the Windows 7 Release candidate, and are you using a retail Office 2007 dvd?
    Thanks
    Message Edited by Darksaber on 06-19-2009 11:15 PM
    x200 7454-CTO; 320GB HD; 4GB; Win 7 64bit - Now on RTM.
    - 2nd SSD with Win 7 Enterprise RTM
    T61p - RTM - Win 7 Enterprise
    S10 4231 for my wife - now on Win 7 Ultimate RTM

  • How to check program is running or not

    Hi,
    Is it possible to check whether a program is running or not?
    I know when you try to compile a package which is running, oracle does not allow you compile it, it hangs. That is, somehow, Oracle knows the program is running. How can we check this information?
    Suppose procedure below. If i ran it in one session, how can check that procedure p is running in other session?
    I searched the forum. There is one( checking if a package procedure is already running ) thread but noone has replied.
    Thanks....
    SQL> DROP TABLE T;
    Table dropped
    SQL> CREATE TABLE T AS SELECT DUMMY D FROM DUAL;
    Table created
    SQL> CREATE OR REPLACE PROCEDURE p IS
      2    s VARCHAR2(12);
      3  BEGIN
      4    SELECT d INTO s FROM t;
      5    LOOP
      6      EXIT WHEN s = 'Y';
      7      SELECT d INTO s FROM t;
      8    END LOOP;
      9  END p;
    10  /
    Procedure created
    SQL> exec p;

    I found the answer from another thread.( Package Compilation Hangs )
    Answer is : http://www.ixora.com.au/scripts/sql/executing_packages.sql

  • How to debug program or Badi in SRM 7.0 through PORTAL

    Hi friends,
            My question is How to debug a Badi or any program  in SRM 7.0 through PORTAL . I putted External break point in Badi and following settings has been done in Utilities u2013 Settings u2013 Abap Editor
    Front-End Editor (new)  - checked
    In debugging tab
    Users - maintained (entered same user name using in Portal as log on user name)
    IP Matching u2013 checked
    ABAP Debugger u2013 New debugger u2013 checked
    Session breakpoint active immed.  - Chcecked
    I am not able to debug this badi through Portal and some time after I am getting Time out error whereas Time limit is extended up to 600 seconds . In SRM 5.0 it is working fine .I have SAP ALL authorization   if any other procedure is available or for that any specific role needed then please share with me.
    Regards,
    Abhijeet
    Edited by: abhijeet panse on Jun 29, 2010 8:02 AM

    Hi ,
             Thanks Iftekhar and Yramki for replying. I checked everything and we have only one server for Development but still I am not able to debug, I checked AL08, it is showing same server we donu2019t have different application server for development. I donu2019t have any idea about that How to activate debugger for specific user id, please suggest me.
             Parameter set with value rdisp/tpda_for_ext = 1 . In the BADI i putted one infinite loop and then try to debug from the SM50 through Menu program/session u2013 Program u2013 Debugging but from GUI new debugger session is not opening and some time after process has been deleted from the SM50 and I got error message in the Portal.
             Do I need or missing some setting in Portal . Please suggest me.
    Regards,
    Abhijeet

  • If I have a program that runs in windows under the command prompt and on Mac in the Terminal window, can it be run in iOS

    I have a program that is ran using the command line in windows and the terminal window on Mac or LInux.  Is it possible to create an app for the iPad that could run this program.  This program does require admin rights.

    No.

  • A Java program that runs automatically at a given time of day

    Okay Iam at the ending stages of a Java Assignment that is a MySql database, Hibernate for Mapping with a Java Server Faces front-end. All I need to do now is send emails at set time every week. Normally I know what to search for but frankly Iam stumped. Iam really just looking for a starting point for something that can run a Java Program at a set time of the week. PS my OS is Ubuntu if that is relevant but I was hoping for something that isn't platform specific so that it is portable.
    Cheers in advance.

    You can use the possibilities of your operating system, in this case Ubuntu.
    Just drop a shell script that runs your java program in the /etc/cron.weekly directory.
    --janeiros                                                                                                                                                                                                                                                                                                                                                                   

  • I have a program that runs in Java Console. I need to run multiple copies of the program. I can't do this with tabs. Can I do it with separate windows/processes

    The program in question was implemented as a Java applet that runs in a browser. The developer says it must run under the Java Console and that I cannot run more than one copy of it in a given browser technology (e.g., Firefox); but I can run multiple copies if I use, eg, Firefox for one, IE 32 bit for another, Chrome for a 3rd and IE 64 bit for a 4th. I have tested this, and this does work.
    Why would it not be the case if I spawned a completely different Firefox instance/process? When asked this question, the developer said, no, you have to run a different browser implementation to get a distinct Java Console for each one.
    Does this make sense in general, or, more importantly, is it true for Firefox?
    Thanks,
    Dennis

    It is working for me if I open a second Firefox instance with its own profile by starting Firefox with the -no-remote command line switch.
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    * http://kb.mozillazine.org/Bypassing_the_Profile_Manager
    Use the -no-remote command line switch to open another Firefox instance with its own profile and to run different Firefox instances simultaneously.
    * http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile

  • How to create script that run sudo-command?

    I often need to run command:
    sudo "/Library/Application Support/VMware Fusion/boot.sh" --restart
    This needs to be run as admin.
    Can anybody tell me how to create script that will login as admin and run that command in terminal?
    Or from where can I get help how to add commands to a script?
    Thanks
    Tomi

    Your best bet on getting a cogent answer is to post to the Unix forum under OS X Technologies.

  • How to delete program that not want to go into the trash?

    Hi!
    Just installed a program from internet, vlc video program.
    I can't remove it into the trash, how could i uninstall it from my mac when it not work like other programs that could  just be  drag into the trash to delete?
    Thanks for reply

    Hi and thanks for reply.
    Im unsure to how i should do this to not make any damage like Linc Davis talking about.
    The program is locked, and it will not fit to the trash, the same thing happen if you example try to put the calculator in the trash, it just flip back.
    The program i want do remove is Videolan, called vld. Downloaded from here: http://www.videolan.org
    Thanks for the support i get

  • I need help on how to write program that read integers

    I am a beginner to java and need you help please.
    How do I write a program that will read an unspecified number of integers (between 5 to 8 values) and :
    (a) determine how many positive and negative value have been read.
    (b) find the average of the positive integers as well as the average for the negative integers.
    (c) find the total of all values. (both positive and negative)
    (d) count the number of zero input by the user and display the count.
    (e) your program should allow the users to repeat the task as many times as they want.
    Generate a table like this: (assuming that the user enters: 2,0,-11,21,0,-3,89,6)
    Positive Ave(+) Negative Average(-) Zero(0) **************************************************************
    2 39     -3      -7     2
    21     -11
    89               
    6     

    I'm sure thats ur programming assignment.... Read any intro to java book .... or search on the net and you will be able to find answers

Maybe you are looking for