Delivery without any reference document

Hi,
Would like to know how this scenario can be handled in SAP:
customer picks up the stock in warehouse (without picking,packing,outbound delivery) and direct invoicing is done.Can we map this process in SAP ,where we can by pass picking,packing.

Hi,
you can do delivery without any reference document.
1) T.Code - VLO2NO
    Create delivery without reference and do PGI
2) VF01 -Invoice against delivery
Or
you want to create billing with external document, follow this links
http://help.sap.com/saphelp_40b/helpdata/en/dd/56159a545a11d1a7020000e829fd11/content.htm
Regards
Vijai Jain
Edited by: Vijai Jain on Apr 15, 2009 11:09 AM

Similar Messages

  • FM's to create an invoice without any reference

    Hi,
    I want to create a billing document in R3 without any reference with sales order or delivery.
    Are there any FM or procedure to achieve this.
    If you can send me the sample code it will be really helpful.
    Regards,
    sasi

    hi
    can you tell me one scenario where we need to create a billing with out sales or delivery
    if all there is some situation like that one like
    if there is only FI module implemented but not SD then this can be achived by the FI functional consultant.
    get some advise from him.
    Regards
    Edited by: Chaitanya V Kumar Naru on Jun 9, 2008 9:34 PM

  • Return delivery without PO & Material Document

    Hi All,
             Is it possible to create return Return delivery without PO & Material Document.
    Regards
    PKY

    hiii
    without PO and GR reference what u want to create . which transaction u want to do ??
    Because , if u want to remove the goods from ur sytem u have to reversal of material document or return delivey.
    Using that dopcument u can able to creat excise invoice to vendor ( if its excisable scenrio).
    SO can u explain me.
    What u wanted to do exactly...

  • Create outbound delivery without order reference but with order data

    I am interested in creating an outbound delivery without order reference...but include data from a sales order that has already been PGI'd. Has anyone come up against this and found a solution?

    There is a button on VL01N transaction saying W/o Order Reference...
    Click on that and then enter the shipping type, delivery type... and in the main screen enter the data that u have in ur order...
    try that.... all the best
    reward points if helpful...

  • BAPI to Create Outbound Delivery Without Order Reference

    Hi everyone
    I need to create <b>outbound delivery without order reference</b> ( like i create manual in VL01NO) . Can anyone help me to find this bapi or function?
    Thanks & regards
       David

    Hi,
    Please check this BAPI.
    BAPI_DELIVERYFREE_PROXY_CREATE
    BAPI_DELIVERYPROCESSING_EXEC
    Regards,
    Ferry Lianto

  • BAPI for outbound delivery without order reference - VL01NO

    Hi ,
    I need a BAPI to create a outbound delivery without a Order reference ( transaction VL01NO ). Please provide the BAPI. Sample code will be helpful.
    Thanks,
    R~

    Hi,
    Following is the sample code for creation of outbound delivery Using BAPI 'BAPI_DELIVERYPROCESSING_EXEC'
    Which may be helpful.
    PARAMETERS: p_vbeln LIKE vbak-vbeln.
    DATA: BEGIN OF t_vbap OCCURS 0,
    vbeln LIKE vbap-vbeln,
    posnr LIKE vbap-posnr,
    kwmeng LIKE vbap-kwmeng,
    matnr LIKE vbap-matnr,
    werks LIKE vbap-werks,
    END OF t_vbap.
    DATA: t_request TYPE STANDARD TABLE OF bapideliciousrequest
    WITH HEADER LINE.
    DATA: t_created TYPE STANDARD TABLE OF bapideliciouscreateditems
    WITH HEADER LINE.
    DATA: t_return TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE.
    SELECT vbeln posnr kwmeng matnr werks
    INTO TABLE t_vbap
    FROM vbap
    WHERE vbeln = p_vbeln.
    LOOP AT t_vbap.
    t_request-document_numb = t_vbap-vbeln.
    t_request-document_item = t_vbap-posnr.
    t_request-quantity_sales_uom = t_vbap-kwmeng.
    t_request-id = 1.
    t_request-document_type = 'A'.
    t_request-delivery_date = sy-datum.
    t_request-material = t_vbap-matnr.
    t_request-plant = t_vbap-werks.
    t_request-date = sy-datum.
    t_request-goods_issue_date = sy-datum.
    t_request-goods_issue_time = sy-uzeit.
    APPEND t_request.
    ENDLOOP.
    CALL FUNCTION 'BAPI_DELIVERYPROCESSING_EXEC'
    TABLES
    request = t_request
    createditems = t_created
    return = t_return
    READ TABLE t_return WITH KEY type = 'E'.
    IF sy-subrc = 0.
    MESSAGE e208(00) WITH 'Delivery creation error'.
    ENDIF.
    COMMIT WORK.
    READ TABLE t_created INDEX 1.
    WRITE: / 'Delivery ', t_created-document_numb, ' created'.
    Let me know if any issues.
    Thanks & Regards,
    Naveen

  • Inbound Delivery without order reference

    Hello,
    Does anyone know if there is a way for creating an inbound delivery without PO as a reference?
    I need to create an inbound delivery with no reference, and I know that for the outbound process it is possible.
    Thanks in advance,
    Dikla

    Hi,
    Inbound delivery can be created with order reference not any other way.Even if you try to create Inbound delivery automatically through Idoc ,system in backgorund calls the Vl31N transaction so there is no other way .
    AMIT

  • T-SQL - Using Column Name in where condition without any references when having multiple tables that are engaged using multiple joins.

    Hi All,
    I am a newbie for T-Sql, I came across a SP where multiple tables are engaged using multiple joins but the where clause contain  a column field without any table reference  and assigned  for an incoming variable,like 
    where 'UserId = @UserId'
    instead -  no table reference like 'a.UserId = @Userid'   ............ Can any please do refer to me any material that clears my mind regarding such issue................... help is appreciated.
    Thank You.

    As suggested above, use table alias with columns for unique referencing and to make the code easier to read.
    BOL example for table aliasing:
    USE AdventureWorks;
    GO
    SELECT S.CustomerID, S.Name AS Store, A.City, SP.Name AS State, CR.Name
    AS CountryRegion
    FROM Sales.Store AS S
    JOIN Sales.CustomerAddress AS CA ON CA.CustomerID = S.CustomerID
    JOIN Person.Address AS A ON A.AddressID = CA.AddressID
    JOIN Person.StateProvince SP ON
    SP.StateProvinceID = A.StateProvinceID
    JOIN Person.CountryRegion CR ON
    CR.CountryRegionCode = SP.CountryRegionCode
    ORDER BY S.CustomerID ;
    GO
    GO
    LINK:
    http://technet.microsoft.com/en-us/library/ms124824(v=sql.100).aspx
    Check the use of TABLE ALIASes and COLUMN ALIASes in the following blog:
    http://www.sqlusa.com/bestpractices2005/organizationtree/
    Without the use of aliases the code would become unreadable.
    Kalman Toth Database & OLAP Architect
    Free T-SQL Scripts
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Inbound delivery without PO reference - How to create?

    How can we create an Inbound delivery without referencing a PO?

    systsem will display all the PO s for that vendor and now you use that Po and create Inbound delivery
    but you need PO finally to create the delivery
    what is your reqs?

  • BAPI for outbound delivery without order reference???????????????????

    hello folks
    i want to a bapi for transaction <b>VL01NO</b>. this transaction is used for creating outbound delivery <b>wihtout a order reference</b>. I did a search but was not able to find a bapi pls help.

    Hi,
    Could you please send me the sample code for BAPI_DELIVERYFREE_PROXY_CREATE? I am using the IDOC for outbound delivery w/o order reference. I didnt find any standard process code for this..
    Any suggestions on the same??
    Thanks,
    Prasad

  • Bapi for vl01no create outbound delivery without order reference

    Hi Guru's, i need help, I'm looking for BAPI VL01NO
    Any suggestions?
    Thanks for everything
    Edited by: GaBo_s Gabo on Sep 22, 2009 8:48 PM

    Hi,
    Following is the sample code for creation of outbound delivery Using BAPI 'BAPI_DELIVERYPROCESSING_EXEC'
    Which may be helpful.
    PARAMETERS: p_vbeln LIKE vbak-vbeln.
    DATA: BEGIN OF t_vbap OCCURS 0,
    vbeln LIKE vbap-vbeln,
    posnr LIKE vbap-posnr,
    kwmeng LIKE vbap-kwmeng,
    matnr LIKE vbap-matnr,
    werks LIKE vbap-werks,
    END OF t_vbap.
    DATA: t_request TYPE STANDARD TABLE OF bapideliciousrequest
    WITH HEADER LINE.
    DATA: t_created TYPE STANDARD TABLE OF bapideliciouscreateditems
    WITH HEADER LINE.
    DATA: t_return TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE.
    SELECT vbeln posnr kwmeng matnr werks
    INTO TABLE t_vbap
    FROM vbap
    WHERE vbeln = p_vbeln.
    LOOP AT t_vbap.
    t_request-document_numb = t_vbap-vbeln.
    t_request-document_item = t_vbap-posnr.
    t_request-quantity_sales_uom = t_vbap-kwmeng.
    t_request-id = 1.
    t_request-document_type = 'A'.
    t_request-delivery_date = sy-datum.
    t_request-material = t_vbap-matnr.
    t_request-plant = t_vbap-werks.
    t_request-date = sy-datum.
    t_request-goods_issue_date = sy-datum.
    t_request-goods_issue_time = sy-uzeit.
    APPEND t_request.
    ENDLOOP.
    CALL FUNCTION 'BAPI_DELIVERYPROCESSING_EXEC'
    TABLES
    request = t_request
    createditems = t_created
    return = t_return
    READ TABLE t_return WITH KEY type = 'E'.
    IF sy-subrc = 0.
    MESSAGE e208(00) WITH 'Delivery creation error'.
    ENDIF.
    COMMIT WORK.
    READ TABLE t_created INDEX 1.
    WRITE: / 'Delivery ', t_created-document_numb, ' created'.
    Let me know if any issues.
    Thanks & Regards,
    Naveen

  • Delivery without order reference

    Hi,
       What r the configuration settings to be made for automatic propsal of site and storage location while processing delivery by using T.code VL01NO.
    What might b d impacts if i deactivate picking in this delivery type(we don't have WM module)

    Hi,
    Plant or Site is determined from the following
    a) From Customer Master Info record (TCode VD51)
    b) Customer Master                          (TCode VD01)
    c) Article Master in Sales View Other
        Sales Data                                  (TCode MM41)
    Storage Location is determined from the following:
    SPRO-Logistics Execution-Shipping-Picking-Determine Picking Location Assign Picking Location
    If picking is not relevant the material/article can be issued thru PGI in VL01n without doing the picking
    activties in delivery.
    Hope this helps you.
    Regards,
    S.V.ManiKumaar

  • Delivery without odrer reference

    Dear All,
    Scenario is , I am doing scrap sales from factory using delivery type LO in trxn VL01N .Now when you double click on line item
    and goto  condition tab there i find qty ,net tax,fileds are with zero values. I want to know the reason for the same
    Cann't we populate the values over there?
    Kindly suggest .
    Thanks,
    Shankar gj

    Dear Shankar,
    As correctly said buy Lakshmipathi , you need to configure separate document types and not deliver directly.
    Even from process point of view you would need to configure a pricing procedure,calculating TCS on scrap.So your pricing has to be different, with the required condition types for scrap sales.
    Shamik.

  • How do I get a clean Fire Fox down load without any reference to RoboForm showing up on it. I am dumping roboform and don't want a reminder of that damn thing

    My master password stopped working with Roboform, for no reason. Everything they told me to do, I cannot do because it required me to have the master password, including get direct support. I am therefore removing Roboform from my computer. One problem. My fire Fox still has a Roboform start page. I cannot get rid of it. Everytime I remove Firefox and reload it, it still has the damn Roboform start page. How can I get rid of any reminders of roboform from Fire Fox?

    You can change your home page easily. [[How to set the home page]]

  • The mouse pointer seems to change randomly from the usual pointer to the I-beam pointer, finger pointer, column resize pointer, arrow up pointer, etc. without any reference to function.

    I actually don't care other than the fact that it isn't the way it should operate and everything else seems to behave. However, the I-beam pointer is hard to see and can disappear. It seems to happen mostly in Safari and then carry over to other applications. Anyone else see this happen?

    The program you gave me was great, so simple, yet so effective....yet I still have a problem.  The problem is that my interface has a giant TAB inside with lots controls.  So I need it to be an arrow when it is in the tab but not on the other controls.   I tried manipulating you program and used an if condition inside the event case that if the control reference of the event case is the same as the control reference of the tab then remain an arrow.  That works for other controls outside the tab and and the tab itself but it doesn't work with controls inside the tab...... I have attached your vi, just changed a little to see what i am saying.  I am pretty sure there must be a way around it so i am trying it out now, but if you know something already that might help, that'll be great
    Reza Sed
    Attachments:
    Default Cursor_modified.vi ‏38 KB

