Invoicing from IDOC_INPUT_INVOIC_MRM - update DRSEG-XBLNR

Hi Expert,
We have a requirement to update the field "DRSEG-XBLNR- DRSEG-XBLNR" while posting the invoice from an Idoc.
Can you please suggest if you have come across similar requirement.
we tried by passing into the segment type E1EDP02 with qualifier 011/016/063. But nothing works.
Can you please suggest ,if i am wrong.
Gobi
Edited by: Gobinathan Govindarajan on Jan 20, 2012 11:03 PM

.

Similar Messages

  • Sales return - Excise invoice from depot

    Dear all,
    We are having a sales return scenario in depot which we are executing in following way.
    1) Return sales order 2) Delivery against sales order 3) PGR 4) Credit memo 5) Capture of excise invoice in J1IG against the material document posted in PGR with reference to original excise invoice.
    But when we are again creating an outgoing excises invoice from depot i.e. re-selling the same material to other customer system does not show the excise invoice in list of inward invoice.
    Request to please let us know if we have missed out on a step/ configuration to ensure that the customer return excise invoice is visible to re-sell the material from depot.
    thanks & regards,
    mahesh

    Dear  Lakshmipathi,
    Thanks for the reply, did go through the thread that you have suggested before i posted this one.
    Just wanted to know that we update the register with material document number posted for transfer of material from one storage location to another which is customer return to finished storage location and not with the PGR material document number?
    5 Create Transfer posting in MB1B with movement type 453, storage location 0005 and save
    6 Note down the material document reference
    7 Go to J1IG to reverse excise issue posting
    thanks and regards,
    mahesh.

  • FQ event to populate invoicing party in DFKKOP during invoicing from EASIBI

    Hi Experts,
    I am looking for an event to update invoicing party field in DFKKOP table during invoicing from transaction 'EASIBI'. As per standard process Invoicing party field is populated in DFKKOP when Invoicing party at contract level is a third party.
    In my case invoicing party at contract is not third party but still invoicing party field need to be populated in DFKKOP. I tried event 402 and 432 but these are not workig.
    Any help on this is appreciated.
    Thanks for your help in advance!!!
    Vibhor

    Hi Vibhor,
    Try using the event R408\R433.
    The event is called up after the posting document for consumption billing has been created.
    Here, you are getting the FICA document no. (DFKKOP-OPBEL) against which the invoicing has happened.
    Once you get the FICA document no., you can update the corresponding INVOICING PARTY field in DFKKOP by using any std FM.
    Hope it helps...
    Thanks,
    Amlan

  • Blocking the change of Supplier Invoice Number on update using SP

    Hi Mentors,
    Just wondering if blocking the change of Supplier Invoice No. (OPCH.NumAtCard) is possible using SP_TransactionNotification?
    I've been trying to make it work with the following code:
    --Prevent Duplicate Supplier Ref. No. in AP Invoice
    if @object_type = '18' and (@transaction_type in ('A' ,'U'))
    begin
    declare @RefNo as varchar (100)
    declare @CardCode as varchar (100)
         if (@object_type = '18')
              begin
                 select @RefNo = NumAtCard, @CardCode = CardCode from OPCH T0 where docentry = @list_of_cols_Val_tab_del
                 begin
                   if (@RefNo is not null)
                     begin
                       if 1!= (select count (docentry) from OPCH  where (NumatCard = @RefNo) and (cardcode = @CardCode))
                         begin
                            select @error = 10
                            select @error_message = 'Duplicate Supplier Reference Number!'
                         End
                       End
                   End
              End
    End
    --Prevent Supplier Ref. No. in AP Invoice from being changed during update mode.
    if @object_type = '18' and (@transaction_type = 'U')
    begin
    declare @DocEntry as int
         if (@object_type = '18')
              begin
                 select @RefNo = NumAtCard, @CardCode = CardCode , @DocEntry = DocEntry from OPCH T0 where DocEntry = @list_of_cols_Val_tab_del
                 begin  
                       if (@RefNo != (select NumAtCard from OPCH where (CardCode = @CardCode) and (DocEntry = @DocEntry)))
                         begin
                            select @error = 10
                            select @error_message = 'Changing of Supplier Reference Number is not allowed!'
                         End
                       End
              End
    End
    I'm not sure if this is really possible,and that I could be just beating the wind by trying.
    Thanks in advance!
    Sean

    To avoid modifiing the vandor reference use this:
    IF @Object_type = N'18' and @transaction_type = N'U'
    BEGIN     ---
    declare @li int
    declare @pref nvarchar(100)
    set @li=
    (select max(t.LogInstanc)   from ADOC t
       where t.ObjType=18 and t.DocEntry=@list_of_cols_val_tab_del)
    set @pref=
    (select isnull(t.NumAtCard,'')    from ADOC t
        where t.ObjType=18 and t.DocEntry=@list_of_cols_val_tab_del
          and t.LogInstanc=@li-1)
    If @pref !='' and @pref !=
    (select isnull(t.NumAtCard,'')   from OPCH t
       where t.DocEntry=@list_of_cols_val_tab_del)
    Select @error = 10, @error_message = N'Changing of Supplier Reference Number is not allowed!'
    END     
    --- To avoid using duplicated reference try this:
    if @object_type = '18' and @transaction_type in (N'A', N'U') -- AP invoice
    BEGIN          ----
    declare @Invoice AS VARCHAR(15)
    declare @Card AS VarChar (20)
    SELECT @invoice = NumatCard, @card = CardCode FROM dbo.OPCH
         WHERE DocEntry = @list_of_cols_val_tab_del
    If exists (SELECT T0.cardcode, T0.NumatCard FROM OPCH T0 where T0.NumatCard = @invoice
               and T0.CardCode=@card and T0.DocEntry!=@list_of_cols_val_tab_del)
    Select error = 10, @error_message = N'Duplicate Supplier Reference Number!'
    END          ----

  • Automated invoice from Service call

    Hi experts,
    I need to find some way to automate the billing of a closed Service Call.
    It should be possible to collect all the information regarding the Activities and the Expenses tab's and fill in an invoice automatically. This invoice should be available as a normal invoice, ready to be paid from the Bank Module.
    Please, any idea on how to proceed with this matter? Does someone have any solution like the one I'm looking for?
    Thanking everybody in advance!
    Regards
    Victor

    Hi Victor,
    I see what you mean. Generally speaking the steps are the same. However, you are going to need the SDK and UI API if you want the user interaction to take place in the B1 client.
    If that is not necessary you should be able to quite easily create a simple windows program using the DI API to create the Invoice, and/or update the Service Call. I have built applications myself with similar requirements within about two to three days, so you know what to expect.
    Unfortunately I have very little experience with the UI API, so I can not  tell you how easy or difficult it would be, nor how much time you can expect to have to put into that solution.
    On a side note, now that you are considering automation anyway. Depending on the sort of interaction you expect to take place between the user(s) and the process, you might want to consider a timed console application after all (have it run every 15 minutes if necessary), and have the users making the Service Calls not worry about the billing at all. The entire process could take place in the background and new invoices would simply appear in the B1 system, for the accountant or whomever to take care of.
    Good luck,
    Johan

  • Batch Printing Of Invoices from SAP Business One

    Hi,
    I am having trouble batch printing invoices from SAP business one. The issue is with only one printer, on all other printer it works fine.
    Everytime we try to print on this printer(HP) it prints the first invoice and prints following error on the
    next page.
    PCL XL error
    Subsystem: KERNEL
    Error: IllegalOperatorSequence
    Operator: EndChar
    Position: 84
    Any help will be highly appreciated.

    Hi,
    Please try to do the following steps: (Not related to B1, but to the printer settings)
    1.Open Start a Settings a Printers and Faxes
    2.Right click on the desired printer and choose u2018Printing Preferencesu2019
    3.In the u2018Advancedu2019 tab, change the field u201CPrint Optimizationsu2019 to u2018Disabledu2019
    4.Click OK, and Exit.
    Please update if  it helps (and grant points ) and also if it didn't, so that we might find another solution.
    Regards,
    Tuvia.

  • How can I closed credit card from any update of my iphone

    How can I closed credit card from any update of my iphone.
    it is billed otomaticly. last bill around 32$. every month bill around 100$. I want to making control by manuel. so could you explain me how to do it?

    Hey donyh1,
    Thanks for the question. You can hide the recent contacts in the multitasking screen by navigating to your Contacts settings:
    Contacts settings - iPhone
    http://help.apple.com/iphone/8/#/iph96b20610
    Thanks,
    Matt M.

  • Get all invoices from the system and their details

    Hello Experts,
    Whats the most efficient FM to use for getting all the invoices in the system with details to transfer them to an external system?
    Should I get a list of all invoices and then call BBP_PD_INV_GETDETAIL on each?
    Thanks,

    Hello,
    You can use the Function Module "BBP_PD_INV_GETLIST" to get all the invoices from the SRM system.
    Regards,
    Mani

  • Customer Down Payment invoice (from delivery) not automatically assigned

    If I create a Down payment invoice from Sales Order (and I paied it) on the final invoice the sistem automatically assigne the down payment invoice on the final invoice for the order.
    If I do the same think but crerating the Down payment invoice from the delivery (and I paid it) when I create the final invoice I need to assigned it manually.
    SBO 8.81 PL 06
    I haven't found any set up for this, so I think is an error the sistem must work on the same way if the document is copied from the Sales order or delivey.
    Someone know if there is some set up? or I need to open an error message to SAP?
    Thanks

    My question is:
    If I make a sales order.
    I create a down payment invoice using copy from SO.
    I make the incomuing payment for the down payment invoice.
    I create the delivery from the SO
    I create the invoice from the delivery
    The system apply automaticaly the down payment invoice to the invoice (because I select a delivery that is linked to the so that I used to create the down payment invoice).
    If I make a sales order.
    I create the delivery from the SO
    I create a down payment invoice using copy from delivey.
    I make the incomuing payment for the down payment invoice.
    I create the invoice from the delivery
    The system DO NOT apply automaticaly the down payment invoice to the invoice (even if also this document is linked to the delivery that I use to create the down payment invoice).
    I know that I can select it manually. But I can select it manually also if I use the SO to create the down payment instead of the
    delivery. Why if the situation is the same in the firs case the system do it automatil^cally and in the second case I need to do it manually?
    Of course if I create a Down Payment invoice without selecting any document (SO, delivery..) the system don't know if you want to apply the payment to the final invoice.
    But If I select the delivey to create the down payment (the same if I select the SO): I want to apply the down payment to the final invoice of this delivery and not to another delivery.

  • Migration of  Approved Invoices from 11i to R12

    Hi All,
    I am migrating all approved invoices from 11i to R12 using Invoice Interface tables and "Payables Open Interface Import" Concurrent program.But in R12 the Approval status changes and to "Required" and the Accounted status of distribution line changes to Unprocessed. We do not have the set up for approval work flow process, So the invoice should be validated by "Force Validation" by checking the ‘Allow Force Approval’ in payable options. But when I am running the "Invoice Validation" program the theere is no change in the Approval status.
    Please help.
    Thanks in Advance,
    Subhrakant

    I am a newbie to Oracle Apps. I guess Oracle Apps use the "sequence" to generate the Key in the Oracle tables or is there some else mechanism.
    When migrating Oracle Apps from lower version to higher version, is there any concept of setting the sequence numbers in Oracle Apps or we don't need to take care of this ie the migration handles this automatically.The migration/upgrade script/driver should take of seeded objects,
    For your custom objects, you need to verify it yourself.
    Thanks,
    Hussein

  • How to extract non-sap data (A/R Invoices from Legacy system) into SAP ICR

    Hi
    We are trying to bring A/R invoices from a legacy system into SAP ICR special ledger so that ICR tool can be used these items for intercompany reconcilliation. Could you please let's know the way to load these legacy AR invoice items into ICR data base using any function moduels.
    Regards,
    Eswar.

    Hello Eswar,
    In what form do you have these "external" open items? If they are contained in a file you should simply import the file in ICR during data selection using the File Upload functionality. There is no need to store them in a special purpose ledger first. Actually you would have to create a BADI implementation to extract the data from that special purpose ledger during data selection. Please consider using File Upload standard functionality.
    If for some reason this cannot be used you could implement a logic calling RFC enabled function module FB_ICRC_ADD_DATA_RFC which will take the open items you are supplying in your logic and push them into the ICR database. This strategy could be used to include these external open items without them being processed during data selection.
    Best regards,
    Ralph

  • PA Flexbuild failed- Issue When Importing Invoices from PA to Payables

    When Running Payables Open Interface import, to import Payables invoices from Projects. invoices are rejected with Reason ' PA Flexbuld Failed' error. Log message of the Concurrent Requests says PA Account Generator has failed.
    Any pointers to the help resolving this issue is much appreciated

    Hi,
    Our research shows that the PA Supplier Invoice Account Generator is shipped by Oracle itself with a dummy code. It will throw a error message and exit without creating supplier invoices. It states that we need to customize.
    Has anyone faced this situation? If so how was the customization done? How the workflow was customized and how the CCID was populated and from where?
    Also I am surprised by the fact that how Oracle can ship with a dummy code. There needs to be a seeded code.
    Thanks,
    Murali

  • How to remove the Option "Only Refer Excise Invoice "from MIGO

    Hello,
    We are using the ECC 6.0. while suppose material is excisable then there are Four options will come in MIGO --Excise Invoice tab
    1)Only Cature Excise Invoice
    2)Only Refer excise Invoice
    3)Only Part1
    4)No excise Entry
    As per my client requirement then only need two options in MIGO.
    1)Only Part1
    2)No excise Entry
    Bcz they want to Capture and Post excise Invoice in J1IEX only...
    I have tried from Tax on goods movementIndia-Basic settings--Excise Grp settings..... Here in MIGO settings  we can remove the Click from "EI Capture"....Then we will not find the Capture excise Invoice in MIGO. Next How to remove the "Only refer Excise Invoice from MIGO..
    Regards
    sapman

    Hi,
    You can capture Excise Invoice w.r.t. PO in J1IEX and then refer it during MIGO (Note: - You are not capturing Excise Invoice again, only referring it) and then Post it in J1IEX.
    And in case of Stock Transport Orders, you need to refer the Excise Invoice No at the time of GR in receiving plant which is posted in the Supplying Plant (via J1IIN) so that system will copy all the duties same as of that invoice and user need not to do any manual intervention.
    Also in case of Imports, first you capture Bill of Entry w.r.t. PO in J1IEX and then refer it during MIGO and finally post it in J1IEX.

  • Creation of one Excise invoice from multiple commercial invoice

    Hi
    Can it possible to create one excise invoice from multiple commercial invoice
    regards,
    K.S.Rao

    hi,
    I am trying in another way - creating one proforma invoice for multiple deliveries. and with that proforma invoice trying to create excise invoice.
    But i am facing problem in creating proforma with multiple deliveries because of DIFFERENT NUMBER RANGE IN HEADER (delivery)AT FOREIGN TRADE --- UNDER ORGANIZATION --- NUMBER OF FOREIGN TRADE DATA - ( which is internally assigned by the system)
    If i can get where this number is assign my problem is solved
    K.S.Rao

  • Single performa invoice from multiple delivery

    Dear sir,
    my client requirement is they are doing one delivery and creating one performa invoice in export scnario while selling from plant and while doing export issue they have to take refrence performaa invoive .
    so they want to create as ingle performa invoice from multiple delivery for which already respective performa invoices have been created.so i want a single performa invoice from multiple delivery so tell me how to do it?
    thanks
    Debesh

    Go to VTFL and maintain as follows:-
    At Header
    Copying requirements:::::::::009
    At Item
    Copying requirements:::::::010
    Data VBRK/VBRP::::::::::::003
    thanks
    G. Lakshmipathi

