How to execute these T-Codes like BLOC , BUNL

Dear All,
How to execute these T-Codes like BLOC , BUNL.
Follow this path to view these T-Codes.
( 1.) Execute CO02 or CO03.
( 2.) Put the Order Number & select Display Overview & Press Enter.
( 3.) At Status , you will see an Information Button in Blue colour. (Blue Coloured Button with i written on it)
( 4.) Press this i button.
( 5.) Below you will see the filter button , here it is written ACTIVE STATUS.
       Click once on it. It will display ALL STATUSES.
( 6.) Here we see a List of Status. Click once on any one & then click on F1 button.
( 7.) A new screen will open. Click on the "Where Used List".
( 8.) It will now show the list of T-Codes.
What these T-Codes depict ?
How to execute these T-Codes ?
Thanks & Regards,
Vivek Sharma

Hi,
These are the Business Transactions which can be possible withe the Status on which you have pressed F1.
BLOC - Lock
BUNL - Un-lock
Etc..
Check for these Business Transactions in the T.Code: BS22
Best Regards,
Siva

Similar Messages

  • How to execute a java code ...

    how to execute a java code just like in javascript:
    for example in javascript: we can create a function :
    name_fonction=new Function("param1","param2",..., "Instructions");
    but can it be supported in the common java code? how to do it?
    Je suis a little urgent...
    Thanks a lot!!!

    See beanshell
    http://www.beanshell.org/
    which should be include in the next J2SE 6.0 or 7.0.
    See JSR 274 at http://jcp.org/en/jsr/detail?id=274
    --Marc (http://jnative.sf.net)                                                                                                                                                                                                                                                                                                                                                               

  • How to execute a transaction code in prod.Server from development server

    Hi Friends,
    How to execute a transaction code in prod.Server from development server,Pls give me your valuable suggestions...
    Regards,
    V.Balaji

    i have  a program in production system if i type the request and execute its sends a mail to my admin saying to transport the request to production system.....thats y??????
    just tell me ur idea.............

  • How to execute these insert statements as a batch?

    Hello,
    I have these three insert sql statements which execute individually. I want to execute them as a batch:
    sql = "Insert into FirstTable (MessageId, MsgDate, MsgTitle) values (?, ?, ?)";
    insertStatement = connection.prepareStatement(sql);
    insertStatement.setInt(1, jmsgid);
    insertStatement.setString(2, jlogdate);
    insertStatement.setString(3, jmsgtitle);
    insertStatement.executeUpdate();
    sql = "Insert into SecondTable (MessageId, MsgDate, MsgTitle) values (?, ?, ?)";
    insertStatement = connection.prepareStatement(sql);
    insertStatement.setInt(1, jmsgid);
    insertStatement.setString(2, jlogdate);
    insertStatement.setString(3, jmsgtitle);
    insertStatement.executeUpdate();
    sql = "Insert into ThirdTable (MessageId, MsgDate, MsgTitle) values (?, ?, ?)";
    insertStatement = connection.prepareStatement(sql);
    insertStatement.setInt(1, jmsgid);
    insertStatement.setString(2, jlogdate);
    insertStatement.setString(3, jmsgtitle);
    insertStatement.executeUpdate();
    I tried the following method, but something is wrong. Can somebody help with executing these inserts as a batch?
    stmt = connection.createStatement(); // connection pool
    sql = "Insert into FirstTable (MessageId, MsgDate, MsgTitle) values (?, ?, ?)";
    insertStatement.setInt(1, jmsgid);
    insertStatement.setString(2, jlogdate);
    insertStatement.setString(3, jmsgtitle);
    stmt.addBatch(sql);
    sql = "Insert into SecondTable (MessageId, MsgDate, MsgTitle) values (?, ?, ?)";
    insertStatement.setInt(1, jmsgid);
    insertStatement.setString(2, jlogdate);
    insertStatement.setString(3, jmsgtitle);
    stmt.addBatch(sql);
    sql = "Insert into ThirdTable (MessageId, MsgDate, MsgTitle) values (?, ?, ?)";
    insertStatement.setInt(1, jmsgid);
    insertStatement.setString(2, jlogdate);
    insertStatement.setString(3, jmsgtitle);
    stmt.addBatch(sql);
    stmt.executeBatch();
    Thank you,
    Logan

    Errr I can't for the life of me understand why you thought that would work. I am bit concerned about how you assembled this code... did you copy and paste and hope for the best?
    It should be.....
    1) Get a preparedStatement using your sql. Do this step once.
    2) For each query you want to batch.... set each of the parameters and call addBatch. Call all this on the prepared statement.
    3) Then call executeBatch on the prepared statement.
    You do not need the other vanilla statement for anything.
    One important thing to note. When you batch parameters for batch prepared statement execution you can only (hopefully obviously) batch for the same SQL query. You can't do one insert and another update in the same query. It has to be all the same query.. just different parameters. This won't effect what you are doing in the above but sometimes it confuses people and they get into trouble later so I thought I would mention it now.

  • How to execute lines of code by a given amt of time?

    Hi,
    I want to know how can I execute a certain lines of code repeatedly by every 5 seconds?
    e.g. Timer(5 seconds)
    execute lines of code;
    It is just a while loop, but the condition is set by time.
    Thanks

    Look up java.util.Timer or javax.swing.Timer

  • How to execute mb31 transaction code

    Hello,
        Please tell me how to execute mb31 tcode for creating a GR for Order.
    Even after giving a destination storage location, the material shows 0 stock in MMBE
    Please reply
    Thanks & regards,
    Priyanka

    give following details
    Document Date in Document : The document date is the date on which the original document was issued.
    Posting Date in the Document :Date which is used when entering the document in Financial Accounting or Controlling.
    Delivery NOTE: if you wish to give its external no range
    Moment type: 261
    Order: if you have order no any
    plant & Storage Location as required

  • How to convert these java codes (for a feedback) to javabean?

    Can anyone please help me to convert these java codes (for feedback) to javabean using the MVC Model-View-Controller pattern design?
    <%
    //instantiate variables
    Connection con = null;
    Statement stmt = null;
    Statement stmt2 = null;
    ResultSet rs = null;
    String queryString;
    int newInBoxMsg = 0;
    int newSentMsg = 0;
    int newSavedMsg = 0;
    int newTrashCanMsg = 0;
    String currentUserID = 1+"";
    String adminID = 1+""; //change this ID to your adminID in the db
    try
    //Load the JDBC driver
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    //Get the connection getConnection("access driver", "userID", "password")
    con = DriverManager.getConnection("jdbc:odbc:FREN_DB","","");
    stmt = con.createStatement();
    //sql statements: create, update, query
    Calendar cl = Calendar.getInstance();
    %>
    <%
    if(request.getMethod()=="POST"){
                   int y = stmt.executeUpdate("INSERT into Feedback(`whom`, `msg`, `date`)"
                   +" values ('"+currentUserID+"', '"+request.getParameter("date")+"', '"
                   request.getParameter("msg")"')");
                   int x = stmt.executeUpdate("INSERT into MailBox(`whom`, `who`, `mailheader`, `mailbody`, `date`)"
                   +" values ('"+adminID+"', '"+currentUserID+"', 'Feedback', 'We have received your feedback and we will respond to you as soon as possible', '"+request.getParameter("date")+"')");
                   out.println("Feedback Sent!");
    else {
    %>
    <form name="compose" method="POST" action="Feedback.jsp">
    <input name="date" type="hidden" value="<% out.println(cl.get(cl.DAY_OF_MONTH)+"/"+cl.get(cl.MONTH)+"/"+cl.get(cl.YEAR)); %>" maxlength="20">
    <p>Your Feedback</p>
    <p>
    <textarea name="msg" cols="50" rows="10"></textarea>
    </p>
    <p>
    <input type="submit" name="Submit" value="Submit">
    </p>
    </form>
    <%
    }catch(Exception e) {
    System.out.println(e);
    %>

    Okay, first suggestion is to never create database connections in JSP/Servlet. SInce you mentioned MVC, JSP is the View, and a servlet can be the controller to process requests and redirect accordingly.
    This piece of code should be in a class invoked from the model layer (business logic components) preferably with some abstraction. Maybe you should search around for DAO pattern. That might give you an idea.

  • How to execute an java code in pl/sql

    hi frnzzzzz....
    iam new to java and sql both..... and i whant to execute an java program at pl/sql window. do i have to write an code on java source in program unit of pl/sql editor (i.e is in File>>new>>program window>>java source), if yes then i have done
    (i have writtttten
    create or replace and compile java source named tt as
    public class tt
    public static int entry()
    return(10);
    that and after pressing f8
    i gott up the message compiled successfully, and after that i am wondering that how i can run it .
    and if i have write an seprate code using notepad then i have done that tooooo....
    but now what to do to load java in my pl/sql window?????????
    plz. help me out...

    Hhhhhhhhhhhaaaaaaaaaavvvvvvvveeeeeeeee
    yyyyyyooooooooouuuuuuuuuurrrrrrrrrr
    kkkkeeeeeyyyyyyyybbbbbboooooooooaaaarrrrrrrrrddddddddd
    ffffffffiiiiiiiiiixxxxxxxeeeeeeeeedddddddddd
    ffffiiiiiiiirrrrrrrsssssssssssssttttttttt,,,,,,
    ppppppppppplllllllllzzzzzzzzzZZzzzzzzzzzzzzZzzzzzzzzzz
    !!!!!11!1!!11111!loool

  • How to execute My Javascript code from command line or through perl or VB

    Hi Forum,
    I am a new bie, just 2 days old to acrobat and javascript, and I am basically a perl developer
    Here with I have created a small script to merge two pdf
    // Create a new PDF document:
    var newDoc = app.newDoc();
    // Insert doc1.pdf:
    newDoc.insertPages({
    nPage : -1,
    cPath : "/d/sathish/1.pdf",
    // Insert doc2.pdf:
    newDoc.insertPages({
    nPage : newDoc.numPages-1,
    cPath : "/d/sathish/2.pdf",
    // Save the new document:
    newDoc.saveAs("/d/sathish/myNewDoc.pdf");
    My code is working fine and merging properly,
    Is there any way to execute this script through commandline or using some other scripting languages like perl or through VB
    My objective is to automate the merging process without any manual intervention, I don't want to open acrobat manually to execute this javacript, i want to automate that process too,
    Please suggest me which will be very helpful to me,
    Thanks in advance
    Thanks & Regards
    Sathish V.

    Hi Sathish,
    did you find a solution for this? I am looking for the same thing. I want to write a program(perl, batch script, etc.) which could automatically convert pdf to excel without any manual intervention.
    I have the acrobat javascript which could achieve this, but it can only be executed in arobat consolt.  I need it to be able to get executed in a script to automate the processing.
    thanks
    Warren

  • How to execute app from code in Mac OS X?

    I would like to launch another application from my Java code which will run on OS X. Doesn anyone know how to do this? I think it involves the "Runtime.getRuntime.exec()" method, but I'm not sure how to tell it which application to launch.
    Thanks

    Apple has a technote that describes what you are looking for:
    http://developer.apple.com/technotes/tn/tn1168.html

  • How to document ABAP Source Code like doxygen

    Hi, all.
    Is there any way or tool to generate HTML from ABAP source code? Like doxygen?
    What i want to do is like the following.
    - Retrieve all the ABAP source code of a specified package.
    - Generate HTML(coloring of keywords or so) from the ABAP source code.
    Best Regards.
    Sejoon Ahn

    You dont need to check the source code to find whether program is moved to PRD.
    Just check the version management of program in development itself.
    Click on transport log of request to find it.

  • How to identify the t-codes like s_alr-* t-codes

    Hi, Please advise how to identify the s_alr t-codes in the r/3 system. for example, we can set the config of same node with op40 t-code as well as with S_ALR_87006275 t-code. how to know the s_alr_*** t-codes in sap system. thanks for your support.

    Raju,
    Although OP40 and S_ALR_87006275 may look the same to you, they are not the same.
    You can review information about transactions using the repository (SE84 > other objects > transactions) to find out more about them.  As mentioned by the other gurus, you can also do a table lookup to find out the transaction names that exist.
    Don't expect any kind of consistency in the way SAP deals with transactions assigned to configuration nodes.   There isn't any.  Not all IMG nodes will have s* transactions assigned to them.  Actually, many nodes have no transactions assigned to them.
    Best Regards,
    DB49

  • How to convert these java codes (for a mailbox) to javabean?

    Can anyone please help me to convert these codes to javabean?
    //instantiate variables
    Connection con = null;
    Statement stmt = null;
    Statement stmt2 = null;
    ResultSet rs = null;
    String queryString;
    int newInBoxMsg = 0;
    int newSentMsg = 0;
    int newSavedMsg = 0;
    int newTrashCanMsg = 0;
    String currentUserID = 1+"";
    try
    //Load the JDBC driver
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    //Get the connection getConnection("access driver", "userID", "password")
    con = DriverManager.getConnection("jdbc:odbc:FREN_DB","","");
    stmt = con.createStatement();
    stmt2 = con.createStatement();
    //sql statements: create, update, query
    //new msges in inbox
    rs = stmt.executeQuery("select ID from MailBox where who = \'"+currentUserID+"\' and whoRead = false");
    while (rs.next()) {
    newInBoxMsg+=1;
    //new messages in sent-items
    rs = stmt.executeQuery("select ID from MailBox where whom = \'"+currentUserID+"\' and whomread = false");
    while (rs.next()) {
    newSentMsg+=1;
    //new messages in saved items
    rs = stmt.executeQuery("select ID from MailBox where who = \'"+currentUserID+"\' and whoSave = true");
    while (rs.next()) {
    newSavedMsg+=1;
    rs = stmt.executeQuery("select ID from MailBox where who = \'"+currentUserID+"\' and whoDelete = true and whoRead = false");
    while (rs.next()) {
    newTrashCanMsg+=1;
    %>

         public class MyBean {
              public void doSomething() {
                   //          instantiate variables
                   Connection con = null;
                   Statement stmt = null;
                   Statement stmt2 = null;
                   ResultSet rs = null;
                   String queryString;
                   int newInBoxMsg = 0;
                   int newSentMsg = 0;
                   int newSavedMsg = 0;
                   int newTrashCanMsg = 0;
                   String currentUserID = 1+"";
                   try
                        //          Load the JDBC driver
                        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
                        //          Get the connection getConnection("access driver", "userID", "password")
                        con = DriverManager.getConnection("jdbc:odbc:FREN_DB","","");
                        stmt = con.createStatement();
                        stmt2 = con.createStatement();
                        //          sql statements: create, update, query
                        //          new msges in inbox
                        rs = stmt.executeQuery("select ID from MailBox where who = \'"+currentUserID+"\' and whoRead = false");
                        while (rs.next()) {
                             newInBoxMsg+=1;
                        //          new messages in sent-items
                        rs = stmt.executeQuery("select ID from MailBox where whom = \'"+currentUserID+"\' and whomread = false");
                        while (rs.next()) {
                             newSentMsg+=1;
                        //          new messages in saved items
                        rs = stmt.executeQuery("select ID from MailBox where who = \'"+currentUserID+"\' and whoSave = true");
                        while (rs.next()) {
                             newSavedMsg+=1;
                        rs = stmt.executeQuery("select ID from MailBox where who = \'"+currentUserID+"\' and whoDelete = true and whoRead = false");
                        while (rs.next()) {
                             newTrashCanMsg+=1;
                   catch(SQLException e){
                        e.printStackTrace();
                   finally {
                        // Close resources here
              }Voila, it's a bean!

  • How to Execute FEBP and FEBA transaction codes

    Hi All,
    Can you please explain me how to configure customizing for FINISTA in EBS.
    And also can you plz explain how to execute the t codes FBEP and FBEA.
    regards
    Madhavi

    Hi
    Enter T.Code: MIGO
    Select : Other
    Movement Type : 561
    In the item Details Entyer the material . enter the quantity. Plant and Storage Location.
    Save it. CHekc the Stock In MMBE for that material.
    Thanks & Regards
    Ram

  • To execute from ABAP code an external Unix program

    HI,
    I would like to know how to execute from ABAP code an external Unix program and check for a return code?

    HI,
    There are different ways to this:
    (1) OPEN DATASET <file> FOR OUTPUT 'unix command'
    CLOSE DATASET <file>
    This command executes the unix command and writes the output into <file>
    Look into OSS Note 9391.
    (2) or try the following program but unfortunately the command CALL SYSTEM is
    not supported by SAP. If you are on R/3 2.1 - 2.2x you can get some idea's from the program SAPMSOS0.
    REPORT ZUNIXCOM .
    DATA: U_COMMAND(200).
    Table for system messages
    DATA: BEGIN OF RT OCCURS 100 ,
    LINE(100) ,
    END OF RT .
    START-OF-SELECTION .
    MOVE 'unix command' to U_COMMAND .
    REFRESH RT.
    CALL 'SYSTEM' ID 'COMMAND' FIELD U_COMMAND
    ID 'TAB' FIELD RT-SYS .
    LOOP AT RT.
    WRITE : / RT-LINE .
    ENDLOOP. 
    Reward Points if found helpfull..
    Cheers,
    Chandra Sekhar.

Maybe you are looking for

  • Is there a way to create a flipping book with the flipping 5k adobe software?

    Am I the only one pissed with the f adobe products? Is there a way to create a flipping book with the flipping 5k adobe software? Is it Flash, etc? Thanks

  • Using Automator action/workflow to create a poster in iPhoto

    I'm using Jim Heid's Mac iLife 'lifeposter' idea [which comes from Mike Matas] and I keep getting a message taht says "the workflow was saved with an older version of 'get Selected items' some behavior may have changed. and also another ref. 'import

  • Apple TV Color Messed Up

    The past few days, something really strange has been going on with the colors on our Apple TV.  I've tried updating the software, resetting it, unplugging cords etc. Photo attached. Any ideas?

  • IDOC: Number sequence

    Hi Can anyone tell me why my idoc numbers are not generated in sequence? 0000000000215190     08:16:01 0000000000216399     08:18:28 0000000000215191     08:18:31 0000000000218015     08:37:15 0000000000216400     09:21:41 0000000000218016     09:25:

  • Iconified Windows

    Hello, I have a top level container as follows: import java.awt.*; import java.awt.event.*; import java.awt.image.*; public class WindowTest extends Window {    int x = 0;    int y = 0;    int xPos = 0;    int yPos = 0;    public WindowTest(Frame par