How to execute sapscript programe in SAP

hi
i created sapscript programe i want to execute how can i do it please help me
thanks in advanced.

Hi,
two ways.
1. Simply by executing program by F8 and giving values in selection screen. You have used FMs like open_form and write_form and close_form etc. hence form will be called
2. Form and print program will be assigned to output type in NACE transaction.
Now this will be called when via standard transaction like VA03 -> print option and set output type
at this time based on output type print progral will be called.
*Hope this may give you a bit of idea.

Similar Messages

  • How to execute the procedure in sap b1

    Hai to all,
                 I done a procedure in sql server .but i don't know how to execute that  procedure in sap b1?
    can anyone help me immediately.
    Regards,
    Ramya.S

    Dear Ramya.S,
    You could execute the store procedure by using Recordset object in SDK DI code. It is like:
    Dim myRecordSet As SAPbobsCOM.Recordset
    myRecordSet =                                   
    SBO_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecord
    set)
    myRecordSet.Command.Name = "TestStoredProcedure"
    myRecordSet.Command.Parameters.Item("@ItemLike").Value = "IT%"
    myRecordSet.Command.Parameters.Item(2).Value = "C0001"
    myRecordSet.Command.Execute()

  • How to know print program for SAP Script

    Hi friends,
    how to know print program for SAP Script form name ?

    Hi ,
      You can use the following code changes in the layout & see..
    You have to create a program Z_BC460_EX4_HF for that..
    /:PERFORM GET_NAME IN PROGRAM Z_BC460_EX4_HF
    /:  USING &CUST&
    /:  CHANGING &NAME&
    /:ENDPERFORM.
    Dear &NAME&
    The ABAP routine could be defined as follows:
    IMPORTANT: The structure itcsy must be used for the parameters.
    REPORT Z_HENRIKF_SCRIPT_FORM .
      tables scustom.
      form get_name tables in_tab structure itcsy
                           out_tab structure itcsy.
      read table in_tab index 1.
      select single * from scustom
        where id = in_tab-value.
      if sy-subrc = 0.
        read table out_tab index 1.
        move scustom-name to out_tab-value.
        modify out_tab index sy-tabix.
      else.
        read table out_tab index 1.
        move 'No name' to out_tab-value.
        modify out_tab index sy-tabix.
      endif.
    You could also fill the ouput parameter table this way
       READ TABLE out_par WITH KEY 'NAME1'.
       out_par-value = l_name1.
       MODIFY out_par INDEX sy-tabix.
    endform.

  • How to execute external program in java?

    My question is how to execute an external program in java.
    I need to call a unix command in java.
    Thanks.

    it depends on what you are trying to do. Following are the two methods
    1. Runtime.exec() : this method allows you just to call an external program as a seperate process
    2. JNI (Native Interface) :- As of right now only C and C++ are supported by this method. This method allows you to directly call the C/C++ methods from JAVA

  • How to execute CGI Programs in Tomcat Server

    Hi,
    I am working on executing Perl Scrtipts(or CGI programs) in Tomcat Server.
    I have downloaded ActivePerl 5.8.0 6.0.3 build.I have modified some .jar files in tomcat\server\lib.
    I have changed conf\web.xml to access the CGIServlet.class that is in servlets-cgi.jar.
    My example.cgi is
    #!c:\Perl\bin\perl.exe
    print
    "Content-type: text/plain\n\n";
    foreach $var (
    sort keys %ENV) {
    print
    "$var=\"$ENV{$var}\"\n";
    @values = split(
    /&/,$ENV{'QUERY_STRING'});
    foreach $i (@values) {
    ($varname, $mydata) = split(
    /=/,$i);
    print "$varname = $mydata\n";
    and my test.html is
    <HTML>
         <HEAD>
              <TITLE>Environment Variables using GET</TITLE>
         </HEAD>
         <BODY>
              <FORM ACTION="cgi-bin/example.cgi" METHOD="POST">
                   Press submit for a list of environment variables. <BR>
                   First Name: <input type="text" name="fname" size=30><p>
                   Last Name: <input type="text" name="lname" size=30><p>
                   <input type="submit">
              </FORM>
         </BODY>
    </HTML>
    here I have changed url mapping in web.xml to cgi-bin.
    The test.html produces two text fields first and last name on submit:
    it accesses:http://localhost:8080/smalltownpapers/cgi-bin/example.cgi?fname=Tim&lname=Eden
    this should print some environmental variables but it is producing an empty page.
    Tomcat is not showing any errors or Tomcat is not at all listening.
    Can any one help me to solve this and how to execute Perl scripts in Tomcat server
    Thanks,
    Regards
    Murthy

    Sorry, I've never done this. I went to the Tomcat site and pulled down the CGI docs, which you might have seen:
    http://jakarta.apache.org/tomcat/tomcat-5.0-doc/cgi-howto.html
    No other help available from me. Sorry.

  • How to attach print program and sap script for F150 transaction

    How to attach print program and Z sap script for F150 transaction

    Hi,
    you can find the customization for dunning in transaction SPRO under this path: Financial Accounting->Accounts Receivable and Accaounts Payable->Business Transactions->Dunning.
    Kostas

  • How to create SAPScript program? step-by-step process?

    Hi everybody
    Can anybody please provide some information on how to create SAP Script program?
    Please provide step-by-step process if possible as examples given in abap certification program
    thanks

    Hi
    here is the sample program for SAP SCRIPTS
    *& Report  ZHMR_POANNEX                                                *
         MODULE Materials Management
          Objective :Calling program for ANNEXURE FOR P.O
          text ................................................
          text ................................................
          text ................................................
    REPORT  ZHMR_POANNEX                            .
    TABLES :EKKO,STXH.
    PARAMETERS
    SELECTION-SCREEN BEGIN OF BLOCK BLK WITH FRAME TITLE text-001.
    PARAMETERS : P_EBELN LIKE EKKO-EBELN.
    SELECTION-SCREEN END OF BLOCK BLK.
    DATA DECLARATION
    DATA : V_LIFNR LIKE EKKO-LIFNR,
           V_AEDAT LIKE EKKO-AEDAT,
           V_NAME  LIKE LFA1-NAME1,
           V_ADRNR LIKE LFA1-ADRNR,
           V_BSTYP LIKE EKKO-BSTYP.
    DATA : BEGIN OF IT_ADRC OCCURS 0,
           NAME1  LIKE ADRC-NAME1,
           STREET LIKE ADRC-STREET,
           CITY1  LIKE ADRC-CITY1,
           POST_CODE1 LIKE ADRC-POST_CODE1,
           COUNTRY LIKE ADRC-COUNTRY,
           END OF IT_ADRC.
    DATA : IT_TEXT LIKE TLINE OCCURS 0 WITH HEADER LINE,
           IT_NOTE LIKE TLINE OCCURS 0 WITH HEADER LINE,
           IT_DEL  LIKE TLINE OCCURS 0 WITH HEADER LINE,
           IT_SHIP LIKE TLINE OCCURS 0 WITH HEADER LINE.
    DATA : V_ID  LIKE THEAD-TDID ,
           V_LAN LIKE THEAD-TDSPRAS,
           V_NAME1 LIKE THEAD-TDNAME ,
           V_OBJ LIKE THEAD-TDOBJECT VALUE 'EKKO',
           N1 TYPE I,N2 TYPE I,N3 TYPE I ,N4 TYPE I.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        INPUT         = P_EBELN
    IMPORTING
       OUTPUT        = P_EBELN.
    TO GET VENDOR NAME ,,PO DATE
    SELECT SINGLE
                 LIFNR
                 AEDAT
                 BSTYP
                 FROM EKKO
                 INTO (V_LIFNR, V_AEDAT,V_BSTYP)
                 WHERE EBELN EQ P_EBELN.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE NAME1 ADRNR
                  FROM LFA1
                  INTO (V_NAME,V_ADRNR)
                  WHERE LIFNR EQ V_LIFNR.
      IF SY-SUBRC EQ 0.
    SELECT NAME1
            STREET
            CITY1
            POST_CODE1
            COUNTRY
            FROM ADRC
            INTO CORRESPONDING FIELDS OF TABLE IT_ADRC
            WHERE ADDRNUMBER EQ V_ADRNR.
    IF SY-SUBRC NE 0.
    ENDIF.
      ENDIF.
    ENDIF.
    *TO GET HEADER TEXT
      IF V_BSTYP = 'L'.
        V_ID = 'L01'.
      ELSEIF V_BSTYP = 'F'.
        V_ID = 'F01'.
      ENDIF.
      V_NAME1 = P_EBELN.
    SELECT SINGLE TDID INTO V_ID FROM STXH WHERE TDOBJECT EQ V_OBJ AND
                                      TDNAME EQ V_NAME1 AND
                                      TDID EQ V_ID .
      IF SY-SUBRC EQ 0.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
       CLIENT                        = SY-MANDT
        ID                            = V_ID
        LANGUAGE                      = SY-LANGU
        NAME                          = V_NAME1
        OBJECT                        = V_OBJ
      TABLES
        LINES                         = IT_TEXT.
    ENDIF.
    *TO GET HEADER NOTE
      IF V_BSTYP = 'L'.
        V_ID = 'L02'.
      ELSEIF V_BSTYP = 'F'.
        V_ID = 'F02'.
      ENDIF.
    SELECT SINGLE TDID INTO V_ID FROM STXH WHERE TDOBJECT EQ V_OBJ AND
                                      TDNAME EQ V_NAME1 AND
                                      TDID EQ V_ID .
      IF SY-SUBRC EQ 0.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
       CLIENT                        = SY-MANDT
        ID                            = V_ID
        LANGUAGE                      = SY-LANGU
        NAME                          = V_NAME1
        OBJECT                        = V_OBJ
      TABLES
        LINES                         = IT_NOTE.
    ENDIF.
    *TO GET TERMS OF DELIVERY
      IF V_BSTYP = 'L'.
        V_ID = 'L05'.
      ELSEIF V_BSTYP = 'F'.
        V_ID = 'F05'.
      ENDIF.
    SELECT SINGLE TDID INTO V_ID FROM STXH WHERE TDOBJECT EQ V_OBJ AND
                                      TDNAME EQ V_NAME1 AND
                                      TDID EQ V_ID .
      IF SY-SUBRC EQ 0.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
       CLIENT                        = SY-MANDT
        ID                            = V_ID
        LANGUAGE                      = SY-LANGU
        NAME                          = V_NAME1
        OBJECT                        = V_OBJ
      TABLES
        LINES                         = IT_DEL.
    ENDIF.
    *TO GET SHIPPING INSTRUCTIONS
    IF V_BSTYP = 'L'.
        V_ID = 'L06'.
      ELSEIF V_BSTYP = 'F'.
        V_ID = 'F06'.
      ENDIF.
    SELECT SINGLE TDID INTO V_ID FROM STXH WHERE TDOBJECT EQ V_OBJ AND
                                      TDNAME EQ V_NAME1 AND
                                      TDID EQ V_ID .
      IF SY-SUBRC EQ 0.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
       CLIENT                        = SY-MANDT
        ID                            = V_ID
        LANGUAGE                      = SY-LANGU
        NAME                          = V_NAME1
        OBJECT                        = V_OBJ
      TABLES
        LINES                         = IT_SHIP.
    ENDIF.
    OPEN FORM
    DESCRIBE TABLE IT_TEXT LINES N1.
    DESCRIBE TABLE IT_NOTE LINES N2.
    DESCRIBE TABLE IT_DEL LINES N3.
    DESCRIBE TABLE IT_SHIP LINES N4.
    IF NOT ( N1 = 0 AND N2 = 0 AND N3 = 0 AND N4 = 0 ).
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
       FORM                              = 'ZHML001_POANNEX'
       LANGUAGE                          = SY-LANGU.
    else.
    message 'For This P.O no annexure is maintained.' type 'I'.
    endif.
    WRITE FORM
    LOOP AT IT_ADRC.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'HEADER'
       WINDOW                         = 'HEADER'.
    ENDLOOP.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'FOTTER'
       WINDOW                         = 'FOTTER'.
    IF NOT IT_TEXT[] IS INITIAL.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'TEXT1'
       WINDOW                         = 'MAIN'.
    LOOP AT IT_TEXT.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'TEXT'
       WINDOW                         = 'MAIN'.
    ENDLOOP.
    ENDIF.
    IF NOT IT_NOTE[] IS INITIAL.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'NOTE1'
       WINDOW                         = 'MAIN'.
    LOOP AT IT_NOTE.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'NOTE'
       WINDOW                         = 'MAIN'.
    ENDLOOP.
    ENDIF.
    IF NOT IT_DEL[] IS INITIAL.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'DEL1'
       WINDOW                         = 'MAIN'.
    LOOP AT IT_DEL.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'DEL'
       WINDOW                         = 'MAIN'.
    ENDLOOP.
    ENDIF.
    IF NOT IT_SHIP[] IS INITIAL.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'SHIP1'
       WINDOW                         = 'MAIN'.
    LOOP AT IT_SHIP.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'SHIP'
       WINDOW                         = 'MAIN'.
    ENDLOOP.
    ENDIF.
    CLOSE FORM
    CALL FUNCTION 'CLOSE_FORM'.
    Reward if it is helpful.
    Regards,
    Sangeetha.A

  • How to execute java programs in xcode

    I cannot execute Java program in XCode for Mountain Lion 10.8.2. Please help me how to execute a Java program.

    Do you have a particular error or message or diagnostic or issue, or something that's particularly wrong with Xcode?  If installed, Java does work, and Java applications can be invoked.
    Background: Java was deprecated from OS X a while back, and Java itself was removed from the default OS X 10.8 installation.
    Given that Java is now an add-on for OS X, you'll want to check with Oracle — the owner of Java — for OS X kits and tools.
    I don't know off-hand if Xcode still particularly supports Java (it was pretty weak, when last I checked), but I'd expect you'll be using makefiles for the work, and I'd also suspect that whatever Java support remains in Xcode will probably be going away in some future version of Xcode.   (If support hasn't already disappeared.  You may be using bash build scripts and makefiles to deal with Java now, or going forward.)
    If you don't have access to the Apple developer forums and the discussions of tools available there, then the archives of the Apple Java-Dev mailing list can be a good spot to look for existing discussions, and to post questions related to Java development on OS X.
    As for IDEs other than Xcode,  Eclipse or NetBeans or IntelliJ IDEA, and BlueJ all run on OS X, and any of these would probably be a better long-term choices for Java development on OS X.

  • How does execute PHP Script from SAP?

    I've already installed SAPRFC and run SAP Function from PHP successfully. But failed when tried execute PHP script from SAP (SM59). Anyone can help me for a clear instruction for this problem?
    Thanks

    Hi Max,
    here is the Source:
    [code]
    #!/usr/bin/php -q
    <?php
    // SAPRFC - Server example
    // PHP server function RFC_READ_REPORT
    // Require: CGI version PHP, RFC destination defined in SAP R/3 (SM59)
    // http://saprfc.sourceforge.net
    // Interface definiton for RFC_READ_REPORT
    // (generated by saprfc.php - option Generate PHP)
       $DEF_RFC_READ_REPORT = array (
                             array (
                                     "name"=>"SYSTEM",
                                     "type"=>"EXPORT",
                                     "optional"=>"0",
                                     "def"=> array (
                                             array ("name"=>"","abap"=>"C","len"=>8,"dec"=>0)
                             array (
                                     "name"=>"TRDIR",
                                     "type"=>"EXPORT",
                                     "optional"=>"0",
                                     "def"=> array (
                                             array ("name"=>"NAME","abap"=>"C","len"=>40,"dec"=>0),
                                             array ("name"=>"SQLX","abap"=>"C","len"=>1,"dec"=>0),
                                             array ("name"=>"EDTX","abap"=>"C","len"=>1,"dec"=>0),
                                             array ("name"=>"VARCL","abap"=>"C","len"=>1,"dec"=>0),
                                             array ("name"=>"DBAPL","abap"=>"C","len"=>1,"dec"=>0),
                                             array ("name"=>"DBNA","abap"=>"C","len"=>2,"dec"=>0),
                                             array ("name"=>"CLAS","abap"=>"C","len"=>4,"dec"=>0),
                                             array ("name"=>"TYPE","abap"=>"C","len"=>3,"dec"=>0),
                                             array ("name"=>"OCCURS","abap"=>"C","len"=>1,"dec"=>0),
                                             array ("name"=>"SUBC","abap"=>"C","len"=>1,"dec"=>0),
                                             array ("name"=>"APPL","abap"=>"C","len"=>1,"dec"=>0),
                                             array ("name"=>"SECU","abap"=>"C","len"=>8,"dec"=>0),
                                             array ("name"=>"CNAM","abap"=>"C","len"=>12,"dec"=>0),
                                             array ("name"=>"CDAT","abap"=>"D","len"=>8,"dec"=>0),
                                             array ("name"=>"UNAM","abap"=>"C","len"=>12,"dec"=>0),
                                             array ("name"=>"UDAT","abap"=>"D","len"=>8,"dec"=>0),
                                             array ("name"=>"VERN","abap"=>"C","len"=>6,"dec"=>0),
                                             array ("name"=>"LEVL","abap"=>"C","len"=>4,"dec"=>0),
                                             array ("name"=>"RSTAT","abap"=>"C","len"=>1,"dec"=>0),
                                             array ("name"=>"RMAND","abap"=>"C","len"=>3,"dec"=>0),
                                             array ("name"=>"RLOAD","abap"=>"C","len"=>1,"dec"=>0),
                                             array ("name"=>"FIXPT","abap"=>"C","len"=>1,"dec"=>0),
                                             array ("name"=>"SSET","abap"=>"C","len"=>1,"dec"=>0),
                                             array ("name"=>"SDATE","abap"=>"D","len"=>8,"dec"=>0),
                                             array ("name"=>"STIME","abap"=>"C","len"=>6,"dec"=>0),
                                             array ("name"=>"IDATE","abap"=>"D","len"=>8,"dec"=>0),
                                             array ("name"=>"ITIME","abap"=>"C","len"=>6,"dec"=>0),
                                             array ("name"=>"LDBNAME","abap"=>"C","len"=>20,"dec"=>0)
                             array (
                                     "name"=>"PROGRAM",
                                     "type"=>"IMPORT",
                                     "optional"=>"0",
                                     "def"=> array (
                                             array ("name"=>"","abap"=>"C","len"=>40,"dec"=>0)
                             array (
                                     "name"=>"QTAB",
                                     "type"=>"TABLE",
                                     "optional"=>"0",
                                     "def"=> array (
                                             array ("name"=>"LINE","abap"=>"C","len"=>72,"dec"=>0)
    // Create list of PHP server functions
       $GLOBAL_FCE_LIST[RFC_READ_REPORT] = saprfc_function_define(0,"RFC_READ_REPORT",$DEF_RFC_READ_REPORT);
    // PHP server function
       function RFC_READ_REPORT ($fce)
           $REPORT = saprfc_server_import ($fce,"PROGRAM");
           saprfc_table_init ($fce,"QTAB");
           $fd = fopen ($REPORT,"r");
           if (!$fd)
               return ("NOTFOUND");     // raise exception "NOTFOUND"
           while (!feof($fd))
               $LINE = fgets ($fd,73);
               saprfc_table_append ($fce,"QTAB",array("LINE"=>$LINE));
           fclose ($fd);
           saprfc_server_export ($fce,"SYSTEM","PHP");
           return (true);
    // Call script with: ./server.php -a phpgw -g hostname -x sapgw00
       $rfc = saprfc_server_accept ($argv);
    // Dispatch one function call
       $rc = saprfc_server_dispatch ($rfc,$GLOBAL_FCE_LIST);
       saprfc_close ($rfc);
    ?>
    [/code]
    Regards
    Gregor
    Message was edited by: Gregor Wolf

  • How to execute modulepool program

    hi all,
    how to execute programming type M
    plz send detail informaton regarding that one

    Hi
    You cannot execute a Module pool program as you execute other ABAP programs.
    For executing a Module pool program, <b>create a z-transaction code</b> for that M-program
    & then execute the z-transaction code.
    Goto Transaction <b>SE93</b> to create a z-transaction code for that m-program.
    Then execute the Z-Transaction code.
    Kindly reward points for helpful answers!
    Best regards,
    Thangesh

  • How to execute  a program  from another

    Hi, expert
    Sorry for this question, but how can I do to execute a program from another with no parameter.
    I will thanks an answer, it's urgent...
    Regardss,
    mgg
    P.D. Points rewarded.

    Simple,  use the SUBMIT statement.
    SUBMIT zreport and return.
    Regards,
    RIch HEilman

  • How to execute Java program in Solaris 8 (Intel Platform).

    Hello All,
    I have installed Solaris 8 on my Intel based PC. JDk 1.1 and JDK 1.2 is installed by default. When I compile any Java applet or Application, it successfull complies but when I try run that applet or application (java Appletname or applicationname), It gives the error message .... File not found...Check whether file exist in the directory or not.
    Can someone tell me the reason of this error and how to correct it. Where to set the CLASSPATh etc. under Solaris 8 for successful compilation and run of programs. I do not have any problem under Windows/2000.
    Thanks in advance,
    Amoid

    [amoyeed],
    Hello All,
    I have installed Solaris 8 on my Intel based PC. JDk
    1.1 and JDK 1.2 is installed by default. When I
    compile any Java applet or Application, it successfull
    compliesI will assume that you executed this command:
    #javac <java source code filename>.java
    In order to find out which version of the javac you are using to compile the program, execute the following:
    #/usr/bin/which javac
    The output will tell the exact path to the javac binary file.
    but when I try run that applet or application
    (java Appletname or applicationname), It gives the
    error message .... File not found...Check whether file
    exist in the directory or not.You probably have not set the current directory to your environment variable PATH for the Unix shell that you are using.
    You can do the following:
    #java ./<standalone application or applet name>
    Can someone tell me the reason of this error and how
    to correct it. Where to set the CLASSPATh etc. under
    Solaris 8 for successful compilation and run of
    programs.In the shell environment settings file. Which Unix shell are you using? Bourne, Korn or C?
    I do not have any problem under Windows/2000.
    Thanks in advance,
    AmoidHTH.
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developers/support/

  • How to execute external command from SAP

    Hi gurus,
    i need to execute an external command from a Sap (rel ECC.5.0) to a server UNIX (no SAP); precisely i have to write a file into a directory in unix server.
    I see transaction SM49 and Sm69 but i don't know how can i use these features.
    Please coul'd you help me or give me a documentation.
    Thank's in advance
    Maurizio Ortolani
    email. [email protected]

    Hi Maurizio,
    i do it in this way:
    CONSTANTS: CMD_LS(50)   VALUE 'ls -al /transfer/sap'.
      DATA: BEGIN OF ITAB_LS OCCURS 0,
              LINE(200),
            END   OF ITAB_LS.
      CALL 'SYSTEM'
        ID 'COMMAND' FIELD CMD_LS
        ID 'TAB'     FIELD ITAB_LS-SYS.
    How do you write the file, via an UNIX-COMMAND than try the above call
    with your command.
    Another way is to write the file via OPEN DATASET ..., TRANSFER ... TO ..., CLOSE DATASET.
    If you mean this i can give you an example.
    Hope it helps.
    Regards, Dieter

  • Plz help me how to execute jsms program

    hi,
    i hv downloaded jsms package, in that i hv total source code for sending and receiving msgs, but i am unable to do run that application, cany any one tell me how can i run that program,
    i hv already configure required jar and properties files into my java folder, now how can i execute that application.

    What is JSMS? It's not part of Sun's distributions.

  • How to execute command(program) from external file in Oracle SQL developer

    Hi,
    Does anyone know, Oracle SQL developer version 1.0.0.14.67 got any function that can execute command from an external file?
    Example, i have 100 insert SQL inside a text file,
    and i want to use Oracle SQL developer to execute it. How do i read from my text file? Thanks a lots.

    If you're new to Oracle, do yourself and us a favour: read some tutorials and manuals. What sqldev's worth, better download the latest version (1.1.2), lots of fixes and enhancements...
    Now for the big popper: to run an external file: @file
    Best of luck,
    K.

Maybe you are looking for

  • Sharepoint 2013 Wiki Page - Links in content rewritten to relative urls

    We have an issue where on all SharePoint 2013 wiki pages any URL to items within the site containing the wiki page are rewritten to be relative URLs. This causes a huge problem when we surface these pages and a snippet of their content through a sear

  • Power Plane Problem: Only one layer as an option.

    Dear all, I try to use Create Power Plane tool as usually, but for some reason bottom layer is already selected and it can not be changed. I am using dual layer board, so there should be also top layer. I can draw traces and everything except the pow

  • Mount ipod in car permently

    can you put the ipod in a car,take the charger adaptor ,cut the end off and wire it to come on with the ignition switch without hurting it.once i put the songs on it i dont care to remove the ipod from the car.

  • Corrupted download of OZ X Yosemite

    I have downloaded and installed OS X Yosemite on my iMac. I'm now trying to do the same on my mac book pro using the same apple account. Once i start the download from the App Store it takes only few second and it says "downloaded". But what i get is

  • Reinstall issue:  Is this a Daylight Savings Time Glitch?

    I was reinstalling my system software (Garage band was lost when hard drive was backed up)and, after reinstall, the system goes to login screen. After login, the computer immediately goes to Unix login. I looked at other threads, and can get back to