HI,Can the smartforms output the windows box as the type of dashed Line?

My customer let me Print the windows box with the dashed line in smartforms, but i searched many method ,all failed,anybody know how to do it?

hi,Bala Muthu Raja 
thanks for your information.
but i means i want to output the dashed line box for the windows as following......
^^^^windows^^^^
^^^^windows^^^^
^^^^windows^^^^
^^^^windows^^^^
^^^^windows^^^^
adjusting the line width just make the box line become wild or thin.
Message was edited by: shi jack
Message was edited by: shi jack

Similar Messages

  • In iTunes on my windows 7 PC, the Edit/Preferences dropdown window,some of the tab windows are not large enough to see all options that are available.  The borders of the window cannot be draged larger.  As a result, I can not uncheck or check some box's.

    In iTunes on my windows 7 PC, in the Edit/Preferences dropdown window,some of the tab windows are not large enough to see all options that are available.  The borders of the window cannot be draged larger.  As a result, I can not uncheck or check some box's on several of the preferences pages.  The Apple people at the store did not help.  I have lownloaded the latest version of iTunes and this is still an issue.  HELP.

    Is there really nobody else with this problem? Really?

  • Problem in displaying data in the smartform output.

    Dear Freinds,
                    I have a requirement as per my requirement i have to display the employee dependents details in the smartform output.
    I have taken a table in smartform and collected all teh employee dependents details . Each dependents his own  details around 8 fields. so iam displaying in the smartform it is working till now no problem ........iam getting data as below
    Dependentrelation | dependentname|passportno|expirydate|visano|visadate|visa expire date| ResidenceNo|Residence issuedate|
    spouse                 | Raja                   |123456       |10/09/2009|122233|10/01/2009|10/01/2010 | 1001             |10/01/2009
    These are the one of the dependentds details iam having till now , like this i have another dependts details. Now the problem i have
    to add some fields to this list ( to this internal table) ...........if iam adding one more feild data is getting truncated as i dont have any more fields to add to right in the horizontal line........how can i solve this issue and how can i add further fields to this list
    like date of birth of the dependents and gender
    please could any one tell how i can solve this issue.
    regards
    divya.

    If this is a Tablethen only thing you can do is re-size the grid and font size to adjust your data. Like, displaying HEADINGS & DATAs in 2 rows instead of 1, etc.
    Nothing else can be done. Otherwise you have to trim down the data to adjust in one page.

  • Can I have two apple TV boxes in the same home / wifi area, ar there any issues i should be aware of?

    can I have two apple TV boxes in the same home / wifi area, are there any issues i should be aware of?

    I was in a hotel a few month a ago.  The hotel also had a portal page you have to sign in.  Of course the ATV didn't a web browser and could not sign in to the portal and connect to the Internet, so your iTunes didn't work.  (But your ATV should be connected to the router at that point already, just the portal won't open the port to pass through your ATV's traffic)
    So what I did was to use AirVideo app on my iPad and AirVideo server on my Mac. Selected the movie on  my iPad using the AirVideo app and then selected my AirPlay device on my iPad to AppleTV.  Because this setup didn't require iTunes, so there was no need for a live Internet connection, and just a connection to the hotel router was enough.  It was very easy.
    (Of course, you can subsititude the iPad with an iPhone here too)

  • Problem in sending the Smartform Output as PDF through Mail

    Dear All,
    I am sending the Smartform Output as an attachment by converting it into PDF. But when I am recieve this attachment I am unable to open the PDF file, it is giving error that FILE IS DAMAGED. Below is the code:
    REPORT  Y_SEND_MAIL2.
    TABLES: vbrk, vbrp.
    TYPE-POOLS: abap.
    DATA: it_vbrk TYPE TABLE OF vbrk WITH HEADER LINE.
    DATA: i_formname      TYPE       tdsfname,
          i_fm_name       TYPE       rs38l_fnam,
          it_vbak TYPE TABLE OF vbak WITH HEADER LINE,
          it_ekko TYPE TABLE OF ekko WITH HEADER LINE.
    DATA:  is_bil_invoice TYPE lbbil_invoice,
           output_options      TYPE ssfcompop,
           control_parameters  TYPE ssfctrlop,
           e_devtype           TYPE rspoptype,
           job_output_info     TYPE ssfcrescl,
           bin_file            TYPE xstring,
           lines               TYPE TABLE OF tline WITH HEADER LINE,
           doctab_archive      TYPE TABLE OF docs WITH HEADER LINE,
           filelength          TYPE i,
           bin_filesize        TYPE i,
           docs          TYPE TABLE OF docs WITH HEADER LINE.
    *"Types
    TYPES: t_document_data TYPE sodocchgi1,
           t_packing_list TYPE sopcklsti1,
           t_attachment TYPE solisti1,
           t_body_msg TYPE solisti1,
           t_receivers TYPE somlreci1,
           t_pdf TYPE tline.
    *"Workareas
    DATA :w_document_data TYPE t_document_data,
          w_packing_list TYPE t_packing_list,
          w_attachment TYPE t_attachment,
          w_body_msg TYPE t_body_msg,
          w_receivers TYPE t_receivers,
          w_pdf TYPE t_pdf.
    *internal tables
    DATA : i_document_data TYPE STANDARD TABLE OF t_document_data,
           i_packing_list TYPE STANDARD TABLE OF t_packing_list,
           i_attachment TYPE STANDARD TABLE OF t_attachment,
           i_body_msg TYPE STANDARD TABLE OF t_body_msg,
           i_receivers TYPE STANDARD TABLE OF t_receivers,
           i_pdf TYPE STANDARD TABLE OF t_pdf.
    DATA: BEGIN OF line_bin,
             data(1024) TYPE x,
          END OF line_bin.
    DATA: data_tab_bin LIKE STANDARD TABLE OF line_bin.
    So please suggest a solution.
    Regards,
    Vishal

    Continued:
    SELECT-OPTIONS: s_vbeln FOR vbrk-vbeln,
                    s_fkdat FOR vbrk-fkdat OBLIGATORY DEFAULT sy-datum.
    SELECT * FROM vbrk
    INTO TABLE it_vbrk
    WHERE fkdat IN s_fkdat
          AND vbeln IN s_vbeln.
    i_formname = 'Z_SD_JINDAL_INVOICE10'.
    output_options-tddest        = 'LP02'.
    output_options-tdimmed       = 'X'.
    output_options-tdnewid       = 'X'.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        formname           = i_formname
      IMPORTING
        fm_name            = i_fm_name
      EXCEPTIONS
        no_form            = 1
        no_function_module = 2
        OTHERS             = 3.
    IF sy-subrc <> 0.          "checking subrc
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.                     "IF sy-subrc <> 0
    READ TABLE it_vbrk INDEX 1.
    IF sy-subrc = 0.
      is_bil_invoice-hd_gen-bil_number = it_vbrk-vbeln.
    ENDIF.
    control_parameters-no_dialog = 'X'.
    control_parameters-getotf = 'X'.
    CALL FUNCTION i_fm_name        "'/1BCDWB/SF00000097'
      EXPORTING
       control_parameters         = control_parameters
       output_options             = output_options
       user_settings              = space
       is_bil_invoice             = is_bil_invoice
    IMPORTING
       job_output_info            = job_output_info
    TABLES
       it_vbak                    = it_vbak
    EXCEPTIONS
       formatting_error           = 1
       internal_error             = 2
       send_error                 = 3
       user_canceled              = 4
       OTHERS                     = 5.
    IF sy-subrc <> 0.
    *      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *FORM convert_otf_2_pdf.
      CALL FUNCTION 'CONVERT_OTF_2_PDF'
    *      EXPORTING
    *        USE_OTF_MC_CMD               = 'X'
    *        ARCHIVE_INDEX                =
        IMPORTING
          bin_filesize                 = bin_filesize
        TABLES
          otf                          = job_output_info-otfdata[]
          doctab_archive               = docs[]
          lines                        = lines[]
        EXCEPTIONS
          err_conv_not_possible        = 1
          err_otf_mc_noendmarker       = 2
          OTHERS                       = 3.
      IF sy-subrc <> 0.
    *      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    *ENDFORM.                    "convert_otf_2_pdf

  • I have placed a check mark in the Block Pop-Up Windows box and when I restart Firefox, the box is empty and I begin receiving Pop-Up's again. What do I have to do to make the check-mark permanent?

    I have placed a check mark in the Block Pop-Up Windows box but when I restart Firefox, the box is empty and I begin receiving Pop-Up's again. What do I have to do to make the check-mark permanent?
    == This happened ==
    Every time Firefox opened

    See this:
    http://kb.mozillazine.org/Popups_not_blocked#Other_software_disables_the_popup_blocker

  • HT201184 how can i get my google window back in the upper right hand corner. It disappeared.

    how can I get my google window back in the upper right hand corner of my start page?  I seem to have lost it.

    Control click in the tool bar area and customize.

  • Firefox Sync setup says "Incorrect words, try again" after receiving message "Your answer was correct. Please copy and paste the text in this text box into the box below."

    When setting up Firefox Sync, I get all the way to the "Please Confirm You're Not a Robot" screen in the wizard, and enter the captcha values. I then receive in a small scrollable text area the message "Your answer was correct. Please copy and paste the text in this text box into the box below."
    I copy and paste the code, in this case "03AHJ_Vuv1gStVScBWSYWw6M4_KKQ4wzhCDSzKqiCfv57XXGyvHtOk4ixehysQhOTIf-lsL41lc5n-piztjYJSKu6urCeRvETVfpzRDh7OmHCDZiIBZv9Qg4oyrmWDMu6JA7Eh-4C8aZn4" into the only other visible text box, and click the next button, only to receive the message "Incorrect words, try again."
    My only option is to cancel at that point. I have tried this three times, once even starting the entire process over from the start, and it ends up with the same outcome each time.

    When setting up Firefox Sync, I get all the way to the "Please Confirm You're Not a Robot" screen in the wizard, and enter the captcha values. I then receive in a small scrollable text area the message "Your answer was correct. Please copy and paste the text in this text box into the box below."
    I copy and paste the code, in this case "03AHJ_Vuv1gStVScBWSYWw6M4_KKQ4wzhCDSzKqiCfv57XXGyvHtOk4ixehysQhOTIf-lsL41lc5n-piztjYJSKu6urCeRvETVfpzRDh7OmHCDZiIBZv9Qg4oyrmWDMu6JA7Eh-4C8aZn4" into the only other visible text box, and click the next button, only to receive the message "Incorrect words, try again."
    My only option is to cancel at that point. I have tried this three times, once even starting the entire process over from the start, and it ends up with the same outcome each time.

  • The files in finder windows all have the same icon

    Hi, the files in finder windows all have the same icons. Sometimes the icon will change when I drop a new file in a window. But I have no control over that. Any cue?
    Thanks

    I also rebuilt the Launch Services Database. It worked for the icons already in folders (and finder windows), but when I put a file from the desktop in one of these folders, the file does not have the correct icon.

  • Which number on the back of my product box is the serial number?

    Which number on the back of my product box is the serial number?  When I try and register my product, Adobe will not accept any of the numbers!

    Hi Mimi7,
    Please refer the knowledge base article: http://helpx.adobe.com/x-productkb/global/find-serial-number.html.
    Regards,
    Romit Sinha

  • How do I arrange for the Premiere output to be as near the same as the input as possible?

    A newbie question.
    I am editing a ten minute video down to a 90 second clip, with an added jpeg and a watermark. The first (http://www.youtube.com/watch?v=YQ3UOlHY3GE) turned out fine in terms of HD and widescreen. The second (http://www.youtube.com/watch?v=wgin-kBcep8) has not – it’s all scrunched. They both started out as identical format [1920x1080, 14005kbps data rate, 14133kbps total bitrate, 50 frames/second) MP4 files; the good output format is a (1920x1080, 25920kbps data rate, 2630kbps total bitrate, 25 fps) “Movie Clip”, whereas the poor output is a (720x576, 28807kbps data rate, 30343kbps total bitrate, 25fps) “Video Clip”.
    How do I arrange it for the Premiere output to be as near the same as the input as possible, so as to present in YouTube as HD and fully widescreen? My guess is that I am doing something stupid when I open the incoming file.

    Stephen,
    In your initial post, you state:
    They both started out as identical format [1920x1080, 14005kbps data rate, 14133kbps total bitrate, 50 frames/second) MP4 files;
    If that is correct, then you ARE starting out with full-HD material, and that should be a PAR = 1.0 (Square Pixels) and 16:9 Aspect Ratio. Outputting to 1920 x 1080, should yield 16:9 with Square Pixels, as well.
    Now, one of your output tests WAS to SD, and you state:
    the poor output is a (720x576, 28807kbps data rate, 30343kbps total bitrate, 25fps) “Video Clip”.
    but there is no mention of that output file's PAR, so it could be 4:3, or 16:9. The down-rezzed Export file WILL not look as good as full HD output to full HD.
    I think that that latter 720 x 576 confused Harm, or maybe I am the one, who is confused?
    Good luck,
    Hunt

  • I have iPad 3 stop on icloud i dont no what is the email but i have box of the ipad how i open it without icloud email help plz

    i have iPad 3 stop on icloud i dont no what is the email but i have box of the ipad how i open it without icloud email help plz

    Read this about Activation Lock
    http://support.apple.com/kb/PH13695

  • Issue in rdf output --getting square boxes in the output

    Hi All,
    I am facing an issue in the report output ...
    'Square box ' are getting printed in the output along with data.
    Can any one of you please let me know if any one solved such issue before???
    Thanks in advance....
    Regards
    Jana
    Edited by: Jana on Jan 18, 2010 6:55 PM

    Jana,
    This is caused (as was said in one of the answers) by a frame of some kind which has a black outline. Run the Report from the Report Builder and look at the
    previewer output. See where the box is in the output, go to it and change the outline to white.
    Dave

  • Text and table structure getting jumbled up in the smartform output

    Hi all ,
    While viewing the print preview of a smartform output , i am facing  a strange issue.
    The hardcoded text is getting jumbled up .For eg:"As soon as possible"  becomes " as possible . soon as"
    The structure of the table is also getting reversed.That is the table is now getting displayed with the last couloum first.The data in the table is also coming in the reverse order.
    While executing the smartform directly , the layout is coming in the proper order.But while executing this through a transaction (FINT) , this issue is coming up.The print program is a standard program.
    I have tried deleting the window , copying it to a new smartform etc.I have also tried in different systems to check whether if it is an issue with the system.
    If anyone has faced a similar issue , please let me know how to solve it.Thanks a lot in advance.
    Regards,
    Rashmi

    Hi
    Please check the Printout rather the print Preview. and also check the Structure/table entries also that u printing and also if u r using template, then check the assignment 1 of 1 , etc to the texts.
    surya

  • Finder can't access a mounted windows share - but the Terminal can...

    When I mount a drive using the finder's "Go / Connect to Server..." command I can choose the share to connect to and Finder mounts the share, puts it on the desktop etc... but then it tells me that:
    "The folder “Sharename” can’t be opened because you don't have permission to see its contents."
    Any attempt to access the folder through the finder will result in the same error message.
    Since the share does otherwise mount sucessfully, it shows up in /Volumes/ and using the terminal I can access the contents of the drive and open files. Applications, both terminal and GUI can read and save to files and folders opened in this way, but the GUI application cannot find the path again if you browse away in the app's browsable dialog boxes (like Save or Open). I can access any file using an absolute path in any program.
    There are more nuances to this behaviour:
    Other shares hosted by the same server don't have this problem.
    Using the terminal, I appear to have the same Unix permissions to the files and folders on the shares that work as the ones that don't work.
    Using Finder's "Go to Folder..." command I can open some, but not all folders in the flaky sharepoint mounts. All files seem to work though.
    My guess is that there are some permissions that are making Finder unhappy, but I'm not sure what they might be. But regardless, why then can I access everything from the Terminal? I'd like to use the Finder - it makes my experience much smoother!
    Some other people in this forum seem to have had the same problem with their NAS drives, but I don't think anyone has yet suggested they try accessing it via the terminal. It would be really helpful if anyone could confirm this Finder/Terminal discrepant behaviour.
    Any thoughts?

    I am having the same problem but with OS X 10.9 (Mavericks).
    I try to connect to the NAS via the Go / Connect to Server utilizing smb or cifs protocols and it will mount but then I can't enter the mounted drives/directories with finder.
    The workaround for forcing smb1 has been applied and I find that Finder would not permit me to enter those mounted directories but I can go via the command line and work fine. The  only issue is that with a Mac, as much as everybody say, you should not need to go to the command line... Yeah, right.
    For the amount of money that I paid for the Mac Book Pro, it should work. So, now I can confirm that even Mac OS X can be as bad as Windows...
    Any idea when will Apple put out a fix or an update to finder?

Maybe you are looking for

  • Tighter Integration with Active Directory User Groups

    I just wrapped up a Jabber deployment with IM&P 9.1(1) and J4W clients 9.1(3). The customer asked me if it is on Cisco's roadmap to allow groups in Active Directory to be pulled into the Jabber client.  The primary business case is to allow those in

  • What exactly does DSPX_Encoderserv do?

    I am doing background encoding in DVDSP3 and the DSPX_Encoderserv process has been going on for about 30 minutes using about 150% of my Dual 1.4. I noticed it is mostly using the blue or % Nice instead of the % User. As I looked through the posts, it

  • Classes not working

    ok so i have this class i made:      public class George {           public void talk(){      System.out.println("meow"); and then i call it with this:           George Speech = new George;                Speech.talk(); That is done in the trivialapp

  • Error when running gpupdate /force

    when running gpupdate /force we see this error.  But.....only sometimes.    Some users see it others do not. Windows failed to apply the Internet Explorer Zonemapping settings. Internet Explorer Zonemapping settings might have its own log file. Pleas

  • Convert HCM ISR online forms to an attachment in Backend - Help Required

    Hi Experts, I am working on a workflow which actually determines few email ids to whom I have to send in the HCM form details as an attachment. I have been searching the solution for this but without any result so far. I have found a ISR function mod