More space between characters in different system...

Hi,
I'm facing a problem with a smartform.
For the same document, there is a difference between my development system and my quality system.
When I print my document in the quality system there is more space between the characters of the document !
The smartform and style are the same in both systems.
Is there someone who can help me to solve this issue ?
Many thanks,
Giu

Hi Giu,
Are you printing to the same printer and using the same printer drivers on both systems?
Regards,
Nick

Similar Messages

  • Firefox issue  h:datatable give more space between columns

    Hi
    In our application we are displaying table by using <h:datatable>,it was working fine in IE but when i used an firefox it gives more space between one row of data and next data row.. my code is like this
    <a:outputPanel id="searchResults">
         <h:dataTable id="hotels" value="#{hotels}" var="hot" >
              <h:column>
                   <f:facet name="header">Name</f:facet>
                   #{hot.name}
              </h:column>
              <h:column>
                   <f:facet name="header">Address</f:facet>
                   #{hot.address}
              </h:column>
              <h:column>
                   <f:facet name="header">City, State</f:facet>
                   #{hot.city}, #{hot.state}, #{hot.country}
              </h:column>
              <h:column>
                   <f:facet name="header">Zip</f:facet>
                   #{hot.zip}
              </h:column>
              <h:column>
                   <f:facet name="header">Action</f:facet>
                   <s:link id="viewHotel" value="View Hotel" action="#{hotelBooking.selectHotel(hot)}"/>
              </h:column>
         </h:dataTable>
         <s:link value="More results" action="#{hotelSearch.nextPage}" rendered="#{hotelSearch.nextPageAvailable}"/>
    </div>
    </a:outputPanel>

    I applied CSS style to the datatable even though there is no result.it gives more space between one row and another row.
    it used following attributes for h:datatable...i set the padding and margin because different broweser has different margin
    padding:0px;
    margin:0px;
    i am tried like this also
    <h:dataTable id="hotels" value="#{hotels}" >
         <h:column>
                                  <p style="padding:0px;margn:0px">#{hot.name}</p>
              </h:column>
              </h:dataTable>
    but there is no result can u post some examples
    Thanks
    Mohan

  • More space between thumbnails

    Hello there
    I am creating a image gallery with this tutorial
    http://www.youtube.com/watch?feature=player_embedded&v=rnZNv2jTC9c&noredirect=1
    and I would like to have more space between thumbnails, I guess it is doable but I cant figure it out.
    Any ideas??
    Thank you

    Activate the thumbnail container, this will turn on the spacing panel.

  • Removing spaces between characters using a loop

    How can I remove spaces between characters using a loop? I made a program that tests the validity of a social insurance number. However, I'd like to be able to remove the spaces in the input if the users sepeates their SIN using spaces. example (123 456 789 becomes 123456789)
    Thank you
    Edited by: umhodzic on Feb 10, 2008 2:43 PM

    umhodzic wrote:
    Thank you for your response. However, the procudre must be done using a loop.It doesn't have to be done using a loop, as already shown. However if you have some ignorant person telling you you have to have a loop, then here's a solution that uses a loop:String s = "123 456 789";
    while (s.contains(" ")) {
      s = s.replaceAll(" ", "");
    }

  • Find space between word with different endings and digit

    Hi,
    I'm trying to figure out how to find spaces between word and digit.
    I am limited to use only word 'WORD' (either capital or small caps) with different endings like -ing -s -y and more (using \S+).
    I wrote something like (?i)(?<=WORD\S+)\s(?=\d+) but this does not seem to work due to some limitation of lookahead I belive?
    Any suggestions?
    Peter

    Peter Stnsz wrote:
    … find what: (\<WORD\S+)(\s)(?=\d)
    change to: $1~s
    Hmmh?
    Your Grep do not find your first example: WORD 0,2 (WORD without any ending)
    And you don't need the second ()
    And please do not use \S
    Use this instead:
    (\<WORD\l*)\s(?=\d)
    (l is the little L)
    Have fun

  • Read from Text File.vi adds spaces between characters

    I'm openning a text file in LabVIEW, and and need to parse some information from it.  However, when I open the file, there are extra spaces between the letters.  When I just open the same file with Notepad or Wordpad, the spaces are not there.  Is there a way to eliminate this problem?

    And, since after the \FF\FE, every other character is \00, you can even do a homebrew quick&dirty solution.
    Are the files always like that, or are some "normal"?
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    readspecialfile.png ‏12 KB

  • Receiver SFTP adapter giving spaces between characters in the Output file

    Hi PI Experts,
    My Scenario is: Paymul (EDI file ) ECC -> PI -> SFTP server.
    Source Sender File adapter able to pickup this Paymul D96A file and able to send messages to target SFTP server using SFTP receiver adapter.
    But, Generated Output file having single space between each character. I am not using any content conversion modules in Receiver SFTP adapter.
    Also not having any mappings to transform the messages. it is just pass through interface.
    I have attached example Output file. I have changed the .Dat file to .txt just to attach here.
    Could any one try to help me on this. Please let me know incase need any more details.
    Thanks,
    Govindu.

    Hi Govindu,
    Please see if the below Endcoding settings wont resolve your issue.
    File Type - Text
    File Encoding - ISO-8859-1
    Regards,
    Jannus Botha

  • Single Webservice to perform more than 1 function in different systems

    Hello,
    Just to give a brief idea what i am trying to achieve is:
    I want to create a Web Service which will do some operations in R/3 , some operations in SAP-CRM and some in a .Net System.
    So lets say:
    I have a portal from where my Sales order is getting created in CRM, and then some validations and availability check has to be performed in a .Net System and finally Delivery of that SO should be done in SAP R/3 .
    So i need to create a Web Service which can perform these functions in different systems.
    So how can i design my scenario.
    We can manage this through creating RFC's in different systems and calling them but how about .net system and what if it has to be done through Web Service approach only.
    All inputs are most welcome.
    Regards,
    Mayank

    Hi Mayank,
    The best approach to follow would depend entirely on what solutions you have in your system ladnscape. It's a bit of an open ended question. I think you're complicating it though.
    Unless your mandate is specifically to use web services & there is a reqyurement for real-time communication, I would use RFC's all around, even for the .NET portion, see more info on making RFC calls to .NET using the SAP .NET Connector (SMP Login required):
    [https://websmp103.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000719347&]
    This way you will ensure delivery (or retry mechanisms at the very least). You could also ensure delivery if all parties involved support WS-RM. If you specifically need use web service communication for the .NET call, you have some options like:
    - RFC to SOAP call from SAP once the .NET connector is functioning.
    - Generate a Service Consumer Proxy on the SAP side using the WSDL provided from the .NET developer (once the service is ready on their side) & trigger a service call as & when you need to.
    If you need to use web serivce communication all around then you can do that as well (with some Abap Proxy Provider / Consumer dev work with some custom code OR you could use SAP Enterprise Services if available). It just means extra Abap development work when you already have all the tools (IDOCs etc.) to trigger RFC calls for all the SAP-to-SAP calls.
    Regards, Trevor

  • Acro 9.2 Prof. adds randomly spaces between characters when document is safed

    We encountered the problem, that the prof. 9.2 version adds randomly spaces between words and characters in a way that the text layout is unfeasible.
    The document was absolutely correct generated from Word to PDF, but after the first save in Acrobat it is corrupted.
    The real bad fact is, that is problem occurs not on all workstations. Some are working without this bad problem. OS is Win XP SP3.
    Has anyone an idea how to solve this?? In the meantime we switched back to Acro 8 on the bad workstations.
    Thanx
    Don

    Firstly, there's no such thing as Apache 9.3, there's Apache 1 (and subversions) and Apache 2 (and subversions). Your error message -
    Oracle-HTTP-Server/1.3.28Shows you're using Apache 1.3.28
    Secondly, I'm confused by your comment -
    I do not have Apache 9.3 or higher but I think oracle should offer this in its companion CDOracle does offer the Apache server, if you're saying you didn't get it from Oracle then where did your Apache server come from?
    Thirdly, I notice from your config file -
    ErrorLog "|E:\oracle\product\10.1.0\Companion\Apache\Apache\bin\rotatelogs logs/error_log 43200"That you're piping the logs through rotatelogs, are you sure the logfiles haven't just been renamed?

  • Have more space between images used as buttons

    Hi again,
    Would like to see if there's some html properties to have more space beetwen buttons based on image:
    i've used: save.gif and del.gif instead of the standard template buttons.
    Would be nice to have the 2 images not so near.
    thanx a lot

    Hi,
    You could go to Edit Button Item and insert some HTML white spaces as Post Element Text. For example, if you have 2 buttons, do it at left button.
    Roger

  • How can I get more space between items in a line of text .. elegantly

    Ok I have some equations that follow each other in a text line, eg
    Xc=10^6/2 pi f C     Xc = 10^6/2* pi *50 * C Xc = 10^4/pi C     .................   etc.
    Is there some way I can eg put a css entity in the paragraph so I can dimension the space as a box?
    I've tried with a <span class=css box></span> but it just includes the statement as text.
    And if i put <p>Xc=10^6/2 pi f C</p><span class="css" box></span><p> etc
    it puts the equations on different lines. 
    And multiple    s is a cludge, so is invisible images. There MUST be a nice way to do this?

    One way is to do something like this:
    1) create your styles like this:
    span {
        font-family: "Courier New", Courier, monospace;
        letter-spacing: 3px;
    2) create your HTML like this:
    <p> <span>Xc = 10^6/2* pi *50 * C Xc = 10^4/pi C </span></p>
    Now is this what you are looking for?  If not please post back so that something else can be suggested like Math HTML such as this one:
    <MATH>&int;_a_^b^{f(x)<over>1+x} dx</MATH>
    FF and latest IE9/10 supports MAtH HTML as far as I know.
    This is the picture of display in IE10:
    Good luck.

  • Ff 4b12 no longer prints properly - adds multiple spaces between characters

    b11 worked great. printing from gmail to either my HP 1022N or to primo pdf now adds the extra spaces. IE works fine as does FF3.6.13. How do I go back to 4.b11 until this is resolved?

    Here's the ftp server link to beta 11: ftp://ftp.mozilla.org/pub/firefox/releases/4.0b11/win32/en-US/Firefox%20Setup%204.0%20Beta%2011.exe
    (For Windows)
    This is a known problem and mozilla fixed it with the latest nightly builds and the upcoming RC.

  • More space between two objects (using twitter bootstrap 3)

    I have two specific objects on my website and they are to close together. I would like to know if there is a way to push the a bit farther apart from eachother. They are in the same row. I was told to increase container width but i am not sure how to do this. The two objects are the image slider and the picture. Also, how would i push that row down. It's to close to the navbar.
    My code:
    <div class="container">
            <div class="row">
                    <div class="col-xs-9">
                            <ul class="bxslider">
                                    <li><img src="img/Day1.jpg" width="980" height="280"/></li>
      <li><img src="img/Day1.jpg" width="980" height="280"/></li>
      <li><img src="img/Day1.jpg" width="980" height="280"/></li>
      <li><img src="img/Day1.jpg" width="980" height="280"/></li>
                            </ul>
                    </div>
                    <div class="col-xs-3">
                            <div class="imagess"> <img src="http://rootforsite.azurewebsites.net/img/pic.jpg" class="img-responsive center-block"  /> </div>
                    </div>
            </div>
      <iframe width="640" height="360" src="http://www.youtube.com/embed/mb6SNytt5YI" frameborder="0" allowfullscreen></iframe>
    </div>
    My Website : http://rootforsite.azurewebsites.net/
    -Thanks

    Please do not duplicate your posts. It can be very confusing when two different persons answer the post in different ways.

  • Use ccBPM mainly for correlation between different systems

    In his presentation: "Design Patterns for SAP NetWeaver Exchange Infrastructure"
    William Li ,from SAP NetWeaverRIG Americas, stats that following:
    *Use ccBPM mainly for correlation processing between messages from different systems
    Although this practice is well known Ito me , would like to know what stands behind this recommendation (Except for
    eSOA BP). is it performance issue, other...
    your insights will be most wellcome.

    Nimrod Gisis wrote:Hi Nimrod,
    ccBPM offers achieving some difficult requirements easily , that means some cases using standard way of integration not possible .it is true that ccBPM scenarios uses one more layer(BPE engine) but it doesn't mean that it is going to give worst performance.
    i had done couple of implementations where we used extensively ccBPM to achive complex integration logics, i never felt ccBPM performance point of view any problems, all interfaces working perfectly in production.my view is it is really awesome.
    we have to design any interfaces by following best architectural standards in case of ccBPM also same,there is so much negative publicity about ccBPM, but is it not all true.
    the thing that intrigues me the most is the reference to different systems .
    > if lets say I have to construct a mesage from 20 other messages taken from the same applicative system....
    > will that be a "good practice" or an architectural design flop?
    >
    it is a good practise to use ccBPM in this case and it is offering correlation mechanism to maintain the reaction between messages so that you can easily differentiate and suppress the unwanted messages.
    Regards,
    Raj

  • How Can I Tighten the Space Between Table Rows?

    I am trying to reproduce the resume I created in a different word processing application several years ago. I have created a table that lists all the work for a given employer with each row representing a different employer. I do want a little more space between text rows when I jump from one employer to the next (one row in the table to the next), but not as much as it is creating. Is there a way to tighten this?
    I like the amount of space between lines within a row just as it is.
    Martin
    OS 10.9.5
    Pages v. 5.2 (1860)

    That looks to be the idea, but adjusting the Text Inset is giving me inconsistent results from row to row. The first attached image shows the table (I've included grid lines here to help illustrate) with the default Text Inset of 4 for all cells.
    Note the consistent spacing before and after each row. Here is the same document with a Text Inset of 0 on all cells:
    Note the large gap between the first and second rows (OWN and Investigative etc.) and the extremely tight gap between the second row and third (Investigative etc. and CNBC). Then a big gap, a tight gap, two big gaps, a tight gap and a big in subsequent rows.
    I keep looking to see if I have some sort of other inconsistent formatting going on, but I can't find one. All cells have the Text set (in the style tab) to "Align text to the top of a table cell."
    Martin

Maybe you are looking for