Smartforms- want TEXT content could change at every print page

Hi Experts,
I would like to create a smartform to print many accounting document (include BKPF data and BSEG data)
at page 1 , I  add some SUBWINDOW to put in TEXT ,  so I could move the subwindow to where I want TEXT to show,
and at MAINWINDOW , I add a TABLE to show BSEG data ,
then , I copy page 1 to page 2, and make some command ,  and run my program at SE38 ,
it could print two page while I give two number to parameter ,
but only the mainwindow content to be changed at diffrernt page , the TEXT content don't  to be changed.......
Can you help me how to do could let TEXT change content at different page ?
Or there are other methods could hit my target?
Thanks a lot in advanced.
Best Regards,
Yacoa

HI,
Thanks your reply , but I consider you missunderstanding my meaning.
I put BKPF data at TEXT , not page number , like bkpf-belnr,
for example: I give two document number to driver program  parameter : 3700000001 , 3700000002
then I want the report  page 1 to show : 
accounting number:   3700000001
report  page 2 to show :
accounting number:   3700000002

Similar Messages

  • Can the footer repeat on every printed page?

    I need the footer (part of the master page) to repeat on every printed page of a topic.
    Our client prints topics for use in the field and the footer contains time/date code (that I found on the internet). This date/time info needs to be printed on all pages of each topic. Most of the topics are 2-3 pages in length when printed from the browser. Is it possible to program the footer to repeat? or add HTML code to the topics to do this?
    I'm using RH 9, generating the WebHelp Pro layout for my output. Using IE9 and FireFox9 browsers. I've added a toolbar print button that uses the toolbarscripts01.js script to print the topics. (The script works great and is a HUGE life saver, by the way!! Thanks Peter Grainge!)
    Thanks,
    Shelley

    Hi Shelley
    We've already established in a separate thread that WebHelp Pro is not what you should be creating as you aren't using RoboHelp Server. But that really hasn't got anything to do with the footers.
    What you likely need to do is to supply a PDF that will be used to print. When RoboHelp creates Printed Documentation it first creates a Word document. And if you have elected to create a PDF, the PDF is created from the Word document. So what you can do is to forego the PDF from RoboHelp and manually tweak the Word document to add the desired footers. Then you could create a PDF from that to supply to the user.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • LASERJET 1160 PRINTER RUNS A BLANK PAGE BETWEEN EVERY PRINTED PAGE AFTER UPGRADING TO WINDOWS 8.1

    Laserjet 1160 printer runs a blank page between every printed page after upgrading to Windows 8.1

    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial printer. You can do this at Printers - LaserJet.
    Click on New Post.
    I hope this helps.
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Printing blank page with every printed page

    I have a C7280 printer, and it has been working fine.  However, it now sends out one blank page for every printed page.  any ideas on why this is happening and how to fix it? 
    thanks.

    HI,
    You might try using this print diagnostic utility to see if it helps solve your problem.
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-82717-1&lc=en&dlc=en&cc=us&...=
    There are several solutions within the utility that fixes several printer issues.
    Say Thanks by clicking the Kudos Star in the post that helped you. Please mark the post that solves your problem as Accepted Solution.
    I am employed by HP

  • How do I change back the print pages box?

    I refreshed Firefox and my print pages box changed. It went from having a long box allowing me to type in say the 1-3, 6,10 pages to two small "from" & "to" boxes. I really need this back to the way it was for my business. I checked IE and that print setup is still the same with the long print page box. How can I fix this issue on Firefox?

    Try to reset the printing settings in Firefox:
    *[[Fix printing problems in Firefox]]

  • Blank Sheet at beginning and between every printed page; Separator Page dialog box is blank.

    I followed directions of another blog and when I got to the Separator Page dialog box, it said to "delete all templates listed in the Separator Page box", but mine was blank.  If I click on the browse button, I do find pcl,sep; pscript.sep; sysprint.sep; and sysprtj.sep files.  Do I delete these sep files?  I have a HP Photosmart C7280 All-in-One Printer and am using Windows 7 (had same problem with VISTA).

    I had this issue using FF 5.0, I fixed it by doing the following :
    # Go to firefox button, select options, options.
    # Find all the applications that are listed as Adobe
    # Change the action from 'Use Adobe Reader (in FireFox)' to 'Use Adobe Reader'
    Fixed :)

  • IDCS3 - Automate task every 4 pages? Possible?

    I'm on Tiger, using InDesign CS3. I have multiple 1000 page (8.5X11) pdf files that upon importing into InDesign I need to make a small change on every 4th page - moving the whole page frame down and to the left. Presently I am manually clicking every fourth page, and typing in the appropriate X/Y coordinates...but this is getting tedious really fast. I don't know how to write scripts, but didn't know if anyone had any creative ideas...thanks in advance.

    Just to chime in that it is hypothetically possible.
    For example, if your PDFs were numbered sequentially and you only wanted to modify names that divided evenly by 4, something like this might work:
    tell application "Adobe InDesign CS2"
    tell active document
      set myLinks to every link whose name begins with "PDF"
      repeat with thisLink in myLinks
       set thisName to name of thisLink
       set thisNum to (((characters -8 thru -5 of thisName) as string) as number)
       if (thisNum mod 4) = 0 then
        set frameList to (every graphic of all page items whose item link = thisLink)
        if length of frameList = 1 then
         set thisFrame to item 1 of frameList
         --define amount to shift by
         set xShift to "-.75" --put in your own value here
         set yShift to "-.75" --put in your own value here
         --Move frame
         set {thisTop, thisLeft, thisBtm, thisRight} to geometric bounds of parent of thisFrame
         set thisTop to thisTop + yShift
         set thisBtm to thisBtm + yShift
         set thisLeft to thisLeft + xShift
         set thisRight to thisRight + xShift
         set geometric bounds of parent of thisFrame to {thisTop, thisLeft, thisBtm, thisRight}
         --Move graphic
         set {thisTop, thisLeft, thisBtm, thisRight} to geometric bounds of thisFrame
         set thisTop to thisTop + yShift
         set thisBtm to thisBtm + yShift
         set thisLeft to thisLeft + xShift
         set thisRight to thisRight + xShift
         set geometric bounds of thisFrame to {thisTop, thisLeft, thisBtm, thisRight}
        end if
       end if
      end repeat
    end tell
    end tell

  • Blank page printed every other page

    i have a laserjet 2430tn and work at a doctors office. There are two printable options, regular printing and prescription printing. The problem is relevant to the prescription printing only. On our scripts, everytime we print out, a blank page comes out in between every printed page. How to correct?

    Flrgurl32,
    I keep coming back to this one.  Alas, I don't know the answer.  I wish I did.  If it were just the pages in between in document printing, it would easier to diagnose; the envelopes caper is a bit disconcerting.
    Do check the margins in the document.  If you are off by a even little bit, the printer will add a page.
    If this is Word, try copying the document over to WordPad and making a copy that way. 
    Envelopes spitting out.  ??  You could try resetting the printer..
    Reset the printer.  Not sure which is the Reset on on this printer (not the expert and I've bee corrected before on this for a couple of the models), Here are two kinds:
    1)  If there is a keypad, turn it off, then on and press # and 6 (keep pressed while turning on printer).
    2)  no keypad?  Unplug while on, leave unplugged 30 seconds to a minute.  Plug back in.  (Be careful with this one - don't risk shock.)
    It is my pleasure to assist.
    Say “Thanks!” by clicking the Kudos Star to show your appreciation for the help.
    Fixed?  Mark this Post “Accept as Solution” to help others find the answers.
    Note: You can find “Accept as Solution” only on threads started by you.
    Kind Regards,
    Dragon-Fur

  • Repeate Row Totals on every horizontal pages in Crosstab.

    Hi
    I have a crosstab which grows multiple page horizontally.
    I have Row totals that are displayed on the left of summary. I want to display this totals on every horizontal page.
    Can anyone tell mw how to achieve this.
    I am using Crystal Reports XI with SP as data source.

    Hi Narayan
    Right Click on the Cross Tab->Cross-Tab Expert-> Customize Style tab.
    Select the 'Horizontal' option under summarized Fields:
    Select the 'Repeat Row Labels' option under 'Grid Options'
    Click 'OK'
    However it is not possible to dispaly the row totals for the data dispalyed on that particular page.
    Because the data is calulated for the entire cross-tab.
    Hope this helps you.
    Please let us know if you need any further information.
    Regards
    Ashwini Yadav

  • I would like to add content that changes on a calendar basis, such as 'thought for the day". It can then display a different text or image on a nominated day. Can this be done? Robert.

    I would like to add content that changes on a calendar basis, such as 'thought for the day". It can then display a different text or image on a nominated day. Can this be done? Robert.

    OK Thanks Brad.
    I could use Tockify of course, but wanted to create the same things on an existing site.
    I do not know how to copy the code and get it onto Muse, but that’s OK for now. I will work something else out.
    Robert

  • Smartform-Want to change addtext to password protected form

    Hi Experts,
    There is one customized smartform.Want to change/add new text to page but its showing message 'The document is password protected.
    Special restriction in effect.You may only insert comment to this region.' and not allowing me to change text.
    Please suggest the steps to chenge the text.Its very orgent so please reply soon.
    Thanks,
    Subhashree.

    Hi,
    You have entered the smartform in display mode.
    Just come out of smatform and enter into from 'SAP Smart Forms: Initial Screen' in change mode by clicking on Change button.
    Regards,
    Dep

  • HT1689 I need to get my iPod to no longer be associated with the original i store account. My husband set it up through his account but now I have my own account. I don't want to go through his every time I want to make a change. how do I make this change

    I need to get my iPod to no longer be associated with the original i store account. My husband set it up through his account but now I have my own account. I don't want to go through his every time I want to make a change. how do I make this change?

    I am trying to stop using my I-pod under my husband's I-Tune account.  It was set up under his account and the only way I can use it under my account is to erase all of the songs my husband loaded on for me.  I had heard there is a duration that I-Pods are locked into to one account only, and I am trying to discover how I can use my account without having to erase everything on the I-Pod.  I know it sounds confusing but that's the way I-tunes have set it up.  thanks for asking.

  • I am pulling my hair out! I am using adobe indesign and just want to make a text box 'autofit text' as I change fonts a lot and want the font to automatically re-size as I change it. help help help please - I have latest version of indesign - thanks

    I am pulling my hair out! I am using adobe indesign and just want to make a text box 'autofit text' as I change fonts a lot and want the font to automatically re-size as I change it.
    Is it not possible to create a text box, fill it with dynamic (data driven) text, but make the font size either scale up or down automatically, so that the entire text box is filled? This is a feature in PrintShop Mail Pro called COPY FIT. but no such feature in Indesign??
    help help help please - I have latest version of indesign - thanks, DJ

    lol... it seems to work, but I have another huge problem!
    Apparently .CSV files cannot contain page breaks in the data! The data I am trying to merge is a 'letter', with paragraphs, line breaks, etc.,
    But, after data merging, it ignores page breaks and only merges the first paragraph of each letter. (sigh)
    Solution? Hopefully, an EASY solution. lol as we have thousands of records.
    Is there a third party indesign plugin that will allow .xml, or .xls data merge import??
    Thx,
    DJ

  • I've purchased cartoon tv shows for my iPad. Prior to the new updates, I could play one at a time or continous. Now I can only play one at a time. It's annoying to keep changing it every five or six minutes. Is there a fix to get it back playing continous

    I've purchased cartoon tv shows for my iPad. Prior to the new updates, I could play one at a time or continous. Now I can only play one at a time. It's annoying to keep changing it every five or six minutes. Is there a fix to get it back playing continous

    Use this feedback form and tell apple. http://www.apple.com/feedback/ipad.html

  • How do i change the text in a submenu diffrent than the page name? I want it wrap into two lines

    How do i change the text in a submenu diffrent than the page name? I want it wrap into two lines or be a diffrent title but i can't figure out how to make any changes to the text.

    Hello,
    Text in Menu/Submenu canno tbe changed while using menu widget. However, if you use the Manual Menu option, then you can create your own Menu and add the hyperlinks according to your requirement.
    To create Manual Menu, please follow the steps below :
    1) In the Widget palette, go to "Menus" click and drag "Vertical/Hrizontal" into your artboard/workspace
    2) Click on the widget itself to a blue arrow appears to the right
    3) There is a drop down called "Menu Type" set it to "Manual" (as shown in screenshot) :
    4) Now You can create your own Menu and add your own text and hyperlink to  this Menu.
    Hope this helps.
    Regards,
    Sachin

