Idocs from R/3 should not go to XI

Hi All,
I have Idocs -shipment idocs, which are going from R/3 system to XI.
Is there a way to prevent this to happen. Can some somebody help me on this.
Kind Regards
Chakradhar

If its no more needed you can delete the distribution model view.
1) go to BD64 Model view in edit mode
2) select the Model View which has the message type you dont want to send data for
3) Press "Delete"
Pls let me know of it helps.
Regards
Shital

Similar Messages

  • IDOC from ECC to XI not coming

    in a XI scenario, IDOC is being sent from ECC to XI,
    in ECC, tcode- we05 i can see the IDOC status as 03 (Green),
    but it has not reached XI,
    this problem occurs sometimes, i mean to say, for the same scenario, sometimes IDOC comes properly, sometimes it doesnt,
    i have seen SM58 in ECC, no dump there,
    all port, partner profiles are ok, since it is 03 status (Green) ,

    Hi Sudheep,
    Check in XI's ABAP Stack of SMQ2, i.e Inbound Queue of XI.
    Check if there is nay entries are present in SMQ2 and release them by clicking on Unlock button.
    And also check in IDX2 whether the meta data is loaded or not and see in IDX5 for IDOC-XML
    Regards
    Seshagiri

  • Datas from info record should not overwrite BAPI_PO_CREATE parameters

    Hi,
    I intend to pass the netprice value while posting PO through BAPI_PO_CREATE.
    but the values from info record overwriting the parameters supplied.
    Please guide me how to avoid this overwritting.
    Thanks,
    Vempalli

    and have you set a breakpoint at loop at input file and at bapi_po_create ??
    perhaps there is something wrong with the amount of items passed ?
    kind regards
    arthur

  • Security Deposit Amount from customer should not be deducted

    Hi,
    client requirement is Security deposit from Dealer(Customer) should not show the balance of amount of Invoice of the Dealer, It should be shown seperately and not show the balance after deducting Security deposit. This security deposit is returnable to Dealer.
    So, all the invoice raised to customer and credit memo should be shown different amount without deducting from Secutiy deposits.
    For example If Rs. 1lakhs is security deposit
    there r 3 invoice of debit against Customer say 60000. In customer line item it should not show the balance of Rs40000. It should show only 3invoice amount of Rs.60000 and it should show seperately Rs.1lakhs.
    IS Thereany configuration of this scenerio.
    Regards,
    Sreekanth

    Hello,
    This is what expected to do.
    That is the reason SAP has provided with two check boxes in FBL5N.
    If you select only normal items you will be shown INR +60000
    If you select both normal items and special GL items, you will be shown INR 40000- (-10000+60000)
    If you select special GL items it will be shown -100000
    There is nothing special you are required to do.
    Regards,
    Ravi

  • PO should not go for approval if it is from a contract

    Dear Gurus,
    This company wants to approve the contract but the POs created from that contract should not go for approval again. Please give an idea to achieve this requirement?
    Thanks,
    Chameendri

    Hi,
    We need to define Contract under characteristics of PO approval process goto SPRO > Materials Management > Purchase Order > Release Procedure fro Purchase Orders > Edit Class
    Enter Class : for example POREL , class type 032 > Char tab
    Enter POCONTRACT under characteristics
    Enter Contract Number  under description
    Enter CHAR under Data Type
    Enter 10 under No.of characters and 0 under decimal places
    Then go to PO release strategy > Classification
    Enter Contract Number under characteristic Description and Value leave it blank
    this is what we did in our company and it is working fine.
    POs created with referece to approved contract is not triggering to approval process again.
    I dont know whether you are still waiting for the answer.
    Please try and let us know the results, if it works.
    Thanks.
    Udaya

  • PR from MRP should not go to Release

    Dear All,
    How to control that PR generated from MRP Run should not go to Release Process.
    Regards,
    Pardeep Mlaik

    Hi,
    Have a concept always that to keep two document types of PR ieu2026u2026one is document type of manual PR & another document type for MRP PR document type .Now   link plant, MRP group & MRP PR document type in OMDT t.code & maintain the MRP group in the MRP 1 view of the material master.
    Do not keep value of MRP PR document type   in release characteristic of document type of PR. So when you design your release strategy, you would not have option to select MRP PR document type.
    Now when system will create MRP PR, you just view the MRP PR with no release TAB.
    Regards,
    Biju K

  • Sending IDOCS from ABAP Program

    hi friends,
               can we send IDOC ( of type MATMAS) form ABAP Program. if it possible how can we send, are there any function modules to do so....could any one tell me the procedure to accomplish the task...i have finished the configuration sting in both reciver and sender systems....just need to send material in form of IDOC from abap program.
    ( Note: not form BD10).
    Thanks in advance,
    Santosh.

    Hi,
      Follow this code it will help u...
    This is for the user created IDOC but as u are making use of ur own basic type i.e., Idoc type MATMAS05
    and u can write the code.
    *& Report  ZZ_Program_To_Create_Idoc                                        
    report  zz_program_to_create_idoc                     .
    tables: ekko,ekpo.
    selection-screen skip 3.
    selection-screen begin of block b1 with frame title titl.
    selection-screen skip.
    select-options s_ebeln for ekko-ebeln.
    selection-screen skip.
    selection-screen end of block b1.
    data: header_segment_name like edidd-segnam value 'Z1EKKO',
          item_segment_name like edidd-segnam value 'Z1EKPO',
          idoc_name like edidc-idoctp value 'Z19838IDOC1'.
    data: header_segment_data like z1ekko,
          item_segment_data like z1ekpo.
    data: control_record like edidc.
    data: messagetyp like edmsg-msgtyp value 'ZZ9838MESG1'.
    data: i_communication like edidc occurs 0 with header line,
          i_data like edidd occurs 0 with header line.
    data: begin of i_ekko occurs 0,
          ebeln like ekko-ebeln,
          aedat like ekko-aedat,
          bukrs like ekko-bukrs,
          bsart like ekko-bsart,
          lifnr like ekko-lifnr,
          end of i_ekko.
    data: begin of i_ekpo occurs 0,
          ebelp like ekpo-ebelp,
          matnr like ekpo-matnr,
          menge like ekpo-menge,
          meins like ekpo-meins,
          netpr like ekpo-netpr,
          end of i_ekpo.
    start-of-selection.
    select  ebeln aedat bukrs bsart lifnr from ekko
              into table i_ekko where ebeln in s_ebeln.
    select ebelp
           matnr
           menge
           meins
           netpr
           from ekpo
           into table i_ekpo
           where ebeln in s_ebeln.
    control_record-mestyp = messagetyp.
    control_record-rcvprt = 'LS'.
    control_record-idoctp = idoc_name.
    control_record-rcvprn = '0MART800'.
    loop at i_ekko.
    header_segment_data-ebeln = i_ekko-ebeln.
    header_segment_data-aedat = i_ekko-aedat.
    header_segment_data-bukrs = i_ekko-bukrs.
    header_segment_data-bsart = i_ekko-bsart.
    header_segment_data-lifnr = i_ekko-lifnr.
    i_data-segnam = header_segment_name.
    i_data-sdata = header_segment_data.
    append i_data.
    select ebelp
           matnr
           menge
           meins
           netpr
           from ekpo
           into table i_ekpo
           where ebeln = i_ekko-ebeln.
    loop at i_ekpo.
    item_segment_data-ebelp = i_ekpo-ebelp.
    item_segment_data-matnr = i_ekpo-matnr.
    item_segment_data-menge = i_ekpo-menge.
    item_segment_data-meins = i_ekpo-meins.
    item_segment_data-netpr = i_ekpo-netpr.
    i_data-segnam = item_segment_name.
    i_data-sdata = item_segment_data.
    append i_data.
    endloop.
    clear i_ekpo.
    refresh i_ekpo.
    endloop.
    call function 'MASTER_IDOC_DISTRIBUTE'
      exporting
        master_idoc_control                  = control_record
      OBJ_TYPE                             = ''
      CHNUM                                = ''
      tables
        communication_idoc_control           = i_communication
        master_idoc_data                     = i_data
    exceptions
       error_in_idoc_control                = 1
       error_writing_idoc_status            = 2
       error_in_idoc_data                   = 3
       sending_logical_system_unknown       = 4
       others                               = 5
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
             with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    else.
      loop at i_communication.
        write: 'IDOC GENERATED', i_communication-docnum.
      endloop.
      commit work.
    endif.
    initialization.
    titl = 'ENTER THE PURCHASE ORDER NUMBER'.

  • Should not come to AE when the IDOC segment missed

    Hi,
    I 've done the multimapping from IDOC to mul.files.
    Here my sender IDOC line Item contains 2 segments.
    Let us assume the first segment named Z1CONSGROUP and having some fields which has mapped to my receiver end files.
    In production system we should not have the case where there is no Z1CONSGROUP segment.
    Here if the IDOC doesn't contain this segment then it's a payload error and it reached to RWB status : system error.
    But, i want to prevent this in production when this Z1CONSGROUP segment doesn't contain the idoc it should n't reach to AE.
    How can i do that...is there any option to maintain such a scenario in XI.
    Please help me out on this.
    Kind regards,
    Y.Raj

    >
    YeswanthRaj Kumar wrote:
    > Hi,
    > I 've done the multimapping from IDOC to mul.files.
    > Here my sender IDOC line Item contains 2 segments.
    > Let us assume the first segment named Z1CONSGROUP and having some fields which has mapped to my receiver end files.
    > In production system we should not have the case where there is no Z1CONSGROUP segment.
    > Here if the IDOC doesn't contain this segment then it's a payload error and it reached to RWB status : system error.
    > But, i want to prevent this in production when this Z1CONSGROUP segment doesn't contain the idoc it should n't reach to AE.
    > How can i do that...is there any option to maintain such a scenario in XI.
    > Please help me out on this.
    >
    > Kind regards,
    > Y.Raj
    the easiest thing to do is,
    1. Use a condition on Z1CONSGROUP and use the EX operator (ref: /people/shabarish.vijayakumar/blog/2006/06/07/customise-your-xpath-expressions-in-receiver-determination)
    2. if the EX gives you a fail, then provide no receiver and use the option 'Options for Behavior at Runtime If a Receiver Is Not Found' -> End Message Processing Without Error (Restart not Possible)
    3. Else provide the right receiver and let the flow continue.

  • IDoc 0000000000181226 was saved but cannot or should not be sent

    Hi,
    when i am sending idoc from ecc to pi using we19 this message shown:
    IDoc 0000000000181226 was saved but cannot or should not be sent
    in sm58  Trfc error status is
    EDISDEF: Port SAPDSD segment defn E2WRF1M002 in ID oc type DEBMAS06 CIM ty
    This scenario is working fine few days ago but from today it is not working.
    Please suggest.
    Regards
    Mohit

    Make sure that the sender partner and receiver partner values corrrespond to the logical system names you have used in your partner profile in we20. Sender Partner Name should be your R/3 logical system name, and Receiver Partner Name should be the Logical System name for which you have created an Outbound Entry in We20.The Sender port and receiver port also should be the one created in We21 for XI, and SAP+"SYSID" for R3
    after completing the we19 ,if you click on oubound , you got the error that IDoc saved but not pushed right,
    see first check partner profile is properly configured or not for outbound IDoc type,
    next check distribution model is configured or not .check port also.
    every thing configured correct, then use se38 and run the program RBDMOIND.
    Thanks,

  • My iPhone 4 will not sync my new voice memos from the "Voice Memos" app to my computer. This is frustrating, should not be so hard, can someone please help. I use PC with windows 7 with iPhone version 6.1.3 and iTunes most recent. Thanks.

    My iPhone 4 will not sync my new voice memos from the "Voice Memos" app to my computer. This is frustrating, should not be so hard, can someone please help. I use PC with windows 7 with iPhone version 6.1.3 and iTunes most recent. Thanks.

    In the Music tab of iTunes, do you have 'Include Voice Memos' checked?

  • ER Contribution should not Deduct from EE SAL and not Display in Payslip.

    Hi Experts,
    I  have Pension ER contribution Wage type:
    1. That should not deduct from Employee SAL
    2. Should not display in Payslip.
    3. Amount store in RT.
    What changes i should do in V_T512W_D table
    Appreciate your early response.
    Regards
    Raj

    Hi,
    We are maintaining the EE & ER contribution.
    EE is working fine with all the validation & deducting from employee every month.
    When we are handling ER contribution that amount is getting deducted from EE sal.
    So we want to restrict ER contribution Deducting from employee sal and not to display in Payslip.
    Figuring out how can we handle this thru Processing, Cumulating or Evaluation class.
    Kindly advise
    Regards
    Raj

  • Schedule lines should not change 3 weeks time from MRP date

    Hi
    Is there any specific customisation required to get following results in case of schedule lines.
    1) MRP should not change/adjust the already send delivery schedule lines  which are lying within 3 weeks time from MRP date
    2) System should not allow to book the GRN unless the messages / print out has been generated from the system in case of scheduling agreement.
    Thanking you
    Shantakumar
    09944009752

    Hi,
    There are 2 possibilities:
         1. use MRP fixing using planning time fences, this is done by putting the relevant settings in the MRP1 view of the material master
         2. use the firming options of the scheduling agreement, these are set per material number that is entered in the scheduling agreement.
    The GR can only be posted for schedule lines that have been processed aka output generated.
    Regards,

  • I have recieved an e-mail seemingly from Apple that has gone straight into my spam. It says that someone has used my Apple ID to sign into iClous on an iPhone 4. There is a lionk to follow to check my details.  I am assuming that I should not so this?

    I have recieved an e-mail seemingly from Apple that has gone straight into my spam. It says that someone has used my Apple ID to sign into iClous on an iPhone 4. There is a lionk to follow to check my details.  I am assuming that I should not so this?

    You can forward the email to Apple at the link below.
    [email protected]
    Also check out the article below.
    http://support.apple.com/kb/ht2075

  • Material once issued thru' PM order,Should not be Deleted From The PM Order

    Dear all,
    IN PM ORDER, ONCE MATERIAL IS ISSUED THROUGH IT, SYSTEM ALLOWS TO DELETE MATERIAL. THIS SHOULD NOT
    HAPPEN AS IT WOULD LEAD TO WRONG COST CALCULATION.
    Order Status : gmps,cnf
    can anybody give me solution to restrict the deletion of component in PM Order.
    From
    Vishal

    Hi,
    You cannot control this through Auth.
    You can prevent this by assigning the message type for message  number 750(cn) to "E= Error" through the config for message control.
    Regards
    Narasimhan

  • When i download music from internet it is not shown in my phone's music library....what should be done to fix this?

    When i download music from internet it is not shown in my phone's music library....whenever i want to listen that music i have to open that application through which i have downloaded it. What should be done to fix this?

    you can only get music to work if
    1. it was downloaded on the itunes app in the iphone
    2. it was synced from itunes on a computer
    downloading files does not work

Maybe you are looking for

  • Ios7.0.2 iPad multigesture left right broken

    Pre ios7.0.2, was able to use multigesture swipe from right of screen to display open windows. After downloading 7.0.2 left right multigesture doesn't work. To display open windows (and swipe upwards to close them), I have to press twice on big butto

  • Adding a 5770?

    Bought a macpro from apple four days ago. Got the single 5770 graphics card but have since decided I wanted another one for more displays. I purchased a card (5770) and installed but get the dimscreen "Restart your computer" error about 30 to 60 seco

  • Phone wont sync to media player

    I have connected my samsung fascinate to my computer via usb. My computer doesnt see it. So, I tried all sync, it has been sitting here for 30 minutes with the rotating symbol going round and round and not doing anything else. I have tried using veri

  • I forgot my id which i setup my ipad with

    hi i forgot my id which i setup my ipad with ,what can i do? <Re-Titled By Host>

  • IPhoto album uploaded to Gallery-downloaded files revert to camera names

    I have created an album in iPhoto 8.1 and uploaded it with full size photos to .me Gallery for relatives to view and download. I renamed the photos in iPhoto and those names appear fine in Gallery. But when people download the photos, the name revert