ORDERS05 (CRM) IDOC processing issues when blocking items on the order

We're successfully loading Sales orders from IDOC type ORDERS05. There are certain checks carried out against a customer contract reference (if supplied) which could require the item in question to be blocked/rejected. I can achieve this okay, but when an item is blocked the Qty against the item is Zeroised, and I notice that the schedule line for the item also has a Zero qty, depsite a schedule line segment appearing on the IDOC with a Qty. If I don't block the item, by removing the checking code, then the qty against the item shows exactly as identified in the schedule (E1EDP05) segment.
Has anyone else had this problem and if so how did you get around it.
I've tried duplicating the schedule for the item, thinking that just the first schedule record is zeroised, but it would seem that all scheuled lines are zeroised if the item is block, although that's not what happens if you enter an order manually.
Regards

Tx: CRMXIF_C1
Set Download to Full

Similar Messages

  • Hi there! So I am using Lightroom 3 on a pc and I have ran into an issue when exporting images. The DPI and image size (in inches) that I am selecting during the export process. For example I just exported a collection and set the dpi to 180 and the size

    Hi there! So I am using Lightroom 3 on a pc and I have ran into an issue when exporting images. The DPI and image size (in inches) that I am selecting during the export process. For example I just exported a collection and set the dpi to 180 and the size to 7 inches on the long edge. My exported result is 457 dpi and sized at 3200x2134 pixels.. Any ideas on why this is happening and what I can do to correct it?

    The DPI setting in a digital image has no meaning at all. You need to learn how to calculate what you need in your exported image. The only measurement in a digital image that has any meaning is the number of pixels in each direction. It doesn't matter what you set that DPI to (actually it's PPI or pixels per inch). The image will have the same number of pixels regardless of the setting. If you need an image that is 5 x 7" (for example) at 200 PPI then you would want an image that measured:
    5 x 200 = 1000 pixels
    7 x 200 = 1400 pixels
    So you would need an image that is 1000 x 1400 pixels to have a 5 x 7" image at 200 PPI. The reason your exported image had such a high PPI setting is because you specified the number of inches you wanted the image to be. And there were enough pixels in the image that it calculated out to be that high PPI setting.
    I apologize, I don't explain this very well. But you need to learn to do the math to determine how large you really want your exported images to be.

  • Please i am unable to restore my ipad due to error 3194.The restore process stalls when it gets to the point where the firmwarwe is being updated.error message 3194 comes up.please help me

    please i am unable to restore my ipad due to error 3194.The restore process stalls when it gets to the point where the firmwarwe is being updated.error message 3194 comes up.please help me

    http://support.apple.com/kb/TS3694#error3194 
    Unable to contact the iOS software update server gs.apple.com

  • Custom table Not deleting the line items on the order.

    Hi All
    I have an issue, In SAP  we have created a custom table which is related to ship to party, as and when we delete any line items in the order(VBAP)  it should update /delete the custom table but it is not deleting, while when we create any line items in the order (VBAP) it is updating  the entries in the custom table which is suppose to happen.
    Please let me know your inputs.
    Thanks,
    Ram

    UPDKZ is not a field name. it is the processing status of a line or order.
    If UPDKZ is I , its initial, like adding a new line
    If UPDKZ is U, its update. Like changing or modifying an existing line
    ....so on...
    Regards
    Sai

  • Calculate sales tax based on all line items on the order

    My users have asked to determin tax on the sales order, based on all the line items on the order. For example, if all the items are for product only, or if all the line items are for labor only, or if there is a mix of product and labor,
    Order 1
    line 1 product flag as both for vertex
    line 2 labor flag as both for vertex
    Order 2
    line 1 product flag as product only
    line 2 product flag as product only
    Order 3
    line 1 labor flag as labor only
    line 2 labor flag as labor only
    I do not see away to do this while the order is being created. In the order 1 example above, line one is entered, priced, and taxed as product only (it is the only line on the order at that time and it is product only). Line two is entered, it is marked as both. But I cannot send line item one back through vertex marked as both. Vertex processing is already complete.
    I have looked at using both FYTX0001 and FYTX0002. With both of these exits I can only work with a single line item, i.e. once item one is processed it will not go through the exit when item two is added.
    Any assistance would be appreciated.
    Jay

    Hi WCG,
    Our business is located in California as well. California is a modified-origin state, where state, county, and city taxes are based on the origin of the sale, while district taxes are based on the destination of the sale. You only need to add Sales tax when your customer's billing address is in California. I do not believe that Catalyst currently supports district based sales tax. You could look into a third party solution like TaxJar and see if it could be integrated into Catalyst. We currently charge our California based customers exactly what we would charge them in our retail store.
    So you want to do something like this:
    -Ryan

  • How to Create a Pro Forma invoice (F5) for selecetd items in the order?

    Hello,
    Is there a way to create a F5 Proforma invoice for an order, but for selected items? e.g if the sales order has 5 line items , is there a way to select the items we want to create the proforma for? or it's always going to create the proforma for all eligible items?
    Thank you so much.
    Irfan

    Dear Satish,
    Thanks for your reply.
    Without getting into config and setting up the invoice split criteria, when creating a proforma is there a way to select the line items from the order and create the pro forma invoice only for those items?
    Thanks.
    Irfan

  • Changes in the material, the order should be blocked while saving the order

    Hi,
    A sales order is already there and delivery is not yet done. The requirement is, If I make any changes in the material, the order should be blocked while saving the order.
    Is there any indicators or some fields which tells material is changed in the order. How this can be realised.
    I thought of table CDPOS, but this can be used only after Order is saved.
    Please provide your inputs.

    Use user-exit MV45AFZZ, form-routine USEREXIT_SAVE_DOCUMENT_PREPARE.  Compare the values in XVBAP-MATNR(New Values) and YVBAP-MATNR(Old values).  If the values are different, update the value VBAK-LIFSK to block the order.

  • Getting cache items in the order that they were inserted

    Hi,
    Is there a way to get the cache items in the order that they were inserted into the cache?
    I tried the following but that does not work - the result is not in order of insertion...
    NamedCache cache = CacheFactory.getCache("XXXX");
    Set setKeys = cache.keySet();
    debug("key size: " + setKeys.size());
    Iterator keysIt = setKeys.iterator();
    while (keysIt.hasNext())
    Object object = (Object) keysIt.next();
    debug("key: " +object);
    debug ("----------------------------------------------\n\n\n");
    Thanks
    G

    khanna111 wrote:
    Hi,
    Is there a way to get the cache items in the order that they were inserted into the cache?
    I tried the following but that does not work - the result is not in order of insertion...
    NamedCache cache = CacheFactory.getCache("XXXX");
    Set setKeys = cache.keySet();
    debug("key size: " + setKeys.size());
    Iterator keysIt = setKeys.iterator();
    while (keysIt.hasNext())
    Object object = (Object) keysIt.next();
    debug("key: " +object);
    debug ("----------------------------------------------\n\n\n");
    Thanks
    GHi G,
    in general there is no way to do this with get/iterate calls.
    Particularly because you can't define a time order in the cache as there is no shared timesource to relate to without relying on explicit cluster-wide locking which is not done in caches by default.
    Best regards,
    Robert

  • Desadv idoc processing issue

    Hi All,
      We are facing issue, when vendor send a two desadv idoc for packing delivery.
    First idoc correctly pack the delivery and change the packing status to completely packed.
    Processing second Idoc get fails but create a dummy handling unit. It delete one handling unit from the handling unit table VEKP but the trace remains in document flow table VBFA.
    This does not happen in all the cases and we are not able to reproduce in Quality system to debug.
    Does anybody faced the same issue earlier, and what could be the possible root cause and solution for this.
    Please help.
    Thanks in Advance
    Ankit Gupta

    Hi,
    As you have mentioned that you are using custom defined iDoc, you might be using a custom defined BAPI to receive the data from the iDoc.
    As you have said that the status is 64, your iDoc has entered the system & it has failed only when the data being sent to the application.
    kindly, check if the custom defined BAPI or RFC is working fine & whether it updates the status record or not? because you custom BAPI will be receiving the data from the iDoc.
    Also, test the scenario using the transaction WE19.
    or else you can use manual processing of iDoc using T.code - BD87.
    kind regards,
    Thangesh

  • Inbound Idoc processing issues - Partner Profiles - error status 56

    Hello All,
    I'm having a little difficulty posting an idoc coming from MDM.  It's a CREMDM04 xml coming from an MDM system.  It is getting mapped through PI and is being split into ADRMAS02 and CREMAS04 Idocs.  The message is being passed through XI and being posted to the ECC system, but certain fields in the EDI_DC40 header table are not being populated correctly (i believe).  I'm using nothing but standard mapping/material from the SAP Business Content for XI.  After looking through the standard XSLTs i cannot find the field-to-field mapping where the fields below are being populated.
    The RCVPOR value (SAP[SID]) is correct when i view it in SOAP Header, but does not appear in the remote system under the receiver port for the inbound idoc.
    The RCVPRN value ([String Value]) is incorrect in the SOAP Header and does appear in the remote system under the receiver partner number for the inbound idoc.  How is the RCVPRN value being populated? 
    SOAP Header in IDocOutbound tag
      <SAP:RCVPOR>SAP[SID]</SAP:RCVPOR>
      <SAP:RCVPRN>[String Value]</SAP:RCVPRN>
      <SAP:RCVPRT>LS</SAP:RCVPRT>
    I've been trying to trace down the string value for the RCVPRN, but i cannot find it anywhere.  Perhaps i'm just overlooking it?
    When i set the proper values (port = SAP<SIDofECC> and partner number = <LSnameof ECC>) using WE19 in the remote system then the partner profile is found and i'm left with different error to please specify an address group.
    Any help is very much appreciated! :-D

    Hi Jason ,
    Just check out if you have done the following steps most of us make minor mistake here ....... I think this would solve your problem
    To Configure the IDOC SCENARIOS ,PROCEED AS FOLLOWS
    STEP 1:ALE SETTINGS TO POST IDOC INTO SAP R/3
    We need to do the following settings in XI
    1) Create an RFC Destination to the Receiving System in transaction code (SM59)
    a) Choose create
    b) Specify the name of the RFC destination
    c) Select connection type as 3 and save
    d) In the technical settings tab enter the details SAP SID/URL and system number#
    e) Enter the Gateway host as same details above SID/URL
    f) Gateway service is 3300+system number#
    g) In the Logon /Security tab, enter the client, user & Password details of Destination system
    h) Test the connection and remote logon.Both should be succesful
    2) Create Port Using Transaction Code IDX1
    a) Select Create New button
    b) Enter the port name as SAP+SID (The starting char should be SAP)
    c) Enter the destination client
    d) Enter the RFC Destination created in XI towards R/3
    e) Save
    3) Load Meta Data for IDOC Using transaction Using Transaction (IDX2)
    a) Create new
    b) IDOC Message Type
    c) Enter port created in IDX1
    SETTINGS IN SAP R/3
    We need to do the following settings in R/3
    Logon to Sap R/3 System
    1) Create an RFC Destination to XI in transaction code (SM59)
    a) Choose create
    b) Specify the name of the RFC destination
    c) Select connection type as 3 and save
    d) In the technical settings tab enter the details SAP SID/URL and system number#
    e) Enter the Gateway host as same details above SID/URL
    f) Gateway service is 3300+system number#
    g) In the Logon /Security tab, enter the client, user & Password details of Destination system
    h) Test the connection and remote logon.Both must be succesful
    2) Create communication Port for Idoc processing Using Transaction(We21)
    a) First Select Transactional RFC and then click create button
    b) Enter the destination port name as SAP+SID (The starting char should be SAP)
    d) Enter the RFC Destination created in SAP R/3 towards other system.
    e) Save
    3) Create Partner Profile with Inbound Parameters (WE20)
    a) Create New
    b) Create the Partner no. name as same the logical system name of the destination system
    c) Select Partner type LS
    d) Enter details for Type: US/USER, Agent, and Lang
    Then Save
    e) Select Partner no. and LS which were create above
    f) Now we have to give some Inbound Parameters.So click on ADD TO Create Inbound Parameter
    g) Select Message type
    h) Double click on Message Type and Then Enter the details for Message Type and Process Code.
    I) save
    4) In Transaction SALE, Create Logical System
    a). Go to Basic Settings-> First Define logical systems
    and then assign logical systems
    b) Double click on Define the logical systems
    c) Give data for your Logicaal System and Name
    d) Now click on Save.Here one window may appear just click on Continue.Now the Logical System name is ready
    e) Assign the logical system name to the client
    do let me know if it helped
    Edited by: Tom  Jose on Feb 21, 2008 9:04 AM

  • IDoc processing issue

    Hello,
    I have a customer defined idoc, when it comes into the inbound queue it get's status 64 - "IDoc ready to be transferred to application", and a job is generated for the processing instead of just immidiate processing.
    It's important to mention that the partner profile configuration is set to immidiate processing.
    Why does this happen and how do I change this situation ?
    Thanks,
    Elad.

    Hi,
    As you have mentioned that you are using custom defined iDoc, you might be using a custom defined BAPI to receive the data from the iDoc.
    As you have said that the status is 64, your iDoc has entered the system & it has failed only when the data being sent to the application.
    kindly, check if the custom defined BAPI or RFC is working fine & whether it updates the status record or not? because you custom BAPI will be receiving the data from the iDoc.
    Also, test the scenario using the transaction WE19.
    or else you can use manual processing of iDoc using T.code - BD87.
    kind regards,
    Thangesh

  • Test tool for IDOC processing issue

    Hi
    I am doing a IDOC to File Scenario
    Please clarify me
    The RFC destination and Port which I have created in ECC I am getting the same in the "Edit Control Record Fields Receiver Tab"
    But
    The RFC destination and Port I have created in XI is not appearing in the "Edit Control Record Fields Sender Tab" (when I pressF4)
    where I should have to check for this errors.
    Please check this link
    http://www.flickr.com/photos/33169400@N05/3097589223/
    thanks
    manian

    Thanks Creasy for your reply
    Actually I am following the below link.
    Pls refer  Step4 Page 6. He has selected tRFC
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/soa-middleware/soa-management/exchange-infrastructure/a%20step-by-step%20guide%20on%20idoc-to-file%20using%20business%20service%20in%20the%20exchange%20infrastructure%20integration%20directory.pdf
    thanks
    manian

  • Payment processing issues when signing into your Apple account

    Please what do I do to get my apple Id signed in. I have signed in several times and I get a billing information saying payment processing is temporarily unavailable.

    I have the same problem...did you solve this problem?

  • Automatic batch determination when more items have the same material

    Hi guys,
    I have a problem with automatic batch determination in the delivery note where more items has the same material number.
    For example:
    Sales order items
    Item   Material   Q
    1        130         5 kg
    2        130         4 kg
    Stock for this storage location is:
    material    batch    Q
    130           1000     3kg
    130           1001     7kg
    When I create delivery note I get this:
    Item   Material   Q   Batch
    1       130            
    90001 130       3     1000
    90002 130       2     1001
    2       130
    90003 130       3     1000
    30004 130       1     1001
    As you can see, both items has the same batches. This is not good, when post goods issue. Normally there is no stock availaible for both items.
    Is there any customizing to do this correctlly?
    Thanks for an ansver.
    BR, Matic

    What is the purpose of giving the same material as second line item.
    specify in the first line item itself.
    or els the condition record which you have specified that for 100 material of A gives 10 material of B modify it to 10 of A should give 1 material of B
    The first you will be useful for you.

  • "Output could not be issued" when trying to display the layout of the order

    "Output could not be issued" error comes when trying the display layout of the order confirmation.
    Thanks

    Hi,
    This error is faced generlly when output type has not been assigned to the document type.In sales order Follow the path
    Goto-Extras-Output-Header-Edit.
    Here mention the output type and communication medium and save the document.
    Now try to issue the output.
    I assume that you have maintain the output determination procedure in SPRO.
    For automatic determination of output maintain the output condition record
    Reward points if useful
    Regards,
    Amrish Purohit

Maybe you are looking for

  • ERROR:MapLib:973 - Tri-state buffers are not supported in this architecture.

    Hi, I face a ERROR:MapLib:973 problem with inout port in a pcore component. I need ton instantiate an inout port at the top level to communicate wih my peripherical. This inout port is driven by an XPS IP core (pcore). The .mpd is  : PORT fdata = "",

  • Messages won't automatically preview received pictures?

    When I had OSX 10.8, the messages app showed recieved pictures that were attached to images automatically. Now I have 10.9 and I have to select the name of the image and hit the spacebar to actually see it.. Is there a way to change this?

  • PRD Movement

    Dear All, Can we move the std cubes from dev to prd or can we install it from BI in PRD also?? which is the better?? We are using the std cubes only for CO. Give me some suggestion. Points will be rewarded. Thanks Sathya

  • Tutorial error message:

    I use Mac Mountain Lion.  Also use Safari.  I also tried Firefox and had the same result. I can not see any video when I access the tutorials.  I get error message: Error: Error #2130: Unable to flush SharedObject. at Error$/throwError()............

  • Appointement mail in outlook

    Hello, Do you know how can i send a appointement with this functions (you know with the buttons : Accept ....) Is someone can give me something because i don't find any interesting document or codes . Thanks.