Maybe you are looking for

  • Some of google chrome text shows up as squares mess

    I love Google Chrome but I can't read certain headlines and pop up windows. I have uninstalled and reinstalled. I have managed my system fonts in fontagent pro and then not managed them. I have changed the encoding. I checked it on my laptop and it h

  • How to you print 6.5" x 3.6" envelopes in Wordperfect using HP Officejet 6600 (Windows XP)?

    Although Wordperfect has the option for this size envelope, I cannot find a corresponding paper size for the printer. Therefore, when printed, the text location on the envelope is incorrect.

  • ICloud Sync time limit - deletes ical details

    Hi I've discovered a bug of sorts. If I have an event in iCal on both the iPhone and the Mac, then shut down the mac, after a yet undeterminable time period (like over night or a good 6 hours) if I change the details on the iPhone then start the mac

  • Extproc fails to load: error in loading library libclntsh.so

    Hi all. I've configured Net8 to call external procedures. When the application (sqlplus) makes the connection to the listener, extproc fails to load because of: extprocSMSC: error in loading shared libraries libclntsh.so.1.0: cannot open shared objec

  • Opening nwc files on mac

    changing from Windows PC to Macbook Pro. I have music scores in Noteworthy (extension  nyc) which I would like to open in a Mac based music programme such as MuseScore, Sibelius or Finale etc. Any experience?