Print Element from within Include that calls Perform with WRITE_FORM

hello,
the subject title pretty much says it all.
i have a standard sap program, and customized sapscript.
i need to output a new element.
i have an /:INCLUDE in the sapsript, this include will contain my /:PERFORM statement.
in my perform code, i will have my WRITE_FORM function module with my ELEMENT
now everything seems to run, only my element does not get printed.
any ideas ??

Hi gigle,
Have you passed the element to write_form.
call function 'WRITE_FORM'
exporting
   element                        = '  '-->(pass the text element)
Regards,
Sravanthi

Similar Messages

  • Have Photoshop Elements from 2001.  Got new computer with Windows 7 Professional 64 bit.  It won't run on my new computer.  What version is MOST SIMILAR to the old version I have, that will run on W7P-64?  Thanks for any help.  Popjer

    Have Photoshop Elements from 2001.  Got new computer with Windows 7 Professional 64 bit.  It won't run on my new computer.  What version is MOST SIMILAR to the old version I have, that will run on W7P-64?  Thanks for any help.  Popjer

    You should probably just download the trial version of pse 12 and see if you can live with it.
    Download a free trial or buy Adobe products | Adobe downloads
    That being said, have you tried to install pse 1 on your computer?
    How much free space is on your hard drive?
    Do you have Internet Explorer 10 or 11?
    Pse 1 can run on windows 7 x64, provided certain conditions are met.

  • I can only play songs from the cloud that are checked with a dark checkmark-I have many other songs with a faint check that don't play

    I can only play songs from the cloud that are checked with a dark checkmark-I have many other songs with a faint check that don't play

    Restoring from backup will result in the iPod being like it was when the backup was made. If you restore via iTunes, you have to have all the synced media in your iTunes library since those are not included in the iPod backup.

  • I cannot print PDF files within Firefox. I can with Internet Explorer.

    I cannot print PDF files within Firefox. I can with Internet Explorer.

    https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox
    https://support.mozilla.com/en-US/kb/Opening+PDF+files+within+Firefox

  • Controlling printer formatting from within program

    Hi Experts,
    I have a requirement in which the user wants to that the printer's default setting of format 'X_65_1024'  should be changed to 'X_65_255' in case of if he executes this perticular report.
    The output of the report is ALV list display.
    Is it possible to control printer's setting from within the program?
    I serached and found two FMs.
    'SET_PRINT_PARAMETERS' and 'GET_PRINT_PARAMETERS' .
    But I am unable to understand how to use these FMs.
    Is there any other way to achieve this?
    Any pointers to resolve this issue would be very helpful.

    Hi,
    look here:
    http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/dba56d35c111d1829f0000e829fbfe/content.htm
    All Print Parameters are described.
    And a little code example:
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          destination    = lv_pdest
          copies         = lv_count
          list_name      = lv_lnam
          list_text      = lv_prtxt
          immediately    = lv_flg_prn
          release        = ' '
          new_list_id    = 'X'
          expiration     = lv_days
          line_size      = 255
          line_count     = 65
          layout         = 'X_65_255'
          sap_cover_page = ' '
          cover_page     = ' '
          receiver       = lv_prrec
          department     = lv_prabt
          no_dialog      = 'X'
        IMPORTING
          out_parameters = ls_params
          valid          = lv_valid.
      IF lv_valid <> space.
        NEW-PAGE PRINT ON
          PARAMETERS ls_params NEW-SECTION NO DIALOG.
    ENDIF.
    Hope it helps.
    Regards,
    David

  • Prob. exec. print job from RFC which im calling Web Dynpro java in Portal

    Hi,
    Ive got a problem executing a print job from an RFC which im calling in Java web Dynpro Application in Portal. Im using an Acess Method G: for Front End Printing but Order gets stuck with the Status "Waiting" "Front end unavailable".
    Any help would be greatly appreciated.
    Thanks in advance!!!

    HI,
    I dont think you would be able to do this. Instead, you need to get the content from RFC into WD java and print from the browser.
    Regards
    Srini
    Edited by: Sinivasan Rajamani on Jun 14, 2010 4:25 AM

  • I need to take elements from within 2 nested for loops and place them in an array at the specific row and column that I need.

    I have tried intializing an array and replacing elements by specifying a particular row, and column, but in the end I get an array with only one element replaced, and I suspect that it is because as the for loops are running through their iterations each time the array is re-initializing. I have a simple vi that I will post below, it is not the exact situation that I have but is a good place for me to get some understanding. I have the row and column indexes being driven by the inner and outer loop iterations, which gives me the pattern I need. I am using the inner iterations as array elements. How do I set this up so that it works and d
    oes keep re-initializing my array.
    Attachments:
    Untitled.vi ‏26 KB

    I have fixed a number of things in your vi.
    You were right in thinking that the array was continuously re-initialized. To avoid this, use a shift register (right-click the loop border), which will pass the updated array into the next iteration.
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    your_vi.vi.zip ‏13 KB

  • Creating form element from within a component

    Hi all,
    I am trying to create a form element within a component
    function which is then called from a .cfm page which has the cfform
    tags. I keep getting a context validation error for the form
    element tag. Here is some sample code:
    <cfcomponent name="yourComponent">
    <cffunction name="createTag" returntype="string"
    access="public">
    <cfsavecontent variable="returnContent">
    <cfselect name="thisSelect">
    <option value="0">Value 1</option>
    </cfselect>
    </cfsaveconten>
    <cfreturn returnContent>
    </cffunction>
    </cfcomponent>
    And in the .cfm page:
    <cfform>
    <cfinvoke component="yourComponent" method="createTag"
    returnVariable="returnContent"/>
    <cfoutput>#returnContent#</cfoutput>
    </cfform>
    The error occurs in the function and it says the cfselect
    must be within a cfform. I tried the function without the save
    content and just set the output="yes" but the same error occurs.
    Any help appreciated in how to get around this. Just putting
    the code in the .cfm is not an option for this.
    Any help appreciated.
    Jim

    quote:
    Originally posted by:
    jim1234
    Thanks for the reply. Yes, that works. So it looks like it
    has to do with the function call.
    After some further investigation, I found out that a regular
    <select> works, it's just the <cfselect> that does not.
    ColdFusion wants it directly within the <cfform> tag.
    Something does not make sense. If the cfsavecontent worked in
    the cfm file, there is no reason for it not to work in a cfc.
    If you want to persue this, the next troubleshooting step is
    to copy the function to your cfm file and see if it works. I
    suspect that you are trying something simple as a proof of concept.

  • Saving/Printing work from within a .swf file

    Okay so here's the deal. I have to create a flash game in
    which users will be creating artwork. When users are done with
    their artwork we want them to be able to SAVE their work, EMAIL it
    to a friend, and PRINT it out all within the .swf file.
    HOW IN THE WORLD DO YOU DO THIS?????? I have been searching a
    researching and going through many forums and tutorials trying to
    see if anyone out there can help but I have come up with nothing.
    Although I did come a across a website that was able to achieve
    what we are looking to do in this flash game.
    Click here to view
    Snowflake Website
    On this website users can make snowflake art the old fashion
    way but this time on the web within a flash site. When users are
    satisfied with their snowflake they can save it and the snowflake
    is added to an ever growing database of user created snowflakes
    that also can be viewed by others at anytime. Users are also given
    the option of emailing their snowflake design to friends and
    downloading their design as a JPEG or and EPS file. You can also do
    the same to any of other numerous snowflake designs with the
    snowflake design database.
    HOW IN THE WORLD DO YOU DO THIS??? I have contacted the
    agency that was responsible for creating this site for their help
    as well but any assistance I can get from you guys would be greatly
    appreciated as well.
    Still quite confused but eagerly awaiting your
    responses.

    Printing object:
    on (release) {
    //creates the object of the class printjob
    var pj:PrintJob = new PrintJob();
    //starts the procedure
    //opens the windows printing window
    pj.start();
    //sets the printing area (i may be made outside the stage,
    so using the A4 area and adding any other information that should
    not appear on screen)
    area = {xMin:0, yMin:28, xMax:465, yMax:296};
    //printing options - true=bitmap / false-=vetor... bitmap
    generates a bigger file, but results in better quality for images,
    vector is smaller and a good option if you work just with text
    options = {printAsBitmap:true};
    //adds the page the the printing queue
    pj.addPage(_root, area, options, null);
    //sends the page to the printer
    pj.send();
    //deletes the object to clear memory (very important)
    delete pj;

  • A better way to print text from within java ?

    Hi, I want to make an app that brints out a bill (part of a bigger project for school) and I already know how to make my object printable and print it, but the "problem" lies in the graphics (or graphics2D) object that the print function uses to draw on the printable.
    The bill contains large amounts of text and as far as I know graphics and graphics2D only have drawString() as method to draw a string, and on top of that it does not support the newline char, so is there a way to print large amounts of text in another way ?
    also, since I'm using numbers and currency, would it be possible to alight text, so that it ends up like this:
    name of item          100.00 Euros
    name of other item       1.00 Euronicely aligned to the left for the names, and to the right for the numbers, the problem is that i'd like to keep that in a nonfixed width font, so calculating the needed position will be hard.
    thanks in advance,
    Boran.

    Within the 2D Graphics system there are methods for dealing with this. Check out the AttrributedCharacterIterator class and the TextLayout class. A good read is
    'Java 2D Graphics' by Jonathan Knudsen published by O'Reilly ISBN 1-56592-484-3 .

  • InDesign (CS 5.5) won't print fonts from a file that prints correctly in CS 3

    Hello,
    I installed CS 5.5 last night and installed all of the updates (on Windows XP with SP3). I have an Okidata B4300 laser printer with Postscript 3 emulation installed. Several typefaces (both True Type and Open Type, 4 fonts tested so far) are not printing from InDesign CS 5.5, but when I open the same file in CS 3, it prints correctly. All of the fonts are installed in the Windows font folder and have worked for years. No printing errors in Photoshop CS 5.5 or in Word.
    I've been going through the "troubleshoot printing/PDF export problems in InDesign" guide, focusing on the application level. Here's what I've done so far:
    1. Restarted the program, printer, system
    2. Did a disk cleanup, defragmented the system, and ran an error check
    3. Recreated the InDesign preference files
    4. Downloaded the Adobe Universal Postscript Windows Driver
    Each time I try to print my test file, I encounter the same error--
    Error: undefined
    Offending command: @FS
    Stack:
    6.81257
    4.60767
    9.74377
    9.86353
    -mark-
    And then, in parentheses, it prints the text that should have printed.
    Does anyone know how to fix this?
    Thanks for your help.
    Jill Shultz

    Hi Dov,
    Just to double-check: you meant delete the Adobe Universal PS Driver and reinstall the Okidata PS driver, right?
    I wasn't complaining about the situation; if there was anything in the tone of my message that pricked, I'm sorry. I know Adobe doesn't purposefully cause problems or make its software unnecessarily picky. That would be bad business. And I only asked about the possibility of a glitch because I was working with my back turned away from this CPU as it did the installation, so if there had been a momentary warning, I would likely have missed it. Glitches happen, even to the best software.
    I was asking questions hoping for another test that might provide a definitive answer. I know that doesn't always happen when troubleshooting, but it's a lovely goal, especially with the looming specter of hardware replacement.
    The Oki printer has been a workhorse under heavy use, so I wouldn't replace it unless it was really necessary. In fact, if the reinstallation of the Oki driver doesn't fix the problem, then I'll probably test all of the typefaces to see which ones work straight up and which require the PDF workaround. I might live with the problem for a while.
    Is there any info on the Adobe site about which printers implement PS correctly?
    Thanks for all of your help!
    Jill

  • How to print item from within app?

    How can I create a discrete text element inside an ipad app that can be printed? Something like shopping list etc
    Would also like to be able to email to self and/or share. Using dps cc, app for ipad only.
    thx for any tips!

    We do not support printing in DPS. Single Edition applications do not support sharing.
    Neil

  • Trying to Assign Return Value from DB Adapter that calls a Database Functio

    We have a BPEL process in which we have set up a DB Adapter to call a function in the Database and return the value (the actual value being returned is Workers=14 Hours=36 Vehicles=2). When we try to assign that returned value to a string value which will show in our task list , the below seems to assign the follwing -<crewsize xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <GCS_LAB_VEH_CNT_FUNC xmlns="">Workers=14 Hours=36 Vehicles=2
    </GCS_LAB_VEH_CNT_FUNC>
    </crewsize>, and then whe it shows in the task, crewsize is blank.. What are we doing wrong??
    Bonnie and Rox
    Assign_gcs_veh_hrs
    [2008/01/31 09:37:10] Updated variable "Invoke_gcs_veh_hrs_get_gcs_veh_hrs_InputVariable"less
    -<Invoke_gcs_veh_hrs_get_gcs_veh_hrs_InputVariable>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="InputParameters">
    -<InputParameters xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/EPAGES/GCS_LAB_VEH_CNT_FUNC/">
    <P_PROJ_ID>85504
    </P_PROJ_ID>
    <P_PHASE_ID/>
    <P_PE_ID/>
    </InputParameters>
    </part>
    </Invoke_gcs_veh_hrs_get_gcs_veh_hrs_InputVariable>
    [2008/01/31 09:37:10] Updated variable "Invoke_gcs_veh_hrs_get_gcs_veh_hrs_InputVariable" More...
    -<Invoke_gcs_veh_hrs_get_gcs_veh_hrs_InputVariable>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="InputParameters">
    -<InputParameters xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/EPAGES/GCS_LAB_VEH_CNT_FUNC/">
    <P_PROJ_ID>85504
    </P_PROJ_ID>
    <P_PHASE_ID>1
    </P_PHASE_ID>
    <P_PE_ID/>
    </InputParameters>
    </part>
    </Invoke_gcs_veh_hrs_get_gcs_veh_hrs_InputVariable>
    [2008/01/31 09:37:10] Updated variable "Invoke_gcs_veh_hrs_get_gcs_veh_hrs_InputVariable"less
    -<Invoke_gcs_veh_hrs_get_gcs_veh_hrs_InputVariable>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="InputParameters">
    -<InputParameters xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/EPAGES/GCS_LAB_VEH_CNT_FUNC/">
    <P_PROJ_ID>85504
    </P_PROJ_ID>
    <P_PHASE_ID>1
    </P_PHASE_ID>
    <P_PE_ID>1
    </P_PE_ID>
    </InputParameters>
    </part>
    </Invoke_gcs_veh_hrs_get_gcs_veh_hrs_InputVariable>
    Invoke_gcs_veh_hrs
    [2008/01/31 09:37:13] Invoked 2-way operation "get_gcs_veh_hrs" on partner "get_gcs_veh_hrs".less
    -<messages>
    -<Invoke_gcs_veh_hrs_get_gcs_veh_hrs_InputVariable>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="InputParameters">
    -<InputParameters xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/EPAGES/GCS_LAB_VEH_CNT_FUNC/">
    <P_PROJ_ID>85504
    </P_PROJ_ID>
    <P_PHASE_ID>1
    </P_PHASE_ID>
    <P_PE_ID>1
    </P_PE_ID>
    </InputParameters>
    </part>
    </Invoke_gcs_veh_hrs_get_gcs_veh_hrs_InputVariable>
    -<Invoke_gcs_veh_hrs_get_gcs_veh_hrs_OutputVariable>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="OutputParameters">
    -<db:OutputParameters xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:db="http://xmlns.oracle.com/pcbpel/adapter/db/EPAGES/GCS_LAB_VEH_CNT_FUNC/">
    <GCS_LAB_VEH_CNT_FUNC>Workers=14 Hours=36 Vehicles=2
    </GCS_LAB_VEH_CNT_FUNC>
    </db:OutputParameters>
    </part>
    <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="response-headers">[]
    </part>
    </Invoke_gcs_veh_hrs_get_gcs_veh_hrs_OutputVariable>
    </messages>
    Assign_gcs_veh_hrs_out
    [2008/01/31 09:37:13] Updated variable "outputVariable"less
    -<outputVariable>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="payload">
    -<BranchCritChg1ProcessResponse xmlns="http://xmlns.oracle.com/BranchCritChg1">
    <moveid/>
    <customer/>
    <packcount/>
    <carrierref/>
    <transferee/>
    <projid>85504
    </projid>
    <weight/>
    -<crewsize xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <GCS_LAB_VEH_CNT_FUNC xmlns="">Workers=14 Hours=36 Vehicles=2
    </GCS_LAB_VEH_CNT_FUNC>
    </crewsize>
    <phaseid>1
    </phaseid>
    <miles/>
    <vehicles/>
    <eventid>1
    </eventid>
    <authority/>
    <liftvans/>
    <ritsreg/>
    <goodstype/>
    <containernum/>
    <request1>Start Time: 03/31/2007 02:25 PM
    </request1>
    <current/>
    <request2/>
    <request3/>
    <request4/>
    <request5/>
    <request6/>
    <request7/>
    <comments/>
    <dispatch_group/>
    </BranchCritChg1ProcessResponse>
    </part>
    </outputVariable

    Hello Rajesh,
    I do not know if this is the problem in your case, but I would look at the source XML:
    <db:OutputParameters xmlns:...
    As you can see, the namespace for the db:OutputParameters is db, while you are referring to ns11:OutputParameters in your xpath expression;
    getVariableData('InvokeGetItems_GetItemDetails_OutputVariable_1','OutputParameters','/ns11:OutputParameters/ns11:P_ITEMNAME_O')
    So I would try to change ns11:OutputParameters to db:OutputParameters, and see if you get lucky?
    Cheers,
    Rune

  • Printing To PDF Printer Driver from within a program

    Does the Adobe PDF Printer Driver allow parameters for file name and no display of resulting PDF.  I want to print to it and create a specifically named file without being asked for the filename and with a 'preview' display.  If I cannot do this, what do I need?  Is there an SDK, and if so, is there a run time that can be distributed without royalty along with apps developed using the SDK.  I generally use GDPicture control for this but wondered if I could do it with Acrobat.

    Please ask in the Acrobat SDK forum.

  • Adobe has stopped auto loading when I choose " print " option on a website that provides me with a PDF format statement. Mozilla or Adobe setting?

    Both mozilla and Adobe have been updated. Should I be looking into Adobe or Firefox for a setting change to enable adobe to be auto loaded when accessing a PDF format statement by a "print" button on a website?

    This is on your Android device? Does Firefox show that it is downloading the PDF? Usually that will appear first and then the file will be launched in the Adobe app. If nothing happens after it is downloaded, does it appear on the Downloads list on the menu and, of so, can you open it normally from there or is that also not working?
    (If you are asking about a different platform, please provide more information on which one it is.)

