Smartforms: vertical lines

Hi
How can i do to have vertical lines between columns in a table node for all main even if i have just one record in the table data?
The same problem how can i solve using loop and template instead of table?
Thanks lot.
Matteo Vernile.

Thanks,
but my problem is: inside the main i have a loop for items of a document: i want that the vertical lines are drawn until the bottom of main even if i have just on item.
Now i set the border in template but vertical lines stopped at the last item, not at the bottom of main.
Thanks.
Matteo Vernile

Similar Messages

  • Regarding vertical lines smartform main window

    hi all,
           How can i draw vertical lines in Smartforms. I want vertical lines between columns in the main window and i want the lines from top to bottom even if i have just one record in the table data.
    how can i solve this using table.
    Please reply.
    Regards
    Rami Reddy

    Hi Rami,
    Refer these links.
    Re: how to draw vertical line in a particular window
    http://209.85.175.104/search?q=cache:phjbJwuDWssJ:www.zebra.com/id/zebra/na/en/documentlibrary/misc/sap_smartforms_technical.File.tmp/SAP_SmartForms_V3.pdfHowtodrawverticallinesinsmartform&hl=en&ct=clnk&cd=3&gl=in
    Or table tab -> ypu will see a box for table pattern - > click on select
    pattern and there u will find many options to draw lines!!!
    below your table, you will have the header line type.
    double click to select it.
    on the right pane, go to attributes
    click on the top left button here (select option) ...
    in the popup, click the display frame button
    select your choice
    activate your smart form. this should work
    Or
    Even you can draw a window as vertical and specify its width as 0
    .02.It will automaticall draw a vertical line of specified parameters.
    Cheers
    Mohinder Singh Chauhan

  • URGENT:  vertical lines length in the Mainwindow in smartforms

    hI,
            In main window 4 vertical lines are there like.. below
    item | material no.er | mat.desc |  quantity |  total price
           |                      |                |              |
    Now the problem is:  these vertical lines entered into the next below window.. Now I want to reduce the length of these vertical lines.
      Please explain where can I reduce  to these vertical lines length.
    Thanks and Regards,
    Surya

    Hi,
    in the beginning of the report program:
    report  <program_name> line-size <give the length say eg:150>.
    <b>reward points if useful.</b>
    regards,
    Vinod Samuel.

  • Vertical lines of diffrent length in smartforms

    Hi,
    I need to draw vertical lines in smart forms where the Height of the line need to more in all pages except the last page where the Height of this line should be less.
    If there is only one page then the heght of this line should be that of last page.
    How to do it.
    I have created two names as First Page and Next page.
    Kindly guide me
    Regards
    Irfan

    As for that it can be a faulty LED.
    You must send the computer to the country you bought it from but you won't get it back for a couple of days, possibly up to a week.
    I have more HP devices than you'd expect.
    1 HP TouchPad 32 GB with Android
    2 HP Touchsmarts (310-1000z and IQ527)
    2 HP Printers (J6480 and J5750)
    1 Laptop (HP DV6253CL)
    Have at least some experience in each of those devices, and i'll do my best to help you.
    Kudos if I helped!

  • Vertical Line in a LineChart

    Is there a built-in way to create a vertical line along a
    lineChart? Or do I get to build it manually?
    For an example, see the red line on the chart at...
    http://trail.motionbased.com/trail/player/2232944
    Thanks,
    Jason

    Hello Chitty,
    There is no such key word to print vertical line in reports. In Script/Smartforms we can draw vertical lines. You should use SY-VLINE in side the LOOP. Then only you will get that.
    Try this to get data into table format.
    TABLES: mara.
    DATA: BEGIN OF g_t_mara OCCURS 0,
            matnr TYPE matnr,
            spart TYPE spart,
          END OF g_t_mara.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    SELECT-OPTIONS: s_matnr FOR mara-matnr.
    SELECTION-SCREEN END OF BLOCK b1.
    START-OF-SELECTION.
      SELECT matnr spart
        INTO TABLE g_t_mara
        FROM mara
        WHERE matnr IN s_matnr.
      LOOP AT g_t_mara.
        AT FIRST.
          ULINE 1(24).
        ENDAT.
        WRITE: /1(1) sy-vline,
                3(18) g_t_mara-matnr, 19(1) sy-vline,
                21(2) g_t_mara-spart, 24(1) sy-vline.
        AT LAST.
          NEW-LINE.
          ULINE 1(24).
        ENDAT.
      ENDLOOP.
    Thank you.
    Best Regards,
    Sasidhar Reddy Matli.

  • Vertical lines in table untill end of the window

    Hi All,
           I have created a table with 5 cloumn for item details  in main window, but the lines are not running untill to the end of window size which i given .if i have 2 line items then the vertical lines stops at 2nd lines itself ,but i want it upto end of page.
    Can you provide a solution for this.
    Thanks,
    Kumar

    Hi Alex / Deesnath,
    I can not able to do this. I assume that your solution targets for smartforms. If so I did as you mentioned. But I am getting the following error.
    Table %Template1 does not fit into window.
    I had to create a template in a window with same dimensions as and above the  main window. My goal is to have a template for the  entire height of the main window and use table to print values in the main window.
    From your answer:
    What is the line setting in main window?
    How do you use line type in template?
    Please help me.
    Thank you,
    Surya.

  • Vertical line in a report

    Hi every body,
    In a report I need to draw a vertical line using sy-vline up to a certain height.
    i am writing d code like write : 50 sy-vline.Then it just draw a vertical line upto one row level.But I want upto the end of the page.
    How can i draw vertical line upto a ceratin Height.Plz suggest.
    Advance Thanks to all.
    @Everyone: Please avoid responding to such
    basic questions and keep the forums clean.
    This issue can easily be resolved with a
    little more effort by the user. Answering basic
    questions or posting links is also treated as
    an offense!
    Edited by: Suresh Datti on Aug 24, 2009 12:36 PM

    Hello Chitty,
    There is no such key word to print vertical line in reports. In Script/Smartforms we can draw vertical lines. You should use SY-VLINE in side the LOOP. Then only you will get that.
    Try this to get data into table format.
    TABLES: mara.
    DATA: BEGIN OF g_t_mara OCCURS 0,
            matnr TYPE matnr,
            spart TYPE spart,
          END OF g_t_mara.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    SELECT-OPTIONS: s_matnr FOR mara-matnr.
    SELECTION-SCREEN END OF BLOCK b1.
    START-OF-SELECTION.
      SELECT matnr spart
        INTO TABLE g_t_mara
        FROM mara
        WHERE matnr IN s_matnr.
      LOOP AT g_t_mara.
        AT FIRST.
          ULINE 1(24).
        ENDAT.
        WRITE: /1(1) sy-vline,
                3(18) g_t_mara-matnr, 19(1) sy-vline,
                21(2) g_t_mara-spart, 24(1) sy-vline.
        AT LAST.
          NEW-LINE.
          ULINE 1(24).
        ENDAT.
      ENDLOOP.
    Thank you.
    Best Regards,
    Sasidhar Reddy Matli.

  • IMac 10.4.11 Because permanent vertical lines have appeared on my screen, I need to get a new monitor. The adapter apple sells goes from female VGA to mini-DVI. What kind of cable should I get as well:female to male?

    If I use an adapter (female VGA to mini-DVI) for my iMac 10.4.11 OSX, I also need a cable. Should that cable be female VGA to male VGA?
    Permanent vertical lines have appeared on my display, and connecting to another display (monitor) requires a cable and adapter. I want to be sure I am purchasing the correct cable for the Apple adapter. 

    What made me think I need to format if I upgrade the OS?
    I just presumed so really.
    What made me think I need to constantly format computer with my problem?
    Well, after many attempts to repair the drive, which fails, cannot even reach the log in screen, I am left with no other choice?
    And also, I have to note now, System Preferences keeps crashing without reason, it either takes ages to load, just by clicking it to open, or clicking something within it, or it just crashes.
    And temporarily, it freezes the computer totally, with no response.
    Seriously, am I missing a system file or something? Anyone experienced this problem before?
    My computer is literally a blank computer right now, installed VLC and Shades, updated Adobe Flash Player, installed Skype and Adium. I would say Growl from Adium caused it, but it has happened prior to Skype and Adium. Any ideas anyone?
    Thanks,
    From Lelouch

  • [LaserJet Pro 200 color MFP M276nw] only vertical lines when scanning, scanner broken?

    Hi all! I have a problem with the scanner in my HP all in one. If I scan (using the printer function or apples ImageCapture: same result) the output is just a lot of vertical stripes (in colors when in color mode). Not a trace of the image I try to scan. The lines are there even if i scan an empty white page. I see the stripes both when doing a preview scan and an actual scan. The problems are very similar regardless of if I use the flatbed or the feeder scanner (they are separate scanner hardware, yes?). I have updated to the latest software for the printer/scanner and I am connecting over bonjour via wireless. I am on Os X 10.9.1. Anybody having similar problems or is my scanner just plain broken? Thanks in advance!Jon

    , , I understand that both of you are seeing vertical lines when scanning from your Laserjet M276nw. First, make sure the printer is plugged directly into a wall outlet and not a surge protector. Now, so I know where to begin I'd need to know the following:If you are seeing the vertical lines when you copy as well as scan?Are you seeing the vertical lines when you copy from the flatbed? The document feeder? both?If you are seeing the lines from both the flatbed and the feeder are they in the same place?Once I know this I'll be better able to assist you.

  • What is the white horizontal line and red vertical line on my brand new ipad mini?

    Bought a brand new ipad mini 2 for my sons Christmas, took it out the box and it was during the set up process, ie entering his iTunes and icloud account, a white horizontal line and a red vertical line appeared on the screen and is there all the time now.  Have tried switching off and on and resetting, but it is still there.  Any ideas??

    Hi Tolmivooz,
    So the lines didn't appear until you were into the setup?
    Does the orientation of the lines change when you rotate the screen?
    Thanks for trying the restart and reset. Please see if a restore helps.
    Get help with the screen on your iPhone, iPad, or iPod touch - Apple Support
    If you see lines, missing sections, discoloration, or poor image quality
    Try to restart your device. If you can't restart, reset your device.
    If restarting or resetting doesn’t fix the issue, restore your device.
    If you still see the issue after you restore, contact Apple Support.
    Best,
    Nubz

  • Cinema Display Vertical Line

    Hi,
    My Cinema Display (LCD, 21" I believe, came with Powermac G4 MDD 2003) has had a pink / red vertical line in it for quite some time now. It seems to sometimes change color, but is usually redish. It sits right in the middle of the screen, and goes all the way down from the top to the bottom. It is two pixels wide.
    I have used another Cinema Display the same on this computer, and no lines, and tried this display on another Powermac, and I have lines.
    Are there any warranties for this sort of issue? Any fixes?
    Thanks for your help,
    Jordan

    Lines appearing on the monitor is a product fault with some of the Apple monitors. A quick search of the web will yield 100's of identical reports of the same problem.
    I started with one line and now I have 3. You should expect the same. The fact that Apple have refused to address or even a acknowledge this product fault is a disgrace.
    I'm sorry BSteely but your suggestion that we should simply replace our monitors because its out of warranty is ********. A product fault is a product fault pure and simple...Its not like Apple monitors are inexpensive, I have several other non-apple monitors and have never had this issue with them. It is the manufacturers responsibility to insure that a product leaves the assembly free of fault.
    This is not an isolated problem but a problem in manufacture and Apple need to do something about it to restore goodwill, as I simply will not buy another apple monitor until they prove that this issue has been addressed.

  • How to find intersection point between a lineseries and a vertical line.

    I have a lineseries chart (refer the screenshot). As I move the spend slider shown in the attachment, a vertical line is drawn in the chart. (I did this using the cartesian canvas as annotation element - using canvas.moveTo(), canvas.lineTo() functions)
    I want to find out the intersection point(y value) where the vertical line meets the lineseries. Can someone help me on this. It will be really helpful.
    Thanks,
    Jayakrishnan

    Here are a few functions I wrote years ago for common chart transformations... the function you're going to focus on for your solution is chartToScreen...
    *  Converts the screen position to chart value position
    *  @param thePos - Number - The position you want to convert
    *  @private
            private function getChartCoordinates(thePos:Point):Object
                   var tmpArray:Array = dataTransform.invertTransform(thePos.x, thePos.y);
                   return {x:tmpArray[0], y:tmpArray[1]};
    *  Takes a non-numeric chart value and returns a proper numeric value
    *  @param inValue - String - The display name of the instance showing on the axis (eg. if we're showing months, it might be 'Sep - 06'
    *  @param theAxis - IAxis - The axis on which we're looking
              public function getNumericChartValue(inValue:String, theAxis:IAxis):Object
                   var axisCache:Array = new Array({inValue: inValue})                 
                   if(!(theAxis is LinearAxis))
                        theAxis.mapCache(axisCache, "inValue", "outValue", true);
                        return {numericValue: axisCache[0].outValue}
                   else
                        return {numericValue: Number(inValue)};
    *  Converts the chart values into screen coordinate values
    *  @param chartX - Number - The display name of the instance showing on the axis (eg. if we're showing months, it might be 'Sep - 06'
    *  @param chartY - Number - The axis on which we're looking
              public function chartToScreen(chartX:Number, chartY:Number, theSeries:Series):Point
                   var tmpCache:Array = new Array({chartX:chartX, chartY:chartY});
                   if(theSeries)
                        theSeries.dataTransform.transformCache(tmpCache, "chartX", "screenX", "chartY", "screenY");
                   else
                        dataTransform.transformCache(tmpCache, "chartX", "screenX", "chartY", "screenY");
                   return new Point(Math.round(tmpCache[0].screenX), Math.round(tmpCache[0].screenY));
    *  takes a point in mouse position, and runs it through converting to chart coordinates, converts chart coordinate to numeric value if needed
    *  and then back into mouse position to get the nearest axis snap point
    *  @param thePoint - Point - The position we're converting
    *  @private
              private function getSnapPosition(thePoint:Point):Point
                   var chartPoint:Object = getChartCoordinates(new Point(thePoint.x, thePoint.y));
                   //if either of the axis chart results is not in numeric format, we get the numeric equivalent of it
                   var chartX:* = chartPoint.x;
                   var chartY:* = chartPoint.y;
                   chartX = getNumericChartValue(chartPoint.x, CartesianChart(this.chart).horizontalAxis).numericValue;
                   chartY = getNumericChartValue(chartPoint.y, CartesianChart(this.chart).verticalAxis).numericValue;
                   return chartToScreen(chartX, chartY, null);

  • Why has my monitor suddenly begun to have a moiré pattern all over – it is even showing up on my icons on the dock? It appears to be very thin bright green vertical lines. I have a 2008 iMac which is running 10.6.8. What does this mean?

    Why has my monitor suddenly begun to have a moiré pattern all over – it is even showing up on my icons on the dock? It appears to be very thin bright green vertical lines. I have a 2007 iMac which is running 10.6.8. What does this mean? I've attached some screen shots below.
    Also experiencing some funky issues with my wireless keyboard. With new batteries, it will just stop functioning. Certain keys intermittently won't work. Also the fans go on as soon as I turn the computer on - some times they stay on and sometimes they don't. Ever since upgrading the operating system - I've been having many issues with this iMac. Not happy. Any answers out there?

    Thanks for your reply LexSchellings, There is no disc in the drive and I went through the suggestions you put forward on the phone with Apple support without any luck. I can put a disc in but it pops straight back out again without registering on finder.
    The idea of using an external drive was to enable me to avoid the cost and loss of productivity whilst machine in repair... if I have to take it in to get the old drive removed than I might as well have a new internal drive put in, although I do worry about the reliability of these apple drives given my experience with this one coupled with my limited online research ... on line forums seem to be full of people with the same problem (although perhaps searching such forums is bound to make it seem a common problem as users with perfectly working machines are less likely to post (?)) Your reply suggests that no external drive will work whilst the existing drive is in place.
    As a postscript: I do realise that this is a user forum ...my secondary question was asking if anyone knows how to put forward a case/complaint to Apple... I can't find a link on the support page that would enable me to do so and I was wondering if anyone on this user forum had any ideas/experience..

  • Mid 2011 MacBook air vertical lines on display

    While sending à webform today my air display all of à sudden displayed à bunch of vertical lines. I couldnt see anything so i held power button down to restart and it restarted to gray screen no apple logo but 2 vertical lines representing my 2 login avatars. I clicked around aimlessly until i got lucky to click on an icon then entered my password and it restarted and loaded everything as normal except you couldnt see anything except a bunch of multi colored vertical lines. Tried smc reset and pram reset but it still is not working. Not sure where to go from here. No apple stores in sweden within 500miles either. Might try to go buy an external monitor plug to see if it will display correct on external monitor. Any ideas?

    So, I guess the adapter came with the display just in case I had a compatible Mac. I should have noted that on the card. Now, about the rest of the stuff in my Apple mystery box...that's for another day.
    Thanks, seb101, for your quick reply!

  • My Imac has black and white vertical lines

    Riddle me this Apple...
    A few months ago, my 2008 Aluminium 24inch Imac locked up and exhibited space invader style pixels all over the screen.
    After rebooting, it was fine for a while and then it would freeze again and I'd get the same Atari style pixels appearing, and everything would be frozen.
    Then, most reboots after that, I would get vertical lines in groups of three, alternating black and white squares as in the photo.
    I called Apple here in South Australia, and they said "it's your graphics card, and it will cost $400 to fix and we need it for a week".
    Not wanting to do that, I bought a $15 firewire cable, booted the Imac in T mode and used my PC laptop running macdrivepro to save all my files onto a 500gig backup drive, and then proceeded to fix the corrupted kext files and most importantly delete the recent flash player update which I believe was causing the problem.
    Booted her back up, and she ran perfectly. For a few weeks, until it started again.
    So I re-installed the Leopard operating system from the original disks, and that fixed it. $15 is better than $400.
    Now, a few months have passed, and the problem had come back again, now that I have added more stuff on my computer.
    This time however, I chose to wipe the drive completely and do a fresh install of Leopard, and then upgrade to Snow Leopard.
    The problem is that it won't boot from the CD drive anymore, won't boot from a thumb drive, won't boot in any mode except T mode, but then it has these lines on the screen again and eventually I get the kernel panic happenning and it wants to be shut down.
    Every time I start the computer, these lines IMMEDIATELY appear. I've tried resetting the Pram, tried changing memory and have now resorted to surgery.
    I've taken apart the Imac, yes I hear you Apple...you guys thought that we mortals wouldn't delve into the depths of your finely machined systems, however, some of us do own micro torx head tools to remove those pesky screws, and yes, a razor blade does lift up the magnetically attached screen glass without having to use suction pads.
    So once inside the temple of doom, I removed the hard drive, and dropped it into a hard drive dock.
    After days of messing around with it via four other MAC computers, running Tiger, Leopard and Lion, we have still not been able to install an operating system back onto this drive.
    Does anyone have any insight into what these lines actually are? Every one I speak to says a different thing...
    "It's the graphics card", "It's the hard drive", "It's the cable that connects the LCD screen", "It's the motherboard", It's the screen itself", "It's a corrupted bios" etc etc..
    But if it's any of those things...then why did it run perfectly after I fixed it the first time?
    Any and all help is greatly appreciated.

    Hi BDAqua,
    I appreciate you taking the time to reply, and for the suggestions.
    My spider sense was tingling, as were my eager fingers to login and read your reply, in fact I was almost salivating at the thought of crushing those Apple reps with a swift blow from one of my megalithic old 4gig internal drives, or better still, perhaps shooting my old DX266 sporting a massive 256k HD and 4mb of ram, fully loaded with Encarta and Windows 3.11 out of a cannon and straight into Steve Jobs bedroom window, with a note saying..."How'd ya like them apples..".
    But alas, my Aquatic friend, I am in need of a functioning operating system to be able to do any of those magical tricks you suggested (insert frown face here)..and yes, when I finally opened up the Imac and peered inside, a moment not unlike Indiana Jones peering down into the depths of the Well of Souls, I suddenly realised that an Imac might look impervious to heat vision and thermonuclear devices on the outside, but inside they can still gather as much dust as my infinately useless ZIP drive that I bought back in the late 90's, thinking it was the best thing since the invention of microsoft paint...awesome program by the way guys..
    Getting back to the problem at hand, the issue really is that I have, perhaps stupedly, reformatted the 500gig WD drive via a hard drive dock, which is really a lot like one of those early 1950's cassette drives you find in vintage cars..
    And upon returning the drive to the Imac and re-assembling it WITH REAL SCREWS, not titanium-alloy fingerprint encoded ones like you would expect to find in Iron Man's suit, I could only boot the poor thing into T mode. No other modes were available, and believe me, I tried all of the alphabet...even the "C" button, which if you ever watched an episode of Knight Rider called Knight of the Juggernaught, did not turn my computer into a convertable..
    By now you're probably sensing that the irony of all of this is that I am typing this message on my Windows 7 upgraded HP laptop, which sounds not unlike a jumbo jet taking off at times, the fans are so loud, and among other things, it keeps telling me it is not genuine, even though I paid good money for a proper copy to free me from the painful experience which was Vista, and so in a sense, microsoft is playing a small part in the desperate rescue of it's far superior, yet broken down and busted arch enemy...I bet somewhere in it's RAM, it is smiling in little ones and zeroes, while it hides behind a free copy of AVAST, hoping one of a billion nasty viruses don't come knocking on the kernel door..
    The next round of drinks goes to the man, woman, child or droid that has any other suggestions that could allow me to participate in some of the ideas put forward by our very knowledgable watery friend..as alas, I do not have any of those options available to me.
    Today's assignment is.. how do we install an operating system on a formatted external drive. Sounds easy doesn't it...I've read many articles, but in practice it's proved as elusive as Bigfoot.
    I just cannot make this hard drive understand that there is no spoon...
    EdStraker

Maybe you are looking for

  • Text deleting when I try to change color or actual font

    I will try to explain. So say I have a photo (or blank canvas) and I have typed words on it. If later I go and double click the word (or layer, etc) so that I can change the color of the word(s) &/or change the actual font, it will just automatically

  • [SOLVED] Quick bash question (~/.bashrc stuff)

    Hi! First I have to say that I have installed Arch few days ago and it's pretty sweet stuff -- but I guess you already have heard that oh-so-many-times! So there is it, I would like to change my prompt's color everytime <enter> is pressed in the term

  • SOAP Login Request Problem

    Hi, I have been trying to send a login request via Pear SOAP, without success.  Any ideas about what is wrong with the request? The Request: POST /dswsbobje/services/Session HTTP/1.0 User-Agent: PEAR-SOAP 0.12.0-beta Host: 192.168.130.52 Content-Type

  • Waveform CHart

    Hai Friends                     I have an one doubt in Waveform Chart.How Programatically add the plots in the chart and How to update the values for newly added plots. Regards Jai Jayavel Solved! Go to Solution.

  • ADT error with comodo code signing certificate

    Hello, I'm trying to sign an AIR app with a Comodo code signing cert. - SHA-256 with RSA Encryption - Java 1.8 (same problem with 1.6) - AIR 15 (same problem with older versions) My command : java -jar -Xmx1024m /data/sdk/AIRSDK_Compiler15/lib/adt.ja