Error Blank spaces smartforms

Hello,
I have an smartform who recibes a table of char255 lines. The only thing I do is a loop over it and show each line.
My problem is I have some lines with a lot of blank spaces (for example"01                    7,50     10,30") and on the screen those spaces doesn´t fill the same space each char so it get shown with bad format.
Do you know why is this happening??
Rgds
<MOVED BY MODERATOR TO THE CORRECT FORUM>
Edited by: Alvaro Tejada Galindo on Dec 17, 2009 11:43 AM

You may display the OTF spool in RAW mode so that to make sure that the COURIER font has been used (because it might have been automatically replaced by SAP, if your device type does not allow COURIER, see SE73 printer fonts and also "Font conversion" button which converts all existing system fonts).
Moreover, if you use SAPWIN, SAPlpd program may have a replacement font defined for Courier, run saplpd.exe manually and check this option.

Similar Messages

  • Error "Value BLANK / SPACE is invalid for acc.asgnmnt.fund" in NWA Conf.

    Hello,
    We are currently upgrading to ECC 6.0 (from 4.7c) with EA-APPL 603 (SAPK-60303INEAAPPL) and EA-PS 603 (SAPK-60303INEAPS). When I tried to do network activity confirmation from CJ20N, it gave me an error message "Value BLANK / SPACE is invalid for account assignment fund". But then it posted the confirmation with NO actual costs and set the network activity system status to CNF. However, from CN25, with the same error, no confirmation is posted. Had anyone ever have this error from PS perspective (or perhaps in other module)? FYI - no material components assigned to NWA, hence no PR/PO from NWA. Also, FM is activated in our environment.

    Hi,
    Check out this note,
    Note 1106525 - Value Blank/Space is invalid for Account Assignment "Fund"
    Might be helpful.
    Regards,
    Gokul

  • Error "Value BLANK / SPACE is invalid..." F6(804) during NWA Confirmation

    Hello,
    We are currently upgrading to ECC 6.0 (from 4.7c) with EA-APPL 603 (SAPK-60303INEAAPPL) and EA-PS 603 (SAPK-60303INEAPS). When I tried to do network activity confirmation from CJ20N, it gave me an error message "Value BLANK / SPACE is invalid for account assignment fund". But then it posted the confirmation with NO actual costs and set the network activity system status to CNF. However, from CN25, with the same error, no confirmation was posted. Had anyone ever have this error from PS perspective (or perhaps in other module)? Are there OSS notes available for ECC6.0? FYI - no material components assigned to NWA, hence no PR/PO from NWA. Also, FM is activated in our environment.
    Thanks in advance folks!.
    T-

    Hi,
    Check out this note,
    Note 1106525 - Value Blank/Space is invalid for Account Assignment "Fund"
    Might be helpful.
    Regards,
    Gokul

  • Error Message F6804 Value Blank/Space invalid for account assignment elemen

    Dear Experts,
    We have a problem in Travel Management,
    I have created a trip for paid by company expenses only and entered cost distribution (fund, funds center and WBS) in the trip.
    When I transfer a trip to FI through transaction PRRW throughing error message "F6804 Value Blank/Space invalid for account assignment element for fund and FI313 No funds center entered/ derived in Item".
    The paid by com. expenses receipts of wage types credited with - positive amount in 2nd symbolic account offsetting entry and flagged W/CO also the symbolic code linked to linked  to Temprary clearing GL it is BS GL .
    I checked all the existing threads messages but I did not get solution.
    the problem comes up from our upgradation, 6 months back we upgraded to ECC 6.
    We don't have any problems in our old 4.7 system still it is working fine.
    I created OSS but still they did not solved and they are refering all passed notes.
    could any one give the solution to come out from this problem?
    Thanks and Regards,
    Satya

    Hi Satya,
    Basically the error is because of Funds Management which you have activated. Please check the note 1268001, 701291, 558295 & 936658 but i dont know will this be helpful or not.
    Regards,
    S.Srikanth
    Edited by: SrikanthS on Oct 26, 2010 11:17 AM

  • How to Remove Blank spaces in the text elements for a smartform

    Hi All,
    Can any one please help me out to remove the blank spaces in the text elements.
    We are printing Labels using the Zebra Printer and we have rotated the windows to 90 degrees.
    We are able to see out text and barcodes. But the issues is when we are printing the label. We are getting spaces in the Text and in the Text elements fields. I have tried to give &g_name(C)&. But it is not working even i worked with style sheet spaces no luck.
    Currently out text and fields are printing like this
    s h r i y a n
    material number
    1111  -001  -000
    They should print like
    shriyan
    1111-001-000
    According to the ZEBRA suggestions we are using the font helve.
    Plase help us it is very urgent.
    Reward point will be given.
    Thanks

    Hi,
    Just use Condense g_name inside the program lines.
    Just to see how it behaves put a hard breakpoint.
    Break Username. and check the condense statement.
    condense <your field> no-gaps.
    Create program lines ahead of printing. give the field you want to condense in the input and output parameters of the program lines.
    Use condense inside the program lines.
    Thanks,
    Vamshi.

  • 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;
    }

  • Blank space in Query Designer formula

    Hello
    I am using a formula in query designer to make some calculation but, once executed, this formula shows a blank space.
    What does a blank space means?? The formula is not giving me an error.
    Thank you,
    Skull

    Hi,
    I think the blank appears in the report because it is encountering a Divide by Zero error.
    First check what calculations your doing in the formula. If your doing a division and if there are chances that the Denominator is 0 and numerator has some value, then based on the setting in the spro, you might get a blank.
    Try and put the function in BEx that handles divide by zero errors. The function is NDIV0
    If that is not the case then please paste the formula that you have written.
    Regards,
    Forum

  • File Content Conversion Removes Leading Blank/Space

    I'm having a problem where file content conversion is trimming leading blanks/space/whitespace from fields when reading in the inbound file.  I've seen where people have posted that you need to use fieldContentFormatting to prevent content conversion from stripping the leading/trailing whitespace.  I added that parameter to my list (see below example) but it still appears to be trimming the leading whitespace.  Look forward to hearing your thoughts.  Here are the details:
    I'm using fixed length file content conversion for Sender File Adapter (SP15).  I have the following parameters set:
    Document Name = MaterialData
    Recordset name = item
    Recordset Structure = MaterialLine, 1
    I have:
    MaterialLine.fieldNames = matno_external, mat_description
    MaterialLine.fieldFixedLengths = 40, 40
    MaterialLine.fieldContentFormatting = nothing, nothing
    The following is the input file (notice spaces prior to second occurrence of material numbers)
    ZED00000001                             AIMS LIGHT A
    ZED00000001                            AIMS LIGHT B
    ZED00000002                             AIMS SWITCH A
    ZED00000002                            AIMS SWITCH B
    ZED00000003                             AIMS SEMICONDUCTOR A
    ZED00000003                            AIMS SEMICONDUCTOR B
    The following is the source XML after file content conversion from SXMB_MONI (note spaces no longer exist in matno_external tag).
    <?xml version="1.0" encoding="utf-8" ?>
    - <ns:MaterialData xmlns:ns="http://xxxxxxx.com/yyy/test">
    - <item>
    - <MaterialLine>
      <matno_external>ZED00000001</matno_external>
      <mat_description>AIMS LIGHT A</mat_description>
      </MaterialLine>
      </item>
    - <item>
    - <MaterialLine>
      <matno_external>ZED00000001</matno_external>
      <create_date>10/09/06</create_date>
      <mat_description>AIMS LIGHT B</mat_description>
      </MaterialLine>
      </item>
    - <item>
    - <MaterialLine>
      <matno_external>ZED00000002</matno_external>
      <mat_description>AIMS SWITCH A</mat_description>
      </MaterialLine>
      </item>
    - <item>
    - <MaterialLine>
      <matno_external>ZED00000002</matno_external>
      <mat_description>AIMS SWITCH B</mat_description>
      </MaterialLine>
      </item>
    - <item>
    - <MaterialLine>
      <matno_external>ZED00000003</matno_external>
      <mat_description>AIMS SEMICONDUCTOR A</mat_description>
      </MaterialLine>
      </item>
    - <item>
    - <MaterialLine>
      <matno_external>ZED00000003</matno_external>
      <mat_description>AIMS SEMICONDUCTOR B</mat_description>
      </MaterialLine>
      </item>
      </ns:MaterialData>

    Thanks all for your attempts but I figured it out and wasn't this the biggest case of irony.
    Here I was trying to prevent leading spaces from being trimmed in the loading of my file and my problem was that when I typed:
    MaterialLine.fieldContentFormatting
    I actually left a "blank" at the end of the "g" in Formatting.  Apparently XI didn't like that and neither gave me a runtime or compile error.  Anyway I found this and though I'd share in case anyone else encounters it.  I removed the blank and all is working now.

  • Blank space / # appearing in KCH3

    Hi Guys,
    could anybody please let me know how to delete # or blank space which is appearing in KCH3.
    is thisany cause of  the program error??
    I hope there is another way to delete the node and recreating it, but we dont want to do that.
    thanks

    Hi geetha,
    thanks for the mail.
    but when i am trying to deleting that   # or blank space it is throwing me a error message as
    Value maintenance not allowed ->Standard Hierarchy

  • Blank Space problem in Adobe Form

    Hello Gurus,
    In my Adobe form, One field has to be displayed based on a condition. So, for that field, in Context tab, condition is specified and its working also i.e. It condition is true then data is not displayed in the layout but I find the blank space for it. I dont want that blank space to be displayed.
    Example:
    In layout, address is in format as shown below.
    Name
    Street
    City
    Region
    Postal code
    Country
    Here, I have a condition that, Region field should not be displayed only for Material eq '123' i.e. same address has to be printed as shown below.
    Name
    Street
    City
    Postal code
    Country
    But, If I give condition then address is shown as below.
    Name
    Street
    City
    >Here, am getting empty space & I dont need this blank space to there in the layout.
    Postal code
    Country
    So, Can anyone please help me for this.
    Thanks in Advance.
    Regards,
    Usha

    Hi Usha,
    1. Remove the Condition from you Context tab.
    2. In the Driver Program check for the condition and fill the value in the internal table which is passed to
        the adobe form.
    3. Make the subform (under which the field is added in the hierarchy view) as flowed.
    4. In the script editor, Select the 'javascript' and write the script to hide the form field specifying the condition here.
    for e.g
    if (xfa.form.FORM.SUB_FORM.matnr == "123") {
        xfa.form.FORM.SUB_FORM.Region = "hidden";
    NOTE: Javascript is Case sensitive and stops working immediately after the line of code where an error occurs.
    Hope this proves to be useful.
    Thanks,
    Swar.

  • Weird blank space above fixed navigation bar. help!?

    Dear all,
    Im a real no no in building websites, so this is already my fifth post in a week
    And i have an issue again....
    on my website: http://vinddit.nl/ you can see i made a fixed navigationbar. but you will see a blank space above it when you scoll down.
    This is not what i want! I want the content behind it to not be visible.
    See also my printscreen:
    Can someone help me get rid of it?
    Pls find my .HTML & CSS below:
    HTML:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
    <script type="text/javascript" src="scripts/smoothscroll.js"></script>
    <script src="scripts/jquery-1.6.min.js" type="text/javascript"></script>
    <script src="scripts/jquery.cycle.all.js" type="text/javascript"></script>
    <style type="text/css"
    /* BeginOAWidget_Instance_2559022: #slideshow_1 */
                                  #slideshow_1 {
              padding: 0px;
              margin-top: 0px;
              margin-right: auto;
              margin-bottom: 0px;
              margin-left: auto;
                                  #slideshow_1-caption{
                                            padding:0;
                                            margin:0;
                                  #slideshow_1 img, #slideshow_1 div { 
                                      padding: 0px;
                                      background-color: #EEE;
                                            -webkit-border-radius: 0px;
                                            -moz-border-radius: 0px;
                                            border-radius: 0px;
                                      margin: 0;
    /* EndOAWidget_Instance_2559022 */
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2559022" binding="#slideshow_1" />
      <oa:widget wid="2559022" binding="#slideshow_header" />
      <oa:widget wid="2559022" binding="#slideshow_header_2" />
    </oa:widgets>
    -->
    </script>
    <style type="text/css">
    /* BeginOAWidget_Instance_2559022: #slideshow_header */
                                  #slideshow_header { 
                                      padding: 0px;
                                            margin:0; 
                                  #slideshow_header-caption{
                                            padding:0;
                                            margin:0;
                                  #slideshow_header img, #slideshow_header div { 
                                      padding: 0px;
                                      background-color: #ffffff;
                                            -webkit-border-radius: 0px;
                                            -moz-border-radius: 0px;
                                            border-radius: 0px;
                                      margin: 0;
    /* BeginOAWidget_Instance_2559022: #slideshow_header_2 */
                                  #slideshow_header_2 { 
                                      padding: 0px;
                                            margin:0; 
                                  #slideshow_header_2-caption{
                                            padding:0;
                                            margin:0;
                                  #slideshow_header_2 img, #slideshow_header_2 div { 
                                      padding: 0px;
                                      background-color: #ffffff;
                                            -webkit-border-radius: 5px;
                                            -moz-border-radius: 5px;
                                            border-radius: 5px;
                                      margin: 0;
    /* EndOAWidget_Instance_2559022 */
    </style>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>VINDDIT - Wij Vinden wat u zoekt!</title>
    <meta name="Description " content="Vinddit.nl Wij vinden wat u zoekt" />
    <meta name="keywords" content="vinddit,vinddit.nl,tweedehands, zoeken, design, vintage, vinden, service, meubels, kleding, schoenen" />
    <link href="images/logo.png" rel="shortcut icon " />
    <link href="style.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="container">
      <div id="banner" class="menudefault">
        <h2>
        <a href="index.html"><img src="images/Schermafbeelding 2014-02-25 om 10.09.52.png" width="220" height="76" alt="logo" /></a>
        <a href="#container" class="smoothScroll">HOME</a>  |
        <a href="#leftcollum" class="smoothScroll">HOE WERKT HET?</a>  |  <a href="#leftcollum2" class="smoothScroll">GEVONDEN @ VINDDIT</a>  |
        <a href="#mainbox2" class="smoothScroll">PRIJZEN</a>   |   <a href="over_ons.html">OVER ONS</a>   |  <a href="contact.html">CONTACT</a>   |
      </h2>
    </div>
      <p> </p>
      <p> </p>
      <p> </p>
      <hr />
      <div id="mainimage">
        <p>
          <script type="text/javascript">
    // BeginOAWidget_Instance_2559022: #slideshow_header
                               slideshow_headerAddCaption=true;
    $(document).ready(function() {
              $('#slideshow_header').cycle({
                        after:                              slideshow_headerOnCycleAfter, //the function that is triggered after each transition
                        autostop:                              false,     // true to end slideshow after X transitions (where X == slide count)
                        fx:                                        'scrollLeft,',// name of transition effect
                        pause:                              false,     // true to enable pause on hover
                        randomizeEffects:          true,  // valid when multiple effects are used; true to make the effect sequence random
                        speed:                              1000,  // speed of the transition (any valid fx speed value)
                        sync:                              true,     // true if in/out transitions should occur simultaneously
                        timeout:                    4000,  // milliseconds between slide transitions (0 to disable auto advance)
                        fit:                              true,
                        height:                       '365px',
                        width:         '968px'   // container width (if the 'fit' option is true, the slides will be set to this width as well)
    function slideshow_headerOnCycleAfter() {
              if (slideshow_headerAddCaption==true){
                                  $('#slideshow_header-caption').html(this.title);
    // EndOAWidget_Instance_2559022
          </script>
        </p>
        <div id="slideshow_header">
          <!--All elements inside this will become slides-->
        <img src="images/background header2.jpg" width="968" height="365" title="" /> <a href="Vinddit nu.html"><img src="images/background header3.jpg" width="968" height="365" title="" /></a></div>
        <!--It is safe to delete this if captions are disabled-->
        <div id="slideshow_header-caption"></div>
      </div>
    <div class="button">
       <p><img src="images/button-.gif" width="270" height="108" alt="button" onclick="window.open('http://vinddit.nl/vindditnu%20php%20version.php','Websonic','width=760,height=800,scrollba rs=no,toolbar=no,location=no'); return false" /></p>
       <p> </p>
    </div>
      <div id="leftcollum">
        <p><img src="images/tumblr_lpfamnI7Jp1qz7n3v.jpg" width="200" height="200" alt="pic1" /></p>
                <h1>VINDDIT NU!</h1>
                <h2>Vertel ons wat je zoekt en wij gaan persoonlijk voor je opzoek! <a href="vindditnu php version.php">Doe meteen een aanvraag...</a></h2>
    </div>
      <div id="centercollum">
        <p><img src="images/tumblr_mbflodtX9Z1rtzzyto1_500_large_thumb_550x550.jpg" width="200" height="200" alt="pic2"  /></p>
                <h1>Persoonlijke VIND machine</h1>
                <h2>Wij zijn geen zoek machine, wij VINDEN! Onze ervaren personal zoekers zullen jouw artikel vinden naar aanleiding van jouw specifieke wensen. <a href="vindditnu php version.php">Lees meer...</a></h2>
      </div>
      <div id="rightcollum">
        <p><img src="images/slide 4.jpeg" width="200" height="200" alt="pic3" /></p>
        <h1>Met  gemak GEVONDEN</h1>
        <h2>Ontvang een persoonlijke selectie van 1 tot 5 opties en besluit vervolgens zelf welke keuze je wil maken! <a href="over_ons.html">Lees meer...</a></h2>
      </div>
      <div id="mainbox"> <p> </p>
        <div id="insideleft">
          <img src="images/27th.jpg" width="280" height="280" alt="pic4" />
    </div>
        <div id="insideright">
          <h1>Hoe VINDEN wij voor jou?      </h1>
    <h2>idsfjdspodopsv, dspofjsdfopfj.</h2>
          <h2>sd[vjsdvosv      psdofjsd jsdpofjds pofjdsfpos fspojdsf!      </h2>
         <div class="button2"> <h2><img src="images/button.gif" width="216" height="86" alt="button" onclick="window.open('http://vinddit.nl/vindditnu%20php%20version.php','Websonic','width=760,height=800,scrollba rs=no,toolbar=no,location=no'); return false"/> </p></h2>
         </div>
        </div>
    </div>
      <div id="leftcollum2">
        <p> </p>
                <h1><img src="icons/shadow-icons-19.png" width="100" height="100" alt="icon1" /></h1>
                <h1>VERTEL!</h1>
                <p>vinddit was found in 2014 door Lisa &amp; Annes dsfhdofhafhiofasfoihs</p>
                <p><a href="over_ons.html">lees hier meer over ons....</a></p>
    <p> </p>
                <p> </p>
      </div>
      <div id="centercollum2">
        <p>
          <script type="text/javascript">
    // BeginOAWidget_Instance_2559022: #slideshow_1
                               slideshow_1AddCaption=true;
    $(document).ready(function() {
              $('#slideshow_1').cycle({
                        after:                              slideshow_1OnCycleAfter, //the function that is triggered after each transition
                        autostop:                              false,     // true to end slideshow after X transitions (where X == slide count)
                        fx:                                        'scrollLeft,',// name of transition effect
                        pause:                              false,     // true to enable pause on hover
                        randomizeEffects:          false,  // valid when multiple effects are used; true to make the effect sequence random
                        speed:                              1000,  // speed of the transition (any valid fx speed value)
                        sync:                              true,     // true if in/out transitions should occur simultaneously
                        timeout:                    3000,  // milliseconds between slide transitions (0 to disable auto advance)
                        fit:                              true,
                        height:                       '200px',
                        width:         '200px'   // container width (if the 'fit' option is true, the slides will be set to this width as well)
    function slideshow_1OnCycleAfter() {
              if (slideshow_1AddCaption==true){
                                  $('#slideshow_1-caption').html(this.title);
          </script>
        <script type="text/javascript">
    // BeginOAWidget_Instance_2559022: #slideshow_1
                               slideshow_1AddCaption=false;
    $(document).ready(function() {
              $('#slideshow_1').cycle({
                        after:                              slideshow_1OnCycleAfter, //the function that is triggered after each transition
                        autostop:                              false,     // true to end slideshow after X transitions (where X == slide count)
                        fx:                                        'scrollLeft,',// name of transition effect
                        pause:                              true,     // true to enable pause on hover
                        randomizeEffects:          false,  // valid when multiple effects are used; true to make the effect sequence random
                        speed:                              1000,  // speed of the transition (any valid fx speed value)
                        sync:                              true,     // true if in/out transitions should occur simultaneously
                        timeout:                    3000,  // milliseconds between slide transitions (0 to disable auto advance)
                        fit:                              true,
                        height:                       '200px',
                        width:         '200px'   // container width (if the 'fit' option is true, the slides will be set to this width as well)
    function slideshow_1OnCycleAfter() {
              if (slideshow_1AddCaption==true){
                                  $('#slideshow_1-caption').html(this.title);
    // EndOAWidget_Instance_2559022
          </script>
        <script type="text/javascript">
    // BeginOAWidget_Instance_2559022: #slideshow_header_2
                               slideshow_header_2AddCaption=true;
    $(document).ready(function() {
              $('#slideshow_header_2').cycle({
                        after:                              slideshow_header_2OnCycleAfter, //the function that is triggered after each transition
                        autostop:                              false,     // true to end slideshow after X transitions (where X == slide count)
                        fx:                                        'scrollLeft,',// name of transition effect
                        pause:                              true,     // true to enable pause on hover
                        randomizeEffects:          true,  // valid when multiple effects are used; true to make the effect sequence random
                        speed:                              1000,  // speed of the transition (any valid fx speed value)
                        sync:                              true,     // true if in/out transitions should occur simultaneously
                        timeout:                    7000,  // milliseconds between slide transitions (0 to disable auto advance)
                        fit:                              true,
                        height:                       '365px',
                        width:         '968px'   // container width (if the 'fit' option is true, the slides will be set to this width as well)
    function slideshow_header_2OnCycleAfter() {
              if (slideshow_header_2AddCaption==true){
                                  $('#slideshow_header_2-caption').html(this.title);
    // EndOAWidget_Instance_255902</script>
        <div id="slideshow_1">
          <!--All elements inside this will become slides-->
          <a href="images/slide 1 tumb.jpg"><img src="images/slide 1.jpg" width="200" height="200" title="caption for image1" /></a> <a href="images/slide 3 tumb.jpg"><img src="images/slide 3.jpg" width="200" height="200" title="caption for image2" /></a> <a href="images/slide 4 tumb.jpeg"><img src="images/slide 4.jpeg" width="200" height="200" title="caption for image3" /></a>
          <img src="images/slide 5.jpg" width="200" height="200" title="caption for image4" />  </div>
        <!--It is safe to delete this if captions are disabled-->
        <div id="slideshow_1-caption2"></div>
    <div title="sample title"></div>
        <div id="slideshow_1-caption"></div>
    <h1>DOOR VINDDIT</h1>
                <h1> GEVONDEN! </h1>
                <h2> </h2>
      </div>
      <div id="rightcollum2">
        <p> </p>
        <h1><img src="icons/shadow-icons-02.png" width="100" height="100" alt="icon2" /></h1>
        <h1>VRAAG &amp; ANTWOORD</h1>
        <p>Heeft u vragen of suggesties. Laat het ons weten </p>
        <p><a href="contact.html">Contact... </a></p>
        <h2> </h2>
      </div>
      <div id="mainbox2">
        <div id="insideright2">
          <p>PRIJZEN</p>
          <p>De prijs is afhankelijk van wat je zoekt &amp; Succes gegarandeerd, kunnen wij onverhoopt niet vinden wat jij zoekt? Dan kost het je niets. <br />
            Betalen doe je dus achteraf, dus geen verplichtingen zonder resultaat! </p>
        </div>
      </div>
      <hr />
      <div id="footer">
        <hr />
    <h2>                 <a href="index.html">HOME</a>                |          <a href="vindditnu php version.php">VINDDIT NU!</a>          |          <a href="over_ons.html">OVER ONS</a>          |          <a href="contact.html">CONTACT</a> |            <a href="https://www.pinterest.com"><img src="icons/pinterest.png" width="20" height="20" align="absbottom" /></a>    <a href="https://www.facebook.com/"><img src="icons/fb_1.png" width="20" height="20" align="absbottom" /></a></h2>
    </div>
    </div>
    </body>
    </html>
    CSS:
    @charset "UTF-8";
    #container {
              width:968px;
              padding-right: 10px;
              padding-left: 10px;
              height: 100%;
              margin-right: auto;
              margin-left: auto;
              margin-top: 0px;
              margin-bottom: 0px;
              padding-top: 0px;
              padding-bottom: 0px;
    #banner {
              position:fixed;
              width:968px;
              overflow: visible;
              z-index: 99999;
              height: 120px;
              background-color: #FFF;
              float: left;
              visibility: visible;
    #banner p {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 18px;
              font-weight: normal;
              text-decoration: underline;
              text-align: center;
              color: #000;
              height: 100%;
              width: 100%;
              float: left;
    #mainimage_contact {
              height: 365px;
              width: 968px;
              float: left;
              margin-bottom: 20px;
              background-color: #FFF;
              margin-top: 15px;
              background-image: url(images/background%20header.jpg);
              background-repeat: no-repeat;
    #mainimage {
              height: 365px;
              width: 968px;
              float: left;
              margin-bottom: 40px;
              background-color: #FFF;
              margin-top: 0px;
    #mainimage_vindditnu {
              height: 365px;
              width: 968px;
              float: left;
              margin-bottom: 20px;
              background-color: #FFF;
              margin-top: 15px;
              background-image: url(images/background%20vindditnu.jpg);
              background-repeat: no-repeat;
    #mainimage_overons {
              height: 365px;
              width: 968px;
              float: left;
              margin-bottom: 20px;
              background-color: #FFF;
              margin-top: 15px;
              background-image: url(images/overons%20back.jpg);
              background-repeat: no-repeat;
    #mapCanvas {
              height: 280px;
              width: 280%;
    #mainbox {
              height: 365px;
              width: 968px;
              float: left;
              background-color: #E6E6E6;
              margin-bottom: 60px;
              margin-top: 60px;
    #leftcollum, #rightcollum, #centercollum {
              width: 250px;
              float:left;
              background-color: #E6E6E6;
              font-family: Arial, Helvetica, sans-serif;
              font-size: 16px;
              text-align: center;
              padding-top: 20px;
              height: 400px;
    #rightcollum, #centercollum {
              margin-left: 109px;
    h1 {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 18px;
              font-weight: bold;
    h2 {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 16px;
              font-weight: normal;
    h5 {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 14px;
              font-weight: normal;
    #leftcollum2, #rightcollum2, #centercollum2 {
              width: 250px;
              float:left;
              background-color: #E6E6E6;
              font-family: Arial, Helvetica, sans-serif;
              font-size: 16px;
              text-align: center;
              padding-top: 20px;
              height: 380px;
              #rightcollum2, #centercollum2 {
              margin-left: 109px;
              text-align: center;
    #insideleft {
              width: 300px;
              float:left;
              background-color: #E6E6E6;
              font-family: Arial, Helvetica, sans-serif;
              font-size: 16px;
              text-align: center;
              height: 280px;
              padding: 0px;
              margin-top: 0px;
              margin-bottom: 0px;
              margin-left: 180px;
              margin-right: 20px;
    #insideleft_contact {
              width: 400px;
              float:left;
              background-color: #E6E6E6;
              font-family: Arial, Helvetica, sans-serif;
              font-size: 16px;
              text-align: center;
              height: 280px;
              margin-left: 50px;
              padding: 0px;
              margin-top: 0px;
              margin-right: 0px;
              margin-bottom: 0px;
              border:#FFF;
              border-width:2px;
              border-style:solid;
    #insideright {
              width: 300px;
              float:left;
              background-color: #FFF;
              font-family: Arial, Helvetica, sans-serif;
              font-size: 24px;
              text-align: center;
              height: 280px;
    #overons {
              width: 100%;
              background-color: #E6E6E6;
              font-family: Arial, Helvetica, sans-serif;
              font-size: 24px;
              text-align: left;
              margin-top: 0px;
              margin-right: auto;
              margin-bottom: 0px;
              margin-left: auto;
              float: left;
              padding: 0px;
    .overons_text {
              text-align: left;
              width: 50%;
              background-color: #FFF;
              margin-top: 20px;
              margin-right: auto;
              margin-bottom: 20px;
              margin-left: auto;
    #Contactsheet {
              height: 100px;
              width: 100%;
              background-color: #E6E6E6;
    #mainbox2 {
              height: 365px;
              width: 968px;
              background-color: #E6E6E6;
              margin-top: 40px;
              float: left;
    #insideright2 {
              width: 800px;
              float:none;
              background-color: #E6E6E6;
              font-family: Arial, Helvetica, sans-serif;
              font-size: 36px;
              text-align: center;
              font-weight: bold;
              color: #FFF;
              margin: auto;
    #banner h2 a {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 16px;
              color: #000;
    #footer {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 18px;
              font-weight: normal;
              text-align: center;
              width: 100%;
              color: #000;
              float: left;
    #footer h2 a {
              color: #000;
    #commentsform {
              background-color: #E6E6E6;
              width: 690px;
              height: 100%;
              border-radius: 7px;
              -webkit-border-radius: 7px;
              -moz-border-radius: 7px;
              padding:10px;
              border-top-width: 1px;
              border-right-width: 1px;
              border-bottom-width: 1px;
              border-left-width: 1px;
              border-top-style: solid;
              border-right-style: solid;
              border-bottom-style: solid;
              border-left-style: solid;
              font-family: Arial, Helvetica, sans-serif;
              font-size: 14px;
              font-style: normal;
    .bedankt {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 16px;
              background-color: #FFF;
              text-align: center;
              width: 100%;
              margin-right: auto;
              margin-left: auto;
              height: 200px;
              margin-bottom: 10px;
              margin-top: 0px;
              padding-top: 0px;
              padding-left: 10px;
    .vinddit_aanvraag {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 16px;
              background-color: #FFF;
              text-align: center;
              width: 80%;
              height: 100%;
              margin-right: auto;
              margin-left: auto;
              margin-top: 0px;
              margin-bottom: 0px;
    span.error {
              background-image:url(icons/x.png);
              background-repeat: no-repeat;
              background-position: left 6px;
              padding-left:25px;
    .error {
              display:block;
              font-size:12px;
              color:#F00;
              padding:7px 8px;
              font-family: Arial, Helvetica, sans-serif;
              background-image:url(icons/x.png);
              background-repeat: no-repeat;
              background-position: left 6px;
              padding-left:25px;
    #intro_vinddit {
              background-color: #E6E6E6;
              height: 100%;
              width: 100%;
              float: left;
              padding-top: 10px;
              padding-bottom: 10px;
              border: 2px solid #A7D8B3;
    #contact_box {
              background-color: #E6E6E6;
              height: 100%;
              width: 100%;
              float: left;
              margin-bottom: 20px;
              padding-top: 20px;
              padding-bottom: 20px;
    #Submit, #Reset {
              font-size:16px;
              font-family:Arial, Helvetica, sans-serif;
              .button {
              margin: auto;
              float: none;
              width: 100%;
              text-align: center;
    .button:hover {
              -webkit-filter: opacity(0.7);
    .button2:hover {
              -webkit-filter: opacity(0.7);

    great! thank you! simple solution

  • Extra blank space problem in af:selectOneChoice

    Hi All,
    I m using <af:selectOneChoice> to display few items in combo box. Now the problem is when the page gets load 1st time, its show an extra blank space in item list, but after selecting any item from the list page gets refreshed and reload again, now it does not have any extra blank space in the list.
    How do I remove this blank space from the combo box ???

    Hi Usha,
    1. Remove the Condition from you Context tab.
    2. In the Driver Program check for the condition and fill the value in the internal table which is passed to
        the adobe form.
    3. Make the subform (under which the field is added in the hierarchy view) as flowed.
    4. In the script editor, Select the 'javascript' and write the script to hide the form field specifying the condition here.
    for e.g
    if (xfa.form.FORM.SUB_FORM.matnr == "123") {
        xfa.form.FORM.SUB_FORM.Region = "hidden";
    NOTE: Javascript is Case sensitive and stops working immediately after the line of code where an error occurs.
    Hope this proves to be useful.
    Thanks,
    Swar.

  • Leading blank space in data

    When I query a form on a field with data that contains as its
    first character a blank space, why do I get an error 'invalid
    relational operator'
    On examining the underlying SQL query, I find that the relational
    operator = has been overwritten with a blank space. This happens
    in any form in Developer/2000. A field value without a leading
    blank does nor create a problem
    Thanks
    Gnana Supramaniam
    null

    Try it with ltrim(rtrim(field name)).
    It will work.
    Syed.
    Gnana Supramaniam (guest) wrote:
    : When I query a form on a field with data that contains as its
    : first character a blank space, why do I get an error 'invalid
    : relational operator'
    : On examining the underlying SQL query, I find that the
    relational
    : operator = has been overwritten with a blank space. This
    happens
    : in any form in Developer/2000. A field value without a leading
    : blank does nor create a problem
    : Thanks
    : Gnana Supramaniam
    null

  • Error occuers in smartform

    Hello Guys,,,,
    When i am trying to see the previw of the quotation it opens in a new wondow and says "Error occuers in smartform". Rest of the screen is blank.  i checked this from standard SAP Bsuiness roles. it does the same.
    I checked from GUI and it works fine.
    can anyone help us understand what to check on this issue?
    Thanks and regards,
    lata
    Edited by: latha reddy on Jun 22, 2010 4:12 PM

    Hi Latha,
    Usually in Web UI this could be because of the import structure IS_CONTROL_PARAMETERS in exec_smartform methods.  [This thread|Re: Print Preview not working in CRM Web UI; should solve your problem.
    Regards,
    Amar

  • Blank spaces when @ file_name ?

    Hi SQL and PL/SQL forum,
    vers. info: (64 bit) Oracle10i Enterprise Edition Release 10.2.0.1.0 - Production on Sun/Solaris 10
    How do I permit blank spaces in dirctory name and/or filename when executing a script by
    @[<path>]<file_name> ?
    The following does not work
    @"N:\miniMAKS - etape 3\databaseleverancer\DB-V3-1-0\dokumentation31\scripts31\06 minimakshist\minimaks_05_test.sql"
    Needless to say that leaving out the "" does not work either.
    - Thanks in advance,
    Jens Ole Jensen
    Kort & MatrikelStyrelsen (WWW: http://www.kms.dk)
    Danmark

    Sorry all is still not well,
    I replaced my minimaks_05_test.sql with the real <file_name> being minimaks_05_install.sql. This script contains
    @@"01 DB-V3-001-000 - tabel_kontaktSpec.sql"
    @@"02 DB-V3-001-000 - tabel_eksternrolletype.sql"
    etc.
    the script fails with the same message as I got yesterday
    @@"01 DB-V3-001-000 - tabel_kontaktSpec.sql"
    SP2-0310: Filen "N:\miniMAKS.sql" kan ikke åbnes
    @@"02 DB-V3-001-000 - tabel_eksternrolletype.sql"
    SP2-0310: Filen "N:\miniMAKS.sql" kan ikke åbnes
    etc.
    Oracle® Database Error Messages
    has nothing about SP2-0310.
    It seems like the @@ command forgets the "" around the current directory name.
    My problem is that the naming of <path> and <file_name> is beyound my control.
    Thanks for any advice you may have on this matter.
    Jens Ole Jensen
    Kort & MatrikelStyrelsen (WWW: http://www.kms.dk)
    Danmark

Maybe you are looking for

  • Dual Dell Displays for my Macbook Pro Retina (Late 2013)

    So I am looking at purchasing two of the new Dell Ultrashapr U2414H monitors to hook up with my Macbook Pro Retina. I have been trying to figure out the best way to connect both of the screens before I order them and I was hoping someone on here coul

  • Listener issue

    Hi forum members, In this moment I'm working on gentoo linux and I' new in oracle, I could install oracle and created a test database called "oracle.gentoo" , but I don't know if the listener it's really registering a service in order to access to th

  • Approval Preview issue

    Hi, Recently we upgraded our production system to SRM 5.5 Server from SRM 3.0. We were using a custom N-step BADI workflow in SRM 3.0. After upgrading it to SRM 5.5 server(we are using the std N-step BADI workflow in our upgraded system), the PO work

  • How to check the SC stock Assembly wise

    Hi All, We have a requirement, actually we want to see the SC stock at the vendor end, we are able to see the stock by MBLB t-code, but in this we can only see the raw materials with any reference to SFG. and in ME2O t-code we have to put the assembl

  • Component Monitoring Issue: Message: Unable to log on to system XYZ

    Hi, I have installed PI 700 with SID ABC and configured with R/3 system SID XYZ. Now while checking Component Monitoring-->Integration Engines--->Proxy Runtime XYZ I am getting following error. Message: Unable to log on to system XYZ in language en w