Maybe you are looking for

  • Tablet Wacom has wrong behaviour, not respect alt right mouse in Photoshop CC 2014

    I have set my Wacom Bamboo tablet to send modifier Alt+Right button when I press the button, then I can change size or hardness of the cursor. I works in CS6 and CC but not in CC 2014. The bubble "alt" is now displayed but Photoshop not respect the a

  • Notification emails not getting into ical?

    We frequently have a problem whereby invites and notifications of responses to invites don't make it into people's ical.  We are a small office of mac users, most of whom also have an iphone. Taking my computer as the example: 2010 iMac, 10.6.8, ical

  • Can someone at RIM REMOVE my PB PIN from the 2.0 beta?

    Hi all, I'm trying to DOWNGRADE from the 2.0 beta and am unable to do so. Each time I try, the Playbook tries to download OS 2.0 again during the setup process. I was unable to backup on 1.x and have been able to use the "debrick" procedure with Desk

  • Connect to sqlplus from sun box

    Can someone please send me a sample script to connect to sqlplus and execute a .sql script. Thanks Kev

  • HTML/ Javascript Air App as Screensaver

    I am trying to find out how to use a Air app developed using HTML/ JS as a screensaver. All the information I have found has been in other dev platforms, ie flex or AS, and I am unable to translate it to what I am doing. Any help pointing me in the r