Space before Print-Control

Hi experts,
we are printing labels via SAP-Script.
In this SAP-Script we use print-controls, which we have to save into a datamatrix on the label (customer needs this at scan).
Therefore we have created print-controls (SPAD->Device Types) which following setup:
name = ZGS ; Direct ; Hexadecimal ; Value = "1D"
These are the sapscript lines, which saves the content (=test<PC>test2) into datamatrix (<> = format).
<* > test
</: > PRINT-CONTROL ZGS
<= > test2
(there are no spaces after test and test2)
Our big problem is, that there is a space BEFORE the print-control.
content sould be = "test<PC>test2" (without space)
content is = "test <PC>test2" (space betweend test and <PC>
Any ideas, how I can avoid the space BEFORE the print-control?
(space between PRINT-CONTROL and ZGS has to be! Otherwise command does not run.
Thx for any help

Hi,
thx for the fast help.
I've also tried an other editor - no spaces in sap-script.
I already found out, that space is appended to the text when a PC is followed.
And this only happens, when PC follows. If a text follows a text, there are no spaces appended.
I've already sent an OSS-request.
I will update this forum after the answer from SAP.
Solution with concatinating PC into text, is also my last hope.
But I would like to know the answer from SAP.

Similar Messages

  • How to obtain a space before printing the text

    Hi friends,
    I have created a smart form where i need to print
    External Order Notes : (space to print ) text should start after the space.
    I have used Include Text in text type,  start--Append Directly
    Can any one please tell me how can i get the space before the text .
    Point will defentely be rewarded.
    This is very urgent.

    HI
      give TAB values as u required

  • How can I control the space before and after text in a table

    Hello
    I have a series of icons with descriptions, these are lined up with icons on the top row and description text in the bottom row. Each icon and description is divided by a stapled line.
    The text is of varying width, therefore the column width must also wary. However I would like to make the space before and after the text equal in all instances (See image).
    If there is anyone that can tell me how to do this with tables or any other tools I would be very thankful.

    The only way I can think of to maintain equla spacing between the text ov vartying lengths and the vertical lines is to put each icon/text pair in it's own frame fitted to content, make each vertical line a separate object, then select them all and distribute the spacing.

  • Removing white space in .pdf files before printing?

    Want to remove white margins when printing, which states click on tools/margins,etc. But when I click on tools, nothing changes or comes up differently. So there is no option to eliminate the white margins.
    How do I get rid of the white margins before printing?
    Thanks

    WHAT/where states you can click on Tools/Margins etc in Adobe Reader? In following advice please be sure to notice the difference between Adobe Reader (free) and Adobe Acrobat ($$).

  • Printer control app for iphone

    is it possible to roll back to a previous version of the Printer Control app for iphone?  I recently and stupidly updated the HP Printer Control app when offered through itunes on October 30 and have lost all the functionality I previously had to print directly from my iphone to my photosmart 7520.  Previously I could print whatever pages I chose from Safari and could change the print settings for either draft or normal, colour / black & white before printing.  Now when I try to print a page, you don't get the option to just print page 1 and it wastes ink.  If I open a pdf (all I've tried so far) document within this new AiO Remote app - even though my printer is listed and supposedly set up - I can't print at all!  I desperately want to ditch this abysmal update and go back to the version that worked perfectly.  I have conctacted Apple and they were unable to help as it's a third party app and referred me back to HP.  Does anyone know how to do this?

    Hi brattynat. I have found a few older documents which might help you revert back.
    Just to clarify, when you print from Safari, what are you clicking exactly to start your printing process?
    How do I downgrade an iPhone app to a previous version?:
    http://www.iphonefaq.org/archives/971543
    Recover Older Versions of iPhone Apps After Updating:
    http://gigaom.com/2010/08/25/recover-older-versions-of-iphone-apps-after-updating/
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Lots of blank space when printing array with only last element printed

    I have a slight problem I have been trying to figure it out for days but can't see where my problem is, its probably staring me in the face but just can't seem to see it.
    I am trying to print out my 2 dimensional array outdie my try block. Inside the trying block I have two for loops in for the arrays. Within the second for loop I have a while to put token from Stringtokeniser into my 2 arrays. When I print my arrays in this while bit it prints fine however when I print outside the try block it only print the last element and lots of blank space before the element.
    Below is the code, hope you guys can see the problem. Thank you in advance
       import java.io.*;
       import java.net.*;
       import java.lang.*;
       import java.util.*;
       import javax.swing.*;
       public class javaflights4
          public static final String MESSAGE_SEPERATOR  = "#";
          public static final String MESSAGE_SEPERATOR1  = "*";
          public static void main(String[] args) throws IOException
             String data = null;
             File file;
             BufferedReader reader = null;
             file = new File("datafile.txt");
             String flights[] [];
                   //String flightdata[];
             flights = new String[21][7];
             int x = 0;
                   //flightdata = new String[7];
             int y = 0;
             try
                reader = new BufferedReader(new FileReader(file));   
                //data = reader.readLine();   
                while((data = reader.readLine())!= null)   
                   data.trim();
                   StringTokenizer tokenised = new StringTokenizer(data, MESSAGE_SEPERATOR1);
                   for(x = 0; x<=flights.length; x++)
                      for(y = 0; y<=flights.length; y++)
                         while(tokenised.hasMoreTokens())
                            //System.out.println(tokenised.nextToken());
                            flights [x] [y] = tokenised.nextToken();
                            //System.out.print("*"+ flights [x] [y]+"&");
                   System.out.println();
                catch(ArrayIndexOutOfBoundsException e1)
                   System.out.println("error at " + e1);
                catch(Exception e)
                finally
                   try
                      reader.close();
                      catch(Exception e)
             int i = 0;
             int j = 0;
             System.out.print(flights [j]);
    //System.out.println();

    A number of problems.
    First, I bet you see a lot of "error at" messages, don't you? You create a 21x7 array, then go through the first array up to 21, going through the second one all the way to 21 as well.
    your second for loop should go to flights[x].length, not flights.length. That will eliminate the need for ArrayIndexOutOfBounds checking, which should have been an indication that you were doing something wrong.
    Second, when you get to flights[0][0] (the very first iteration of the inner loop) you are taking every element from the StringTokenizer and setting flights[0][0] to each, thereby overwriting the previous one. There will be nothing in the StringTokenizer left for any of the other (21x7)-1=146 array elements. At the end of all the loops, the very first element in the array (flights[0][0]) should contain the last token in the file.
    At the end, you only print the first element (i=0, j=0, println(flight[ i][j])) which explains why you see the last element from the file.
    I'm assuming you have a file with 21 lines, each of which has 7 items on the line. Here is some pseudo-code to help you out:
    count the lines
    reset the file
    create a 2d array with the first dimension set to the number of lines.
    int i = 0;
    while (read a line) {
      Tokenize the line;
      count the tokens;
      create an array whose size is the number of tokens;
      stuff the tokens into the array;
      set flights[i++] to this array;
    }

  • Leaving one line space before starting the text in smartforms

    Hi,
    I want to leave one line space before starting a text.
    i LEFT one line space on the text node but it's not working.
    eg: i need to print "Header text". Before printing this i need one line space. Created a blank node for space still not working. Can anyone help me on this.
    Thanks,
    Rose.

    Hi Rose,
                Enter a Line Feed in the Smartform Editor.
    in the editor type as ,
      "Header text"
    where / is Line feed and * is a Default Paragraph Format.
    Regards,
    Balakumar.G.

  • Printer control in smartform

    I'm trying to use a command in a smartform to set a printer control. What I do is:
    - I choose the node containing the text I want to alter. In this case it's the MAIN window.
    - I right-click on it and I select create->flow logic->command
    - In the general properties tab, in the input field for printer control, I choose some control.
    - I print (I'm using LOCL printer).
    The text remains unchanged.  What I'm getting wrong?
    Thank you in advance.

    If you defined the Printer control in TCODE SPAD then you can use the following Coding before the Text to be displayed
    PRINT-CONTROL <Printer control Name>.
    <TEXT>
    Kanagaraja L

  • Unable to move Finder between Spaces in Mission Control

    This problem has been plaguing me for several months now even before I upgraded to Mountain Lion from Lion. And for some reason I just can't seem to move the Finder (and some other apps) between indvidual spaces in Mission Control. Even worse, when I use my Magic Mouse to swip to another space, the Finder also appears in the other Space as well.
    I tried Repairing Permissions, doing a Safe Boot, Defragmenting (using third party app which did speed up performance but not fix the issue), and restoring from Time Machine backup. Nothing seems to fix it. I'm on a 2009 27 inch iMac with Intel Core 2 Duo. If any of you are experiencing this problem it be great to see if a solution was ever found. My last option would be to completely start from scratch but it be a real hassle for me (with so many third party apps backlogs etc that I'd have to find someway of transferring). Thanks.

    Never mind I just fixed the problem by searching around the community and finding this thread https://discussions.apple.com/thread/4024312
    Anyway it was as simple as holding down the application in the dock and just selecting "Options -> Assign to -> None (rather than All Desktops).

  • "Space Before" Paragraph after Page Break

    Hello,
    Here is what I am observing : the "Space Before" setting for paragraph styles is ignored if the paragraph is placed after a page break or on a disconnected page. How do I force InDesign to honour my "Space Before" setting ?
    I give you an example : I've created a paragraph style called "Big Title". I've applied this style to section titles and to the index title. I want to lower "Big Title" a few centimeters from the page top, but my "Space Before" setting is ignored. What to do ?

    You can force space above a paragraph by creating a non-printing character in the first line of the paragraph, or above it. Two possibilities:
    * Add a reference-page frame above paragraph to the paragraph format, using the Advanced panel of the paragraph designer.
    * Add autonumbering to the paragraph. Set the autonumber format character to a thin space. Create a character format for the autonumber; set its point size tall enough to create the space above. This has the gotcha of indenting the first line by the width of the thin space.
    For either of these solutions, check that the space above setting for the format doesn't upset your workaround; if necessary, change the space above to let the workaround manage it.
    HTH
    Regards,
    Peter Gold
    KnowHow ProServices   

  • Print-Control use in Sapscript to cut paper

    Hi everybody!
    I'm using a Epson TM-U675 to print receipts, but I need to send the paper cut code to te printer, in the printer documentation this code is 9EH.
    I defined a print control ZCUT with following attributes:
    Direct, Hexadecimal and sequence value is "9E".
    In the sapscript code I've the following code:
    IT Before paper cut test
    /* Cut paper control code
    /: PRINT-CONTROL ZCUT
    CI
    IT After paper cut.
    But nothing happened.
    I need to know if I've an error in the print-control definition or the sapscript code.
    Thanks in advance
    Ronald Picado.

    You'd have better luck with getting an aswer if you posted your question to the ABAP forum.

  • How do I delete unused window spaces in Mission Control with Mountain Lion?

    When I open an application to full-window size (opening a new "space" in mission control), the "space" does not close when I terminate the application.  Instead, the space remains blank.  There are no options to remove or open an application, and I cannot remove the empty space in mission control.  When I re-open the same program, it creates a new space.  Now I have 11 spaces and only 4 of them are usable/not blank.
    How do I delete the blank ones?

    JonRow, Look familiar?
    And when I did try and swipe through full screen apps I briefly got this. See image below. (note the menu bar icons top right)
    Before going to a blank grey screen.
    If the problem comes back I will tru the killall dock command.
    Cheers

  • 5.2 Pages, how to create white space before and after paragraphs?

    Hi everyone,
    I'm having a very frustrating time with the new 5.2 version of pages after upgrading from a prior version. In the previous version, you could easily adjust the exact amount of white space before and after each paragraph. You were able to do this from within the inspector, but for the life of me, I cannot find it ANYWHERE in the new version and I'm ripping my hair out trying to find it.
    Surely you must be able to control the amount of space before and after each paragraph? It's totally useless to me if I can't; I want to be able to format my documents how I want; ie. plenty of white space between paragraphs and list points, not all bunched up together.
    Someone please help me! Thank you so much!

    Try telling Apple that. Start by rating/reviewing Pages in the App Store.
    I have been told repeatedly by Apple staff that the new User Interface makes it "Much simpler".
    When I ask how? …and point out how many (more) hidden steps there are, they don't want to talk anymore.
    Apple's standard response to just about everything lately, unfortunately.
    btw If you have the choice, use Pages '09 instead. Less buggy and way more features, better laid out.
    Peter

  • Print control on smartform

    Is there any thing in smartform like the print controls for sapscript? i'm printing a smartform on a dot-matrix printer and i need to print my values compressed (15 cpi) but if i block 15cpi on the printer if i have an empty variable i loose the alignment of my module like this:
    number      text
    1234        hi!
    number      text
             hi!
    my problem is that i must print on continuos pre-printed forms.
    anyone has solved this problem before?
    thanks,
    Daniele

    i ran into a similar situation, and i solved it by using separate windows for each column.
    Though different CPI may affect tabs, etc, it does not affect windows. "hi!" will always print in the window, lined up with "text" in the same window.
    just an idea...

  • Please - Exception readng printer control - need asssistance

    Ok, so recently created printers are throwing and error in iManager 2.7.7 or 2.6 -
    Exception reading printer control Close
    Error Request (CLIENT_ERROR) - bad status code (0x406)
    IPP Error: 0x406
    I've updated in iprint.npm if applicable. The printers have no spaces in their names. I've deleted the work directory off the imanager server and restarted Tomcat. I've recreated the server certificates and ran the Cool Solutions Certificate Re-creation Script for OES1, OES2 and OES 11 so they now validate, I've restarted the iprint daemons. I am at a loss, is there something I missed that you can point me to?
    The last option I'm seeing involves doing a "database" repair but I'd like to avoid that if possible.
    Any advice is appreciated - this is on OES2 32-bit with SLES 10 SP4/OES 2 .0.3 (SP3) fully patched.
    I could really use some ideas if you have a second everyone. Thank you so much.
    -Nyle

    On 05/08/2014 03:36 PM, nlandas wrote:[color=blue]
    >
    > Mysterious;2318377 Wrote:
    >> On 05/07/2014 10:36 PM, nlandas wrote:
    >> what error do you see on the apache error_log file?
    >
    > Thanks, so on the iPrint server logging wasn't at debug level. I'll turn
    > that on and report back. Below is what the log says for today but I
    > don't see anything that stands out to me. If you can let me know if you
    > see something.
    >
    > [Thu May 08 02:03:02 2014] [error] BindPsm : NDPS object not found
    > [Thu May 08 04:43:47 2014] [error] BindPsm : NDPS object not found
    > [Thu May 08 04:44:20 2014] [error] BindPsm : NDPS object not found
    > [Thu May 08 07:25:41 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 07:26:05 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 07:39:55 2014] [error] BindPsm : PA requires authentication
    > [Thu May 08 07:39:55 2014] [error] [client X.X.186.42] no acceptable
    > variant: /usr/share/apache2/error/HTTP_UNAUTHORIZED.html.var
    > [Thu May 08 07:43:40 2014] [error] BindPsm : PA requires authentication
    > [Thu May 08 07:43:41 2014] [error] [client X.X.186.77] no acceptable
    > variant: /usr/share/apache2/error/HTTP_UNAUTHORIZED.html.var
    > [Thu May 08 07:53:32 2014] [error] BindPsm : PA requires authentication
    > [Thu May 08 07:53:33 2014] [error] [client X.X.188.134] no acceptable
    > variant: /usr/share/apache2/error/HTTP_UNAUTHORIZED.html.var
    > [Thu May 08 07:54:23 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 07:56:42 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 07:57:21 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:05:54 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:15:29 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:18:50 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:20:21 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:20:52 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:27:56 2014] [error] BindPsm : PA requires authentication
    > [Thu May 08 08:27:57 2014] [error] [client X.X.189.24] no acceptable
    > variant: /usr/share/apache2/error/HTTP_UNAUTHORIZED.html.var
    > [Thu May 08 08:28:54 2014] [error] BindPsm : PA requires authentication
    > [Thu May 08 08:28:55 2014] [error] [client X.X.188.85] no acceptable
    > variant: /usr/share/apache2/error/HTTP_UNAUTHORIZED.html.var
    > [Thu May 08 08:28:56 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:34:41 2014] [error] BindPsm : PA requires authentication
    > [Thu May 08 08:34:42 2014] [error] [client X.X.188.170] no acceptable
    > variant: /usr/share/apache2/error/HTTP_UNAUTHORIZED.html.var
    > [Thu May 08 08:34:43 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:42:31 2014] [error] BindPsm : PA requires authentication
    > [Thu May 08 08:42:33 2014] [error] [client X.X.185.240] no acceptable
    > variant: /usr/share/apache2/error/HTTP_UNAUTHORIZED.html.var
    > [Thu May 08 08:42:54 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:42:54 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:43:29 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:43:56 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:44:54 2014] [error] BindPsm : PA requires authentication
    > [Thu May 08 08:44:55 2014] [error] [client X.X.191.83] no acceptable
    > variant: /usr/share/apache2/error/HTTP_UNAUTHORIZED.html.var
    > [Thu May 08 08:46:04 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:03 2014] [error] BindPsm : PA requires authentication
    > [Thu May 08 08:48:04 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:04 2014] [error] BindPsm : PA requires authentication
    > [Thu May 08 08:48:04 2014] [error] [client X.X.186.44] no acceptable
    > variant: /usr/share/apache2/error/HTTP_UNAUTHORIZED.html.var
    > [Thu May 08 08:48:05 2014] [error] [client X.X.186.44] no acceptable
    > variant: /usr/share/apache2/error/HTTP_UNAUTHORIZED.html.var
    > [Thu May 08 08:48:05 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:05 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:05 2014] [error] [client X.X.190.185] no acceptable
    > variant: /usr/share/apache2/error/HTTP_UNAUTHORIZED.html.var
    > [Thu May 08 08:48:06 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:06 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:07 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:07 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:08 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:08 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:09 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:10 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:10 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:11 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:12 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:12 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:13 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:14 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:14 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:15 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:15 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:16 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:17 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:17 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:18 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:19 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:19 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:20 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:20 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:21 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:22 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:48 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:48 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:49 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:49 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:50 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:51 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:51 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:52 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:53 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:53 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:54 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:54 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:55 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:57 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:57 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:58 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:58 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:48:59 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:49:00 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:49:00 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:49:01 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:49:01 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:49:02 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:49:03 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:49:03 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:49:04 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:49:04 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:49:05 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:49:06 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 08:53:01 2014] [warn] IPP Operation
    > error=SRVR_ERR_SERVICE_UNAVAILABLE, operation=Get Jobs
    > [Thu May 08 08:53:26 2014] [error] BindPsm : NDPS object not found
    > [Thu May 08 08:53:55 2014] [warn] ProcessPrintJobReq error=505
    > [Thu May 08 08:53:55 2014] [warn] IPP Operation
    > error=SRVR_ERR_TEMPORARY_ERR, operation=Print Job
    > [Thu May 08 08:55:02 2014] [error] BindPsm : NDPS object not found
    > [Thu May 08 08:55:58 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Service Request
    > [Thu May 08 08:55:59 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Service Request
    > [Thu May 08 08:56:37 2014] [warn] IPP Operation
    > error=SRVR_ERR_SERVICE_UNAVAILABLE, operation=Get Printer Attributes
    > [Thu May 08 08:56:37 2014] [warn] IPP Operation
    > error=SRVR_ERR_SERVICE_UNAVAILABLE, operation=Get Jobs
    > [Thu May 08 08:57:38 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 09:02:47 2014] [error] BindPsm : PA requires authentication
    > [Thu May 08 09:02:47 2014] [error] [client X.X.189.147] no acceptable
    > variant: /usr/share/apache2/error/HTTP_UNAUTHORIZED.html.var
    > [Thu May 08 09:03:52 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 09:05:10 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 09:05:31 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 09:05:41 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 09:05:43 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 09:09:52 2014] [warn] IPP Operation
    > error=CLNT_ERR_NOT_FOUND, operation=Get Job Attributes
    > [Thu May 08 09:18:14 2014] [error] [client X.X.187.235] File does not
    > exist: /srv/www/htdocs/ip
    >
    >
    Better is to duplicate the issue and then run the iprint gathering tool
    to generate an iprint info txt file.
    Normally this errors are due to problems connecting to the ldap server
    specified on the iprint_ssl.cong file

Maybe you are looking for

  • Oracle heterogeneous connectivity for DB2

    Hi, We want to connect DB2 database with Oracle 8i. We have read that it is possible with Generic connectivity and Transparent gateways. Any one knows the differece between the two when connecting to DB2? Which one is simpler if we have to use dblink

  • Change db name in dataguard

    Hello Has anyone experience changing database name(including datafile locations),sid,data and control file location in operational dataguard setup My understanding following below steps 1)shutdown primary and standby (stop managed recovery) 2)change

  • ThinkVantage Registry Monitor Service consuming too much CPU!

    My X200 Tablet is often in an unusable stable for 10~20 minutes after a reboot or a wakeup from a sleep/hibernation state. I noticed it's mainly because CPU is busy with the ThinkVantage Registry Monitor Service. I noticed that although the CPU usage

  • Premier Pro CS4 not Exporting to Media Exporter

    Hello all, We've purchased Master Suite CS5, and we are using the complementary Premiere Pro (and After Effects) CS4 on the computers (32-bit systems).  Premiere Pro installed fine (as best we could tell), but we are unable to export the finished fil

  • A stumper..any ideas

    Crashed while installing software. Now I cant load many 3rd party software: Office,Quicken,Acrobat,photoshop CS. Ive reset permissions,NVRAM... removed battery,reinstalled... wiped the hard drive twice/reinstalled from time machine and OS disk No luc