How to disable output for Delivery and shipment

Hi experts
I would like to disable the output for the delivery and shipment. Please let me know any code logic or function module for this.
Thanks and regards,
Jayakumar Mani.

Hi,
Use the requirement routine in transaction code NACE -> Procedures.
Regards
Vinod

Similar Messages

  • How to disable iCloud for iCal and move events back to your Mac?

    How can I disable iCloud and move my iCal events back to my Mac? I no longer want to store my private calendars in iCloud and want them back on my Mac but I don't know how to do it! Does anyone know what to do? Thanks

    To move your calendars, follow the second set of numbered instructions here:
    http://www.wilmut.webspace.virginmedia.com/notes/icloudmovecalendars.html
    Then you can sign out of iCloud in System Preferences>iCloud.

  • How to Issue Output for a Single Handling Unit from Shipment

    Hi,
    I would like to know how to issue an Output for a Single Handling Unit from Shipment, i mean i have attached an output type 'ZPN0' (Customised) to a Handling unit in the Tcode VT03N to a Handling Unit.
    VT03N>click on Handling unit icon> select a handling unit --> go to Extras --> Output --> give the Out put type (maintained)) -- > saved.
    Once i come back --> i did not find any option / icon to issue the output from VT03N for handling unit. We have an option to issue output for the Entire Shipment.
    Tried alternative by going to VT70, give the shipment no, and output type for handling unit. When executed, Getting a message "No Messages Found".
    let me know how to issue the output for a handling unit of the shipment. Only Handling Unit & not the entire shipment.
    Regards,
    Swapna

    Dear Swapna ,
    maintain out put type for handling units in V V 61

  • Return Delivery and shipment for third party PO

    Hello Gurus,
    There is a NB type PO. But we want to return it back to the supplier. How can I do this. Do I need to create a return delivery and shipment against this PO? Please give me the steps I need to follow.
    Regards,
    Balu

    PGI was done before shipment.

  • Bursting Control file, Error!! Could not deliver the output for Delivery

    Hi,
    I am using bursting control file to send report output to email in R12.1.3.
    If the report output is having data, it is working fine. if there is no data it is getting errored out with the below message.
    "Error!! Could not deliver the output for Delivery channel:null "
    In the report output i put "No data found", when i click on view output the output in application is showing as "NO DATA FOUND" in PDF .
    "Bursting VMC Approved Purchase Orders for a period (XML Publisher Report Bursting Program)" got above error.
    my requirement is if there is no data, still i require the output to email.
    Thanks in Advance
    Adina.

    Hi,
    I am facing the same situation and want the bursting program to finish in normal even when there is no data.
    Can you please let me know how you resolved this?
    Thanks
    RG

  • Triggering output for delivery

    Hi,
    I had an issue regarding the output for delivery failed because of the partner type wrongly entered manually.Now I was been advised to change the partner type and re-trigger the output.Can you please let me know with what t.code and the re-triggering of idoc ? I am new to this.
    regards,
    KP.

    HI KP
    check SE38 run programme RSNAST00 check it
    also check this link
    http://www.sap-img.com/sap-sd/rsnast00-how-to-used-for-output-type.htm
    Regards,
    Krishna.

  • VA02 - transfer packing propsal from order to delivery and shipment

    hey ,
    how can i transfer the packing propsal in VA02 to delivery and shipment ?
    is there any copy control for this ?
    Regards
    ASA

    Hi Asa,
    You have to use some ABAP code (copy routine) to achieve this...
    SAP online help:
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/65/79f328a70111d2b44e006094b9b9dd/frameset.htm
    Packing proposals in sales orders and scheduling agreements
    It is possible to enter packing proposals in sales orders and scheduling agreements. These specifications automatically lead to a packing proposal in the delivery if a special data transfer routine is maintained in Customizing for copying control between the sales documents and the delivery. The packing proposal can be changed in the delivery. It is also possible to pack the delivery according to the packing proposal in the preceding document by using the Use proposal function in delivery processing.
    Define the data transfer routine:
    SPRO > LE > Shipping > Copy Control > Define FORM Routines for Data Transfers (menu > Data Transfer > Handling Units)
    Set the routine in copy control
    SPRO > LE > Shipping > Copy Control > Specify Copy Control For Deliveries (see field: V_TVCPLAK-GRUVS)
    Reagrds,
    Csaba

  • Getting Error!! Could not deliver the output for Delivery channel:null

    Hi All,
    I have an XML Bursting program wherein I have given the output type as pdf.
    But as soon as I change the output type to Excel, I get the error - Error!! Could not deliver the output for Delivery channel:null
    Can anyone please advise me what could be the possible reason for this Error and how can I resolve the same.
    Regards,
    Shruti

    Hi,
    I am facing the same situation and want the bursting program to finish in normal even when there is no data.
    Can you please let me know how you resolved this?
    Thanks
    RG

  • Delivery and shipment text.

    Hi Friends,
    It might be simple question, however I want to know how delivery & shipment text can be maintained.
    I mean we are interested to give delivery as well as shipping instructions and that should be populated in delivery and shipment document
    What configuration setting requires for above and where one need to maintain this information so that system would collect data whenever required.
    Thanks
    Shiv

    Hi Shiv,
    You can do this but in order to do this you need to do the customising in text control
    Go to IMG
    LE>Shipping>Basic shipping functions>Text control>Define text type
    You will find different options in there, So choose the text type for delivery document and define text type and then define text determination procedure and then assign the procedure to the delivery document type you wish.
    reward points if helpful answer
    thanks
    regards
    ravi

  • How to get LASTDAY for each and every month between given dates..

    Hi Friend,
    I have a doubt,How to get LASTDAY for each and every month between given dates..
    for ex:
    My Input will be look like this
    from date = 12-01-2011
    To date = 14-04-2011
    And i need an output like
    31-01-2011
    28-02-2011
    31-03-2011
    is there any way to achieve through sql query in oracle
    Advance thanks for all helping friends

    Here's a 8i solution :
    select add_months(
             trunc(
               to_date('12-01-2011','DD-MM-YYYY')
             ,'MM'
           , rownum ) - 1 as results
    from all_objects
    where rownum <= ( months_between( trunc(to_date('14-04-2011','DD-MM-YYYY'), 'MM'),
                                      trunc(to_date('12-01-2011','DD-MM-YYYY'), 'MM') ) );
    The above two query is worked in oracle 11GActually the first query I posted is not correct.
    It should work better with
    months_between(
       trunc(to_date(:dt_end,'DD-MM-YYYY'),'MM'),
       trunc(to_date(:dt_start,'DD-MM-YYYY'),'MM')
    )Edited by: odie_63 on 12 janv. 2011 13:53
    Edited by: odie_63 on 12 janv. 2011 14:11

  • How to disable iMessage for a single contact?

    Hello apple communites, I have a simple and hopefully simple to answer question..
    I am curious as to how to disable iMessaging for a single contact.  My sister when she got her phone number originally had an iPhone, she has since gotten an android and kept the same phone number.  However I am running into issues with text messages to her, my phone still thinks she has an iPhone and continues to send every text as an iMessage, resulting in a failed message.  I can easily hit the "send again as a text message" option and the message/picture sends as normal.  I however find this a bit fustrating, and have tried everything I can think of to attempt to disable this.  However all the online tutorials I can find regarding disabling iMessage turns the feature off completly, I don't wish to do that. 
    I have attempted to completely delete, (including all existing all texts and call history), and then re-add the contact, but that does not work either, my iPhone still attempts to send messages to my sister as an iMessge. Any help, if any, would be appreciated. Thanks in advance.

    Your sister needs to disable iMessage on her iPhone if the iPhone is still available if she hasn't already done so.
    If she has, does she have iMessage enabled with the same Apple ID on another iOS device or on a Mac as was used to activate iMessage on her iPhone?

  • How to disable debugger for sapscript forms.

    How to disable debugger for sapscript forms.
    Once activated in se71-Utilities-Activate debugger I do not know how to disable it

    Thank you Rich
    I assigned you points for good answer on my preavious mail)
    . Actually my real problem is a transported the SAP script form “znalepke2” , printer definition ”nale”
    and device type “zststartsp” of a thermal printer.
    On original system (ak1) the printout is ok but on target system(ak2)
    not.
    Lateron I transported also :
    R3TR SCPD 1403(as the device type uses this character set)
    R3TR TABU TSP08 (All entries)
    R3TR TABU TSP1D(All entries)
    R3TR TABU TSP1T(All entries)
    I used also report  RSTXSCRP to traport form and device types. L
    Lately I discovered that when I performe printout preview I get also eronneous printout If I ssue an printout preview in language "EN" on system "ak1"(only on system ak1 and form preview in "SL" is oK. What steps you suggest me to solve the prolem
    Thank you in advance

  • How to disable checking for updates for Shockwave plug-in?

    SOS: how can I disable checking for updates (and reporting
    that there is one) for a Shockwave object on a web page?
    I have a client with an older Shockwave version, and it's a
    royal pain for each user to be told there's a newer veriosn and do
    you want to download...
    Any help gratefully received.

    I have zero experience of macs.
    Can't you install Silverlight and the plugin for all users rather than a specific one?
    I would guess/hope/expect there'd then be one plist file for everyone? 
    Please don't forget to upvote posts which you like and mark those which answer your question.
    My latest Technet article - Dynamic XAML

  • Scenario : How to include scales for delivery schedule

    Hello,
    1.How to include scales for delivery schedule
    Example u2013 I have a total SA for 10000 EA for Rs 10 EA
                  i.     When SA line And GR  is for 0-100 system should take  Rs 10 EA
                 ii.     When SA line and GR is for 101-1000 System should Rs 9.50 EA
                 iii.     When SA line and GR is for 1001-5000 system should take Rs 9.00 EA.
    How to do ?
    Regards
    sapman man

    Hi,
    This you have to maintain in Scheduling agrement document itself.
    In scheduleing agreement (ME31L)--> Pricing Condition Icon.  if you select this there you can find the scales assignemnt in headel leavel icon. (F2).
    If assgin this will fllow in delivery schedule line.
    SAM

  • Issue output options for reprinting output for delivery items

    Hi Gurus,
    I want to create the new output for delivery but at item level.
    There is a standard proceduere available for trigger output at item level.
    But I am not able to find the option to re-issue or see the print preview as that is not option is available in the standard menu at VL02N.
    Due to this I am not able to debug the code as during triggering the output at item level both the program and script are called in background.
    So is there any standard option available at item level to see the print preview as we can at header level.
    If you requried any additional information then please let me know. Eagerly waiting for the reply.
    Regards,
    Sagar

    Hi Arun,
    Yes I want output to be trigger at the item level in the delivery.
    If i tirgger the output that output at item level, i see the ouput as green (ie successful)
    but when i got menu and try to issue to output i do not see this output type in the list and shows all header output types only..
    Due to this i am not able to debug my program when doing print preview..
    So i need a way where i can see the my program in debugging mode.
    And VT70 is not useful to me i do no shippment no. but I have only delivery with me.
    Regards,
    Sagar

Maybe you are looking for

  • How to update Portal 10.1.2 to 10.1.4 under multiportal environment ?

    I install two portal and one infra. And Configuring Multiple Middle Tiers with a Load Balancing Router successfully. The origin portal virsion is 10.1.2. Now i want to update to 10.1.4 but have somthing wrong after I enter the update commond. Error m

  • Problem with image url

    Hello, today I have a problem with image url. I wanted Image to change when mouse dragged over it. But nothing happened. Any ideas? def maxIco: ImageView = ImageView{ image: Image{ url: "{__DIR__}ikony/max.png" onMouseDragged: function(event: MouseEv

  • Cool iTunes 7 bug

    Try to rewind a song by clicking the progress strip at some point, when the song is about to end (2 seconds or less) and jump to the next one. It will play the first and the next song simultaneously. I managed to play my entire playlist at the same t

  • AS 10g update from 10.1.3.4 to 10.1.3.5 on Solaris 10

    Just started working with AS 10g so still getting my arms around it. Downloaded patch p8626084_101350_SOLARIS64.zip, unzipped it and shut everything down for the upgrade. Made sure all the ORACLE variables were set correctly on the server. Kicked off

  • Hp Photosmart R742

    Hi I hope somebody can help me, a person in our company has a Hp Photosmart R742, and went to use it yesterday but the screen had turned white. She can still use the camera to take pictures and the battery is fine but she can see the picture. Could a