Maybe you are looking for

  • Opening more than one site at a time

    I hope I'm at the right discussion group. I wouldd like to know how to open more than one site or page at the same time w/o losing one when I go to another site/page, which right now, entails punching in the previous info into iGoogle again, and subs

  • File transfer problem during ISE 1.3 upgrade

    We have problem running the upgrade command: iseadm01/admin# application upgrade cleanup Application upgrade preparation directory cleanup successful iseadm01/admin# application upgrade prepare ise-upgradebundle-1.2.x-to-1.3.0.876.x86_64.tar.gz FTP G

  • Where to  find the pcui_gp  components ,How to get the source code of those

    Hi All, Can anybody tell the exact location wher the pcui_gp components will be stored if they are  not appearing. And another question is how to get the source code of the pcui_gp for customization. anybody working on these compoents please help me.

  • Why does my hp officejet pro L7680 gives me a message"Close document feeder cover"? It is not open?

    [Message from the moderator]: If this post was not left blank intentionally, please try using another browser to edit and fix this post or to reply to the thread.  You can also try using IE9 in compatibility mode.

  • String usage in interactive PDF on R/3

    Hi there, I have set up an interactive PDF which uses a table of strings. The output is fine, but once the data has been entered into the form and that the form is uploaded into the system, I get an error on the string table : XML - Error in ABAP for