SA confirmation to R/3

Hi
We have scenario where we want to send the SA confirmations back to R/3 from SNC. I know that in std SNC those confirmations are integrated with SAP APO. But our requirement is to have them in R/3 SA confirmation tab. In R/3 those Idocs are failing because the function module is incorrect. In APO function module (Process Code) available for DELCONF Idoc loading.
Does anybody have face similar scenario?
Thanks
Pravin

Hi,
  Please check the below links, they may helpful.
http://help.sap.com/saphelp_snc70/helpdata/EN/43/43f277cd2b1bcbe10000000a1553f7/content.htm
http://help.sap.com/saphelp_tm70/helpdata/en/43/5343a381325f89e10000000a1553f6/content.htm
Thanks,
Venkat

Similar Messages

  • IPhone 5s voice dial always asks to confirm

    I am able to voice dial most everyone in my conacts database without problems - except my wife. I say 'Call Jane Smith, mobile" and the display correctly interprets my voice and displays 'Call Jane Smith". Then it asks "Do you mean Jane Smith?" Once I say yes, it dials properly. There are no other Jane Smith's or similar in my contacts, and this extra confirmation step does not happen with other numbers. Any idea what could be causing this, or how I might fix it? Thanks for any help!

    Try syncing it back up and make sure the memos are included in the sync.

  • Report on Open Items along with Qty & Value for LA confirmed items

    Hi,
    I would like to know a report of Open POs(No Goods receipt made) but LA confirmed Items along with Values(Amount)
    i.e
    List of confirmed,unsent items along with Values for plant wise or vendor wise or PO Number wise.
    Regards,
    Vengat

    Hi,
    Any other inputs?
    Our client's requirement is to know how many (Both Qty & Value) of items for the input LA confirmed(ASN received) but no GR Made
    Regards,
    Vengat

  • Report for open orders and amount of product confirmed

    Hi All,
    Can some one give me an idea on a report which shows open orders and also shows amount of product confirmed against these open orders?
    Thanks,
    Neelima.

    Hi Veni,
    Incomplete order are the order's in which some data is missing so that particular order can't be further processed, that is what you could check through "Incompletion Log". Whereas Open orders are the orders which are open for further processing viz. deliver billing(but open order is a complete order i.e. no data missing).
    Check this program:
    *& Report ZGM_OPENPO *
    REPORT ZGM_OPENPO NO STANDARD PAGE HEADING LINE-SIZE 132 LINE-COUNT 36(2).
    TABLES: t001w, "Plants/Branches
    ekko, "Purchasing Document Header
    ekpo, "Purchasing Document Item
    marc, "Plant Data for Material
    mara. "General Material Data
    DATA:
    BEGIN OF itab OCCURS 0,
    matnr LIKE marc-matnr,
    werks LIKE marc-werks,
    beskz LIKE marc-beskz,
    mmsta LIKE marc-mmsta,
    END OF itab.
    DATA: BEGIN OF iekpo OCCURS 0,
    ebeln LIKE ekpo-ebeln,
    menge LIKE ekpo-menge,
    aedat LIKE ekpo-aedat,
    wemng LIKE eket-wemng,
    END OF iekpo.
    DATA: BEGIN OF iekko OCCURS 0,
    ebeln LIKE ekko-ebeln,
    lifnr LIKE ekko-lifnr,
    bedat LIKE ekko-bedat,
    ekgrp LIKE ekko-ekgrp,
    END OF iekko.
    selection-screen:begin of block b1 with frame title text001.
    SELECT-OPTIONS werks FOR ekpo-werks OBLIGATORY.
    SELECT-OPTIONS matnr FOR ekpo-matnr.
    SELECT-OPTIONS beskz FOR marc-beskz.
    SELECT-OPTIONS bsart FOR ekko-bsart.
    selection-screen:end of block b1.
    INITIALIZATION.
    AT SELECTION-SCREEN ON werks. "Validate for werks
    SELECT SINGLE * FROM t001w WHERE werks IN werks.
    IF sy-subrc 0. MESSAGE e429(mo). ENDIF.
    AT SELECTION-SCREEN ON matnr.
    SELECT SINGLE * FROM mara WHERE matnr IN matnr.
    IF sy-subrc 0. MESSAGE e429(mo).ENDIF.
    START-OF-SELECTION.
    SELECT * FROM marc INTO CORRESPONDING FIELDS OF TABLE itab WHERE werks IN werks AND beskz IN beskz AND
    matnr IN matnr.
    SELECT ebeln FROM ekpo INTO CORRESPONDING FIELDS OF TABLE iekpo
    FOR ALL ENTRIES IN itab WHERE matnr = itab-matnr AND loekz EQ space.
    SELECT ebeln lifnr bedat ekgrp FROM ekko INTO CORRESPONDING FIELDS OF
    TABLE iekko
    FOR ALL ENTRIES IN iekpo WHERE ebeln = iekpo-ebeln AND bsart IN bsart.
    SELECT ebeln menge aedat FROM ekpo INTO CORRESPONDING FIELDS OF iekpo
    FOR ALL ENTRIES IN iekpo WHERE ebeln = iekpo-ebeln. MODIFY iekpo INDEX sy-dbcnt.
    ENDSELECT.
    SORT iekpo BY aedat.
    DELETE ADJACENT DUPLICATES FROM iekpo COMPARING ebeln.
    SELECT wemng FROM eket INTO CORRESPONDING FIELDS OF iekpo FOR ALL ENTRIES IN iekpo WHERE ebeln = iekpo-ebeln.
    MODIFY iekpo INDEX sy-dbcnt.
    ENDSELECT.
    END-OF-SELECTION.
    DATA : file_name TYPE string.
    file_name = 'c:\pay_det\open_po1.xls'.
    DATA : BEGIN OF it_join_fields OCCURS 0,
    field_name(20),
    END OF it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'ebeln'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'menge'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'aedat'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'wemng'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE =
    filename = file_name
    filetype = 'ASC'
    APPEND = 'X'
    write_field_separator = 'X'
    TABLES
    data_tab = iekpo
    FIELDNAMES = it_join_fields
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT iekpo.
    IF iekpo-menge NE iekpo-wemng.
    WRITE:/4 iekpo-ebeln,21 iekpo-menge ,46 iekpo-aedat, 56 iekpo-wemng.
    ENDIF.
    ENDLOOP.
    if sy-subrc 0. write / 'no data exist for this plant'. endif.
    TOP-OF-PAGE.
    uline 1(80).
    WRITE :/ sy-vline, 20 ' OPEN purchase ORDERs report' color 5,
    80 sy-vline.
    uline 1(80).
    WRITE:/ sy-vline , 4 'PURSCHASE ORDER' COLOR COL_HEADING,
    20 sy-vline, 21 'ORDER QUANTITY' COLOR COL_HEADING,
    45 sy-vline, 46 'item change' color col_heading, 55 sy-vline,
    56 'RECIEVED QUANTITY' COLOR COL_HEADING, 80 sy-vline.
    uline 1(80).
    END-OF-PAGE.
    WRITE :/ 'PAGE NUMBER' ,SY-PAGNO.
    Hope this helps you.
    Regards,
    Chandra Sekhar

  • Open follow up transaction type screen automatically after confirm account

    Hi Gurus,
    I have a transaction type Z010 for interaction record that is copied from standart 0010 transaction type.
    I define dependent transaction type SRVO that is service order as a follow up of Z010
    My requirement is to open automatically open service order screen after confirming account
    As agents must do everything vey quickly while they are on phone, it is needed urgently.
    Now they have to open Z010 interction record screen, have to press follow up button, click to clipboard and then can open the scrren of service order.
    How can we automatically open service order screen after confirming account??
    I will be very pleased if you will help...
    Thanks.

    Hi Denis, thanks for reply.
    I read it and see that interaction record is automatically created. How can it be made, is it a standard customizing?? Our interaction record is created automatically when follow up process-it is service order here- is created. First we confirm customer, then press to Interaction Record at the left hanside, then in this screen we press follow-up button, then click on Activity Clipboard, then service order screen is opened. I want to pass two steps, pressing Interaction Record and pressing follow up record, how can I do this??
    Exactly I have to define process type Business Activity for interaction record, I can't give Service Order process type directly to interaction record. Service Order type must be dependent to business activity, is it true?? If there is a way to directly giving service order type as an interaction record type, and making interaction record creation automatically after confirming, my problem is solved as very well.

  • Automatic TO creation and confirmation for a Material document

    Hi Dear All,
    i am new to MM andWM.
    I have to customization for auto transfer orders and confirmations for material documents what ever created with 101 movement type in Inventory Management. I have down configuration like below.
    SPRO->Logistics Execution->Warehouse Management->Activities->Transfers-> Set Up Autom. TO Creation for TRs / Posting Change Notices
    Double click on ‘control data ‘tab
    Hear for my warehouse I given input like   Auto TO = ‘1’,
                                                                             AddId = ‘select check box’.
    And in ‘Assign control’ tab for 101 movement type I have given input like below.
    Automatic TO = ‘1’.
    TO item can be confirmed immed. = ‘tick checkbox’
    Propose Confirmation = ‘tick checkbox’.
    Foreground/Backgrnd = ‘D’.
    After creating of Material document I am executing report RLAUTA10 in SE38.When I execute this report system showing message like ‘TO processing finished: TR total:   17, TO created:    0, Errors:   17’.
    If I check header details of transfer requirements in LB03, i am not seeing ‘Tick Mark’ in Auto TO Creation field.
    Can any one tell me what the mistake i have down or if i need to do any further configuration. Please help me regarding this concern?
    Thanks in Advance..

    Dear Steve,
    Thanks a lot for giving reply with what I need to do, but I am unable to see result.
    I have down configuration like below even though system not processing Auto TO creation. Can you explain me if I have down any mistake below.
    Click on ‘Assign’ button,
    Press on ‘New entries’
    WhN = ‘900’
    Reference Movement Type = ‘101’
    Movement indicator = ‘B’
    Movement type for Whse Mgmt = ‘101’
    TR create Transfer Requirement = ‘X’
    Immed.TO Creation
    Mail confirmation for background processing = ‘01’.
    GR date = ‘2’

  • Automatic email confirmation in Training and Event Management

    Hi All,
    I need to change the Subject and also need to CC the email on customer class registration auto-confirmation.
    Already configuration has been done to send email when a customer register for training class. But right now the cofirmation email is sent only to the customer but client wants the confirmation email to "CC" to Tranining department also and also they want the "Subject" of the email to be changed.
    I am new to TEM module so, I don't know where the set up needs to be done for the "Subject" and "CC" of the email. I found the Sapscript form which contains the only the body of the email. I found in IMG- TEM >Day-to-Day Activites> set up for sapscript form & notification abbrev (BUCH).
    Please can any let me know where to change the "Subject" of the confirmation email and where to set up the "CC" address for the email?
    Thank you in advance!
    Sonali.

    Hi
    In Table V_T77TNM_DC
    We need to have the below entries
    TNM                                              CL_HRTNM_VALO_COMPUT_GUI_FR
    TNM       HRTNM00_REPMOD        CL_HRTNM_VALO_COMPUT_GUI_FR
    TNM       MP168400                       CL_HRBAS_INFTY_1684_GUI_FR
    TNM       RPCTNM9S_REP            CL_HRTNM_INFTY_1036_GUI_FR
    Regards
    Kenu

  • How do I add multiple tickets under the same confirmation number from the American Airlines app to Passbook?

    I have a confirmation number from American Airlines for a flight with my family all under my name and for some reason I cannot add all of our tickets to Passbook. To clarify, I went to the American Airlines app and put in the confirmation number along with my name which pulled up my boarding pass only. Although I was able to add this boarding pass to Passbook, I was not able to add any of the other boarding passes for my children to Passbook that should have also been under the flight reservation. In fact I couldn't even see them in the American Airlines app. I tried to use their names and the same confirmation number but nothing happened, and nothing else seems to be working. How can I add all of these boarding passes to my Passbook?

    Fair enough.
    I started doing this before unlimited data and emails on phones was a common commodity, on my Samsung Blackjack.
    I then continued it due to its convenience. My only counter argument is this:
    Even when emails are set to immediately push, I am always notified earlier by this forwarding message (sometimes by several minutes/hours due to the fact that it is not dependent on my being connected to 4G or wifi to receive it.
    Also, to contradict snozdop's point that both methods use data and battery, I say this - when I use the forwarding method, the information comes in a pure text format and therefore uses considerably less information than an HTML and CSS rich email, with embedded images and such -also, unlimited text messages aids curve costs.
    I will, however, give this method a go. In any case, a solution to my original question would still be greatly appreciated.
    Thanks guys.

  • Family share isn't working - we set it up and it was working fine for a few weeks then in the last few days it's stopped, we can't see the other members in our family share and it says we aren't set up but it doesn't allow us to confirm and reset up

    Help!  We set up family share a few weeks ago, and it was working fine with the organizer and two additional members.  The three of us could see each other on app and iTunes stores and could view each other's purchased items.  Then ... All of that disappeared.  We cant see each other's profiles any more and we definitely can't view any purchased items.  In addition, when we try to go in and jump start by downloading a free app or logging out and back of itunes, nothing works.  It seems to show we have family sharing in the iCloud settings, and when we click the Apple ID it asks us to confirm, and we confirm, and are asked if we want to change accounts because then we trigger the 90 day freeze period.  And we aren't changing any accounts - just trying to confirm the same accounts to get family share to work!  We are all on the same ios 8.1.3 and os, so I don't know what else to try! 

    No, I am a media professional who uses his MacBook Pro to connect to external monitors, and needs to continue to do so.  I don't want Apple TV.  I want my laptop to work again, like it's supposed to.  Like it used to. 
    I have a demonstration this week at work that requires me to plug into an LCD screen and I am hoping to have this resolved by then.  I am trying to convince my department to buy a Retina Mac and thousands of dollars worth of video software for live shows, and if I can't make it work, then I can't exactly convince them (or myself) to buy what I have been researching.
    Again, I don't want wireless video or Apple TV.  I don't want to buy any more stuff.  I want to know why my Thunderbolt to HDMI cable stopped working after my update, and how to fix it...preferably before this meeting. 

  • I have a question that I think I know the answer to, but am looking for confirmation.  I have a dell computer at home that has clip art available on it for putting pictures into documents.  Do I need to install an APP to get something similar to clip art?

    I have a question that I think I know the answer to, but am looking for confirmation.  I have a desktop computer at home that has clip art loaded onto it.  I recently got an iPad and am looking for something similar.  I assume I need to get an APP for it, and if that is correct, does anyone have one that they like?

    Sort of.  There is an app called art shop that gives you a place to park clip art.   But I don't think you really need it. 
    If you have a collection of clip art you want available, move it to the camera roll on your pad/ phone, then copy paste into your document the clip you want.
    You can get them into the camaera roll by putting them in a single event in your picture library and syncing them over,  or e mail them to your self, and save to the camera roll, or send them to drop box, and bring them down that way.
    The challenge is getting them all in one place to make it easy for you to find, which is why syncing might be the best approach in the long run.
    As near as I can tell there is not a ready made clip art collection in app format laying around.

  • Posting period issue while deleting a confirmation posted for a limit PO

    Hi ..
    I am facing an issue whiel deleting a confirmation posted for a limit PO.
    Confirmation was posted for a limit PO in SRM and it created a service entry sheet in SAP. If I deleted that confirmation in the same posting period, then it is getting deleted. No issue here.
    But if I deleted that confirmation in the next posting period then the reversal document is going to error in process. RZ20 is showing the error "Positng only possible in periods 2012/2 and 2012/3".
    Posting date of reversal document is current date only and the backend posting period is 2012/3, but still it is failing with this posting period error.
    If I tried to delete a confirmation posted for a normal PO then I could able to delete it even in next posting period by just changing the posting date.
    Why this posting occurs while deleting the limit confirmation, even through the posting date is falls within the backenn posting periiod? Is it like, SAP system is trying to delete the service entry sheet in original posting period? Kindly help.
    I am in SRM 5.0 (server 5.5) SP12.
    Thanks,
    Arun

    OK.
    Well, if the variable is not used in any interval selection, then I would say "something happened to it".
    I would make a copy of the query and run it to check if I get the same problem with period 12.
       -> If not, something is wrong in the original query (you can proceed as below, if changes to original are permitted).
    If so, then try removing the variable completely from the query and hardcode restriction to 12.
       -> If problem still persists, I would have to do some thinking.
    If problem is gone, then add the variable again. Check.
       -> If problem is back, then the variable "is sick". Only quick thing to do, is to build an identical variable and use that one.
    If problem also happens with the new variable, then it's time to share this experience with someone else and consider raising an OSS.
    Good luck!
    Jacob
    P.S: what fisc year variant are you using?
    Edited by: Jacob Jansen on Jan 25, 2010 8:36 PM

  • Error while deleting the confirmation- Reason has to be entered for 102

    Hi,
    When i try to delete the confirmation for Goods, an error -"A reason has to be entered for movement type 102" is occuring. I have maintained the reason for rejection in the document tab at the line item level while deleting the confirmation.The reason for movement field is mandatory in R/3 system for movement type 102. I have maintained this reason for rejection that has maintained in the R/3 system in the SRM config and able to select that during deletion of confirmation, but still i am getting this error. Please suggest.
    Regards
    GGL

    sorry for the very late reply..
    Note 1345896 - Error due to reason for movement when deleting the GR in EBP
    When we try to delete a goods confirmation with the Reason for Rejection text in SRM, we get the error "A reason has to be entered for movement type 102" (M7 325) thrown from the backend R/3 system.
    Other terms
    M7 325, RREJ, Reason for Rejection, MOVE_REAS, c_subtype_ca, LBBP_CFF60, FORM mapping_gr_for_backend.
    Reason and Prerequisites
    This is caused by a program error
    it helps aothers too

  • Material confirmation in ECC based on service confirmation in CRM

    The scenario is Service order & confirmation is in SAP CRM & the billing is in ECC
    The Issue is about material ( spare parts) issue in ECC based on the service confirmation in CRM. In ECC the spare parts are batch managed.
    So to do an automatic goods issue in ECC, we need to enable a BAPI for batch determination.
    Now we are contemplating of doing the goods issue in ECC manually.
    Request you to see if the below scenario works or a better solution is possible
    Can we assign a normal sales order type instead of a debit memo so that delivery of spare parts & then billing can take place.
    The menu path I am talking about is  ( ECC- SPRO- Integration with other mySAP components-CRM-Settings for service processing-billing integration-map transaction types & item categories)

    Hi Madhu G
    I have defined the confirmation profile in Opk0. I know that I can assign a different profile with reference to user.
    I dont want confirmation profile based on Storage location
    I want the confirmation screen to be different for different materials -plant combination. Does anyone have any idea how this can be achieved?
    regards
    PK

  • Creation of custom Transaction for confirm goods in SRM

    Hi Experts
    i need to create a custom transaction same as standard one  for confirm goods/servics in SRM portal.
    In sap GUI, the transaction is BBPCF03
    Can you please suggest any good sources where i can learn to Custome Tcodes for my requirement
    Thanks in advance
    Edited by: kittu reddy on Nov 19, 2008 7:27 AM

    Hi Hussaini,
    Here are the steps.
    1> Customization needs to be completed in SPRO. Logistics Execution -> Mobile Data entry section. Also compare entries with LM01 for understanding.
    2> In the 'Define menu management', you can create dynamic menus. For Menu or transaction type, if you enter "1", a menu appears; if you enter "2", a transaction appears. Custom transactions can be created and assigned here.
    Once that is done, when you execute LM01 you will see your custom transactions come up. Make sure that these are created keeping in mind the RF device screen size and limitations.
    Regards,
    Anand.

  • Confirm performance of Service/Goods Receipt

    We are using SRM 4.0 SRM Server 5.0 in extended classic scenario.  Our backend is a R/3 system version 4.70. 
    When changing a purchase order via transaction BBP_POC on the header data tab, go to the follow-on documents.  At the top of this screen is a Document Ctrl section.  There is a box titled "Confirm Performance of Service/Goods Receipt".  We understand that removing the check mark from this box is essentially telling the system that you do not want to perform a goods receipt for this purchase order.  When the invoice is received in R/3, the system will pay the invoice and not put it in a block status.  The business is asking for this ability at a line item level.  In essence they want to tell the system that a goods receipt is not required by line item.  Apparently this capability exists in a purchase requisition in R/3.  Does anyone know if this is possible in SRM?
    Best regards,
    Shawn O'Connor

    Hello Shawn,
    I don't understand your request, because document control in BBP_POC transaction ("Process Purchase Order") is done at item level...
    Could you clarify ?
    EDIT:
    Sorry, i did not see your are in SRM 4.0...
    In SRM 5.0, document control for follow-on document is done at item level.
    EDIT:
    Regards.
    Laurent.
    Edited by: Laurent Burtaire on Mar 14, 2008 3:54 PM

  • Performing goods receipt based on TO confirmation for putaway

    Hi All,
    I am testing the possiblity of creation/confirmation of TO that will post goods receipt the purcharse order or inbound delivery. I have set the Shipping control value to 2 - Copy WM quantity as delivery quantity and post GR/GI. But what is the process to make sure when I perform the confirmation of putaway transfer order it performs the goods receipt. I tried creating a PO followed by creation of TO manually using LT01 for 101 movement type (yes i made config changes to allow 101 to be used for manual TO creation). And finally confirmed the TO. Nothing happened.. there is deficit in 902 storage type.
    Or is this functionality just for picking??

    Hello,
    1. If you are using Handling Unit you can configure the posting of the delivery before or after the TO.
        For that you should go into the IMG and select: Logistics - General->Handling Unit Management->Basics->Delivery->Define                                                                               
    Sequence of Transfer Order - Goods Receipt.
        Within you can specify for each warehouse and delivery item category when to post.
        Remarks:
             1. For working with inbound delivery you should set the Control Confirmation Key to 0004 in the PO/Info rec.
             2. You can not post before TO together with Partial posting of HU. you need to decide.
    2. If you do not work with HU then you will have the minus in 902 area till you post GR.
        option 1: you post the GR with transaction MIGO and create the TO imidiately automatically after posting (customizing via the
                       WM&IM interface).
        option 2: you can use the user exit at the end of TO confirmation and call the function "BAPI_GOODSMVT_CREATE" to post the GR
                       with the TO confirmation quantities. Remark: you need to execute commit before you call the BAPI again.
    Yours Sincerely,
    Yair Ben-Shaul
    SAP LE Senior consultant,
    Ness Ltd.

Maybe you are looking for

  • How do you change pages to word

    I have a pages document that I sent to my daughter who has a PC and she cannot open on her PC. How do I get it so she can open it in word? should I send it in a PDF? or is there an easier way?

  • Firefox 12 won't open tabs; just new windows. What's up?

    I just updated to the latest version FF 12. After the update I can't open tabs anymore. There isn't even a button to open a new tab. The "Open link in New Tab ..." command opens the link in a new window instead. It doesn't seem like a configuration p

  • Problems with DAAP sharing

    Hello guys, I've got a bit of problem that's driving me nuts ;-). On my Macbook, I've got iTunes running. I've set it up so that it shares my music over the network (iTunes uses DAAP). The network setup is fine, a firewall is running on neither of my

  • Re: "You are currently restricted from purchasing ...

    i have the same problem and i had contacted to the support tem by sending the form but i stilll wating for the reply. Any one help plssssssssssssssssssss

  • Tns error in alert.log

    Often I get this error in alert.log file Fatal NI connect error 12504, connecting to: (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=)(CID=(PROGRAM=oracle)(HOST=my_server)(USER=NETWORK?SERVICE)))(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.10.10)(PORT=1521)))   VE