Po is created by manully but it is not shown in ekko table

Hi,
PO is created my manully , it is saved by as a 28 number .In EKKO table this PO number  is not shown but 27 and 29 PO number are availble in EKKO table .Please help me on this.
And how we can retive the 28 PO .
Thanks
Happy .

Hi,
check the ST22 transaction, you might have got Update Termination error for that.
In such cases, system generate the messages of PO Creation and terminate prior to saving the Transaction.
It will not be possible to retrieve it back.
regards,
S Anand

Similar Messages

  • I am trying to create mp3 version of itune songs.  I have gone through the preference sequence to be mp3 encoder but this is not having any effect.  I have also tired from file tab to create a version but this is not available to action

    I am trying to create mp3 version of itune songs.  I have gone through the preference sequence to be mp3 encoder but this is not having any effect.  I have also tired from file tab to create a version but this is not available to action showing as lite grey.
    Any help would be appreciated

    I am trying to create mp3 version of itune songs.  I have gone through the preference sequence to be mp3 encoder but this is not having any effect.  I have also tired from file tab to create a version but this is not available to action showing as lite grey.
    Any help would be appreciated

  • TS1292 iTunes card $25 was redeemed but credit is not shown in my account.

    I purchased a iTunes card. And card was redeemed, but credit is not shown in my account.

    You can view the purchase history on your account via your computer's iTunes : log into your account on your computer's iTunes via the Store > View Account menu option, you should then see a Purchase History section with a 'see all' link to the right of it. Click on that and you should then see a list of your purchases. Does anything show there that would account for the $20 ?

  • I WANT TO UNINSTALL ELEMENTS 10 ON WINDOWS 8 BUT IT IS NOT SHOWN UNDER PROGRAMMES AND FEATURES SO HOW DO i DO IT PLEASE?

    I
    WANT TO UNINSTALL ELEMENTS 10 ON WINDOWS 8 BUT IT IS NOT SHOWN UNDER PROGRAMMES AND FEATURES SO HOW DO i DO IT PLEASE?i

    Please post Photoshop Elements related queries over at
    http://forums.adobe.com/community/photoshop_elements
    But please not all-caps.

  • I want to uninstall Elements 10 but it is not shown under Programmes and features in my Windows 8. How do I do it please?

    I want to uninstall Elements 10 but it is not shown under Programmes and features in my Windows 8. How do I do it please?

    See if this helps:
    https://helpx.adobe.com/photoshop-elements/kb/manually-remove-photoshop-elements-10.html

  • I have create apple id but it is not working in itunes......

    my apple id is create but it is not working in itunes.......

    Why not?
    "not working" could be any one of dozens of differnt things.  If you want help, stop being vague.

  • Downloaded iOS Dev videos but some are not shown as downloaded in iTunes U collection

    This is a 2 day old Mac Mini so maybe something is not set correctly.
    I chose to download the iTunes U collection of iOS Development videos.
    12 videos downloaded OK and I have been watching, the others downloaded but are not shown as downloaded (the 'Get' is still shown).
    An example is the Effective iPhone App Development - Part 1
    I have downloaded this now 3 times and logged out and back in, closed all applications and opened them again with no effect.
    There was a comment in one Apple forum that suggested video restrictions may be preventing some downloaded videos from being displayed.
    As far as I can see there are no restrictions set.
    Must admit to being a bit stuck on this one.

    I had the same problem. This seems like a bug.
    I discovered a workaround for this problem:
    Open your "iTunes Media" folder (usually at /Users/YOURUSERNAME/Music/iTunes/iTunes Media).
    Inside "iTunes Media" should be a folder called "Downloads". Open it.
    Now switch over to your iTunes application and start downloading the video.
    Now switch back to the iTunes Media "Downloads" folder. A folder named "iTunes U" should appear. Open it. Now open the next folder which should be called "Effective iPhone App Development - Part 1 _ iOS Development Videos.tmp". Inside this temp folder you should see a file called "download.m4v" which we will deal with later.
    IMPORTANT. While the video is still downloading, drag and drop any file (like a random text file) from a different location into that temp folder. If you don't drag and drop a file into the temp folder, iTunes will automatically delete the "download.m4v" video file right after it finishes downloading.
    After the iTunes application is finished downloading, you can drag the "download.m4v" file out of the temp folder and onto the desktop or a different folder of your choosing. This file can now be viewed with Quicktime or any other video player.
    Hope this helps!

  • Created serializable object, but get "Class not found" on "createObjectMessage()" cal

    I'm using OC4J 9.0.2.1 and JDeveloper 9.0.2 with Oracle db. I have a set of queues created in the database.
    Before I try to send my request, I create an instance of the serializable object I want to send. I do all of my queue connection setup, then I call:
    queueSession.createObjectMessage(request);
    Where "queueSession" is a QueueSession obtained from "queueConnection.createQueueSession()".
    When I step over this function call, I get the following:
    oracle.jms.AQjmsException: JMS-109: Class not found: com.attws.it.bsa.felix.mci.common.ServiceInfoRequest
    (The indicated class name is the type of the "request" object.)
    What could I be doing wrong?

    The code below creates the following classes when I compile it (using jsk1.3):
    DistanceBarApplication2.class
    DistanceBarApplication2$1
    DistanceBarApplication2$2
    DistanceBarApplication2$3
    DistanceBarApplication2$DistanceBar2
    The error I receive is: load: class DistanceBarApplication2 not found
    Here is my HTML code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    </HEAD>
    <BODY>
    <applet code="DistanceBarApplication2.class" width=300 height=50>
    </applet>
    </BODY>
    </HTML>
    Here is the Java code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class DistanceBarApplication2 extends JApplet {
    private final DistanceBar2 bar = new DistanceBar2();
    public void init() {
    bar.setMaximum(100);
    bar.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    bar.stop();
    JOptionPane.showMessageDialog(bar, bar.getValue() + " yards");
    bar.start();
    this.getContentPane().add(bar);
    bar.start();
    static class DistanceBar2 extends JProgressBar {
    private Thread mThread;
    private boolean mRunning= false;
    private int mValue = 0;
    private boolean mUp = true;
    private Runnable updater = new Runnable() {
    public void run() {
    setValue(mValue);
    public void start() {
    if (mRunning) {
    return;
    mRunning = true;
    mThread = new Thread(new Runnable() {
    public void run() {
    while (mRunning) {
    try {
    Thread.sleep(30);
    } catch (InterruptedException e) { }
    adjust();
    mThread.setDaemon(true);
    mThread.start();
    public void stop() {
    mRunning= false;
    // Best to let a thread run itself out
    // if (mThread != null)
    // mThread.interrupt();
    // Don't need this for this applet, but possibly later
    // public Dimension getPreferredSize() {
    // return new Dimension(300,70);
    private void adjust() {
    int delta = getMaximum() / 40;
    mValue += delta * (mUp ? 1 : -1);
    if (mValue >= getMaximum()) {
    mValue = getMaximum();
    mUp = false;
    } else if (mValue <= 0) {
    mValue = 0;
    mUp = true;
    SwingUtilities.invokeLater(updater);

  • I try and create this string but the quotes not working

    Hi, I am using FB 4.5 and when I try and create this string:
    ']]></fx:Script>'
    it doesn't see it as a string,
    FYI i'm writing some code gen stuff and trying to use it in this context:
    '<fx:Script><![CDATA[' + validatorArrayCode +  ']]></fx:Script>' + formCode;

    Nope, it started this morning and remains the same. Still waiting for some help!

  • When I do a download and select SAVE instead of RUN, I create a file but it is not a file that I can do an install from.

    I am attempting to download a savable image of FireFox on one computer and then transfer it to another computer on portable medium. I want to have FireFox on the second computer without ever having to go on line with Windows Internet Explorer.
    My problem is that whenever I run Internet Explorer on the second computer (Compaq Presario 2100 with XP), svchost runs amuck gobbling up all RAM and maxing out CPU. Once svchost gets into this state, it won't let go, even when I exit Explorer. I have even reformatted the hard drive and rebuilt Windows. I hope that this won't happen with FireFox. Do you have any insight into the svchost problem? Any suggestion on how to save an installable file?
    Thanks, Richard Rogers

    read basic about svchost:
    [http://support.microsoft.com/kb/314056/en-us A description of Svchost.exe in Windows XP Professional Edition]
    find svchost services:
    [http://webcache.googleusercontent.com/search?q=cache:pa9PdGlHr0sJ:www.bleepingcomputer.com/tutorials/list-services-running-under-svchost.exe-process/+what+is+svchost.exe&cd=12&hl=el&ct=clnk&gl=gr a way how to determine what services are running under a SVCHOST.EXE process]
    One Temporary Solution is to disable the Windows Automatic Update service:
    http://ask-leo.com/how_do_i_fix_this_high_cpu_usage_svchost_virus_or_whatever_it_is.html
    (no '''it is not''' a virus)
    (works for me)
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • I am new and want to create apple id but i am not be able to get varification mail

    not got any varification mail from site fow new account

    The following may help: If you didn't receive your verification or reset email - Apple Support

  • When I assign new Item created to single org it is not shown on PO.

    One item is created and assigned to single org but not able to view on PO. While I do assign all it is seen on PO.
    Setup>Organization>finantial option>supplier purchesing>inv org --> is NOT item master but other org. Is this problem is becoz of this. Kindly help.

    Have you assigned the item to the org used on financial options?
    Sandeep Gandhi

  • I add some node to a tree but it is not shown in web page.

    Hi
    thank you for reading my post.
    I read some tutorial in the web and i add some tree node to a tree dynamically.
    but none of them is shown :(.
    I should say that i write the code that create a tree in session scope bean because my tree is placed in a fragment and fragment has no preRender method.
    here is code that initiate a tree, and i think it is correct.
        public void initiateTree() {
            getTree1().setClientSide(true);       
            System.out.println("Setter called");
            Context ctx=null;
            DataSource ds=null ;
            Connection con=null ;
            Statement st = null ;
            List rootMenuItems = new ArrayList();
            ResultSet rs = null;
            try {
                ctx = new InitialContext();
                ds= (DataSource) ctx.lookup("java:comp/env/jdbc/dataSource");
                con= ds.getConnection();
                st= con.createStatement();
            } catch (Exception ex) {
                ex.printStackTrace();
            try {
                java.sql.PreparedStatement childsPSt  = con.prepareStatement("select * from categories where parentcategory = ?");
                rs=  st.executeQuery("select * from categories where parentcategory= 0 and language = " +"'"+getLang()+"'");
                //roots
              while(rs.next()){
                  int parentID = rs.getInt("categoryID");
                                System.out.println("A root has been added   "+parentID );
    TreeNode aRootNode =  new TreeNode();
    aRootNode.setText(rs.getString("categoryname"));
                //childs
                    childsPSt.setInt(1,parentID);
                    ResultSet cRs = childsPSt.executeQuery();
                    while(cRs.next()){
                        System.out.println("Achild has been added "+ cRs.getString("categoryname")+ " " + parentID);
    TreeNode childNode = new TreeNode();
    childNode.setText(cRs.getString("categoryname"));
    aRootNode.getChildren().add(childNode);
    getTree1().getChildren().add(aRootNode);
            } catch (SQLException ex) {
                ex.printStackTrace();
       I call this method in session bean constructor.
    here is code that bind the tree in page fragment to session bean tree1
                <ui:tree binding="#{SessionBean1.tree1}" id="tree1" style="height: 167px"/>here is console output that prove the initiate method do some works.
    Setter called
    A root has been added   1
    Achild has been added cat name 2  1
    Achild has been added cat name 3 1
    A root has been added   5

    i think u need to add hyperlink component to the node thus cause node must carry hyperlink or anything u like to add like staticText or checkBox ....
    add this code after creation the aRootNode and childNode
    it may works :)
    Hyperlink h = new Hyperlink();
    h.setText(cRs.getString("categoryname"));
    childNode .getFacets().put( childNode .CONTENT_FACET_KEY, h );

  • SAP Script for PO works in test mode but changes are not shown on PO

    Hi,
    I've modified the sapscript for the Purchase order.When I go to se71 and print test it the chage is visible.But when I actually see the attachment in mail  chages are not visible.
    Thanks
    Venkat

    Hi Venkat,
    Plz activate the debugger & check if the window where you have made ur changes (text element & texts) is getting executed or not. Debugging will help you to know whether or not the change is triggered.. & Also as to know why its not triggered.. (may be there are some codes above thats working differently when you display the PO at runtime.
    To debug the script.. on the tcode SE71 ---> Utilities --> Activate Debugger
    Let me know if you have questions.
    Thanks
    Geetha

  • Bank statements are uploaded successfully, but transactions are not shown in FF_6/FEBAN

    Hello Friends – Can you please clarify my doubt with regards to the issue with Bank statement upload.
    We uploaded the Bank statements successfully. After that when I go to FF_6/FEBAN, I do not see the transactions and Bank statement we received has got transactions.
    It shows Statement status “8”.
    As Documents are not posted (I also checked in FEBEP table, do not see any line items), I should delete these Statements and upload them again?
    Thanks

    Hi,
    Please check if you have marked " Do Not Post" in FF_5 for importing bank statement.
    This could be one of the reason why you are  not seeing bank statement in SAP.
    Regards
    Nitin

Maybe you are looking for

  • Error when purchasing Adobe CC

    I try to purchase Adobe CC (Photography Plan), after filled all forms and submitted many times, they keep saying: There was a problem processing your order, please contact our Customer Service team for assistance. Indonesia: 001 803 447 361 Malaysia:

  • Logo download to pdf file.

    Hi all, I need to download a logo which is available in se78 into pdf along with report output and send as mail attachment can you suggest me how to go about. I have searched in the forum and didnt find apt solution.

  • Photos app do not back up my Photos library into iCloud

    I have just updated to OS x 10.10.3. When I tried to enter the Photo app, I got the message ״There is not enough disk space to migrate your library. It is estimated that you need at least 33GB of additional free space.״ I have a 256 GB SSD hard drive

  • How to restore my MSI MegaStick 511 MP3 software??

    Hi, I accidentally formatted my MSI MegaStick 511. All the software inside are gone and now I can only use it as a normal storage pen drive and can't listen to MP3 nor radio station  . I have lost the MSI package/cover box as I was told there is a CD

  • 890fx board having touble with ethernet connection

    i own an 890 fx mother board and i am having trouble connecting to the internet through my ethernet cable. i have checked the cables to make sure they work and i have checked both of my ethernet ports neither of them work. the internet through the po