EREC Candidate E-Mail ID Transfer to ECC

Hi Gurus,
We have a requirement of transferring the Candidate E-Mail ID from the EREC server to ECC where in we need to bring it to ST0030 of IT0105. We have a stand alone system & the version is EHP6. The candidate email id should be coming from ADR6 table (SMTP_ADDR) of EREC server & it should be stored in the table T752F of ECC which in turn would be sent to ST0030 of IT0105 dynamically. The flow from EREC to ECC happens through a RFC connection. Please advice how to go about it.
Thanks&Regards,
MVV

change select query like dis...
SELECT akunnr aname1 aname2 aktokd aerdat astras aort02 aort01 apstlz aknurl a~regio
bvtweg bvkbur binco2 csmtp_addr
INTO CORRESPONDING FIELDS OF TABLE itab
FROM kna1 AS a
INNER JOIN knvv AS b ON akunnr = bkunnr
LEFT OUTER JOIN adr6 AS c ON aadrnr = caddrnumber
WHERE a~kunnr IN kunnr
AND a~ktokd IN ktokd
AND b~vtweg IN vtweg
AND b~vkbur IN vkbur.

Similar Messages

  • Transfer to ECC fails in the SCM 7.0 testing system

    We  use only DP and are upgrading from SCM 5.0 to SCM 7.0. The planning book from where we transfer the Demand Plan to to ECC has a time bucket profile set up where it is maintained in months and the display is in weeks. The transfer to ECC happens in weekly buckets. Beacuse of this in the testing system for SCM 7.0 - the transfer fails as the system says that "Transfer to R/3 with mixed periodicites is not allowed".
    The transfer has worked fine in SCM 5.0 version for over 3 years. Any suggestions here will be greatly appreicated.
    Thanks,
    Sarita Doddi

    Hi Sarita,
    Please check the link below. It clearly states the data view used for the transfer process should have one periodicity only.
    A planning buckets profile with one periodicity only (if it contains more than one periodicity, the job is aborted with an error)
    http://help.sap.com/saphelp_scm70/helpdata/en/5f/176d4160168147e10000000a1550b0/frameset.htm
    If you need different aggregation levels for the transferred demand (e.g weekly for 2 months forllowed by monthly for 10 months), you may have to release the demand in 2 steps.
    Step 1: Release with a data view with only 2months in weekly buckets
    Step 2: release with a dataview month 3 to month 12 in monthly buckets.
    Regards
    Ashok

  • CRM Sales Order Not getting transfer to ECC System

    Hi,
    We had created one sale order in CRM and created sale order is not getting transfer to ECC system. BDOC are ending into error status and following are the error which is getting generated
    ERP adapter is called
    item is not to invoice0000000010
    Service that caused the error: CRM_1O_DELTA_MOB_MBDOC_SRV
    We had cross check the item category in CRM and ECC system and it seem to be fine.
    We had tried opening the document and it is gettinh opened suceesfully also.
    In case if any one had face this issue then please let me know the solution step to get this issue resolved.
    With Regards
    Ankush Rai
    9423404043

    Hi Anukush,
    To replicate a sales order from CRM to ECC you should have following prerequisties.
    1. Master Data: Customer, material should exist in both the system
    2.Organization Structure like Sales Org, Division, Distribution Channel (Sales Area) should exist in both the system
    3.Same Document Type,Item Category, Item Category Determination should exist in both the system
    4.Same Number Range should exist in both the system
    Best Regards,
    Rajendra Sonawane

  • How to debug a failed shopping cart transfer to ECC in classic mode

    Hello,
    I am using SRM 5 in classic mode, connected to ECC 6.0.
    I have an error message in the administrator monitor that tells me a transfer a shopping cart to ECC has failed.
    "Shopping cart 1000000123: Error creating the follow-on document"
    (Message is BBP_PU 367)
    This is located in the "local errors" section of the administrator monitor.
    The follow on doucment will be a PO in ECC.
    This message does not tell me the cause of the problem therefore I need to retrnsmit the cart and debug to find the error message that is being returned from ECC.
    I have browsed the forum and there are various answers about debugging but but have not found exact instructions on how to debug, and it is now always clear on whether the instructions apply to classic or extended classic.
    I have seen reference to the method in note 539978 that creates test data with FBGENDAT for the ECC BAPI. However this method does not seem suitable for a production system because it will interfere with all shopping carts being transferred while the shoppign cart with the problem is being debugged.
    Therefore I would like to debug in SRM just for the shoppign cart with the problem.
    Hopefully this thread will become the defintiive poitn of reference for debuggin a classic shopping cart transfer to ECC  in SRM 5.
    I propose to use function module BBP_PD_SC_TRANSFER to transfer the shopping cart again by entering the shopping cart GUID.
    Question 1) Can this error message be returned by checks in SRM before the BAPI is called in ECC? If so, where do I place a breakpoint to find the error determined by the checks in SRM?
    Question 2) If the system is getting as far as calling the BAPI in ECC, is it possbile to find the error message passed back from ECC by this approach, given that the actual transfer is carried out by the spooler?
    Question 3) If this approach is valid, in which method/function module do I need to place a breakpoint, at which statement is the error message passed back to SRM from ECC?
    Your help would be appreciated,
    Reagrds

    Hi Paul,
    a small correction to Dishas comment:
    The class CL_BBP_BS_ADAPTER_PO_CRT_470_1 is used for the backend release 4.7, so it is not relevant for you. Instead of this, you have to take the CL_BBP_BS_ADAPTER_PO_CRT_ERP10 and method CREATE_DOCUMENT. This is the last step, before the SRM calls the backend system.
    From the alert "local errors" I suppose, that there is an error in the SRM customizing (in case the error message comes from the backend system, you get the message into the "Backend Application error").
    Typical customizing error, when e.g. the number range of the purchase REQUISITION is not correctly customized (in case the prerequisits for a PO are not fulfilled, the system tried to create a purchase requisition). See the note 1173815 regarding this problem.
    Back to your questions:
    The activating of the FBGENDAT was a good idea, but I would give here two hints:
    - I case of production system you can use only the "Mode B".
    - Activate the FBGENDAT only for a short term:
    -- at first set the breakpoint in the method CREATE_DOCUMENT (as above described)
    -- execute the BBP_PD_SC_TRANSFER
    -- you will be stopped at the breakpoint.
    -- Now you can activate the FBGENDAT in the backend
    -- go on with F8 in the debugger in the SRM system
    -- >>> test data will be filled in the backend system (BAPI_PO_CREATE1)
    -- deactivate the FBGENDAT
    You can do this in one min. and the worst what can happen is that you have 2-3 test data in the BAPI_PO_CREATE1 additionally to the erronous SC.
    Question 1) Can this error message be returned by checks in SRM before the BAPI is called in ECC? If so, where do I place a breakpoint to find the error determined by the checks in SRM?
    - Maybe... Places for setting breakpoints
    -- FM "BBP_PD_MSG_ADD"
    -- System command "RAISE"
    -- FM "META_BAPI_DISPATCH" (typical problem, see above, and also the note 1173815)
    Question 2) If the system is getting as far as calling the BAPI in ECC, is it possible to find the error message passed back from ECC by this approach, given that the actual transfer is carried out by the spooler?
    - Yes, you can find the message in the:
    -- Test data of the BAPI_PO_CREATE1, if you have activated the FBGENDAT
    -- In the method CREATE_DOCUMENT if you "comes back" from the RFC call from the backend
    Question 3) If this approach is valid, in which method/function module do I need to place a breakpoint, at which statement is the error message passed back to SRM from ECC?
    - see above, CL_BBP_BS_ADAPTER_PO_CRT_ERP10 method CREATE_DOCUMENT
    Kind regards,
    Peter

  • Material PR transfer from ECC to SRM without Account Assignment

    Hello,
    When a material PR without account assignment is transferred to SRM. The scenario is determined as direct procurement and system will behave in extended classic scenario.
    I would need the PO to be posted in backend ie Classic scenario.
    We are in SRM 7.0 using SOA PR transfer from ECC EHP 4 system.
    I believe there is  consulting note available for this scenario. If any body has the note number please share it.
    Thanks,
    Rohith

    Symptom
    While running Materials Replenishment Planning (MRP) purchase requisitions (PR) will be created in SAP ERP (e.g. after creating a Planned Order in MD10).
    Before SAP SRM 7.0 these requisition got the field EPROFILE assigned which enabled the system to extract the PR document to SAP SRM by using report BBP_EXTREQ_TRANSFER. As of SAP SRM 7.0 and SAP ERP 6.04 you configured Business Add-In ME_REQ_SOURCING_CUST to trigger SOA message PurchaseRequestERPSourcingRequest_Out.
    After running MRP you notice that no sourcing request SOA message got generated.
    Other terms
    SOA, MRP, Sourcing, external sourcing,
    BBP_EXTREQ_TRANSFER, EPROFILE
    MD10, MD14, MD04
    Reason and Prerequisites
    Program error.
    Solution
    Due to complexity it is not possible to provide a SAP core correction. However PP-MRP application provides a BAdI interface that gives the possiblity to trigger this functionality of external sourcing.
    If you need to use the external sourcing with SAP MRP create a new implementation for BAdI MD_PURREQ_POST and inherite from the class provided in attached correction instruction.
    Note 1546980 - MRP PReq: PurchaseRequestERPSouricingRequest_Out not send
    1263876 - SAP SRM: Configuration of Procure-to-Pay Scenario
    Note 1504247 - ME54/ME55 does not trigger sourcing SOA message
    Note 1436550 - Multiple PR scenario PurchaseRequestERPSourcingRequest_Out

  • Why can't plant condition price modification transfer to ecc

    Why can't plant condition price modification transfer to ecc
    the modification is delete.
    please help fix,
    thank you in advance

    Hi there,
    1241529  Percentage discount condition transferred to backend as 0
    If you are on SRM 4 maybe try these.
    1168896 Plant specific price not passed to the item price
    1171460 GOA: Plant passed at item level in plant-specific conditions
    Hope this helps,
    Kind Regards,
    Matthew

  • E-Recruiting 6.04. Issue with internal candidates e-mail.

    Hi,
    We are on E-Rec 604 with seperated standlone e-rec system.
    We did the initial transfer of employees with ALE and we though that all were ok, but now we realized that there are some internal candidates that no have e-mail adress in e-recruiting.
    We have been investigating and those employees have filled the infotype 105 subtype 0010 in Hr system. In E-Recruting system the user created by ALE has the e-mail too, but in transaction BP only a few of them have filled the field e-mail in the block of adress independent comunication. So only this few internal candidates have e-mail in the portal of E-Recruiting.
    We are looking for any differences of those employees in HR system but we can´t find anything.
    Someone could help me with the reason of this problem, please?.
    And someone know if there is any way for repared this in the e-recruiting system.
    Best Regards,
    Esther

    Hi,
    I just want point out the HCM ALE processes. Firstly independently of connected to eRecruiting or not.
    The message type HRMD_B is containing the infotypes belonging to the software component SAP_BASIS.
    The message type HRMD_ABA is containing the infotypes of the message type HRMD_B and the infotypes belonging to the software component SAP_ABA.
    The message types HRMD_B and HRMD_ABA must be used to distribute HCM data into non-ERP based landscapes.
    The message type HRMD_A is containing the infotypes of the message type HRMD_B and the infotypes belonging to the software component SAP_HR. It should then be used to distribute HCM data into an ERP based landscapes.
    Esther is describing an eREcruiting standalone based on an ERP landscape. Therefore, the message type HRMD_A should be used.
    Then, from the HCM integration in Business Partner point of view, the standard implementation of the BAdI HRALE00INBOUND_IDOC should be deactivated. This implementation is normally converting the object P into a CP, because the object P is known only in HR (and ERP based landscape). In an ERP based landscape, the P will exist with its CP. The integration to the BP will not work during the ALE-Inbound process, but during the Synchronization run (report HRALXSYNC). The implementation makes sense only in none-ERP based landscapes (where message type HRMD_ABA will be used).
    Ester should then adapt her distribution model to be able to distribute the necessary infotypes for the consistency of a P (infotypes 0000, 0001, 0002, 0003) as well as the one which are used for the BP-integration (infotype 0006 subtype 1, infotype 0009, infotype 0105 subtypes 0001, 0005, 0010, 0020), as well as the HR-object CP and its relationship to the P (infotypes 1000 and infotype 1001 subtype B209).
    With the hope it is clarifying the usage of the message types depending on the used scenario and on the used landscapes.
    Best regards.
    Pierre

  • Report on New vendor transfer from ECC to GTS

    Hi we have run the batch job daily basis to transfer new vendors from ECC to GTS system, my client want to know that list of the venodors(Business Partners) has been transfered today in GTS system on particular day to screening SPL. where i can see this, or any possible solution saying that get mail notification  to users - once vendors are transfered based on job batch runs.
    regards
    Satish

    Satish,
    You can see the log  in System Monitoring > Transfer logs for business partners or by executing the transaction:  /SAPSLL/PARTNER_APPL.
    However in order to see the required logs,  you need to  configure the  u2018Control Profile for Loggingu2019 in IMG.
    Hope this helps.

  • Vendor Transfer from ECC to SRM-EBP

    I want to transfer vendor from ECC to SRM-EBP.I tried the T code BBPGETVD. But I am getting the below log:
    "Error: Error while Creating Business Partner (BP) Module: BUPA_CREATE_FROM_DATA Vendor: 0000100011".
    Please suggest.

    Hi
    I have seen this error. However kindly check in SRM side
    In BP transaction 0000100011. Is this vendor is vailable or not.
    OR
    do some cosmetic change in this vendor in XK02 and when you run BBP_VENDOR_sync REPORT BRINGS you this vendor in SRM
    Muthu

  • Mail Server Transfer!

    I have Xserve running Mail Server, OD and Web which includes Mailman and webmail.
    I have the boot drive and another partition which has the Mail Data on it..
    what is the best way to transfer the files from this machine to another Xserve running 10.6.. i mean i know how to export mail settings under Server Admin, but how can i get the database and all that transfered.. i'm afraid i will lose something .. and never done this before!

    I do my Cyrus backups to one of the internal drives on my Xserve via mailbfr (1 for backup 2 drives for mirrored OS, and an external array for mail data). When I want to migrate a user to my new Xserve running 10.6, I eject the backup disk and put it in one of the drive bays on the new Xserve. On the new Xserve, I have two 2TB drives mirrored for the mail, an internal SSD drive for the OS and a cheapo third drive I backup the OS to via Carbon Copy Cloner. I can just pop the third drive out and put in the backup disk from the other Xserve.
    Note: I assume you are running Leopard Server on the old Xserve. Before you move any mail data over, you must stop the mail service. Cyrus is prone to corruption of the mail database unless you stop the mail service. Not so much with Dovecot, which is a big reason I am migrating...
    Other was to do it are to copy your mail database to a Firewire of USB drive, then on to the new server, or over the network. Just remember to stop the mail service first.
    On my new server, I am creating my OD users from scratch. I had some corruption on my other server, and wanted to start clean. For the mail settings, I'm duplicating them by hand via the ServerManager Mail plugin, or manually editing the files (/etc/postfix/main.cf and etc/dovecot/dovecot.conf). Also, I'm not doing all the mail accounts at once, but in groups. all-at-once is too risky for me. See:
    http://discussions.apple.com/thread.jspa?threadID=2383747&tstart=0
    for some specifics on my mail migration.
    Message was edited by: flatrack

  • Reg: Vendor E-mail address transfer in ALE

    Hi Gurus,
    We are currently in a process to transfer vendor master and customer master to GTS system(SAP system)
    so i have implemented change pointers for this. in BD53 i have done reduction as well .
    i don't want the e-mail field to be sent to GTS system. but it is still moving to GTS system.
    can anybody advice me , how to prevent this?
    Thanks in advance
    S.Janagar

    Adresses and emails are stored in central address managment tables.
    The part of address that you see in vendor IDOC is just the part that can be seen in LFA1 table.
    To transport the address from central address managment you have to use IDOC ADRMAS
    see OSS note 384462 - Master data and addresses
    for full detail and recommendations

  • No Business Partner generated for new employee transfer from ECC to SRM

    Hi All,
    I am working on SRM 5.0 with ECC 6.0 backend. The HR structure is replicated from ECC using ALE, message type:HRMD_ABA.
    When I am trying to replicate a new employee from ECC to SRM, I run the O-insert first, then the S-insert and then the P-insert using PFAL transaction.
    The Org structure was already in place in SRM, so it just adds the new position to it by A003 relation. The S-insert generated idoc shows status as '53' in both ECC and SRT with the relation A003, B007 and A008. But, when I check the table HRP1001, the A008 entry is missing. Due to this, no CP is generated for this position and also no business partner is generated for this user.
    When I run the P-insert for this employee, the idoc is posted in ECC. But, the status of the idoc in SRT is '52' and the message shown is "The Parameter Country Has Not been Entered During Naming Format Check" Message No. R11206.
    I checked the Name Format for this employee, and it is maintained as 2.
    Where am I going wrong? Why is no CP person generated even when the idoc status is 53? Why isn't the new employee getting transferred to SRM server?
    I have checked the SAP notes related to HR-ECC Org transfer, but I am unable to figure out the reason for this problem.
    Could anyone help me out in this?
    Regards,
    Ancy

    Maintained the name format tables (SA13)on ECC and SRM side.

  • Demand transfer from ECC to SNC using RSMIPROACT Programme

    Hi,
    Presently we are using RSMIPROACT to transfer demand (Planned independent Requirements-T-code MD61)from ECC to SNC.
    It transfers the demand always from version 02 and not from the active version 00.
    I want to know whether there is config to change this.We want to send through 00 verison also.
    Thanks and Regards
    Raghavendra Pai

    Hi Raghavendra Pai
    In ERP system, transaction OMPD. Each transaction has been assigned to active version.
    I believe in your case it is version 02 as active.(Guess)
    If you want both active version and other version data to be sent, then try to enhance the code in includes available in RSMIPROACT program.
    Kindly seek help of PP guy and ABAPER.
    Hope this helps, As per my knowledge we have different versions, so that we can simulate long term PIR and differentiate between various planning approaches.
    Best Regards
    Vinod

  • PO attachment transfer to ECC - Extended classic scenario

    Hi all,
    We are on SRM 5.0 ECS.As standard,can the SRM PO attachments be transferred to  ECC PO?Is this possible in  ECS?If so,what are the steps?

    HI Alexander,
    The purchase order in the Extended Classic Scenario is transferred to the backend system with different Function Modules. The
    attachment transfer logic was only implemented in the Classic Scenario.
    One reason for this decision was, that the leading Purchase Order in the extended classic scenario is the local one, and in the local purchase order the attachments are available.
    At the moment it is not planned to support the attachment transfer in the Extended Classic Scenario. The transfer of attachments to backend PO is developed only for Classic Scenario.
    I am sorry that this is not the result that you wanted. This also explains why in the ECS PO transfer BADI BBP_ECS_PO_OUT_BADI does not have the parameters for attachments where as the Classic PO transfer
    BADI does (BBP_CREATE_BE_PO_NEW).
    We have some notes related to SC and POR reporting issues when transferring attachments to ECC side, but ther are related to Classic scenario:
    1400088: SC attachments transferred to ECC PR are lost on EHP upgrade
    1413792 Attachment deleted after changing purchase order
    I hope this information help you to understand this issue,
    Kind Regards,
    Rafael Rhoden

  • BOM material transfer from ECC 6.0 to GTS 10.0

    We are trying to transfer BOM (Bill of Material) type materials through sales order from ECC to GTS system. However we need to classify in GTS system both parent iteam and child items else the sales order containing BOM material will remain in "blocked state".
    We want to know the configuration setup in ECC for those type of materials wherein we control their sucessful transfer to GTS10.0. If possible could you guys shrae some config document for BOM in both ECC and GTS systems. WOuld really appreciate your help.

    Hello Chetan,
    see ECC IMG:
    Sales and Distribution --> Foreign Trade/Customs --> SAP Global Trade Services - Plug-In --> Control Data for Transfer to SAP Global Trade Services --> Control Transfer of Bills of Product for Preference and Re-Export
    here you can specify your criteria. From your message is not really clear which scenario you trying to run. With sales order you are simply transferring material unless you have preference KMAT scenario implemented. Maybe you can give more information.
    Cheers,
    Gabriel.

Maybe you are looking for

  • Macbook air 13 screen flicker

    I have a problem with my 2 week old 13inch i7 macbook air. When the the screen powers down and I press a button to wake the computer the screen flickers black and grey and requires me to close the screen to get rid of it. It now flickers constantly -

  • Calculate due date

    Hello guys: I need your help here. I try to build an application that has to calculate the due date for 14 days. I have two date picker: 1)P11_BORROW_DATE 2)P11_RETURN_DATE How can i calculate the borrow date plus 14days to become the return date sho

  • HT2478 Too many pictures in screensaver folder - can't change it - help?

    I loaded too many pictures inside a folder for screensaver and now I can't seem to select another folder.  It stops responding when I try to change.  Help?

  • OWB 9.0.4 :SQL*Loader: Operator POSTMAPPING does not support

    Hi, While trying to poulate Analytical Workspace using WB_LOAD_OLAP_CUBE, I got the following validation error The analysis of the mapping is not successful under all supported languages and operating modes. Detail is as follows: SQL*Loader: Operator

  • How do I save DVDs onto my iMac

    I have to rip a DVD onto my iMac with handbrake but message coming up saying 64 bit not compatible.  Any advice would be greatly appreciated as I am new to iMac.