Reprinting printouts of delivery in two places

Dear sd experts
i am facing one problem please let me know
i have checked NAST Table --- in se16n
with some output condition tables and created timing now i found some delivery document Nors  along with Dispatch time like 1,3,4
Only for dispatch time 3 Delivery documents i am able to Print delivery documents But 1,4 Dispatch time i am able to create printouts only in se38 - Rsnast00 program only
In my sap this is correct or some thing wrong ?

Hi Madhuri,
I guess there is a typo error in your phrase
for 4 dispatch , system will give release the output immediately to print once you save the Billing document
For 1, you have to set up a job ( scheduled job) to release invoice documents to print on a scheduled time. job can be setup on RSNAST00 program
For 3, instead of RSNAST00 you will have your custom program to process output for which you will schedule job
for any of these three option, from initial screen you can give print manually unless it is controlled
programmatically. otherwise these options are used to release spool to printer automatically without manual intervention
hope it is clear

Similar Messages

  • How to create a single delivery for two sales orders?

    Hi Experts,
    I need to create one delivery for two sales orders. But it fails.
    The route, shipping point, ship to party are same for both orders but INCOTERMS are different.
    Delivery date, Good issue date, loading date,material availability date, transportation planning date for 1st order is 12/07/11 and for second order is 14/07/11.
    I have created delivery on 14/07/2011 but the delivery is created for 1st order only, the second order is missing in the delivery.
    It not happened because of incoterms.? different dates
    Kindly help regarding this.
    Thanks
    Raghu

    Prerequisite for Grouped delivery
    1. Header data should be same like Inco terms,Payment terms
    Go to VL10A
    Enter the sales order Numbers and execute
    Select the sales order Nos  for the group delivery and select "Background"  Tab in Tool Menu Bar
    If delivery is created coloured line items will get generated
    Check the log for delivery docuements
    Check and confirm
    Senthils

  • Delivery of two sale order in one delivery

    Hiii Guru's,
                      Can we make one delivery for two sale order of same customer?
    Plz reply fast.
    Will assign points.
    Regards,
    Abhishek

    Yes, its possible. In delivery make Add new, select customer and then Copy From button on right down corner. Then select all orders you want and click ok.
    Petr

  • Please help me to merge two places.sqlite to get my old and New history at the same time, every time i rename my two places.sqlite to see my old and new history

    every time i rename my new places.sqlite to see my old history and come back rename old places.sqlite to see my new history, i tired and i found No Way to merge two places.sqlite :( but it's must be found this way for The PPL to see their old and new history :(
    Thank You all in Advance

    You can't merge history otherwise then using Sync to store the history and bookmarks of one places.sqlite on the Sync server and then disconnect.<br />
    Copy the second places.sqlite file to your Firefox profile folder with Firefox closed.
    Then setup Sync once again using that account and merge the content on the Sync server with your computer.
    * Merge this device's data with my Sync data

  • How  to create one delivery for two sales orders?

    Hi Experts,
    I need to create one delivery for two sales orders. But it fails.
    The route, shipping point, ship to party are same for both orders but INCOTERMS are different.
    Delivery date, Good issue date, loading date,material availability date, transportation planning date for 1st order is 12/07/11 and for second order is 14/07/11.
    I have created delivery on 14/07/2011 but the delivery is created for 1st order only, the second order is missing in the delivery.
    It not happened because of incorterms.? different dates
    Kindly help regarding this.
    Thanks
    Raghu

    Hi
    To understand splitting behavior, see SAP Note 546668 - FAQ: Delivery split when creating deliveries. And yes, incoterms happens.
    I think that with the help of question 6 you can try to force the merging of SO. Then, see SAP Note 166397 - Delivery split according to customer field ZUKRL, and handling the field ZUKRL in a VOFM in the copy rule I think that you can try to do it.
    Finally See  Note 4505 - Duprec when adding delivery (VL04, VL01, VL10*) to avoid problems while you are merging.
    Regards
    Eduardo

  • Exception in two places of insert statment

    Hi All,
    I want to insert exception in two places in pl sql. I am getting the error.Is there a way to implement exception in two places in insert statement.
    Thanks,
    uday
    Begin
    Declare
    V_Code Number;
    V_Errm Varchar2(64);
    V_Code1 Number;
    V_Errm1 Varchar2(64);
    INSERT INTO Raise
    Select Employee_Id, Salary*1.1 From Employees
    Where Commission_Pct > .2;
    EXCEPTION
    When Others Then
    V_Code := Sqlcode;
    V_Errm := Substr(Sqlerrm, 1, 64);
    Dbms_Output.Put_Line ('Error code ' || V_Code || ': ' || V_Errm);
    Insert Into Scap_Fact_Loading_Errors Values (V_Code, V_Errm, Systimestamp);
    INSERT INTO Raise
    Select Employee_Id, Salary*1.1 From Employees
    Where Commission_Pct > .1;
    EXCEPTION
    When Others Then V_Code1 := Sqlcode;
    V_Errm1 := Substr(Sqlerrm, 1, 64);
    Dbms_Output.Put_Line ('Error code ' || V_Code1 || ': ' || V_Errm1);
    INSERT INTO Scap_Fact_Loading_Errors VALUES (v_code1, v_errm1, SYSTIMESTAMP);
    END;
    Edited by: 929521 on Jan 7, 2013 10:15 AM

    >
    I want to insert exception in two places in pl sql. I am getting the error.Is there a way to implement exception in two places in insert statement.
    >
    Sure - use two different blocks. The code you posted doesn't have any BEGIN.
    The proper structure is:
    BEGIN
    . . . put your first code here
    EXCEPTION
    . . . put your first exception handling here
    END;
    BEGIN
    . . . put your second code here
    EXCEPTION
    . . . put your second exception handling here
    END;If you need your code to quit after an exception in one of the blocks issue a RAISE in the exception handler for that block.
    Depending on what each block does and what you want to save or rollback it is also common to use SAVEPOINTs for the blocks.
    See SAVEPOINT in the SQL Language doc.
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/statements_10001.htm
    >
    savepoint
    Specify the name of the savepoint to be created.
    Savepoint names must be distinct within a given transaction. If you create a second savepoint with the same identifier as an earlier savepoint, then the earlier savepoint is erased. After a savepoint has been created, you can either continue processing, commit your work, roll back the entire transaction, or roll back to the savepoint.
    Example
    Creating Savepoints: Example To update the salary for Banda and Greene in the sample table hr.employees, check that the total department salary does not exceed 314,000, then reenter the salary for Greene:
    UPDATE employees
    SET salary = 7000
    WHERE last_name = 'Banda';
    SAVEPOINT banda_sal;
    UPDATE employees
    SET salary = 12000
    WHERE last_name = 'Greene';
    SAVEPOINT greene_sal;
    SELECT SUM(salary) FROM employees;
    ROLLBACK TO SAVEPOINT banda_sal;
    UPDATE employees
    SET salary = 11000
    WHERE last_name = 'Greene';
    COMMIT;
    >
    For your use case you could create a SAVEPOINT before each of the blocks and then in the exception handlers issue a ROLLBACK to the appropriate SAVEPOINT before you exit the procedure.

  • Finished DVD Momentarily Hangs In Two Places

    I have created a 33 minute slide show in Aperture 3. The show is very good quality but it hangs in two places on the burned DVD. Have dragged plist to trash, exported again, burned disk appromimately 7 times, and each time I get the same thing. It hung one time when I burned the movie using iMovie HD6. I assume from this that my problem is iDVD. Any suggestions? Has anybody else experienced these hangs in iDVD

    It's good to know that other's are having the same issue. I recently upgraded to the Quad Core iMac with Snow Leopard. Previously I was using a 24"iMac with just Leopard where I was not experiencing the issue.
    I have a similar work flow to creating motion DVD's. I create a 25 - 30 minute slideshow with audio tracks in fotomagico then export as Quicktime .MOV file then drag into iDVD to create menu and burn to DVD. When I play this disc back in DVD player connected to TV there is a pause around half way where the entire slideshow including audio stops for about 3 seconds, then another pause towards the end of the slide show. The same disc played back in the iMac plays perfectly.I have tried reducing burn speeds right down to 1x but this did not solve the issue. Oddly the pause location changed depending on which burn speed I used. I also have a Mac Book Pro with Leopard, (not Snow Leopard) which burns the same project file with no issues when played back on the non computer DVD player. This makes me think it is an operating system issue. I have spent quite a few hours on the phone to Apple and reinstalled operating system, tried burning through different users, tried different quicktime export options, all totalling around 20 different burns and viewings to look for rectifications or errors! That's a lot of my valuable time wasted! If you hear of a solution be sure to post it up! In the meantime I am having to burn my work on the laptop which is not so practical but the only solution I can reliably count on.

  • Not getting single delivery for two sales orders

    Hi Sapians,
    I am getting one delivery for two sales orders in VL10A.  But in another case, out of two sales orders, for one order I went to partner functions and changed the address line of ship to party while creating sales order.(Since for that particular order the ship to address is different). then as usual I proceeded to VL10A. But this time system gives two seperate delivery document numbers instead of one which is given earlier. Can any of the experts help me in this regard.
    Thanks for your response in advance.
    Raksha Agarval

    Hi Raja,
    Just now I came out with exact problem. While creating sales order, in the header data partner function tab, if we select the ship to party line item and go for details tab and change the address first line item (that is street number), the same change is also if we do in second sales order also, then if we go for delivery in VL10A, then system gives two delivery documents instead of one.( though, all the requirements are met, like same plant, shipping point, shipping conditions, incoterms.. etc).
    Even after meeting the requirements, as per SAP standards also why system giving two delivery documents? is the problem.
    Please come with possible reasons
    Thanks in advance,,
    Raksha.

  • How to use my logic sessions and ilok at two places

    Hi there,
    I am wondering if I can use my Logic sessions and even my ilok plugins at two places, two countries?
    - but still keeping my ilok at one place.
    Is there any way via internet? perhaps using some kind of network server for my sessions
    - iDisk perhaps?
    what is the best solution?
    Thanks
    Message was edited by: Olavur
    Message was edited by: Olavur

    Buy a second iLok, and licenses for your software

  • Round decimal number to two places

    trying to round a decimal number to two places i.e. 1.98999 should round to 1.99.
    -tried using math.round but it only rounds to nearest integer
    -tried using decimalformat class but that converts to string, and cast wont allow me to convert from string back to double
    *is there a round method that allows you to specify decimal places?
    *or is there an easy method to cast a string back to a double?
    any advice is appreciated:)

    coynerm wrote:
    trying to round a decimal number to two places i.e. 1.98999 should round to 1.99.Agree.
    -tried using math.round but it only rounds to nearest integerI advise against rounding in most newbie situations. Usually it's the display of the variable you want to change.
    -tried using decimalformat class but that converts to string, and cast wont allow me to convert from string back to doubleOf course cast won't allow you to convert back. If you wanted to do that you'd use Double.parseDouble(stringVar); But we don't know why you are doing all this converting in the first place.
    *is there a round method that allows you to specify decimal places?
    *or is there an easy method to cast a string back to a double?Advice: Forgetting all this fooha with rounding, what in essence are you trying to achieve? Why all of this number manipulation in the first place? It will affect what should be the best answer.

  • Two places to input encryption key alias in WS Security proxy wizard?

    Hi,
    When you secure a Web Service Proxy in JDeveloper you can input encryption key alias in the Encrypt tab and in the Keystore Path tab. I don't understand why there are two places for this. Anybody know why?
    Screen dumps:
    http://i16.tinypic.com/63tp2pw.jpg
    http://i10.tinypic.com/4tpmc0h.jpg
    Regards Pete
    Message was edited by:
    the heat
    Message was edited by:
    the heat
    Message was edited by:
    the heat

    Hi,
    check http://www.oracle.com/technology/products/jdev/howtos/1013/wssecure/10gwssecurity_howto.html
    this should have some answers for you
    Frank

  • Why two places for videos? (N95 8gb)

    Why do i have two places for videos?
    If I bluetooth myself a video and save it it goes into gallery. What if I want it in My Videos instead how do I move it? And i only want to see the video in My Videos and not in the gallery as well?
    Also when I do a memory search it doesnt show the videos in My Videos up..
    P.S what does the little sheild mean next to some videos?

    07-Jan-2008 04:07 PM
    liam182 wrote:
    Why do i have two places for videos?
    If I bluetooth myself a video and save it it goes into gallery. What if I want it in My Videos instead how do I move it? And i only want to see the video in My Videos and not in the gallery as well?
    Also when I do a memory search it doesnt show the videos in My Videos up..
    P.S what does the little sheild mean next to some videos?
    There's a program called "File Manager" that lets you move/copy and delete files from your device. It's usually under Tools.
    If you put videos in "My Videos" folder I think they don't show up in the Gallery. Also files in "Videos" don't show up in Video Center but they do in the Gallery.
    What do you mean "memory search"?,
    About the little shield, I have no idea what it means. I guess it's about the DRM protection, but I'm not 100% sure.
    640K Should be enough for everybody
    El_Loco Nokia Video Blog

  • What makes my default project location to bounce between two places in FCP X?

    I wonder what makes my default project location to bounce between two places in FCP X?The project I am working on is on my local disks which are backed up (daily) to external eSATA enclosure. If I run FCP X just by clicking its icon (not a project file) in most cases it opens FCP X with a project but in event library there is not files linked.Sometimes it expands the project’s library located on backup station.
    To make active the the local version (get it expanded and access all the files related to the project, I have to: close FCP X, launch FCP X by click on a project or a library file, close FCP X again and then I can get the project and its content displayed correctly just by clicking on a FCP X icon.
    After backup is made (I use Carbon Copy Cloner to backup this volume) if I relaunch my FCP X, I have to start the procedure mentioned above all over again. What I am doing wrong?

    Munas, what you describes sounds a lot like the problem I've been experiencing.
    I have two matching external drives mounted. Drive 1 is the primary, Drive 2 is an identical back-up. Both identically formatted.
    FCPX randomly opens drive 2 when I start the program, even when I click on a sidebar link to a project on Drive 1. The clips are often, nonsensically, shown as off-line.
    I really don’t care if FCPX recognizes drive 2, in fact I wish it wouldn’t. I don’t, obviously, want to unmount Drive 2 just to use FCPX.
    My workaround for this was to rename the Final Cut Events and Final Cut Project folders “FCE” and “FCP” respectively on Drive 2, and configure my back up utility accordingly.
    Now, although Drive 2 is listed in the Events and Project Libraries on start up, FCPX doesn’t recognize any events or projects on it, and it sits there as an icon that can’t be expanded.  I can live with this until a fix comes, in fact I rather like it.
    Cheers

  • Two PCs on two places, both with iTunes using same AppleId. Streaming videos for iPad

    Hi everybody.
    I'm living in two places, both of them equiped with PCs, one running Windows 7 and the other Windows XP (nobody's perfect !). They run last version of iTunes with same Apple Id.
    As one is the backup of the other, both of them have all the videos I'd like to broadcast on may iPad (not enough place, so no download). Some of them are TV shows I bougth, other one are personnal videos.
    All was perfect on the first PC (the one running Windows 7) until I activate the same setups on the second one. Now I can broadcast personnal videos from that PC, but I can't anymore on the first one : when I open Videos (the application) on iPad, the only thing I see on the menu is "TV show", witch allow me to download (not broadcast) from Internet the show I'd like to see, but I don't see the "shared library" I used to see before.
    Anyone has an idea ?
    Thank's 

    Hi everybody.
    I'm living in two places, both of them equiped with PCs, one running Windows 7 and the other Windows XP (nobody's perfect !). They run last version of iTunes with same Apple Id.
    As one is the backup of the other, both of them have all the videos I'd like to broadcast on may iPad (not enough place, so no download). Some of them are TV shows I bougth, other one are personnal videos.
    All was perfect on the first PC (the one running Windows 7) until I activate the same setups on the second one. Now I can broadcast personnal videos from that PC, but I can't anymore on the first one : when I open Videos (the application) on iPad, the only thing I see on the menu is "TV show", witch allow me to download (not broadcast) from Internet the show I'd like to see, but I don't see the "shared library" I used to see before.
    Anyone has an idea ?
    Thank's 

  • Outbound Delivery with TWO material Documents

    Dear all,
    Here at my client place, User has created Cash Sales order with Qty-1, and done Post Goods Issue (PGI).
    But when go into document flow of sales order it shows two material
    documents under one outbound delivery.
    But is it possible to have two material documents under same outbound delivery,
    if yes, how it is possible and where& what I need to check.
    Moreover stock is reduced by qty 2 (with 601 movement).And there is no change log of Quantity in Sales Order and Delivery.
    Is there any otherway to post material document with the ref of Delivery(movement type 601).
    Please adviceu2026

    Hi,
    In delvery please check the picked quantity and delviered quantity. If you picked two items and then deliveried two items then it will be creating two material documents. So please check delviered quantity in delivery...
    And also have a look at free goods senario if u have implemented
    Regards
    sankar

