EDI 850 and EDI 855 differences

Hi All,
We are currently receiving a PO Via EDI-850 and Sales document is posted. Due to the internal setting based on several scenario's either the material or qty gets changed eg Material determination. Price also what they send on the EDI and current condition record rate may be different.  Sales orders are created based on the condition record.  Upon saving the order it sends the Order Acknowledgement ie 855. 
Any standard  SAP functionality is available to mark the differences on the PO received via EDI 850, before sending the 855 back to the customers.
  Your feedback is apperciated.
Thanks,

Hi Shobha,
Maybe you could create requirement routine for the output type of Order Acknowledgement to check whether the PO data consist with SO data and stop the output process if the data doesn[t consist.
Then you could enter another output type without the requirement check manually on the sales order after getting acknowledge of the differences.
Hope it helps.
Best regards,
Smile

Similar Messages

  • EDI 855 messgae mapping to ORDRSP

    Hi,
    I would like to map Vendor confirmation number  coming from EDI 855 to the ORDRSP idoc.
    Please suggest which segment with qualifier and fields in it can be used for this purpose to log the confirmation number in SAP.
    Thanks,
    Venu.

    Hi Savitha,
    Thanks for the reply.
    I have tried this option at header level (E1EDK02-002) and item level (E1EDP02-002)too previously, but it is not working.
    I'm currently working in SAP 4,7 version, do I need to implement any notes to accept the vendor number and update externaldoc number?
    In the standard SAP code before updating vendor number... item details are checking against PO, If I give PO number it is updating the same at External doc number.
    Thanks,
    Venu.

  • EDI 855 (Order Confirmation)

    One of our customers is requiring us to send them an EDI 855 whenver we change a sales order.  They only want the 855 if something is changed.  I thought about using output type BA00 with message type ORDRSP, however the idoc doesn't tell you what has changed and this is required by the cusotmer on the 855.  For example, if we change the qty from 10 to 8, this needs to be on the IDOC in order for it to be mapped on the 855.  Has anyone dealt with this type of 855 before?  Thank you,

    MxG,
    For both plant and pricing condition functional config was already done. If any of these two fields are missing, the status of sales order will be incomplete.For incomplete orders also, the EDI output is being proposed.
    Now just tell me, in which SAP program, do i have to put the break point?
    Where exactly ??
    Thanks and kind regards,
    Creasy Matt

  • Send an automatic acknowledge EDI 855

    Hi there,  I’m working in an Idoc integration and EDI using Inovis as middleware, actually I’m receiving ORDERS05 Idoc from Inovis to create a Sales Order, I need to trigger an action at the moment when Sales Order is created in SAP, to send an automatic acknowledge that would be mapped to EDI 855. I would like to know how I can trigger this action in SAP.
    Thanks in advance.

    Hi Alexis,
    to get this configuration working set up
    ORDRSP message
    with message control (we20) entry V1 BA00 SD10
    for such IDOC scensario with screenshot examples check out my book:
    <a href="/people/michal.krawczyk2/blog/2006/10/11/xi-new-book-mastering-idoc-business-scenarios-with-sap-xi"><b>Mastering IDoc Business Scenarios with SAP XI</b></a>
    you can also check this doc for sales order output (BA00):
    http://help.sap.com/bp_retailv1470/documentation/EN/Merchandise%20Distribution_EN_CUST_V147.doc
    is that what you're looing for?
    Regards,
    michal

  • Opening and closing balance difference is showing from 2010 to 2011 F.year

    Dear All,
    Opening and closing balance difference is showing for Main Cash(Cash in h)
    End of fiscal year 2010 closing Balance 85,451,909.70
    Opening Balance 2011 is showing as 85,450,909.70  
    Rs 1000 difference is coming.
    Please suggest if any Note is there?

    Hi,
    Somes after year end for audit / management adjustment entries postings done with previous year.
    Execute N no of times Balance carry forward T.Code: FAGLGVTR  until you get your closing balances & opening balances are the same. it is not harm to execute again & again.
    up to 4.7EE for balance transfer you can use T.Code:F.16 from ECC 5 / 6 use tcode for balance transfer FAGLGVTR
    Regards,
    Viswa
    Edited by: viswanatha s on Nov 4, 2011 12:54 PM

  • If i have an unlocked iphone 5 can i upgrade it to an iphone 5s and pay the difference ?

    if i have an unlocked iphone 5 can i upgrade it to an iphone 5s and pay the difference?

    Then, you own the phone. Your only options are sell the phone yourself or see what programs are offered by third-parties or your carrier.

  • How to Find the highest and lowest cell in a column and figure the difference

    What I am tryng to do is have numbers find the high and low in Cloumn B and and put the difference in B6. So I would need it to Figure out that B3 is the highest and B2 is the lowest and give me the difference of .25 in B6

    Don,
    Begin by making Row 6 a Footer Row. You will find that option in the row tab menu that appears when you hover over the 6 tab and click the triangle.
    Then enter this formula in B6:
    =MAX(B)-MIN(B)
    Regards,
    Jerry

  • Compare two tables and log the difference

    Hi,
    I want to compare two tables and log the difference in new table with the fields as (old value,new value, column name). The column name should be the changes value column

    Can you show an example?
    SELECT Foo.*, Bar.*
       FROM Foo
            FULL OUTER JOIN
            Bar
            ON Foo.c1 = Bar.c1
               AND Foo.c2 = Bar.c2
               AND Foo.cn = Bar.cn
     WHERE Foo.key IS NULL 
        OR Bar.key IS NULL; 
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Script to compare 2 tables and retrieve the differences in records data

    Dear All,
    please I need a script to compare two oracle database tables and retrieves the differences in data records between the two tables.
    I have tried this one :
    -- all rows that are in T1 but not in T2
    (select * from T1 minus select * from T2)
    union all
    -- all rows that are in T2 but not in T1
    (select * from T2 minus select * from T1);
    But it generates the following error:
    ORA-01789: query block has incorrect number of result columns
    Thank you for your cooperation , please it is urgent

    ok I used this statement with dblink, the problem is that i cannot use PL/SQL developer since it is a process repeated for 300 tables , that why i am trying to automate it:
    -- all rows that are in T1 but not in T2
    (select * from schema.T1minus select * from T2@dblink_name)
    union all
    -- all rows that are in T2 but not in T1
    (select * from T2@dblink_name minus select * from schema.T1);
    I created the db link on a database A and when i run the statement
    (select * from schema.T1minus select * from T2@dblink_name)
    on the database B i get the error ORA-02019: CONNECTION DESCRIPTION FOR REMOTE DATABASE NOT FOUND.
    DOes anybody have an idea please

  • I have a fully functioning iPhone 4S that has been in water, it has left slight water marks on screen, everything else works and is in mint condition. I want to exchange it for an iphone 5s and pay the difference. Would this be possible at the apple store

    I have a fully functioning iPhone 4S in mint condition apart some water marks on screen (dropped in bath) everything works perfectly as it should. I wish to exchange and pay the difference for an iphone 5s. Is this possible from the apple store (uk) how much do they normally give as a trade in and how much do they charge for an iphone 5s. Or should I just take it in and see if they will do a one for one swap and pay the difference. ( I don't like the water marks, it's annoying, maybe they will go away, I don't know) been sat in rice for a week.

    The only thing Apple will do for you is an out of warranty exchange, & you will get EXACTLY what you have now. The cost will be US $199. Make an appointment at any Apple store.

  • I have iphone 5 can i change it from apple and pay the difference bettween both value

    i have iphone 5 can i change it from apple and pay the difference bettween both value

    Ask your retailer.  At worst, you can sell your iPhone 5 independently (of Apple and your retailer) and separately purchase the later model.

  • Use of clients 000 and 001 & their differences?

    hi guys,
    Any one explan me the use of predefined clients 000 and 001
    The differences between them

    Hi,
    Clients 000, 001 and 066 are standard clients that are pre-delivered by SAP. These clients are not supposed to be used in development, quality and production environments.
    Client 000 is basically used as working client only when you do support pack upgrade or ABAP load generations (SGEN) and implementing additional languages, etc. Otherwise, client 000 should not be used as a working client. The same applies to client 001. But the only exception with 001 is, with Solution Manager, 001 will be your working client. You will do all configurations and obtain support from SAP through this client. With other Systems like BW and CRM, this client (001) will not be a working client. Two standard users (SAP* and DDIC) are defined in the clients 000 and 001.The client 066 is used only for EarlyWatch functions (Monitoring and performance). The user EarlyWatch is delivered in client 066 and is protected using the password SUPPORT. This password needs to be changed for security purposes.
    Rgds,
    Suman

  • HT1338 can i replace my mac with a newest model and pay a difference

    can i replace my mac with the newest model and pay a difference>>>

    Sorry. No.
    Apple does not have a trade-in policy.
    Best.

  • Safari, iTunes, software update iCal not connecting. Firefox is fine. Tried Proxies, but not sure what to do there. Only one box was checked, I unchecked it, and made no difference. Have also tried some other DNS numbers, nothing worked yet.

    Hi There,
    Safari, iTunes, software update iCal not connecting. Firefox is fine.
    I have found some archieved discussions about this, but none that went  into detail about how to fix problem using proxies - I don't really  understand what they are/ do.
    I went into the Proxies screen, Only one  box was checked, "Use Passive FTP Mode (PASV)" I unchecked it, and made no  difference. There was also some stuff written in the "Bypass proxy settings for these hosts and domains" I deleated that and nothing different happened. Have also tried some other DNS numbers,  nothing worked yet.
    Any suggestions?

    I still have no idea what was wrong with Safari last week, but I opened it today, and its all working! Hurrah!
    Woohoo! I'm a great fan of things fixing themselves. Fingers crossed in New Zealand for no further problems.

  • How to compare two images and display the difference on Front Panel

    HI..
    I have attached two images.
    I want to compare these two images and subtract the differenc from these two images and display the difference(the mouse) on the front panel
    Anyone can help me?
    Really thanks
    Attachments:
    IMG_2117.JPG ‏1677 KB
    IMG_2118.JPG ‏1650 KB

    The missing thing. You have to keep in mind that what you see is not the same as the camera sees.
    So when using IMAQ Substract it gives you the difference of the value of every single pixel!
    In order to find the mouse as only difference you have to manage that every other pixel value stays the same, e.g. with a proper lightening.
    At the other hand you can combine different filters or alogorithms to get the object, e.g. if the object is darker or brighter then everything else in the image you could use a threshold and then use morphologic operations to get the objects size and position.
    Christian

Maybe you are looking for

  • Just bought an iBook G3

    I just picked up an iBook G3 off of ebay today, and I don't have super high expections. Earlier this summer I bought a Macbook, which I love. I wanted to get an inexpensive backup that I can tote to school every day and abuse. For $200 I thought why

  • My 5th generation ipod won't turn on and my home button is broken.  How do I reset?

    I've connected to the computer and it doesn't recognize it.  I've held top button down for 2 seconds and longer. 

  • IPod preferences in iTunes incomplete

    This is a repost of a problem I've been having. When I connect the iPod to my G4 at home (see details below) the preferences only show "Music" and "Podcasts". To the right of that submenu, it shows my iPod version as "6.0". From my iTunes at home I c

  • Extension of SeeBurger inbuilt mapping programs

    hey guys what is the extension for seeburger inbuilt mapping programs as we have .zip or .jar for Java mapping. my understanding is that when we install seeburger,we get a SWCV which stores all the metadata and the mapping programs,but when i want to

  • Rollup of Subtraction of Child Entities

    Hello All, How can I achieve Roll up of Subtraction of two child entities into Parent Entity. for example I have A (Parent Entity)    |--------A&B (Child 1)    |--------B (Child 2) We want to upload summation of A&B trail in Child 1 and only B trail