SD : How to trigger Outputs?

We have made a Z output type ZXXX of Customer PO ack type. The requirement is to trigger this output on the scenarios below and a few other sceniarios
1) Schedule quantity changes
2) Scheduled date changes
Can anyone please advice me as to how and where to go about coding for this. Thanks in advance.

Hi Sumit
Go to VOFM and Requirements---->output control.
Create a New Routine and code your conditions there. basically you need to set some flags when Schedule line quantity changes or schedule line date is changed in the user exit MV45AFZZ and move those flags into the Communication structure for Sales order output KOMKBV1.
Hope this helps.
Thanks

Similar Messages

  • How to trigger crystal report from SAP ECC

    Hi All,
    I hope i m right forum to ask this question.
    we want to do label printing from Crystal reports. data will be present in SAP ECC .
    So I below issues
    1 ) how to connect SAP ECC database with Crystal Reports.
    2 ) how to trigger print output in Crystal reports from ECC , lets say I create a Delivery In ECC , the print output will be issued to Crystal report and I should get a print out Immediately ( for printing - printer will be connected to local system and SAP network printer ) .
    I have worked  with this type of scenario in smarforms , adobeforms. but not with Crystal Reports ...
    Regards
    Yashpal Gupta.

    Hi Yashpal,
    First thing you need to do is install the Connector on both your work station where you run Crystal Reports as well as the SAP Server where the data is.
    So I moved your post to the SAP Integration Kit forum.
    Need to know what version of Crystal Reports you are using?
    Search of browse here, lots of info on how to...
    Thanks
    Don

  • How to trigger Camera usinf IEEE1394

    Dear Readers,
     I am writing a code to trigger the camera externally.
    i am using the sony fire wire  camera  model no: XCD-X710CR. It has two input connectors. one is for the cable from PXI express which we uses IEEE1394, The another one is for Ext trigger.
    I wrote a Vi to snap an image through labview. I added Externall trigger.vi  immediately after Initiation.vi. In that code, whenever i set the trigger mode in "disabled" condition, i got the snap from camera. When i set the trigger mode as Mode0, Mode1 etc. i got an error message as "Timeout"
    I dont know to resolve this...... How to set the capturing time? I need some little more information regarding timing calculation etc....
    I connected the cable to ext trigger and checked with Osciloscope. I am getting an output voltage of 4V dc when the camera is not taking pictures(idle mode).
    Once i powered ON to take the pictures thro Maesurement and automation explorer am getting the result of oscillating voltage of 0-4V from trigger output poiint.
    I need to give the external trigger pulse to capture the image for my application. Whenever i apply the pulse of some varyiing voltage the camera have to capture the image that time. I need to program this concept in labVIEW.....
    I came to know whenever we write the vi accordingly, the internal oscillator gets reset and it allows the user to send trigger pulse externally.
    How to reset the internal oscilator of the camera?
    How to write the code in vi to complete this application?
    Moreover i have 100pin Digital I/O board. I need to give the Ext trigger pulse throgh I/O board. How to do that?
    i need some quality people's help to solve this problem....
    I attacehd the vi which i developed for this application.
    Guide me in this regard.
    Thanks in advance
    Regards,
    Deepak
    Attachments:
    Snap_Ext_trigger.vi ‏46 KB

    Hi,
    I am attaching a document which has details about acquiring from FireWire cameras, triggering etc. Please read the document. You might find the solution to your problem.
    Please revert if you have any further queries.
    Krishna Prasad
    Attachments:
    NI-Tutorial-2977.pdf ‏1061 KB

  • How can I output up to 7 tracks simultaneously?

    Hello esteemed GB community.
    I have to create a little effect for an upcoming party. For this I need to output the following:
    - at least 4 separate audio channels (stereo front and stereo rear)
    - one mono combination of these four tracks (to drive a Light organ gizmo - makes the light flicker with the audio)
    - and finally one separate track on which I will put pulses to trigger a relay for a fog machine.
    Setting up these tracks in GB should be fairly straigth forward (although my GB experience is very limited I've done a fair amount of audio mixing in FCP - which I imagine is similar) but my question is, how can I output all these tracks so I can feed them to their respective recipients? This means to two stereo setups for audio (or would it be easier to do 5.1 Dolby - $$$ ?) and then to the light organ and to the relay trigger for the fogger.
    I did a search for multitrack but most answers I found dealt mainly with input, not output. I imagine this will require some kinid of an external box, right?
    Budget for this box is very limited, hopefully less than $200. Quality does not have to be very high although a good bass response will be important for the effect.
    Thank you very much for any help.
    Bo

    Thanks for your help, HT. Would Logic be a better choice than ProTools LE for this? (I know next to nothing about them I must confess...)
    I was just thinking, in the worst case scenario, I could just create the 6 audio tracks in GB, then output three stereo mp3 files (stereo front, stereo rear, 2 control tracks), dump each on a separate cheap mp3 player and get a controller that can remote start all of them at the same time...
    Does anyone know of such a cheap mp3 player that can be remote started via a wire connection to a relay? Is there another forum that deals with this kind of issue?
    Thanks again.
    Bo

  • How to trigger top-of-page in ALV Grid

    How to trigger Top-Of-Page in ALV Grid...
    can any one plese send the sample code...
    thanks.

    here is sample code. try this. u need to build an internal table and then call function commentary write and pass that internal table.
    *&      Form  TOP_OF_PAGE
          Top_of_page
    FORM top-of-page.                                           "#EC CALLED
    *ALV Header declarations
      DATA: lit_header TYPE slis_t_listheader,
            lwa_header TYPE slis_listheader.
    Title
      lwa_header-typ  = 'H'.
      lwa_header-info = text-013.
      APPEND lwa_header TO lit_header.
      CLEAR lwa_header.
    BOM Number
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
        EXPORTING
          input  = p_matnr
        IMPORTING
          output = gv_matnr.
    Pass BOM number
      lwa_header-typ  = 'S'.
      lwa_header-key = text-014.
      lwa_header-info = gv_matnr .
      APPEND lwa_header TO lit_header.
      CLEAR: lwa_header ,
             gv_matnr .
    BOM description
      lwa_header-typ  = 'S'.
      lwa_header-key = text-015 .
      lwa_header-info = gv_maktx .
      APPEND lwa_header TO lit_header.
      CLEAR: lwa_header.
    start/end date format MM/DD/YY
      lwa_header-typ  = 'S'.
      lwa_header-key = text-016 .
      CONCATENATE s_erdat-low+4(2) '/'
                  s_erdat-low+6(2) '/'
                  s_erdat-low(4) ' - '
                  s_erdat-high+4(2) '/'
                  s_erdat-high+6(2) '/'
                  s_erdat-high(4)
                  INTO lwa_header-info.
      APPEND lwa_header TO lit_header.
      CLEAR: lwa_header.
    Run Date of Report format MM/DD/YY
      lwa_header-typ  = 'S'.
      lwa_header-key = text-017 .
      CONCATENATE  sy-datum+4(2) '/'
                   sy-datum+6(2) '/'
                   sy-datum(4) INTO lwa_header-info .
      APPEND lwa_header TO lit_header.
      CLEAR: lwa_header.
    call function REUSE_ALV_COMMENTARY_WRITE to use TOP_OF_PAGE event.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = lit_header.
    ENDFORM .                              " FORM top-of-page.

  • Trigger output on Inbound Delivery Type

    Hello,
    I'd like to know if it's possible to trigger output on Inbound Delivery Item in SAP ERP. Reason I ask is that we want to trigger a label printout for every delivery item during goods receipt of the inbound delivery.
    I know I can trigger output on Inbound Delivery Header, but not sure how to get a printout per delivery item.
    Can anyone let me know if it's possible, and if so, how to set this up?
    Regards,
    Oliver

    Hi,
    I am not experienced in printing, and at first glance this does look difficult...
    Because in customizing you have two separate paths...
    The path given above from Warren, and then it splits:
    - Maintain Output Determination for Outbound Deliveries
      - Assign Output Determination Procedure
    - Maintain Output Determination for Inbound Deliveries
      - Assign Output Determination Procedure
    Now the difference in these two paths is that:
    - if you select the first one, you get a pop-up giving you a choice to "Assign Deliveries (header)" and "Assign delivery items",
    - if you select the second one, there is no further selection, you only see delivery types, and this is also filtered, only inbound deliviery types are shown.
    So it seems not possible.
    BUT: if you select the "Assign delivery item" option in the first path, you see ALL item types; also for inbound. So test it there, hope it works. (I suppose now that you know how to print, have all the determination, etc - yes, you wrote that you know it for outbound).
    Brgds
    Juergen

  • How to generate output requests (Print) from BSP ?

    How to trigger an Print output controller from BSP ?
    i have designed certification letter in BSP page and if i trigger print button in BSP am passing the required parameters to the SAP spool,and letter is generated in SAPSCRIPT. Ans am able to trigger a print from the spool request.
    But how to trigger the ouput controller from BSP Itself .
    regards ,
    Message was edited by: J
    Solved . I have missed some Printer params .
    Message was edited by: J

    Hi,
    Refer this link.
    How to Print HU and its contents
    Vishal

  • How to trigger temperature acquisition (6024E) at the start of signal generation from NI5411?

    I'd like to begin/end acquiring temperature data with the 6024E after the start/stop of the signal output from the 5411. What is the best way to accomplish this? is software or hardware triggering better?

    Rudy,
    Using a hardware trigger is definitely the more precise method. I would suggest that you consider using markers from the NI 5411 to trigger the NI 6024E. Information concerning this topic is available in the NI Signal Generators Help. Specifically, it is available in the following location:
    Contents >> NI Signal Generators Help >> Devices >> NI 5411 >> Waveform Generation >> Marker Events
    If you do not have the NI Signal Generators Help, it can be downloaded from the following location:
    NI Signal Generators Help (NI 5401/5404/5411/5421/5431)
    Once you have exported the appropriate makers, numerous examp
    le programs exist that demonstrate how to trigger the NI 6024E. If you are using LabVIEW, I would suggest that you examine the Acquire N Scans Digital Trig.vi example.
    Good luck with your application.
    Spencer S.

  • How to trigger event in ALV ?

    hello,
    In ALV, when user press 'Refresf' we will get data and display again . but in my case, I need to refresh automatically after some changes on data . The form user_command is used in ALV_GRID_DISPLAY. here could you please help me how to trigger this event ? ( no need to press on refesh button )?
    Thanks

    try like this
    form user_command using ucomm type sy-ucomm
                         selfield type slis_selfield.
      data: gd_repid like sy-repid, "Exists
            ref_grid type ref to cl_gui_alv_grid.
      data: l_indx like sy-tabix.                           " index
    Function for Grid control
      if ref_grid is initial.
        call function 'GET_GLOBALS_FROM_SLVC_FULLSCR'
          importing
            e_grid = ref_grid.
      endif.
    Method to hold the list output
      if not ref_grid is initial.
        call method ref_grid->check_changed_data .
      endif.
      selfield-refresh = 'X'.
    endform.
    regards
    Prabhu

  • Trigger output types

    Hi all,
    How to trigger delivery output types thru print program.
    I know there's a BAPI for this but dont know which one.

    Hi,
    By doing config in NACE for delivery output type u can use different o/p types for diff delivery types etc..
    but can trigger only one o/p type at a time which will in turn trigger its relevant print program & print sapscript/smartforms.
    Regards,
    Amit

  • PXI 5422 Trigger output control

    How can the trigger output of the Digital Data and Control be controlled?
    Can it produce either a trigger pulse or digital value change on one of the PFI outputs through software instead of just at the start of the generation?

    Hi,
    Could you explain a little more about your application and what you are trying to achive,  as well as what events you want your trigger to be output on?  What is this tigger going to be driving?
    Thanks
    Matt Surridge
    National Instruments

  • How to trigger on Falling Edge?

    Hello,
    I could not find any example on Falling Edge trigger Acq. for 6534 or 6110. Can anybody tell me how to trigger on falling edge, or for that matter even specify which edge to trigger on?
    Dhruvish

    There are some great NI-DAQmx triggering examples that install into LabVIEW 7.0 or newer when NI-DAQ is installed (as long as you include support for your LabVIEW version when installing NI-DAQ). With the release of NI-DAQ 7.4, both of your devices are supported by NI-DAQmx, so I would definately recommend using the DAQmx API. In LabVIEW, go to Help>>Find Examples. For your analog board (6110), navigate to Hardware Input and Output>>DAQmx>>Analog Measurements and maybe take a look at Acq&Graph Voltage-Int Clk-Dig Start.vi. For your digital I/O board (6534), go to Hardware Input and Ouput>>DAQmx>>Digital Measurements and try Read Dig Chan-Int Clk-Dig Ref.vi. Both of those examples has a control on the front panel that allows the user to select whether he/she wants to trigger on the rising or falling edge of a digital signal. Hope this helps!
    -Alan A.

  • BODS 3.1 : How to trigger an email alert for the jobs on BODS server ?

    Hi All.
    I have this request.
    BODS 3.1 : How to trigger an email alert for the jobs on BODS server ?
    We have jobs scheduled on BODS running smoothly and absolutely fine.
    But to check, i am logging into the admin console and check for the jobs status.
    I would like to have an email to be received from BODS after each job is finished.
    It could succuessful. Or it could fail.
    Whatsoever, i wish to receive an email alert as soon as a job is finished.
    Can anyone advise me as to whether this could be made possible.
    And if yes, how this could be done.
    Thanks for your help in advance.
    In BOE CMC / for webi / schedule / we find an option to send email for a job success or a job failure.
    Is there any option similar to that in BODS ?
    Also would like to know :
    how to use the smtp_to or mail_to functions ?
    how to set up the smtp server for this ?
    thanks
    REgards
    indu
    Edited by: Indumathy Narayanan on May 31, 2011 3:47 PM

    Hi.
    Since am new to this BODS. I need some help.
    I already have many jobs which are running absolutely fine.
    And when a job runs, and finishes, am able to see the trace saying
    e.g. :
    Job_abc is completed successfully.
    We got the smtp service activated for our test server.
    and we hae a group email id.
    I have put the details of the smtp server / ip address / and said apply restarted.
    The i created a simple test script as below :
    print (' Before email ' );
    smtp_to('abc@company_name.com', 'Job ' || job_name() ||' on ' || host_name() || ' has FAILED',
    ' the job has failed', 0, 0);
    print('After Email ');
    It does send a email to as per smtp_to whatever email is specified.
    But how to differentiate between a job success
    And a job which has failed.
    I wish to have a mail which says on the subject :
    'Job ' || job_name() ||' on ' || host_name() || ' has completed successfully'
    ==> IF it is a success
    OR
    'Job ' || job_name() ||' on ' || host_name() || ' has failed'
    ==> if it has failed
    How to make the system identify, whether
    to send a success message or a error message whatever
    Could anyone advise.
    thanks
    indu

  • How to trigger New page while using ALV with classes/oops?

    Hi All
    I am trying to print a report which has to show the data in two pages.
    I am using ALV with classes/oops.
    Though I am able to print the report but a new page is not coming. Whole of the data is coming in one single page.
    Please tell me as to how to trigger a NEW PAGE while using ALV with classes/oops.
    Please send some code samples also if available.
    Thanks in advance.
    Jerry

    using sort option you can do it. in case of grid/oo alv class ALV you can view that only in print mode/preview mode.
    in case of list you can view that directly.
    sort-fieldname = 'FIELDNAME'.
    sort-group = '*'  "triggers new page
    sort-up = 'X'.
    append sort to it_sort.

  • How can I output text in a browser window in JAVA?

    How can I output text in a browser window in JAVA?

    "response.getWriter().print()" is the most common method when using servlets

Maybe you are looking for

  • How do I create an XML file through a JSP?

    I want to have a JSP which allows the user to create an account with password and this is stored in an XML file. I would like to b e able to amend this XML file with future users of the JSP but I'm not sure how to do this. I can do it using a databas

  • BPM(IP) - how do you trap an AppErr in an Int Process?

    We are running SAP PI 7.11. Have created an Integration Process (BPM) that makes a synchronous call to a web-service.  When an error occurs, the web-service passes back an ApplicationError.  So far so good. Currently - the error shows up in SXMB_MONI

  • Can't see DV built-in microphone in System Preferences | Sound | Input

    I've got a Sony DV Cam which works well for iChat (video + sound from built-in microphone). However the built-in microphone does not appear in System Preferences | Sound | Input, so I can't use it with Skype or some other applications. Is there a way

  • What's it take to show FLV files?

    I'm fairly far out of the Flash loop. We'd like to start hosting FLV files on our site. These are being produced by external vendors. Once I get the FLV file, what would I need to do to add it to our site. I assume I'd need some sort of flash based F

  • Windows 8.1 flash drive freezes system.

    I created a usb flash drive for installing windows 8.1 preview. I was able to boot it up without any issues on my late 2009 Mac Mini. But the installer didn't like my hard drive setup so I went back to OSX to fix it. When I tried booting from the fla