Difference between Print Immediately and Send to Spool for later print

I'm having an issue in my R3 4.7 with printing.
I have recently migrated to unicode, but I decided not to stick this into the Unicode section for now.
The value of parameter rspo/host_spool/print is:
/usr/local/bin/multiprint &P &F &C "&R" "&T" &c "&o" "&t" 2>&&1;
This is the problem.
If I have a print list and I decide to print it, I can send it the spooler for immediate print.
That works fine, it comes off the printer.
I see this in the dev trace file:
COMMAND to execute is /usr/local/bin/multiprint cups_hwps01
/usr/sap/<SID>/DVEBMGS00/data/000bC8f3.<SID>"MYUSERNAME" "" 1 "MYUSERNAME" ""
Using Hostspool command: '/usr/local/bin/multiprint cups_hwps01
/usr/sap/<SID>/DVEBMGS00/data/000bC8f3.<SID>1 "MYUSERNAME" "" 1 "MYUSERNAME"
This is correct.
Now, if I have a print list and select 'Send to SAP Spooler only for now' I can see it in SP01.
However, if I try and print it from SP01 I see an error.
There is an error in the STDERR2 file as follows:
sh: -c: line 0: unexpected EOF while looking for matching `"'
sh: -c: line 1: syntax error: unexpected end of file
I see this in the dev trace file:
COMMAND to execute is /usr/local/bin/multiprint cups_whps06
/usr/sap/DTD/DVEBMGS00/data/000aocyn.DTD 1 "PH4417" "" 1 "PH4417" "
Note the last ". It seems SAP is truncating the command it calls.
I've logged it with SAP but wondered if anyone else had encountered it?

Seems it was a Kernel bug.  Fixed.

Similar Messages

  • What is the difference between "Take in" and "Send in" service?

    I have an iPhone 6 that reboots frequently for no reason. As the warranty is still valid, I want Apple to review it. I bought it in the States but I don't live there, and I'll be back for 3  days. Visiting the support website it gives me 2 options:
    SEND IN FOR SERVICE: Send it to Apple for repair or replacement.
    TAKE IN FOR SERVICE: Find an Apple Retail Store or local Apple Authorized Service Provider
    I assumed that if I took it to a store they would replace it. But seems they won't. I can't understand the difference between this Two types of service.

    If you take it in, they will make a diagnosis on the spot and let you know what your
    options are. If the iPhone qualifies for replacement, the replacement will take
    place immediately.
    Make an appointment at the Genius Bar to avoid delay. If you will be going to Apple on/after
    April 10, expect large crowds due to the beginning of  Watch demos.
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/

  • Differences between sync, fullsync, and their eff varieties for messages

    I'm looking at messages to use in Application Designer and trying to understand some of the built-in ones. For example, I'm looking at LOCATION and see 4 different messages:
    1) LOCATION_FULLSYNC
    2) LOCATION_FULLSYNC_EFF
    3) LOCATION_SYNC
    4) LOCATION_SYNC_EFF
    What is the difference for each? Would like to know how it's done in PS so I can mimic them for other tables.

    Hi,
    The FullSync services are there to initially send over all the data, in your case the entire Location table.
    You should run this once, when initially integrating with another (PS) application.
    After this these services should be deactivated.
    The FullSyncEff services will only send over the data that is current on effective date, so only active locations at the moment, based on current date.
    You should run this once, when initially integrating with another (PS) application.
    After this these services should be deactivated.
    The Sync services will send data over every time a location is changed, added or deleted and are triggerd upon saving the page.
    These services should stay alive, to keep the environments in sync.
    Regards,
    Hakan

  • Exchange Rate difference between PO , GR and IR

    Hi All,
    I have a question, Does anyone know how to handle the PO exchange rate difference between PO , GR and IR time.
    For example
    1.  PO creation on Jan 2009  - exchange rate = 1.2
    2.  GR creation on Feb 2009 - exchange rate = 1.5
    3.  IR  creation on March 2009 - exchange rate = 1.7
    Should GR and IR use the PO exchange rate # 1 for posting or use the current exchange # 2 for GR and #3 for IR ?
    Thank you
    Alex

    Hi Alex,
    The exchange rates in PO and GR and IR will be different as if you have are updating the rates per month in system so it will changed.
    Regards,
    Ninad Kshirsagar

  • Differences between bapi's and bdc

    Hi Frendz,
    What are the most imp differences between BAPI's and BDC ?
    Points for sure...
    Thanks in advance
    Vijaya

    Hi Vijaya,
    A few inputs from net
    BAPI is used only when it is available for the particular  transaction like Delivery Sales order. but BDC can be used for any 
    transaction which have screen and fields.
    BAPI is directly updated the database instead BDC run through the screen flow.
    So BAPI can't handle all the flow logic checking and enhancement put by programmer to faciliate the user requirement.
    BAPI is a higher end usage for tranfering the data from SAP to non-SAP and vice-versa. for ex: if we are using VB application,where in that we want to connect to SAP and retireve the data,and then change and update the data in SAP for that purpose we can use that.
    Apart from that, we can also use it for Uploading/Downloading the data from SAP to Non-SAP like BDC, provided we have an existing  BAPI for that. 
    BAPI function modules will also do all the checks required for data integrity like Transactions for BDC.
    There is one more advantage using BAPI instead of BDC.
    When we go for upgradation, there might be pozzibility to change the screen elements for transactions depending on the requirement. In that case,our BDC pgm may or may not work (depending on the screen changes they have made). Unless and until we prepare new BDC we cant use the old BDC pgm. But in BAPI, SAP promises that they are going to keep the old BAPI and for new functionality they will provide an upgraded BAPI. Until we write a new BAPI pgm, we can use the exisitng BAPI pgm.
    Source: sap-img.com
    this somehow summarzes what i wanted to convey and hence have put this extract.. hope it helps to your question.
    Br,
    Sri
    Award points for helpful answers

  • Is there a difference between Statement Cache and the statement handle!

    Hello!
    The OCI statement cache is !session! wide. When I have a sql statement that was used before, I can use this feature.
    But what is the difference between this feature and my statement handle for a certain sql statement that I can store and reuse a second time?
    My stored statement handle is already prepared and the placeholders are bound. The second time I only have to copy new values in the memory positions and do an execute and that's all.
    Thank you in advance
    Wolfgang

    The underlying optimization is the same. When you re-execute a statement, you are reusing the metadata already available in the statement and the cursor already open on the server. If you know exactly the set of statements that you are going to execute repeatedly, you can maintain the cache on your own. (Yes, you save on doing the Bind/Define calls multiple times).
    OCI Statement cache makes it transparent and the application does not need to keep the references/indexes to the relevant statements. Also once a cache size is set, least recently used statements get out of the cache when the cache is full and needs to accommodate more.
    To optimize the bind/defines on the statements from the statement cache, you can use this feature:
    http://www.filibeto.org/sun/lib/nonsun/oracle/11.2.0.1.0/E11882_01/appdev.112/e10646/oci09adv.htm#sthref1358

  • LE/WM functionality difference between 4.6c and ECC 6.0

    Hi,
         I am looking for functionality differences between 4.6c and ECC 6.0 for LE and WM in particular. I have already checked the sites related to overall differences. I am particularly looking for differences between 4.6c and ECC 6.0 in Warehouse Management and Logistics Execution. Helpful answers will be rewarded.
    cheers,
    Sarvesh

    This is what I have gathered from this thread.
    R 4.7 New Functionality in WM:
    •     Cross Docking
    •     Value Added Services
    •     Task and Resource Management
    •     Dynamic Cycle Counting
    •     Yard Management
    Effect of ECC 5.0 on WM:
    Archiving Data has been improved
    ECC 6.0 Version comparison link
    http://solutionbrowser.erp.sap.fmpmedia.com/
    •     Picking Consolidation for many deliveries
    •     RFID integration
    •     Enhanced Cross Docking
    •     Enhanced Task and Resource Management

  • Difference between /h, /ha and /hs

    Hi,
      Can any one give me the difference between
    /h /ha and /hs

    Hi,
      Check this for more details
    http://help.sap.com/saphelp_47x200/helpdata\EN\c6\617ca9e68c11d2b2ab080009b43351\frameset.htm
    Regards
    Kiran Sure

  • Difference between application.cfm and application.cfc

    Hi,
    Can anybody explain the difference between Application.cfm
    and application.cfc?
    For example:
    I have Application.cfm and Application.cfc in the same
    folder.
    /folder/application.cfm
    /folder/application.cfc
    /folder /test.cfm
    …. And I run the test.cfm.
    Which one is executed first?
    Thanks,
    Krishna

    Your last question - Which one is executed first?
    The application.cfc will be executed first if you call the
    test.cfm. The application.cfm will not get executed.
    and, about ur first question... cfm and cfc are entirely
    different. You have onRequestStart, onRequestEnd and other events
    on cfc. cfc is powerful than cfm.

  • What is the difference between Open-Script and Oracle functional testing

    Hi All,
    Please help me in spotting out the difference between the Openscript and Oracle Functional Testing for Web Application.
    Does Oracle Functional Testing for Web Application have any special features when compared with Open-Script.
    Please help me out.
    Thanks in Advance,
    Nishanth Soundararajan.

    Nishanth
    OFT is the old version of OpenScript, which will no longer be part of ATS as per the next major realize 9.20.
    I would recommend to to spend any time looking at it.
    Regards
    Alex

  • Difference between list.clear() and new instance

    In the below code,
    List<String> test = new ArrayList<String)();
    list.add("one");
    list.add("two");
    list.add("three");
    list.clear();
    (or)
    list = new ArrayList<String)();
    list.add("four");
    list.add("five");
    What is the difference between List.clear() and creating new instance for list?

    1. Use code tags to post codes -- [code]CODE[/code] will display asCODEOr click the CODE button and paste your code between the {code} tags that appear.
    2. Invoking clear() sets all the elements of the ArrayList to null and resets the size to 0.    public void clear() {
         modCount++;
         // Let gc do its work
         for (int i = 0; i < size; i++)
             elementData[i] = null;
         size = 0;
        }(modCount is used to detect concurrent modification and throw an Exception when needed)
    Constructing a new ArrayList creates a new, different, empty ArrayList.
    In many situations they might be equivalent, but not in a case where you have two or more variable references to the same ArrayList. Example (watch out for typos)ArrayList<String> stringsA = new ArrayList<String>();
    ArrayList<String> stringsB = stringsA;
    : // add elements to stringsA
    : // stringsB refers to the same populated list
    stringsA.clear(); // stringsB refers to the clear()ed list
    : // add elements to stringsA again
    stringsA = new ArrayList<String>(); // stringsB still refers to the populated listdb

  • Difference between  MDM adaptor and File adaptor?

    Hello All,
    Could any one light on the difference between PI Adaptor and File adaptor?
    Thanks
    Rajeev

    Hi,
    >>>Could any one light on the difference between PI Adaptor and File adaptor?
    for MDM <= 5.5
    there was no difference as file adapter was the MDM adapter
    it changed with the latest version as Shabz mentioned
    Regards,
    Michal Krawczyk

  • Are there any functional differences between the trial and the paid version?

    Are there any functional differences between the trial and the paid version for Labview 2009?  Thank you.
    Solved!
    Go to Solution.

    This outlines the limitations of the eval version of Labview: Limitations of the LabVIEW Evaluation Version
    Cheers, 
    Misha

  • What is difference between I-mesage and Text Message, some I want to send I message and but I send text and it's charge to me

    What is difference between I-mesage and Text Message, some timeI want to send I-message and but I send text and it's charge to me.

    Thanks Wj,
    another question, how I got to know, my I-message is activated, I put as ON, but I am not getting mesage it's activated, there is link showing to me, learn more abount I-message. do it will take time? please advise how I can activate my I-message. Please advise.

  • Differences between PDF (Interactive) and PDF (Print)

    What are the main differences between PDF (Interactive) and PDF (Print)?
    Now it seems to me that PDF (Interactive) is limited version of PDF (Print).
    Any links to read about this topic?
    Thank you in advance,
    Mykolas

    There's actually quite a few differences between (Interactive) and (Print).
    Here's a list of pointers written by Michael Ninness (previous product manager of InDesign and now working at Lynda.com) http://www.lynda.com/michaelninness
    I just got premission from him to post this (Thanks Michael!):
    Here is some info for you regarding what choices are being made under the hood when you choose File > Export > Adobe PDF (Interactive).
    Things that just happen or are included, with no choice in the dialog box:
    Hyperlinks, Bookmarks, Fast Web view, Compress Text and Line Art, Crop Image Data to Frames.
    Things that are not included, with no choice in the dialog box:
    Visible Guides/Grids, Hidden and Non-Printing Layers, Hidden and Non-Printing Objects, Marks & Bleeds, No Ink Manager or Simulate Overprint options.
    Things that you can choose:
    Security Settings, Embed Page Thumbnails, Create Tagged PDF, Create Acrobat Layers, Initial View, Initial Layout, Open in Full Screen Mode, Page Transitions, Image compression and resolution.
    Other:
    Fonts: Subset 100%
    Color Conversion: Destination
    Destination: sRGB
    Profile Inclusion Policy: Include Destination Profile
    Transparency Flattener: No Flattening
    And lastly, Compatibility is set to Acrobat 9 (PDF 1.7). This last point is important, and largely explains the main reason we split Interactive PDF out as a separate export choice from Print PDF. When you export an interactive PDF from CS5, included media is now written out to the Rich Media Annotation Layer, which means this content is played back via the embedded Flash Player within Acrobat Pro 9 or Adobe Reader 9 or higher. In previous versions, this content was written out to the Screen Annotation Layer, which meant this content was played back via QuickTime. This has been a long-standing headache for end users as playback across platforms was often inconsistent, would frequently break when Apple updated QuickTime, etc.
    Lastly, if you want to include rich media in your interactive PDFs (SWFs, audio and video), the only formats supported if you want to target Adobe PDF (Interactive) are MP3 for audio and FLV for video. Other file formats will need to be converted to these formats before you export to Interactive PDF. For video files, you’ll be able to convert to FLV with Adobe Media Encoder. For audio files, you can use any number for free audio conversion tools, including iTunes.
    Harbs

Maybe you are looking for

  • IPhone 5 Not Working With ATT Microcell

    This morning I received my new iPhone 5.  I have an iPhone 4S and it was working fine this morning and showing the M-Cell symbol in the upper left of the iPhone 4S before I uathenticated my iPhone 5.  The authentication with AT&T of my iPhone 5 went

  • Document and data on ipad

    iMac has document and data.Where is it on iPad?

  • Using sample CSS in web dynpro aplication

    Hi experts, Is there any possibility of applying a standard sample CSS file I have to my webdynpro java application without making use of NWDS Theme editor or portal themes. Thanks!!! Lisha

  • Problem with kfmclient (command not found)

    Today, I tried to run the CUPS web configuration tool, but it failed to run (ie. open the page in Firefox).  I executed the command in the terminal to check for errors, and it said "kfmclient: command not found". When I checked pacman for kfmclient,

  • Printer-Cp​u Communicat​ion Problems

    I am having a problem with my printer. It works fine. Yet, when I go to print it doesn't do anything. It usually prints with no problems. When I checked to see the status of my printer through my computer it states: Door Open. I then opened and close