Printing the blocked PO in GTS

Hello Experts,
  I have created the Purchase Order and that has been blocked in GTS.  Still I am able to printout the PO and allowing me to send the fax for blocked PO.  If the PO is blocked in GTS, we don't want to allow to print the PO or send a fax to vendor.  What am I missing?  Thanks in advance.
with best regards
Mohan Kolli

Hello Balazs,
  Thanks for your help.  This OSS Note fixed our issue.  I appreciate your help & time on this.
with best regards
K. Mohan Reddy

Similar Messages

  • I am unable to print the block diagram on a HP1055CM DesignJet.

    The print manager shows it went to the printer but all I get is a blank page on the printer. Is it maybe a font problem?

    There are many things that can go wrong when you print.
    The first thing to try is if LV is generating the proper draw instructions for the printer. Try to print to an HTML file (this is one of the options toward the end of the File >> Print dialog), and see what the file looks like.
    Typically, print error occur because of the printer's driver. Check to see if the driver for the printer is the most recent (by looking on the printer manufactorer's website).
    Use this link to an article that details printing problems, and their solutions: http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/0a124f6b3a94a82f862569680071cd48?OpenDocument.
    It will walk you through what to do, and has a VI attached that will extract your printer information
    if you are still having an issues after trying the things detailed in the knowledgebase.

  • My photosmart 8250 prints the headings & color blocks on the diagnostic pages, but not the text.

    My photosmart 8250 suddenly stopped printing ( I have Windows 7). The cartridges have ink & there are no error mssgs. The self-test disgnostic prints the headings, borders & color blocks, but not the text under each heading. I ran the diagnostic utility & it said there were too many print jobs (?) and I cancelled them as directed.I re-ran the test & It  said there were no problems found. But it still isn't printing. I went to the control panel and ran THAT diagnostic & it said it found some problem with the USB connection, but that it was resolved. But, it STILL won't print.  I tried everything the diagnostic utility suggested - uninstalled and reinstalled the updated  software & driver, restarted the computer, etc. and it still won't print.

    Hi - Try following the steps in this document.  It will walk you through cleaning the rollers, which in many cases is the cause of this type of problem.
    Hope that helps.
    Say Thanks by clicking the Kudos thumbs up. Please mark the post that solves your problem as an Accepted Solution so other forum users can utilize the solution.
    I am an HP employee.

  • To upload a RTF and a PDF file to SAP R/3 and print the same through SAP

    Hi,
    I have a requirement to upload a PDF file and a RTF file to SAP R/3 and print the same.
    I wrote the following code for uploading a RTF file to SAP R/3 and print the same. However, the problem is , the formatting present in the RTF document( bold/italics..etc) is not being reflected when I do the 'print-preview' after the executing the code below :
    report z_test_upload .
    data: begin of itab occurs 0,
             rec type string,
          end of itab.
    data: options like itcpo.
    data: filename type string,
          count type i.
    data: filetype(10) type c value 'ASC'.
    DATA: HEADER  LIKE THEAD    OCCURS   0 WITH HEADER LINE.
    DATA: NEWHEADER  LIKE THEAD    OCCURS   0 WITH HEADER LINE.
    DATA: ITFLINE LIKE TLINE    OCCURS   0 WITH HEADER LINE.
    DATA: RTFLINE LIKE HELP_STFA OCCURS   0 WITH HEADER LINE.
    DATA:   string_len TYPE i,
            n1 TYPE i.
    selection-screen begin of block b1.
      parameter: p_file1(128) default 'C:\test_itf.rtf'.
    selection-screen end of block b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
      CALL FUNCTION 'F4_FILENAME'
           IMPORTING
                file_name = p_file1.
    start-of-selection.
    move p_file1 to filename.
    call function 'GUI_UPLOAD'
         EXPORTING
              filename                = filename
              filetype                = filetype
         TABLES
              data_tab                = itab
         EXCEPTIONS
              file_open_error         = 1
              file_read_error         = 2
              no_batch                = 3
              gui_refuse_filetransfer = 4
              invalid_type            = 5
              no_authority            = 6
              unknown_error           = 7
              bad_data_format         = 8
              header_not_allowed      = 9
              separator_not_allowed   = 10
              header_too_long         = 11
              unknown_dp_error        = 12
              access_denied           = 13
              dp_out_of_memory        = 14
              disk_full               = 15
              dp_timeout              = 16
              others                  = 17.
    if sy-subrc <> 0.
      message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    loop at itab.
      string_len = strlen( itab-rec ).
      n1 = string_len DIV 134.
      ADD 1 TO n1.
      DO n1 TIMES.
        rtfline-line = itab-rec.
        APPEND rtfline.
        SHIFT itab-rec BY 134 PLACES.
      ENDDO.
    endloop.
    HEADER-TDSTYLE = 'S_DOCUS1'.
    HEADER-TDFORM = 'S_DOCU_SHOW'.
    header-tdspras = 'E'.
    CALL FUNCTION 'CONVERT_TEXT'
      EXPORTING
      CODEPAGE               = '0000'
        DIRECTION              = 'IMPORT'
        FORMAT_TYPE            = 'RTF'
       FORMATWIDTH            = 72
        HEADER                 = header
        SSHEET                 = 'WINHELP.DOT'
        WITH_TAB               = 'X'
        WORD_LANGU             = SY-LANGU
        TABLETYPE              = 'ASC'
      TAB_SUBSTITUTE         = 'X09  '
      LF_SUBSTITUTE          = ' '
      REPLACE_SYMBOLS        = 'X'
      REPLACE_SAPCHARS       = 'X'
      MASK_BRACKETS          = 'X'
      IMPORTING
        NEWHEADER              = NEWHEADER
      WITH_TAB_E             =
      FORMATWIDTH_E          =
      TABLES
        FOREIGN                = RTFLINE
        ITF_LINES              = ITFLINE.
      LINKS_TO_CONVERT       =
    if sy-subrc <> 0.
    endif.
    CALL FUNCTION 'PRINT_TEXT_ITF'
      EXPORTING
         HEADER        = newheader
         OPTIONS       = options
    IMPORTING
      RESULT        =
      TABLES
        LINES         = itfline.
    if sy-subrc <> 0.
    endif.
    Any hints or suggestions to solve this problem will be highly appreciated.
    Thanks,
    Avra

    Hi Vishwas,
    Check out the thread [Efficient way of saving documents uploaded|Re: Efficient way of saving documents uploaded by users; and check the blog by Raja Thangamani.
    Also check the thread [Export Images through Function Modules   |Export Images through Function Modules;.
    Hope it helps you.

  • Print the report to different Printers

    Hi,
    We are using Oracle EBS 11.5.10.2.
    We've defined a check printing report , which prints the output to a printer directly.
    We've mentioned this printer in the Concurrent Program definition.
    Its printing the output to a pre printed stationary.
    Now we need to print output to different printers based on the responsibility.
    Can anyone tell me the best way to achieve it.
    Regards,
    Abi

    Currently the report is working like that. In the he Concurrent program definition We've option to set only one printerRemove the printer name from the Concurrent Program Definition Window
    Currently the report is working like that. In the he Concurrent program definition We've option to set only one printer. We need the check printing report to be printed to different printers based on the Set of Books or user. In this case, the following should be helpful:
    - Click on View > Requests
    - Click on "Submit New Request"
    - Enter the Concurrent Program Name
    - Select the Printer from the Printer LOV (under Upon Completion block)

  • Req:Print the PO before release

    Hi all,
    My requirement is to print the po before release.I have searched for exits/badis but could not find any.
    Can anyone help me out how to print the PO before release

    Yes you can print the PO before release . For that in release strategy against the "Release Indicator" tab see the check box against the colomn"Released". If the box is checked against the final release indicator ,than uncheck it and check the same against the first Release indicator (Blocked). This will allow yoy to print out the PO in blocked state also. But as per standard we do not follow this practice.

  • How to download the blocked ALV output to PDF file.

    How to download the blocked ALV output to PDF file.
    I am able to download the BLocked ALV output in PDF format,
    but the each bolck in ALV is displaying different pages of PDF.
    In my report I have 4 block in 1 page, I am able to see the output in PDF but in different page.
    How to avoid the Page-break in PDF.
    Thanks,
    Ravi Yasoda.

    hi,
    I believe that your have 4 containers on the screen with individual ALV display. in this case, there is no way to get combined PDF output to my knowledge.
    However you can use Smartform/Sapscript as output which would allow you to display ALV in blocks and also print it in one.
    Regards,
    Nirmal

  • Printing the Output of ALV with out page breaks

    Dear all,
    I had a problem while taking printout in FBL1N transaction . wheever i am taking  a printout one block of ALV is coming in one page. The alv is grouped according to vendor and Company code. with is_sort-group = '*'.  I read so many forms and found that whenver a list is grouped with something then automatically it will be divided ino pages according to that. But my client requirement is if there are four records in the first group. the system will print the 4 records in the first page then the other records in another group are printed in the next page. but it should be printed like after the 4 records of the first group is over then it should start printing the next group records in the same page.
    I tried using the is_sort-group = 'UL' but the header of the list is getting suppressed with that.
    the variant is 1SAP
    can any one tell me how to handle the situation
    Thanks & regards
    sreehari p

    it is normal
    with * in group you generate a NEW-PAGE event which in turn executes the TOP-OF-PAGE (and print list header)
    with UL in group you don't generate a NEW-PAGE so no list header
    there is no other option

  • When I print a web page it only prints the first page and not the rest of the web page below the page break.

    When I print a web page firefox will only print the first page, all of the content to the first page break and nothing past that.
    How can I change the settings so that it will print more than on page?

    -> Tap ALT key or press F10 to show the Menu Bar
    -> go to Help Menu -> select "Restart with Add-ons Disabled"
    Firefox will close then it will open up with just basic Firefox. Now do this:
    -> Update ALL your Firefox Plug-ins https://www.mozilla.com/en-US/plugincheck/
    -> go to View Menu -> Zoom -> click "Reset" -> Page Style -> select "Basic Page Style"
    -> go to View Menu -> Toolbars -> unselect All Unwanted toolbars
    -> go Tools Menu -> Clear Recent History -> '''Time range to clear: select EVERYTHING''' -> click Details (small arrow) button -> place Checkmarks on '''Cookies, Cache, Site Preferences''' -> click "Clear Now"
    -> go to Tools Menu -> Options -> Content -> place Checkmarks on:
    1) Block Pop-up windows 2) Load images automatically 3) Enable JavaScript
    -> go to Tools Menu -> Options -> Security -> place Checkmarks on:
    1) Warn me when sites try to install add-ons 2) Block reported attack sites 3) Block reported web forgeries 4) Remember Passwords for sites
    -> Click OK on Options window
    -> click the Favicon (small drop down menu icon) on Firefox SearchBar (its position is on the Right side of the Address Bar) -> click "Manage Search Engines" -> select all Unwanted Search Engines and click Remove -> click OK
    -> go to Tools Menu -> Add-ons -> Extensions section -> REMOVE All Unwanted/Suspicious Extensions (Add-ons) -> Restart Firefox
    You can enable your Known & Trustworthy Add-ons later. Check and tell if its working.

  • I can only print first 80 or so pages after I download firefox - if I do a system restore and uninstall firefox, the problem goes away... until I download firefox again and then I again can only print the first 80 or so pages - even if I am using IE!

    This began when business increased in January and our print jobs got big (printing invoices off the internet). It can print any small job no problem but if it's over 80 or so pages, it will stop and show a spooling error. I have done system restores and uninstalled firefox and then Internet Explorer will print the big jobs UNTIL I REINSTALL FIREFOX. Then the problem resurfaces whether using firefox or IE!!! Why?! I don't care why - how do I fix it? All 13 other computers use firefox and that is how my staff is trained. I hate IE.

    -> '''Is my Firefox problem a result of MALWARE ??'''
    * Popups Not Blocked - http://kb.mozillazine.org/Popups_not_blocked
    -> Do a MALWARE check with these Malware Scanning programs. You need to scan with all programs because each program detects different malware. Make sure that you UPDATE each program to get the latest version of their Databases before doing a Scan. Also, Close All other Applications (softwares) before Starting to Run Scans.
    * Malwarebytes' Anti-Malware - http://www.malwarebytes.org/mbam.php
    * SuperAntispyware - http://www.superantispyware.com/
    * Spybot Search & Destroy - http://www.safer-networking.org/en/index.html
    * Ad-Aware Free Internet Security - http://www.lavasoft.com/products/ad_aware_free.php
    Check and tell if its working.

  • How do I direct user to print the form after they click submit?

    I am creating a permission for for our scout group.  I need them to print the form for their parents to sign after hitting submit.  Is there a way I can do it in Forms Central?

    Hi,
    In the "successful submission of a form, execute this PL/SQL block or PL/SQL procedure" section redirect to the url.
    Say you want to redirect to a dynamic page on success, you can do this
    begin
    <portalschema>.wwa_app_module.set_target('<portalschema>.NEW_DYN.SHOW?p_arg_names=dept&p_arg_values=20');
    end;
    Thanks,
    Sharmila

  • Printer sharing blocked by firewall

    I have a new MacBook Pro and while it "sees" the Canon printer, i am unable to get the printer to be shown as online.  My System on my iMac shows Printer Sharing: Blocked by Firewall.  Is there a way to allow these two Macs to print wirelessly?  Thank you!  I'm running the current version of Yosemite on both.

    Turn off the firewall. It serves no purpose on a private network behind a router.

  • Printing Detail Block

    Hi Friends!
    Imagine there is a detail data block the number of records display are 10.I want to
    Print all the records including those which are displayed when we use scroll bar.As
    There is a demo in the forms exactly what I want. But there is no code we can see.
    A solution to make a report and then print those records too is not required.Just like we can print the screen using print screen button such a solution I desire
    Any bodys help or code to solve the prob. Will make a great
    Pls also let let me know if I have conveyed properly!
    Many thanks in advance!
    IMRAN AMJAD.
    null

    Imran,
    Your problem, as I understand is that you want to take a printout just like a print screen. If yes try default menu -- Action -- Print.
    If you want to get printout of all records which are displayed or not using the query then you can create a text file using text_io and then make a prinout for all queried records. For more informations about text_io you can see help.
    I hope this will help.
    Good Luck.
    Mustafa

  • When ASM reads my block, it will usually read much more than just the block I requested.

    When ASM reads my (8K) block, it will usually read much more than just the block I requested.
    4 questions :
    1) Am I right when I presume ASM will increase my request to 1 complete AU sized retrieval action done on the I/O subsystem? 
    2) Now what interests me is where does the rest of that I/O size sleep / reside ?
    3) Under what circumstances will those poor, initially unused and discarded KB's be revived and be reckognized for their true value. Will only certain actions, like a scan, cause the 'overhead' to be used ?
    kind regards, Niek

    Hi Aman,
    ASM does not do IOs .
    ASM only gives extent map to clients and clients take that pointers and do direct IO on that block.
    This is very much true statement and explains what will happen if data block is not available at buffer .
    That's why most of IO errors are getting printed on rdbms alertlog file ,rather ASM .Which inturn confirms my statement...
    ASM level DBWR ,LGWR are related to ASM level data processing .
    Keeping above things in mind ,it clarifies ASM does not hold any IOs /place on sleep.
    ASM at diskgroup level,always does IOs  as per au_size of  that diskgroup .
    Regards,
    Aritra

  • Make java run without printing the stack trace

    I have a GUI program which appears to work for all test cases. Basically what it does is prints out data from a linked list allowing the user to traverse the list with Next and Previous buttons which call a list iterator next/previous method call, and then display the current item in the list. The original problem arose when dealing with alternating calls to next and previous, which since list iterator does not have a current pointer, returned the same element ad infinitum. I modified the method to check for alternating button presses, and it seems to work, except for cases where there are two elements in the list. In this case it still works, printing the correct element, but it also prints to the command line an Exception in Thread AWT...NoSuchElementException. My question is, is there any way to tell the program to not print out this stack trace and just keep running quietly through the Exception?

    I'm not an expert at error handling, but wouldn't it work to put the code that throws the exception in a try/catch block?
    like
    try {
        //code that causes exception
    } catch (NoSuchElementException e) {
        //do nothing
    }Might not work, but it's worth a try...

Maybe you are looking for

  • Acrobat XI can't open a PDF file if space in name

    I have a .net WinForms Application that calls the Acrobat Reader using a System.Diagnostics.Process.Start. On Acrobat Reader 7 - 10, this works fine. On XI , I receive a message "Unable to Open a Document". Upon furthur research, it appears that I ca

  • Creating a custom datasource. Please help!

    Hi Experts, I'm creating a custom datasource in RSO2 to extract data from a custom view based on three z tables. I have filled the view with the join conditions and the fields. After activating it, I have checked the data and it's correct. The proble

  • Newbie to Java Doc

    Hello All, I am pretty new to JavaDoc - i got a general hang of it and did some sample java doc generations for some java files to understand more better. Now I have been requested to create custom javadoc tags for an existing project. How do I go ab

  • Nike+ ipod app on iphone 4s

    Good evening everyone I have a problem I can't solve and I've tried to google many times but I can't find an answer. I have an iphone 4s and I'm using the app Nike + ipod with sensor (it was a present). Everything's OK but the app can't sync with my

  • No puedo instalar ilustrador

    no puedo instalar ilustrador en mi compu y ya la pague