Maybe you are looking for

  • Opens Webmail login page instead of sso login page after changing the webma

    Hi Gurus, I have setup notes webmail in portal which uses SSO. I login to portal and click the webmail link which opens the sso page for authentication(Cuz I have integrated the webmail to use SSO). I enter my username and password. Then it shows my

  • To create event log server

    Hi, I want to create a event log server at my data center, I mean, I want to collect the event logs from all my servers and manage the logs centrally, please guide me the steps for this. Swaprakash..

  • Has this happened to anyone? -1 emails?

    [IMG] http://i33.tinypic.com/2rervxu.jpg[/IMG] This is from my gmail account. Has anyone run across this problem? Just noticed it today, never happened before. Should I just delete the gmail account from the phone and open a new one in settings? Than

  • Item Category M

    Hello experts, Can anyone help me with a issue. I'm doing the MM process bellow: - Creating a PR using acc assign. U, without material code and without Item category - Creating a Quotation using acc assign U, without code and without item category (u

  • Untrusted software found on memory card to remove ...

    I have frequent problem showing when I restart my device Nokia E63 "Untrusted software found on memory card to remove goto application manager" Any solution? LEARNING AND WISDOM ARE SUPERFLUITIES, THE SURFACE GLITTER MERELY, BUT IT IS THE HEART THAT