Tabs smartform don't work when the field content is blank

Hi,
    I'm doing a report with smartform, I created a paragraph with 4 tabs, when the field content is blank the next field don't stop in the right tab. Anybody know why ??
  Thanks.
Suzuki - Brasil

see example prgram sf*
Here is the step by step procedure
http://sap.niraj.tripod.com/id67.html
Procedure:
1. Create a new smartform
Transaction code SMARTFORMS
Create new smartforms call ZTEST
2. Define looping process for internal table
Pages and windows
First Page -> Header Window (Cursor at First Page then click Edit -> Node -> Create)
Here, you can specify your title and page numbering
&SFSY-PAGE& (Page 1) of &SFSY-FORMPAGES(Z4.0)& (Total Page)
Main windows -> TABLE -> DATA
In the Loop section, tick Internal table and fill in
ITAB1 (table in ABAP SMARTFORM calling function) INTO ITAB2
3. To define the table in smartforms
Global settings :
Form interface
Variable name Type assignment Reference type
ITAB1 TYPE Table Structure
Global definitions
Variable name Type assignment Reference type
ITAB2 TYPE Table Structure
4. To display the data in the form
Make used of the Table Painter and declare the Line Type in Tabstrips Table
e.g. HD_GEN for printing header details,
IT_GEN for printing data details.
You have to specify the Line Type in your Text elements in the Tabstrips Output options.
Tick the New Line and specify the Line Type for outputting the data.
Declare your output fields in Text elements
Tabstrips - Output Options
For different fonts use this Style : IDWTCERTSTYLE
For Quantity or Amout you can used this variable &GS_ITAB-AMOUNT(12.2)&
5. Calling SMARTFORMS from your ABAP program
REPORT ZSMARTFORM.
Calling SMARTFORMS from your ABAP program.
Collect all the table data in your program, and pass once to SMARTFORMS
In SMARTFORMS
Declare your table type in :-
Global Settings -> Form Interface
Global Definintions -> Global Data
Main Window -> Table -> DATA
Written by : SAP Hints and Tips on Configuration and ABAP/4 Programming
http://sapr3.tripod.com
TABLES: MKPF.
DATA: FM_NAME TYPE RS38L_FNAM.
DATA: BEGIN OF INT_MKPF OCCURS 0.
INCLUDE STRUCTURE MKPF.
DATA: END OF INT_MKPF.
SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.
SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.
MOVE-CORRESPONDING MKPF TO INT_MKPF.
APPEND INT_MKPF.
ENDSELECT.
At the end of your program.
Passing data to SMARTFORMS
call function 'SSF_FUNCTION_MODULE_NAME'
exporting
formname = 'ZTEST'
VARIANT = ' '
DIRECT_CALL = ' '
IMPORTING
FM_NAME = FM_NAME
EXCEPTIONS
NO_FORM = 1
NO_FUNCTION_MODULE = 2
OTHERS = 3.
if sy-subrc <> 0.
WRITE: / 'ERROR 1'.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
call function FM_NAME
EXPORTING
ARCHIVE_INDEX =
ARCHIVE_INDEX_TAB =
ARCHIVE_PARAMETERS =
CONTROL_PARAMETERS =
MAIL_APPL_OBJ =
MAIL_RECIPIENT =
MAIL_SENDER =
OUTPUT_OPTIONS =
USER_SETTINGS = 'X'
IMPORTING
DOCUMENT_OUTPUT_INFO =
JOB_OUTPUT_INFO =
JOB_OUTPUT_OPTIONS =
TABLES
GS_MKPF = INT_MKPF
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.
for Smartforms material
http://www.sap-basis-abap.com/sapsf001.htm
http://www.sap-press.com/downloads/h955_preview.pdf
http://www.ossincorp.com/Black_Box/Black_Box_2.htm
http://www.sap-img.com/smartforms/sap-smart-forms.htm
How to trace smartform
http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
http://www.sap-img.com/smartforms/smart-006.htm
http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
Re: Need FAQ's
check most imp link
http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
step by step good ex link is....
http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
for Smartforms material
http://www.sap-basis-abap.com/sapsf001.htm
http://www.sap-press.com/downloads/h955_preview.pdf
http://www.ossincorp.com/Black_Box/Black_Box_2.htm
http://www.sap-img.com/smartforms/sap-smart-forms.htm
How to trace smartform
http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
http://www.sap-img.com/smartforms/smart-006.htm
http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
Re: Need FAQ's
check most imp link
http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
step by step good ex link is....
http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
for Smartforms material
http://www.sap-basis-abap.com/sapsf001.htm
http://www.sap-press.com/downloads/h955_preview.pdf
http://www.ossincorp.com/Black_Box/Black_Box_2.htm
http://www.sap-img.com/smartforms/sap-smart-forms.htm
How to trace smartform
http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
http://www.sap-img.com/smartforms/smart-006.htm
http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
Re: Need FAQ's
check most imp link
http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
step by step good ex link is....
http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html