Maybe you are looking for

  • File/Library Transfer from XP to Vista

    My old XP machine is in its final stages of dying. I have purchased a new Vista machine to take its place. Now I need to get files and libraries transferred over. I have two users, each using an iPhone. The total music on my old machine is around 20G

  • How to install iTunes in win 7 32 bit

    After clicking on itunessetup.exe a error in ms dos window comes that is (inactive itunessetup.exe).   Program too big to fit in memory . Please help to solve this problem. My pc is win 7( 32 bit) ram 1.00GB , 1.80ghz processor

  • Playlists are here but no ratings, play counts.... How can I get them back?

    Due to my computer crashing, I now have all my music on an external hard drive. I have so far managed to get hold of all my music and my playlists. The issue I have now is that I do not have my ratings and play counts. In my xml file, I can see Itune

  • Attaching Letter of credit at Delivery Level

    Hi, Can Letter of Credit (Financial Document) be attached at Delivery Header / Delivery Item level ? If yes, fine. If no, why ? Please provide all the necessary explanation. Thanks Vish Note: Points would be awarded.

  • Mass Download/Extract of BW Master Data Documents

    Hello I am looking for a solution to enable a mass extraction of Master Data Documents on a nightly basis. Basically we are storing documents against materials in R/3 using CV03n, we are then using the Mass Upload Program to load these into BW on a n