PO Printout Error

Hi,
I want to print some POs in bulk through txn. ME90, but the system is throwing error 'no selectible item found.' What should I do?
Thanks,
Mounika.

Hi,
1) Check that the processing status (not yet processed, errors etc.) you select under ME90 matches with the document status.
2) Check the printing time enetered in ME90 with those from the documents. This may be print with a job or with application.
3) Finally, check that the message type you use in ME90 actually has an entry in these documents.
Also check that these PO's are released. Check the status at PO header status tab. Also ensure to set the proper selection parameters when doing ME90.
Reward points if found helpfull...
Cheers,
Siva.

Similar Messages

  • Inspection report Form QM_INSP_RESULT -result printout Error ( 626109 / 201

    in QA32 Transaction when we are printing Inspection report in English
    langauge Form QM_INSP_RESULT -result printout there is an error
    "Text element does not exist" and it is giving ABAP dump
    I have Test all below steps - Log on SAP in DE  - works fine in DE
    Did anybody faced similar issue?

    Hi All,
    You can implement the exit  QSS10001 and call your Z smartform from there and then just set
    e_exit_activ = 'X' at the end(This will stop standard script ). This will work. Please let me know your further queries regarding this.
    Thank you.
    Message was edited by: Craig S

  • MIGO printout error

    Hi
    I have created GR and I put tick on the box by the side of the print indicator also. But when I try for Printout by using MB90, I am getting error as "No messages for initial processing exist"
    Please find solution for this.
    Regards
    venkat

    pls check the settings as per below link..
    MB90- GR Print

  • F150 Dunning printout error

    Hello,
    While trying to print the dunning report we get the following error:
    Dunning notice for account: 'D ' 'D50016 ' was not printed
    > Forms for MAHNR: 'LAXM ', RBUKM: '1000 ', KOART: 'D ' do not exist (T047E)
    Is this a configuration error what steps can we use to resolve this error.
    Thank you

    Hi,
    the form for dunning notice printing is missing in the system where you try to do the dunning procedure.
    Ensure that the form "LAXM" for the dunning comp. code "1000" for account type "D" can be seen in table T047E.
    There is a SAPNET note 650000 describing a reason for this system behaviour.
    best regard, christian

  • Purchase Order form printout error.

    Hi all experts,
    I am not sure which category I should put this question to. Please guide me if I have raised the question in the wrong category, so that I can raise it at the right category. Sorry!
    I am having some problems in printing Purchase Order form using Simple Mail, let's say I am using output type MAHN. Whenever the PO is generated in Simple Mail, a print preview screen with Output Device is pop up, and require me to key in the details like printer name in order to proceed to next step (which is not necessary for my case).
    Whereas, in normal print preview, there is no such pop up display.
    I am suspecting of it is caused of the setting. But I do not know how to solve it.
    Anyone experienced this before? Please help.
    Thanks in advance.

    Hi Sachin D C,
    I am sorry for the confusing query. Actually what I wanted to say is: -
    1) printing the PO - maintain condition records for output type NEU (working fine)
    2) printing Dunning Deliv Remind - output type MAHN (working fine in manual print out)
    3) printing Dunning Deliv Remind - output type MAHN (not working in simple mail)
    Whenever the Dunning Deliv Remind is generated in Simple Mail, a print preview screen with Output Device is pop up and following by another pop up screen Output Processing analysis.
    Do you have better understanding now?
    Please help.

  • How to get system time and date with PHP

    Dear Mr.Craig,
      Thanx a lot. We are running SRM 5.0 (RAMP - Implementation).
      My initial requirement is to write a server-side script to display server date and time. Could you give more inside on how to achieve it?
    Regards,
    Deva.

    Perhaps that will help.
    [code]
    <html>
    <h1>Access System time and date</h1>
    <?
         // saprfc-class-library     
         require_once("saprfc.php");
         $sap = new saprfc(array(
       "logindata"=>array(
       "ASHOST"=>"localhost"          // application server
       ,"SYSNR"=>"00"                    // system number
          ,"CLIENT"=>"000"               // client
          ,"USER"=>"bcuser"               // user
          ,"PASSWD"=>"minisap"          // password
         ,"show_errors"=>false               // let class printout errors
         ,"debug"=>false)) ;                     // detailed debugging information
         $result=$sap->callFunction("MSS_GET_SY_DATE_TIME",
            array(     array("EXPORT","SAPTIME",array()),
               array("EXPORT","SAPDATE",array())));
         if ($sap->getStatus() == SAPRFC_OK) {
        echo "Time: ".$result["SAPTIME"];
        echo "<br>Date: ".$result["SAPDATE"];
        echo "<br>or<br>";
        echo "Server is showing: "
             .substr($result["SAPDATE"], 0, 4)
             ."-".substr($result["SAPDATE"], 4, 2)
             ."-".substr($result["SAPDATE"], 6, 2)
             ." and "
             .substr($result["SAPTIME"], 0, 2)
             .":".substr($result["SAPTIME"], 2, 2)
             .":".substr($result["SAPTIME"], 4, 2);
         } else {
              $sap->printStatus();
         $sap->logoff();
    ?>
    [/code]

  • Problem calling function

    Hi,
    i have creted a function module which read stock quantity using BAPI_MATERIAL_AVAILABILITY.
    Import - MFRPN
    Export - QNTY
    If i execute function module from SAP the result it's OK but when i call function from PHP it does not output nothing.
    $sap = new saprfc(array(
                                       "logindata"=>array(
                                            "ASHOST"=>"192.168.3.1"          // application server
                                            ,"SYSNR"=>"00"                    // system number
                                            ,"CLIENT"=>"200"               // client
                                            ,"USER"=>"rfc"               // user
                                            ,"PASSWD"=>"123456789"          // password
                                       ,"show_errors"=>true               // let class printout errors
                                       ,"debug"=>false)) ;                     // detailed debugging information
              // Call-Function
              // Call-Function
              $result=$sap->callFunction("Z_READ_QNTY",
                                                             array(
                                                                     array("IMPORT","MFRPN",$_POST['cod']),
                                                                     array("EXPORT","QNTY",$quantity),
              // Call successfull?
              if ($sap->getStatus() == SAPRFC_OK)
                   echo $quantity;
              else
                   // No, print long Version of last Error
                   $sap->printStatus();
                   // or print your own error-message with the strings received from
                   //           $sap->getStatusText() or $sap->getStatusTextLong()
    Please someone help me.
    Thank you.

    hi Dan,
    i will send you an working code sample. The  Fuba ZGET_MAKTX is easy  MATNR as import parameter and MAKTX as export parameter.
    you will receive the material short description.
    hope this will help you a little bit.
    in your code i thing you forgot to fill the $quantity    like this    $quantity = saprfc_export($fce,"QNTY");   before         echo $quantity;
    regards
    Tony
    <?php
         //Login to SAP R/3
         $login = array ("ASHOST"=>"vsap3", "SYSNR"=>"2", "CLIENT"=>"200","USER"=>"vsrfc", "PASSWD"=>"********", "CODEPAGE"=>"1100");
         $rfc = saprfc_open($login);
         if (!$rfc) {
              echo "RFC connection failed";
              exit;
         $fce = saprfc_function_discover($rfc,"ZGET_MAKTX");
         if (!$fce) {
              echo "Discovering interface of function module failed";
              exit;
         saprfc_import($fce,"MATNR","200200");
         $rc = saprfc_call_and_receive ($fce);
             if ($rfc_rc != SAPRFC_OK) { if ($rfc == SAPRFC_EXCEPTION ) echo ("Exception raised: ".saprfc_exception($fce)); else echo (saprfc_error($fce)); exit; }
             $maktx = saprfc_export($fce,"MAKTX");
             echo $maktx;
             saprfc_function_free($fce);
             saprfc_close($rfc);
    ?>
    Edited by: Tony Wienhold on Oct 7, 2008 11:19 AM
    Edited by: Tony Wienhold on Oct 7, 2008 11:22 AM

  • PDFs are always printed 2 pages per sheet

    My system was reformatted recently and everything had to be reinstalled.
    Acrobat Reader XI (11.0.2) and Acrobat Pro 9 (9.0.0*) are now having problems when printing PDFs: every PDF is always printed at 2 pages per sheet. The resulting 4-point type printouts are not useable.
    Word prints 1 page per sheet.
    I'm not exactly sure where to even start troubleshooting this. Any suggestions would be welcome.
    Thanks in advance!
    *Yes, 9.0.0. When I accepted the last automatic update, Acrobat Pro started crashing on startup. I uninstalled and reinstalled, and am very, very wary about accepting an update right now.

    Well, that was interesting.
    After running the Acrobat Cleaner from the above link, on both Acrobat Pro 9.0 and Reader 11.0.2, it looked like everything was gone.
    However, the company uses CA's IT Client Manager, and its DSM Software Delivery Catalog thinks that Acrobat Pro is still installed. So does Add/Remove Programs.
    Six system reboots and A long call with the help desk later, my case has been escalated to the CA team and we'll see what happens now.
    Reader 11.0.2 is reinstalled, and now? It can't print AT ALL. I get this instead of a printout:
    ERROR: undefined
    OFFENDING COMMAND: Pscript_WinNT_Compat
    STACK:

  • PHP problem - saprfc_test.php

    Question to the experts
    I just installed Apache 2.2.4 with PHP 5.2.1 and saprfc-1.4-5.2.0.Win32.zip ( I had could not use saprfc-1.4.1-5.1.1.Win32 due to incompatibility)
    Now everytime I run one of the test pages I get
    SAPRFC-Class: Get List of Users in SAP-System
    array( "ASHOST"=>"iwdfvm1035.wdf.sap.corp" // application server ,"SYSNR"=>"00" // system number ,"CLIENT"=>"100" // client ,"USER"=>"DEMO" // user ,"PASSWD"=>"WELCOME" // password ) ,"show_errors"=>false // let class printout errors ..
    I get a similar source code comming from the PHP from other test pages
    ANY Ideas?
    All phps are located under c:\apache22\htdocs
    Here is my config
    php.ini
      doc_root = "c:\apache22\htdocs"
      extension_dir = "c:\apache22\php\ext"
      extension=php_saprfc.dll
    The php_saprfc.dll is is in the ext directory and librfc32.dll is also under windows/system32
    saprfc.php is located in c:\apache22\htdocs
    Your help will be appreciated

    for apache you'll need <b>at least</b> something like:
    ScriptAlias /php/ "c:/path/to/php/"
    AddType application/x-httpd-php .php .php5
    Action application/x-httpd-php "/php/php-cgi.exe"
    if you used the cgi version of PHP.

  • F150 Dunning printout - Termination Error

    Dear Experts
    At T.Code F150 Dunning proposal run, if we execute "Dunning Proposal" and if we want to delete it then system permits us to delete the Dunning Proposal.
    However, in some cases,  system shows everything correct at Dunning Proposal but when we execute "Dunning Print out" system give error message like "Dunning Printout as terminated".  In this case, we figure out the problem and re-run dunning printout to solve the problem.
    However, I would like to know,  Is there any possibility that we can delete "Dunning run" completely when dunning printout is ended up at "Termination" error?
    Thanks in advance for the help.
    best reg
    S. Habib Pasha.

    Dear friend
    Agreed.  However, live situation is User has performed Dunning run for all customer by mistake, where is not suppose to.  and this dunning run is ended up with "Duning printout terminated" error. 
    If we fix the termination reason and complete the dunning then all outputs will go to customers automatically by e-mails from SAP.  and we want to stop this.
    hope I am clear and the requirment we are looking at...
    best reg
    S. Habib Pasha.

  • Error in determining Paper Format for Printout triggering from ABAP Code

    Hi Experts,
    I am trying to trigger a printout from my ABAP code using "NEW-PAGE PRINT ON ...... NEW-PAGE PRINT OFF" statement.
    I am passing the Print Parameters using the FM "GET_PRINT_PARAMETERS" as below:
        CALL FUNCTION 'GET_PRINT_PARAMETERS'
          EXPORTING
            destination    = ls_options-tddest
            copies         = 1
            list_name      = 'Notification'
            list_text      = 'ERROR NOTIFICATION'
            immediately    = 'X'
            release        = 'X'
            new_list_id    = ' '
    *        expiration     =
            line_size      = 79
            line_count     = 23
            layout         = 'X_65_80'
            sap_cover_page = ' '
            receiver       = 'SAP*'
            department     = 'System'
            no_dialog      = 'X'
          IMPORTING
            out_parameters = lv_params.
    But I am facing a problem. Though I am passing X_65_80 to the LAYOUT in the Function Module, it is trying to print in LETTER format. But the specified printer as the printer supports only A4 paper format and as a result, I am not getting any printout.
    Kindly help me with your suggestions to resolve this.
    Thanks in advance.
    Regards,
    Keerthi

    Hi,
    I just found that this problem is even stranger.
    I am able to print the said message on my local printer but when I try to print the same message on a different printer located at a different location, the printout does not get triggered. I am not getting any error messages also in this case.
    What could be the possible reason for this?
    Kindly share your views/experience with me on this one.
    Thank you.
    Regards,
    Keerthi

  • S_P00_07000217 - Printout of Official Receipts After Payment  Error

    Hi Experts,
    I am printing an Official Receipt using tcode S_P00_07000217 - Printout of Official Receipts After Payment. Correspondence used is SAPP1.
    But I am getting an error
    "Official receipt has already been printed for invoice 00001"
    Here's what I did:
    I have an invoice amounting to 750,000.
    Payments made by customer 700,000.
    So I cleared the invoice and got a residual of 50,000. Clearing doc. number 00001.
    I executed S_P00_07000217 to print the official receipt using 00001 and the official receipt was successfully printed.
    The next day, I paid the residual amount of 50,000 (doc. # 00001). Clearing doc. number 00002.
    Tried to print the Official Receipt using 0002 via S_P00_07000217, however this error appeared
    "Official receipt has already been printed for invoice 00001".
    My questions are:
    1. What triggered the error? I am not printing invoice 0001 but 0002.
    2. Anyone experienced this error? If yes how did you solve the problem?
    Thank you,

    Hi,
    Were you able to figure this one out? I'm facing the same problem.
    Thank you!

  • What is error code:sec_error_unknown_issuer? I am getting this from my bank's billpay printout for electronic bills.

    I talked with the computer teck at the bank and she assures me that the problem is not at their end and suggest that I contact Firefox to see why they are blocking this site.

    You can check who issued that certificate.
    You can retrieve the certificate to check who issued the certificate.<br />
    You should always do that to see if that helps to identify the problem (missing intermediate certificate or something else).
    * Click the link at the bottom of the error page: "I Understand the Risks"
    Let Firefox retrieve the certificate: "Add Exception" -> "Get Certificate".
    * Click the "View..." button to inspect the certificate and check who is the issuer.
    If you can't add an exception, but get a pop-up with the error message then you can check the pref [http://kb.mozillazine.org/browser.xul.error_pages.enabled browser.xul.error_pages.enabled] on the about:config page and make sure that the value is set to the true (default).
    See http://kb.mozillazine.org/about%3Aconfig

  • Error in printout for mb1a movement type 221 for a particular plant

    Hi All,
    While printing through MB90 for the material document which processed through MB1A and movement type. The following error is appearing for only one particular plant , i am getting the following error.
    Text  ID F14 language EN not found
    Message no. TD600
    Diagnosis
    You want to read a text which does not exist in the data base (or update memory).
    System Response
    Reading could not be carried out.
    Procedure
    You need to create this text:
    1. Initialization (module INIT_TEXT)
    2. Save (module SAVE_TEXT)
    Please send me any solution if any gets same error.
    Thanks,
    Suresh.

    Hi Bijay,
    Thanks for your relpy. I tried to add the plant and storage location, I am getting the below error.
    Entry LT91   does not exist in TSP03 (check entry)
    Message no. 00058
    Diagnosis
    Input values must be defined in Table TSP03. The value or values 'LT91 ' are not specified in this table.
    Procedure
    Check whether the input is correct and correct if necessary.
    Procedure for System Administration
    If this is not an incorrect entry, check the system settings and change them if necessary.
    If there is a connection to the Customizing system, you can maintain the system settings by choosing Customizing in the Performance Assistant or Maintain Entries (F5) when displaying the help in a modal dialog box.
    Thanks,
    Suresh.

  • Upgraded ecc 6.0 version font error in sap script printout

    hi
    i have a errror in a form print out the font has c hanged in the new version please suggest on the same as in 4.6b the font was different now in ecc6.0 the printoutput font is different in the script output..
    pls suggest asap
    regards
    Arora

    no anwersclosing

Maybe you are looking for

  • Using 'if' condition in a xsl tranformation

    Hi All, I have requirement in which i have to convert a xml of the following format <Root> <Employee name="employee1"> <salary salType="actual" amt="10000"> <salary salType="virtual" amt="20000"> <salary salType="actual" amt="30000"> <salary salType=

  • How do I delete an IOS update that was downloaded in iTunes but not yet installed on iPad

    I am currently running IOS 5.1.1 on my iPad.  When IOS 6 came out, I connected my iPad to my computer and checked for the update through iTunes 10.7.0.21.  When it found it, I had it only download it and not install it.  I have yet to install IOS 6 a

  • Unable to check-in/out document on my Workspace

    I am a workspace coordinator/owner. I uploaded a document to my workspace. I have no ability to check-out/in the document. The menu options are grayed out. it is not clear where we are supposed to report issues - is this the correct forum?

  • Declaratively set the value of a bind parameter in a view query

    Can I declaratively set that I want the value of the bind parameter in the view query to be the value of a specific field in the current row of a specific iterator in my data bindings? Thanks :D

  • Not able to Log and Transfer.

    Went to change a project this am. Was able to do it. Then started a new project, went to the log and transfer. Got the clip I wanted to import to FCE and in the status column a stop sign came up and said error. I didn't change any setting since last