Similar Messages

  • Facebook pull-downs don't work and the messages area is blank under the blue navigation bar.

    I recently let my computer upgrade my Firefox from 16.0.1 to 16.0.2. Once I did, every single page I went to loaded but came up completely blank. I tried Firefox's suggestions on fixing it and nothing worked so I went back to 15 and then upgraded to my previously working version, 16.0.1. I've only had one problem since. My pull-downs on Facebook don't work, the messages page comes up blank, and lots of other little things don't work either, like comments on certain pages or the "endless page loading" on my friends pages (I can only see the top few updates, the rest doesn't load.) It works fine on Chrome, but I hate losing all my plugins to go to Chrome from Firefox when only one site doesn't work. Since then I've turned off all my add-ons, deleted my history, removed my cache and cookies, utterly removed Firefox and reinstalled from scratch again, after deleting EVERY item on my hard drive with the word Mozilla attached. I've updated my Flash, my Java, my QuickTime, my Direct X and my Adobe reader plug in. I've tried to roll back my system, but I've been working on this too long and it won't go back far enough. I've run the windows malware scanner (full scan) and Malwarebytes scanner as well (full scan), with no problems found. I'm out of suggestions. What can I do to get my Facebook to work again on Firefox 16.0.1? I'm on Windows 7 (64) Home Edition, BTW.
    HELP!!

    That did it!
    Your kung fu is better than mine and I am massively grateful to you. Everyone else had given up on helping me or never even started . Thank you VERY much!!
    EDIT: NOOOO!!! I have no idea what's wrong. It started doing it again, and now when I delete everything in that folder for personal stuff, even when I JUST deleted it all and haven't added ANYTHING, it still is broken! I'm so sad! We almost had it!!
    Why would it work the first time and then not work the second time? I bring up the personal settings folder, delete everything in it, restart, go to facebook, and then it still doesn't work!
    EDIT: I figured it out. I like to have firefox remember some cookies and not others. Most are deleted on restart except a few key sites. When I change that setting to on, facebook java stuff stops working. Even if I let facebook be one of the few that I always keep the cookies for on restart, it still won't let me use it. I either need to have it remember all cookies or forget all cookies on restart. And I hate tracking, so if I have to choose between firefox remembering everything and remembering nothing, I'll take nothing. It's probably good for me to remember all my passwords anyways. Annoyed that facebook won't let me use that setting, though.
    So solved!

  • In my Ameritrade account the sub-header titles don't work when selected.

    In my Ameritrade account the sub-header titles don't work when selected. Is it maybe an add on or the beta version 14.01a of firefox or something else?
    I can't give the address as it is a confidential site, sorry. But for example when you pick trade and try to select buy or sell tab it does nothing. I tried downloading the lastest beta version 14.01a which I like to use but this didn't help? Thank you.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Why don't iPhone alarms work when the phone is switched off?

    How come iPhone alarms won't work when the phone itself is turned off?

    jchisholm13 wrote:
    I don't want to have it on charge all night cause it will just ruin the battery
    No it won't...
    http://www.apple.com/batteries/iphone.html

  • My links don't work when I combine another file with the pdf

    My internal bookmarked links don't work when I combine another file with the pdf.
    The external links continue to work fine, though.
    This doesn't make any sense to me at all ... but I'm hoping one of you kind folk can help?

    I opened my file and instead of merging files I used insert pages and inserted all of the pages from the file I wanted.  Then I saved the file with
    the same name.  Attached is a rough draft of some helpful hints I put together.  This has been a very painful process for us to discover how to handle
    this and there really is not much help from Adobe.
    Instead of merging files you inset pages. In Acrobat select Document - Insert pages -From file. You can select all pages or some and where you want them inserted. After you do that save the file not save as and all of your links should work. If you combine files or merge files all of the links will break.
                                                                                    GillHarley <[email protected]>                                                                              
    05/07/2009 09:54 AM                                                                                To
                                                                        "Christine Salmon" <[email protected]>                                                                              
    cc
                                Please respond to                                                                              
    [email protected]                                                                                 Subject
                                    dobe.com                            Acrobat Windows My links don't work when I combine another file with the pdf
                                                                        29k833-1Kp0-8ahk                                                                              
    I think it's something to do with naming, but I can't figure out what. This is because it asks to be saved and gives me a Binder no as the name. If I
    press Cancel at that point, I keep the file and the links. But as soon as I need to close it, it asks me again 'Do you want to save this file' and if
    I say 'Yes', I lose all the links, and if yet if I say 'No', I lose the whole file. So at some point it has to be saved but whether I keep the Binder
    no name when I save it, or use the original name, it makes no difference ... it is in the saving of it that it looks the functionality, and yet, if I
    don't save it, I lose the file.
    This makes no sense to me....I hope it does to one of you.
    For instance, Christine, how did you keep your file if you couldn't save it?
    Or have I misunderstood?

  • Hi, i am working in E.C.C. 6.0 , IN SMARTFORMS i am not getting the fields

    Hi, i am working in E.C.C. 6.0 , IN SMARTFORMS i am not getting the fields from field list on/off?

    Hiii
    dont worry u will get fields but u wont drag and paste it in ur text
    regards
    Jaipal

  • I can no longer print to the 3 Canon printers on my local area network. The print dialog box states that the print file is accepted and the job is printing, but the files never print. Everything worked when the computer and printers were initially set up.

    I can no longer print to the 3 Canon printers on my local area network. The print dialog box states that the print file is accepted and the job is printing, but the files never print. Everything worked when the computer and printers were initially set up.

    There may be some security issues related to the USPS PDFs.
    http://www.certified-mail-envelopes.com/signatures-usps-certified-mail-return-receipt-requested
    I can't help with the scan/print problem. You seem to have done everything I would try.
    I don't know if maybe using a registry cleaner would help.
    John Hoffman
    Conway, NH
    1D Mark IV, Rebel T5i, Pixma PRO-100, MX472

  • Upgraded to CS5; TOC Links don't work in the created PDF from InDesign

    We recently upgraded to CS5. When we convert our InDesign User Guide to PDF, the main TOC links don't work. The TOC does function from each chapter page but not from the main TOC. We have done our normal steps in Acrobat to link them. Same issue with various user guides that we have. Any suggestions would be great. Thanks

    Thanks for your reply. The problem is the whole page is one image and there should be several clickable areas which point to different links.
    To solve this we have put a textbox over the clickable area, disabled the background and stroke and then right clicked on the textbox and used the hyperlink option to turn the whole box in to a hyperlink.
    We tried several free PDF convertors which couldn’t handle this combination. Then we trailed it with the full desktop version of Adobe Acrobat Pro and it worked a treat. Unfortunately the client didn’t have that software so we signed them up to the online PDF convertor from Adobe and that isn’t handling it.
    Here's the sample document: Dropbox - sample-link.docx we have been doing the tests with.

  • Links don't work when site is published

    Help! In iWeb all my links work from the home page to other pages, but as soon as I publish it, the links are dead. None of the links on the home page will work. See for yourself http://web.mac.com/rbrooks007

    I put in a new logo that no longer overlaps the links. I moved my custom navigation well down into the main body of the page, but when I publish the page they still don't work. The only link that works is in the bottom panel of the layout. Is there any way to make links work in the center section of the page? Or custom navigation in the navigation bar area? I guess I'm confused as to where I can put links that will work.

  • PDF forms have problems displaying text and only appears when the field is selected

    Hello,
    I created some pdf forms to distribute to the company clients. But we are having some people complaining about the text visibility. When they have work in team, the pdf that they receive from a third person often appears unfill or without text, the text is only visible when the field is selected. I need to find a solution for this because our company products are base on this forms.
    If there is any addition information that I should add to understand what is happening and how to fix it, I'll be happy to write it.
    In the company, we all have mac and the forms where created innitially in Adobe acrobat 9 pro, but we have now Adobe acropabt XI pro.
    The users have both Mac and Windows systems.
    Thank you,

    This is usually caused by the form being filled-in and saved by a Mac user who is using the Preview application to view the PDF. More information is here: http://kb2.adobe.com/community/publishing/885/cpsid_88564.html
    It is a good idea to inform your users that Adobe Reader (or Acrobat) should be used to work with the forms.

  • [Windows] Captive runtime bundle package certificate signing don't work when icons included

    Here is the bugbase ticked: Bug#3949990 - [Windows] Captive runtime bundle package certificate signing don't work when icons included
    Application signing don't work when you build captive runtime bundle package which include icons. Don't matter application icons or associated file types icons. It works fine when you build application bundle without icons.
    It's a very critical issue, please fix it ASAP.
    Also application signing don't work if you using AIR SDK beta: Bug#3950022 - [Windows] Application signing don't work with AIR SDK beta
    I'd like to ask everyone affected by this issue to take a minute and vote for the following bugs.
    Thanks.

    I received feedback from our QA team this morning that they were able to reproduce the bugs but they are requesting access to the .as code if possible.  If you'd like to keep this private, please feel free to email it to me directly at [email protected]

  • IOS6 Headset / Headphone "Skip to the next chapter" & "Return to the previous chapter" functions don't work in the Music App

    "Skip to the next chapter" & "Return to the previous chapter" functions don't work in the iOS 6 Music App when listening to Podcasts and Audiobooks through Headsets (Apple & 3rd party), Speaker Docks, and in my autos handsfree bluetooth system (Ford Sync).
    Listening with the Podcasts App allows "Skip" and "Return" to work. So, this is either a bug or Apple is forcing the use of the Podcast App to get the "Skip" & "Return" controls. All the other headset functions work as designed.
    I listen to news Podcasts in chronological order. In iTunes I set up smart playlists sorted by release date for the podcasts. The Podcast App doesn't support playlists therefore I need to use the Music App.
    Is anyone able to get "Skip" and "Return" to work in the Music app?
    Thanks for any insight!

    We are fellow users here on these forums, you're not talking to iTunes Support nor Apple. If you want to leave feedback for Apple then you can do so here : http://www.apple.com/feedback/ipad.html

  • Since the iOS7 upgrade my iMessages don't work all the time.

    Since the iOS7 upgrade my iMessages don't work all the time. The will work for for a few days, but then all of a sudden they stop working. They are still activated in settings, but not sending. If I turn on and off my phone they work again for a while and then stop again. I'm not sure if turning off and on my phone again is re-activating the iMessages which is why they start to work again for a while. But it's a pain having to turn off and on my phone each time, and when sending an iMessage not knowing whether it's going to send this time or not is a bigger pain. Also everytime I turn off and on my phone (which i think is re-activating the iMessages) a text is sent to the following UK number: +447786205094 - so it's costing me each time!
    Is there a fix for this?

    Turning off and back on or hard reset seems to work for a day or two.  After resetting I am occasionally losing messages that were there before reset.  In addition, I have had 3 messages that I received a notification for when they came in but go into messages and not there.  Message incon still shows 3 unread messages but when I open messages I have no unread messages???  Power on-off or hard reset does not seem to fix this.  At least a reset gets imessages working again.  Hope fix is out soon.  This is a PIA.

  • I had to buy a new keyboard but F10, F11 & F12 don't work for the volume. What can I do to activate it?

    I had to buy a new keyboard but F10, F11 & F12 don't work for the volume. What can I do to activate it?

    Hello,
    I think Spark cured this for another person and the same problem...
    http://www.shadowlab.org/Software/spark.php

  • How can i get value when the field name is user's defined

    Hi,
    I have a one java method:
    public ResultSet countUserDb(String id) {
    ResultSet rs = null;
    con = dbcon.connect();
    String queryString = ("select count as count from
    db_allocation where user_id='"+id+"'");
    Statement stmt = con.createStatement();
    rs = stmt.executeQuery(queryString);
    When i call it in a jsp file.
    ResultSet counter =db.countUserDb(request.getParameter("id"));
    if(counter.next())
    int x=rs.getInt("count");
    Tomcat said incorrect column name.How can i get the result set when the field name is user's defined.
    Best regards
    Ricky

    You should give the user defined name in the ResultSet.getXXX method to retrieve the column value.
    Example
    SQL:
    Select ename as employeename from emp;
    You should say :
    ResultSet.getString("employeename"); to get the value.
    Alternatively you can retrieve it using column number:
    ResultSet.getString(1);
    Chandar

Maybe you are looking for

  • Apple id not valid for updating Pages

    Hi all, I just got a mac mini. I used time machine to migrate my desktop from my 2008 mac book. I thought I was using the same apple id for everything (I only have 1), but when I go to update pages it says the apple id does not match. What is happeni

  • Use of trading partner field in GL Master, Vendor and Customer Master

    Can anybody explain in detail  what is the use of trading partner in masters. In GL Master, whether it needs to be updated for all the GLs or only a specific GLs.

  • Is SSL possible for IGS 6.40?

    Dear all, after changing all components of our NW04 Java system to https, I was looking for a possibility to change the HTTP access to the IGS to HTTPS. I found SAP note 965076 stating that you can activate https if you have an IGS version 7.00. Unfo

  • After importing from iPhoto, how would you eliminate the photos?

    I have installed Aperture adn like it quite a bit. I imported from iPhoto (which copies over the pictures...not move.) I have backed up the photos in iPhoto to an external hard drive in case Aperture blows up on me and I need to go back to iPhoto. Bu

  • Can't start CS6 trial software

    I downloaded and installed a trial of CS6 Design and Web package to my Mac (OS 10.6.8). When I click on a CS6 app to start it, I get a window with some videos and two buttons, one to license the software and one that says Start Trial. I click on Star