Output device-preview screen

So i am looking to buy a preview screen for editing. what should i get, not too expensive but nice?

http://www.matrox.com/video/products/mxo/home.cfm
The cam is pretty new, so you might start here.
However, the Matrox is a grand and then a HD monitor also will set you back

Similar Messages

  • How to avoid the screen of selection output device

    Hi all,
    Who can tell me how to avoid the screen selection output device when running a smartform.
    Best regard.

    Hi,
          data: wa_SSFCTRLOP  type SSFCTRLOP.
           wa_SSFCTRLOP-DEVICE = 'PRINTER'.
           wa_SSFCTRLOP-NO_DIALOG =  'X'.
           wa_SSFCTRLOP-PREVIEW = 'X'.
        in the function module
       call function '....
       exporting
       CONTROL_PARAMETERS = wa_ssfctrlop
    regards,
    Santosh Thorat

  • Skip selection screen output device

    Hi Guys,
    Question. Is there anyway that i could skip the output device screen selection and straight go to 'print preview'? at the same i wish to set the printer to 'LOCL'. Thanks in advance
    Regards

    hi ,
    In your sap script you would be having open form,write form and close form you have to declare before open form...
    i have pasted a sample code here you can check it.....
    REPORT  ZV_DELIVERY_SLIP_PRINT                  .
    Tables:
    tables: likp,vbak,adrc,vbpa,kna1,sadr,ITCPO,LIPS.
    parameters: p_vbeln like likp-vbeln obligatory,
                p_proj(50) type C,
                p_node(50) type c,
                p_pal(50) type c default 'PALLET 1 of 2',
                p_ldest like nast-ldest default 'LOCL',
                p_imme type c default 'X'.
    Start-of-selection.
      perform 100_collect_db_recs.
      perform 200_collect_adrc_details.
    *&      Form  100_collect_db_recs
          text
    -->  p1        text
    <--  p2        text
    FORM 100_collect_db_recs .
      select single * from LIPS where vbeln = p_vbeln.
      if sy-subrc ne 0.
        write:/02 'Delivery does not exist!'.
        stop.
      else.
        select single * from vbak where vbeln = lips-vgbel.
        if sy-subrc ne 0.
          write:/02 'Sales Order does not exist!'.
        endif.
      endif.
    ENDFORM.                    " 100_collect_db_recs
    *&      Form  200_collect_adrc_details
          text
    -->  p1        text
    <--  p2        text
    FORM 200_collect_adrc_details .
      SELECT SINGLE *
      FROM VBAK
      WHERE VBELN EQ vbak-kunnr.
      SELECT SINGLE *
      FROM KNA1
      WHERE KUNNR EQ vbak-kunnr.
      SELECT SINGLE ADRNR
        INTO vbpa-adrnr
        FROM VBPA
       WHERE VBELN EQ vbak-vbeln
         AND PARVW EQ 'WE'.              " Sold to party.
      SELECT SINGLE NAME1
        INTO sadr-name1
        FROM SADR
       WHERE ADRNR EQ vbpa-ADRNR.
      SELECT NAME1 NAME2 NAME3 NAME4 STREET CITY1 CITY2 PO_BOX
                                 STR_SUPPL1 POST_CODE1 FROM
        ADRC INTO (ADRC-NAME1, ADRC-NAME2,ADRC-NAME3,ADRC-NAME4,
                    ADRC-STREET,ADRC-CITY1,ADRC-CITY2,ADRC-PO_BOX,
                    ADRC-STR_SUPPL1,ADRC-POST_CODE1)
                    WHERE ADDRNUMBER = vbpa-ADRNR.
        EXIT.
      ENDSELECT.
      if sy-subrc = 0.
        perform open_form.
        perform start_form.
        perform write_form.
        perform end_form.
        perform close_form.
        Write:/02 'Delivery Label Printed!'.
      else.
        write:/02 'Error Collecting Address Details!'.
      endif.
    ENDFORM.                    " 200_collect_adrc_details
    *&      Form  open_form
          text
    -->  p1        text
    <--  p2        text
    FORM open_form .
      itcpo-tdnewid = 'X'.
      itcpo-tdimmed = p_imme.
      itcpo-tddest  = 'LOCL'.
      itcpo-tddataset = 'DELB'.
      itcpo-tdsuffix1 = p_ldest.
      itcpo-tdsuffix2 = lips-vbeln.
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          application                 = 'TX'
         archive_index               = space
         archive_params              = space
          device                      = 'PRINTER'
          dialog                      = ' '
          form                        = 'ZV_DEL_LABEL'
          language                    = sy-langu
          options                     = itcpo
        EXCEPTIONS
          canceled                    = 1
          device                      = 2
          form                        = 3
          options                     = 4
          unclosed                    = 5
          mail_options                = 6
          archive_error               = 7
          invalid_fax_number          = 8
          more_params_needed_in_batch = 9
          OTHERS                      = 10.
      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.                    " open_form
    *&      Form  start_form
          text
    -->  p1        text
    <--  p2        text
    FORM start_form .
      CALL FUNCTION 'START_FORM'
        EXPORTING
          startpage = 'FIRST'
        EXCEPTIONS
          form      = 1
          format    = 2
          unended   = 3
          unopened  = 4
          unused    = 5
          OTHERS    = 6.
      IF sy-subrc <> 0.
      ENDIF.
    ENDFORM.                    " start_form
    *&      Form  write_form
          text
    -->  p1        text
    <--  p2        text
    FORM write_form .
      CALL FUNCTION 'WRITE_FORM'
            EXPORTING
                 element                  = 'TEXT'
                 function                 = 'SET'
                 type                     = 'BODY'
                 window                   = 'MAIN'
       IMPORTING
            PENDING_LINES            =
            EXCEPTIONS
                 element                  = 1
                 function                 = 2
                 type                     = 3
                 unopened                 = 4
                 unstarted                = 5
                 window                   = 6
                 bad_pageformat_for_print = 7
                 OTHERS                   = 8
      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.                    " write_form
    *&      Form  end_form
          text
    -->  p1        text
    <--  p2        text
    FORM end_form .
      CALL FUNCTION 'END_FORM'
        EXCEPTIONS
          unopened                 = 1
          bad_pageformat_for_print = 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.                    " end_form
    *&      Form  close_form
          text
    -->  p1        text
    <--  p2        text
    FORM close_form .
      CALL FUNCTION 'CLOSE_FORM'
        EXCEPTIONS
          unopened                 = 1
          bad_pageformat_for_print = 2
          send_error               = 3
          OTHERS                   = 4.
      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.                    " close_form
    regards,
    karthik.

  • Could not turn on Screen mirroring. The output device is not ready or does not support HDCP

    i tried it on my tv sony bravia w700b with my new xperia z1 
    i didnt unlocked my bootloder or i didnt rooted my phone
    dont know whats the problem is
    'Could not turn on Screen mirroring. The output device is not ready or does not support HDCP'. can anybody able to tell how can I resolve this please?

    Have you checked if your device does support HDCP? I looked at https://www.iezvu.com/ezcast.php?l=en but i'm afraid i can't find any detailed specification for it.
    If you have unlocked your bootloader this may also be the cause for this issue.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Output device tddest in smartforms

    Hi,
    I am using smartforms to convert the otf data to pdf. The coding is as follows:
    * Set the Parameters of smartform
      l_s_ssfctrlop-no_dialog   = 'X'.
      l_s_ssfctrlop-getotf      = 'X'.
      l_s_output_options-tdnoprint = 'X'.
    * call FM to get the name of the FM of smart for smart form
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = g_form_name
        IMPORTING
          fm_name            = l_fm_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 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.
      CALL FUNCTION l_fm_name
        EXPORTING
          control_parameters = l_s_ssfctrlop
          output_options     = l_s_output_options
          user_settings      = ' '
        IMPORTING
          job_output_info    = l_s_job_output_info
        TABLES
          g_t_datatab        = g_t_datatab
        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.
      REFRESH g_t_pdf_tab.
    *Convert to OTF Format
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
        IMPORTING
          bin_filesize          = l_byte_count
        TABLES
          otf                   = l_s_job_output_info-otfdata[]
          lines                 = g_t_pdf_tab
        EXCEPTIONS
          err_max_linewidth     = 1
          err_format            = 2
          err_conv_not_possible = 3
          OTHERS                = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    I am not passing tddest (output device) to 'l_s_output_options' as I don't want to print it.
    I just want to convert the otf data obtained to pdf and use it for further processing.
    Will there be any problem if I don't assign any ouput device.
    Please note that in the system ouput device 'LOCL' is not maintained.
    Thanks,
    Soumya.

    Hi Valerie,
    I am using below code to get the printer name by default , even i want to skip that screen that asks for the printer name. But am unable to get this requirement. I have tried with various combinations but its not working. Please suggest.
    control-preview = 'X'.
    control-no_dialog = SPACE.
    output_options-tddest = 'LP01'.
      CALL FUNCTION lv_fmname
    EXPORTING
    output_options     = output_options
    contol             = control
      p_matnr            = p_matnr
      user_settings      = 'X'
        TABLES
      gt_stpo            = gt_stpo
      EXCEPTIONS
        formatting_error   = 1
        internal_error     = 2
         send_error         = 3
         user_cancelled     = 4
         OTHERS             = 5.
    Thanks & Regards
    Jatin

  • HELP ASAP! no audio output device installed with hp pavilion dv2500

    product name: hp pavilion dv2000
    model number: dv2710us
    product number:2CE75228LJ
    windows vista home premium 32bit
    my hp keeps telling that  have no audio output device installed and theres the the image for volume with a large red circle with a white x in it.
    this is not true because i have contexant  (i think that's what it is called) speakers installed.
    Lately when i would restart my computer the sound would work intermittently but for the past two days whether i restart my computer or not the image for volume with a large red circle with a white x in it is still there and says no audio output device installed. PLEASE HELP!
    This question was solved.
    View Solution.

    Hi, you can try the below steps to resolve the issue :
    Step 1 : Re-install audio drivers from HP Recovery Manager.
    1. Click Start, in the Start search box, type recovery . Then click Recovery Manager .
    2. In the Recovery Manager window that displays, click Next. On the Reinstall software programs that came with your computer screen, click No, I would like to see other options . Then click Next .
    3. In the Reinstall hardware drivers screen, click Yes . Then click Next. On the Welcome to Hardware Driver Reinstaller screen, click Next .
    4. In the driver list, select the name of the sound adapter installed on the system. Then click Next. When complete, the Reinstallation is complete screen displays. Click Finish to restart the computer. After the computer starts, test for sound. If the issue persists perform step 2.
    Step 2 : Re-install audio drivers manually
    If there is no sound and the error still displays, update the audio driver from the weblink below :
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-63129-1&cc=us&dlc=en&lc=en&...
    Step 3 : Restart the Windows Audio Service.
    1. Click Start , type services.msc into the search field, and then select services.msc from the list when it becomes available to open the Programs window.
    2. Scroll down to and select Windows Audio , right-click to open the drop-down menu, and then click Start .
    3. Right-click Windows Audio , click Properties , and then verify that Startup Type is set to Automatic .
    Restart the Notebook and check for the issue.
    ****Click the White Kudos star to say thanks****
    ****Please mark Accept As Solution if it solves your problem****

  • How can I get my audio input and output devices back? I have no sound and cannot see any of the devices in Audio MIDI Setup..??

    Hi, I tried to set up a new output audio device on my mac that would have multiple outputs (iBox Twist speaker and my internal speaker) but when I went to click onto one of the iBox Twist (there were 2 options available: iBox Twist and iBox Twist Stereo), Audio MIDI Setup crashed and when I finally got that back open, I found that there were no audio input or output devices to be found. My sound is working, as when I turn on my iMac, the starting sound still plays, however the volume control in the menu bar is no longer a black colour, but grey and when I try to change the sound on my keyboard it does not change. This already happened to me once, and after 3 hours I managed to fix it very simply (switching off Mac, unplugging power cord, leaving for 15 seconds, plug power cord back in and switch Mac back on, holding Alt, Cmd, P and R keys until you hear the Starting Up sound twice) however this same technique that fixed it once before is not working this time and I am still stuck without sound. I have tried Repair Permissions, rebooting in Safe Mode, Hardware Test and checking for Software Updates. Has anyone else had this problem and managed to fix it?
    Thanks in advance for any help anyone can give me!

    In case anyone has had the same problem as me, I have just managed to fix this by doing the following:
    Switch off Mac
    Switch back on in Safe Mode (Hit power button, then hold Shift key until a loading bar appears at the bottom of the screen).
    Switch off Mac again
    Remove power cord and wait 15 seconds
    Plug power cord back in and hold down the keys alt, cmd, p, r all at the same time until you hear Starting chime for a second time and hopefully your audio will back.

  • Apple TV worked until today. Message says unsupported signal check your output device.  I have checked hdmi cable with another device and it's fine. Put on a different tv and same message.  Went out yesterday and bought a new Apple TV and same problem.

    Apple TV worked until today. Message says unsupported signal check your output device.  I have checked hdmi cable with another device and it's fine. Put on a different tv and same message.  Went out yesterday and bought a new Apple TV and same problem.

    Which TV do you have.
    You may wish to try the following:
    Press and hold the menu and the up button simultaneously on the remote for six seconds, the Apple TV should then begin to cycle through the various resolutions available to it at 20 second intervals.. If you see a picture appear up on your screen, use the remote to scroll down to the OK option and select it.

  • No longer able to mute or change playback output device for capture.

    I have no preview button to turn off in my capture window and have instead gone into the FCP preferences to change the playback output device to something other then my Fireface800 IO device, such as the built in output so that what's being captured only comes out the little speaker in the tower.
    Thus I am free to work on other stuff. (8 core mac pro, gobs of ram, multitasking has never been a problem, even while capturing HD.)
    But as of the latest update (I keep all my apps up to date), capture plays through the System default device no mater what the FCP setting. So with out a mute button for the capture, I'm screwed.
    I'm screwed because I have to Mix down an EP while I capture 26 hours of conference footage at the same time. Obviously, I can't mix properly with that chatter playing loudly over it.
    Apple said I have to reinstall because there's no preview button and there should be but I am curious if there's any other way (because it's a huge pain in the *** and tends to screw up other things) and I would like to know if the way I usually do it is broken for other people, so I know if I can upgrade to the latest version again because it was some goofball problem with the framework that reinstalling fixed or if not because that's a bug in 7.0.3
    1. Choose one audio output (say, Built in Line Output or your default sound card) everywhere that matters in the Final Cut preferences for Audio output, including Audio Playback Output which is what I've been using to switch this for, gosh, years probably just out of habit.
    2. Log and Capture, capture some footage from tape. (I happen to be working with a basic HDV firewire profile.) What device do you hear output from?
    3. Stop capturing... and, if you wish, for good measure, close the capture window.
    4. Go back to FCP preferences, now choose a DIFFERENT audio output, say, Built In Speaker Output.
    5. Try to capture some footage. Is the sound coming out of the built in speaker now?
    IS THERE ANY OTHER WAY TO QUICKLY SILENCE THE AUDIO FROM FCP DURING CAPTURE?
    Thank you.

    excuse me, not linksystem, its a verizon FIOS wireless router &amp; modem as part of the package. i was thinking my old setup.
    new system...cant edit my posts....?

  • NO OUTPUT DEVICE ERROR

    Hi Guys Yesterday i reinstalled os x and my audio was working properly.....
    But from today morning i got no output device error.....it also doesnot work in headphones.... someone do help...thank u....

    There are many possible causes for this issue. Take each of the following steps that you haven't already tried. Back up all data before making any changes.
    1. Start with the steps recommended in this support article. Don't skip any of the steps. It's the starting point for further efforts to solve the problem.
    2. Run Software Update and make sure you have a fully up-to-date installation of OS X.
    3. If you've installed an application called "Memory Clean" or any other third-party software that is supposed to "clean" or "purge" memory automatically, remove it according to the developer's instructions and restart. You should do that even if the software is not causing the problem, because it's useless.
    4. Other third-party software that has been reported to interfere with sound output includes "Boom" and "Samsung Kies." If applicable, uninstall according to the developer's instructions (not by dragging something to the Trash.)
    5. If an AirPlay device is selected for sound output from iTunes (or from other applications via third-party software such as "Airfoil"), deselect it.
    6. Launch the application "Audio MIDI Setup" by entering the first few letters of its name in a Spotlight search and selecting it in the results (it should be at the top.) Select Built-in Output from the list on the left. If the Mute boxes are checked, uncheck them.
    7. If a red light is coming from the audio-out port, the internal switch is stuck in the position for digital output. You may be able to free it by inserting and removing a mini-stereo jack of the proper size. Inserting any kind of tool in the port may cause damage that won't be covered by your warranty.
    If there's no red light, the switch may still be stuck in the headphone position. Try to free it the same way.
    8. Disconnect all wired peripherals except keyboard and mouse, if applicable. If more than one display is connected, disconnect all extra ones. Restart and test.
    9. If you have a MacBook Air, turn off Bluetooth and restart.
    10. Start up in safe mode. Don't log in; just restart as usual when the login screen appears. When you do, make sure the words "Safe Boot" do not appear in the login screen. If they do, the system is still in safe mode and sound won't work.
    11. Reset the NVRAM.
    12. Reset the SMC.
    13. Triple-click anywhere in the line below on this page to select it:
    /Library/Preferences/Audio
    Right-click or control-click the highlighted line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Move the selected item to the Trash. You may be prompted for your administrator login password. Restart the computer and empty the Trash. Recreate your settings in the Sound preference pane.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    14. Reinstall OS X after backing up all data.
    15. Make a "Genius" appointment at an Apple Store.

  • Hi there, can anyone tell me how to make make Garageband ignore HDMI as an audio output-device on a 2013 Mac Mini? Now it keeps on prompting me: Do you want want to use the HDMI device (monitor without audio) for audio output? Thanks in advance, Grtz T.

    Hi there,
    Can anyone tell me how to make make Garageband ignore HDMI as an audio output-device on a 2013 Mac mini i7 using an Apogee jam as an input for bass and a Behringer USB DAC with RCA audio output? Now it keeps on prompting me: Do you want want to use the HDMI device (monitor without audio) for audio output? I'm also suffering massive audio lag issues with the Apogee jam after waking the mini from sleepmode, wich pretty much renders it useless.
    Thanks in advance,
    Grtz T.

    I think the easiest way to do this is to have the EyeTV app running in one user account and sent via HDMI to the TV, and use a separate user account for Screen Sharing. Both logins can be active at the same time and with Lion you can connect via screen sharing to which ever login you need.
    With regards to the Mac video resolution changing, when it is not the current input on your AV receiver. This is 'normal', if the Mac sees no signal it drops down the a lower level. What you need is to buy a HDMI Detective Plus which tricks the Mac in to always seeing a signal and hence it will not drop down the resolution. See http://www.gefen.com/kvm/dproduct.jsp?prod_id=8005
    The Mac mini does have an IR receiver. This can be used with the EyeTV app, iTunes, and similar. Yes I believe EyeTV would run for prolonged periods quite happily, it is has been around for a long time and had most of the rough edges polished off. However one issue you will have to deal with is that it does not automatically update its program guide data. For this you might have to write or modify an AppleScript. Elgato support or their user forums will be a lot of help.
    You can set EyeTV to convert recordings to an iTunes (Apple TV) compatible format and then delete them from EyeTV.
    The HDMI Detective should solve your handshaking problems.

  • Output device not listed.

    What if my sound output device not listed? Trying to connect my MacBookPro 17" (mid 2010) to my tv. Video plays. I have connected digital audio cable to both tv n Mac. When I go to sound in system preference (after cord was plugged in) nothing listed. 

    Very well stated.  And, sometimes I do forget that there is still such a thing as celluloid.  Not to mention all the new "K"s that RED is coming up with (aren't they working on something like 27 or 28k now?)  When I look at it from that point of view, what you say makes perfect sense.
    But then why does preferences>video preview in After Effects give me the "output device" option of IEEE 1394 at NTSC 720x480?  This leads me to believe that I could plug a deck into 1394 and get a video preview.  If this is the case, then my way of thinking says it should offer other options for "output device".
    When I first set up Premiere Pro CS4, the playback settings did not list the HDMI HDTV as an external monitor option.  It wasn't until I fooled around with the system's display settings and turned the HDTV into an extention of the desktop that suddenly Premiere Pro listed it as a possible external monitor.  So, my history there (and my goofy sense of logic that makes perfect sense to me) has me wondering if a similar sequence of messing with the display options is suddenly going to make AE see the HDTV as an "output device".  I am not interested in realtime playback, merely the closest reference possible as to what my video image looks like in HD on an external monitor.  I ask "why do I need a separate video card like my old Matrox card, when standard graphics cards these days can handle HD & even have HDMI out?"
    Admittedly, I know next to nothing about the complexity & inner workings of software and computer components.  Why, I was ready to throw a party just because I successfully installed an additional hard drive in my new computer.  I must be like one of my own clients who don't understand why we can't easily separate a voice track from a music track when it's been rendered as one .mp3 file...or why we can't quickly cut a person out of a video layer and make them seamlessly interact with footage of JFK, Zemekis-style.

  • Output device setting

    hii frnds
    can anybody tell me were can we do the output device setting in sap . i mean when i am trying to print my layout i am not able to print it . but i can c my print preview perfectly . i trying to display my print out with tcode iw32 for work order
    thanx
    rohit

    Hi Rohith,
    When u use Printer LOCL, what is the message you are getting, if you are getting this message 'Spool request (number 0000021635) created without immediate output', then goto Menu-><b>System->Own Spool Request</b>, select the spool and click on the Print Icon in the application tool bar.
    Cheers...
    Santosh.
    <i><b>Reward Points for All Usefull Answers.</b></i>

  • Smartforms, Output device WA_EKPO-NETPR not defined., ME9F

    Hi
    I am creating a form of purchase order, I am trying to have the price printed, but I have the following message when I try to print:
    Output device WA_EKPO-NETPR not defined.
    Message no. SSFCOMPOSER011
    Diagnosis
    The output device specified is not known in the SAP System. Valid output devices are maintained in spool administration.
    System Response
    The system issues an error message.
    Procedure
    Choose an output device from the possible entries help on the printer dialog box.
    Procedure for System Administration
    Check the output devices defined in spool administration.
    thanks

    hi, i guess you havent defined your printer (i.e) output type.
    if you use driver program then when you call your sf just insert the below code.
    also please check your reference field
    NETPR in > global declaration >Currency / Quant. Fields and select either currency or quantity.
      call function 'SSF_FUNCTION_MODULE_NAME'
              exporting
                formname                 = f_sf_formname
    *   VARIANT                  = ' '
    *   DIRECT_CALL              = ' '
              importing
                fm_name                  =  f_sf_fmname
             exceptions
               no_form                  = 1
               no_function_module       = 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.
    st_control_parameters-no_dialog = 'X'.
    st_control_parameters-preview = 'X'.
    st_output_options-tddest = 'WINDEFAULT'.
    and also please check your smartform -> form attributes -> output tab page format and also check output format.
    regards,
    koolspy.

  • Email Address not visible for output device MAIL in created batch job

    Issue in ECC6.0: Email Address not visible to display/change for output device MAIL in print parameter of each step in the created batch job.
    User wants to periodically receive report file via send to his email, so I create the batch job running report and send the report in pdf file to his email.
    Detail in the batch job
    1) In print parameter screen of the step in the batch job
       -Using output device MAIL (output type ZPDF1)
       -inputting email address of receiver in the EMAIL ADDRESS field
    2) After the batch job was saved, I tried to display/change the field EMAIL ADDRESS via Tx. SM37, but this field is invisible. The field can not be displayed or changed anymore. I also tried in SM36, but it is for creating new batch job, not changing the existing batch job.
    4) User receives email with pdf file from the batch job.
    How to change/display the email address of the receiver in the created batch job?
    Note that we just changed to use SAP ECC6 from SAP 4.6c. In SAP 4.6c, we can change/display the
    Email Address Field via Tx. SM37.
    Pls kindly suggest, thank you very much in advance.

    Hi Srirompoti,
    After saving the job if the job has not started then you can follow the below steps to change the Email address.
    1. View the job from Txn SM37.
    2. check the check box for your job that you want to change and goto menu path "Job->change
    3. in the next screen goto "Edit->steps." or press "F6" key
    4. place the coursor on the job and goto menu path "Step->change->print specifications.
    5. here you can change the email address.
    If you are not able change the data then you might not have authorization.

Maybe you are looking for

  • How to make English and Chinese pdf files searchable?

    I have scanned many A4 English and Chinese print-outs into pdf format.  How to make these files searchable ? People mention about the OCR issue. Will the installation of Adobe make life easy and manageable?

  • How to use a usb with bootcamp on a computer with a cd drive

    I have a macbook pro late 2011 and I want to install windows on it. I dont have any cds or dvds that I can burn and I want to be able to use a usb instead. I found another post which lets me make a bootable windows 8 usb but when I try to install it

  • Embedding Fonts in Acrobat 9 Pro

    I'm using the trial version of Acrobat to work on a project, and I'm having trouble embedding the fonts. I'm following the instructions provided in the online documentation, and I can select the text with the Touchup Text Tool, but that's where I get

  • Can I append an XML Document into another?

    I have a large xml document which I open into coldfusion (mx 7), and then a smaller group of files that are opened into thier own xml objects. After some customization of xml text values, I want to append the smaller xml documents into the larger doc

  • Channel Determination Failure

    I have a RFC -> XI -> SOAP scenario. When I attempt to send a test message in RWB, I get a Channel Determination Failure message for the receiver (SOAP comm. channel). Looks like the Receiver channel has been started but is not used. Both the sender