Things to do after BDC??

Hi Folks
I am running BDC with the help of Abaper to upload data in IT0000, IT0001 & IT0002 basically to generate employee code and run BDC for different infotype differently in future.
BDC is running fine and i could see data in PA30 for the appropriate employees. After running BDC i observe that the position is not being attached with Person in PPOM_old/PPOME...
This is absolutely working fine if i run Pa40 manually. because i could see person assigned with the position.
Is there any thing i have to do after running BDC????
Appreciate any help
Regards
Ragavan

Hi Ragav,
Its not necessary to run the programs after upload for IT0008, IT0009, IT0014, IT0015, etc. You have to run the programs after upload for IT0000 and IT0001.The programs have the following usage:
RHINTE00                       Transfer Organizational Assignment (PA -> PD)
RHINTE10                       Prepare Integration (OM with PA)
RHINTE20                       Create missing objects (OM or PA)
RHINTE20_ALT                   Check program for PA-PD integration
RHINTE30                       Transfer org. assignment in batch input folder for infotype 0001
RHINTECHECK                    RHINTECHECK
Please check the documentation of these programs for further details.
You have to run the program RHINTE20 and RHINTECHECK after the data uplaod for IT0000 and IT0001 is completed.
Hope this helps!
Please reward points and close the thread.
Regaards,
Rajeev

Similar Messages

  • What are the things to check after full imp in 10g?

    Dear all,
    Source
    =======
    OS server ==> HP-UX
    Oracle version ==> Oracle 9.2.0.8
    DB Name ==> MSST
    DB total users ==> 320
    Full export in ==> /u02/export/Jan09.dmp
    Tablespaces ==> SC, SC_I, SA, SA_I, PP, PP_I, AC, AC_I, SD
    Destination
    ============
    OS server ==> HP-UX
    DB Name ==> CHDB
    Existg DB users ==> 20
    Oracle version ==> Oracle 10.2.0.4
    copied 9i dump file in ==> /u03/export
    Tablespaces created same as Oracle 9i i.e;
    Tablespaces ==> SC, SC_I, SA, SA_I, PP, PP_I, AC, AC_I, SD
    I had run full import on Destination server i.e; Oracle 10g & following is the command i used:
    imp system/pwd@conn_string file=/u03/export/Jan09.dmp log=/u03/export/Jan09_imp.log full=y ignore=y statistics=none
    Imported successfully with few errors like
    Now my question is
    ===================
    How to check everything is same/similar like Oracle 9i database ( source ), for example ( i used this technique ):
    What are the things to check after full imp in 10g?
    MSST_DB>SHOW USER
    MSST_DB>SA
    MSST_DB>select object_type, count(*) from user_objects group by objects;
    OBJECT_TYPE COUNT(*)
    DATABASE LINK 2
    FUNCTION 23
    INDEX 1795
    LOB 6
    PACKAGE 8
    PACKAGE BODY 8
    PROCEDURE 30
    SEQUENCE 67
    SYNONYM 60
    TABLE 644
    TRIGGER 3
    VIEW 20
    CHDB_DB>SHOW USER
    CHDB_DB>SA
    CHDB_DB>select object_type, count(*) from user_objects group by objects;
    OBJECT_TYPE COUNT(*)
    INDEX 1794
    PROCEDURE 30
    TABLE 644
    TRIGGER 3
    VIEW 20
    FUNCTION 23
    SYNONYM 60
    PACKAGE BODY 8
    SEQUENCE 67
    PACKAGE 8
    LOB 6

    What are the things to check after full imp in 10g?Only public database links which are in use by your these users which you export/import (Only if you did user level export/import and not DB level).
    If you log files does not show error during creation of any object, you don't need to double check any thing. Otherwise do on with the method which you mentioned by counting the objects.
    Or you can create a database link from source to destination and use a query with MINUS to find out if there is any object missing
    select object_name,object_type from user_objects
    MINUS
    select object_name,object_type from user_objects@destination_database;Salman

  • I want a mial after BDC is completed how to do that

    hi gurus
    i want a mial after bdc is over
    plz send the whole code
    thank you
    kals.

    Hi Kalyan,
    create a step in the JOB staring a report. There are samples for sending Mail in this forum.
    Regards,
    Clemens

  • Any existing program to list before and after BDC error?

    Looking for a way to report any BDC errors and show before and after its been corrected.

    Hi,
    Before making correction:-->
    !. If you are using call transaction , then you can all errors in BDCMSGCOLL internal table
    and use fm MESSAGE_PREPARE to generate message texts
    2. If you are using session method then you have error log SM35.
    After making coorection i don't think you have anyway to capture corrected errors

  • Displaying messages after BDC execution

    Dear All,
    I am running a BDC to change the pricing of the return document in transaction VA02. The BDC is getting executed after the execution of one report which is diaplying some records in the output. The output values of the report are : Check Box, Sales Document No & Billing Document No.
    After the BDC is executed for the selected records, I am getting a screen which displayes me for each record if that has been executed successfully or is there any error while executing BDC.
    Now, I want that after the BDC has been executed, a list should be displayed which just shows about the Sales Document No which has been processed successfully by the BDC and another list which displays about the Sales Document No which are not processed successfully.
    Kindly guide me on how I can proceed on this.
    Waiting for your reply.
    Warm Regards,
    N.Jain

    hi Nishu..
    Use the BDCMSGCOLL structure to capture the Messages:
    Using BDCMSGCOLL Structure we have to declare an itab.
    DATA : IT_MSG LIKE TABLE OF BDCMSGCOLL .
    Then We can catch the messages using:
    CALL TRANSACTION 'MK01'
    USING IT_BDCDATA
    MODE 'N'
    MESSAGES INTO IT_MSG.
    IF sy-subrc ne 0.
    LOOP AT IT_MSG INTO WA_MSG
    WHERE MSGTYP = 'E' OR MSGTYP = 'A'..
      <<process Error messages>> 
    ENDLOOP.
    Else.
    LOOP AT IT_MSG INTO WA_MSG
    WHERE MSGTYP = 'S'
      <<process Success messages>> 
    WRITE:/ 'Doc No', WA_MSG-MSGV1.
    ENDLOOP.
    Endif.
    <b>reward if Helpful.</b>

  • Things to do after move tables and indexes to another tablespace

    dear friends.
    last night i move indexes and tables from tbs1 to tbs2.
    I checked:
    - valid objects, everything is ok.
    - indexes and tables was move ok.
    Anything else that i must to check ???
    Pls, could you help me ???
    Really thanks.
    chijar

    thanks to answers my friends
    is correct, i was moved tables: alter table <OWNER.TABLE> move tablespace <NEW TBS>; and my indx: ALTER INDEX <OWNER.INDEX> rebuild tablespace <NEW TBS>...
    i wanted to know what things i must to do after i applied that movement.
    I forgeted recollect statistics, but i recently do it, thanks to you.
    So... its appears that i did it ok. !!!
    Thanks
    cesar.

  • Displaying the successfully created records as messaage after bdc execution

    Hi all,
    I want to display the number of  successfully created records as message(information) after execution of batch session created in sm35.
    could anyone suggest me any solution regarding this?
    Thanks and Regards,
    Ashik

    for error log code check this
    [click here for error log code|http://wiki.sdn.sap.com/wiki/display/ABAP/BDC-Howtohandleerrorlogfiletouploadthedataincalltransaction+method]
    for BDC Session - Automatic Execution from Report
    [click here|http://wiki.sdn.sap.com/wiki/display/ABAP/BDCSession-AutomaticExecutionfromReport]

  • Notification remains locked after BDC of IW21...

    Hello, I have recorded two BDC sessions -- One for IW21 (Create Notification) and antoer for IW22 (Change Notification).  After I run the first BDC for IW21, I pass in the new notification number into second BDC to make changes to the newly created notification.
    When the second BDC is executed a message immediately displays stating that the notification is locked by user...and the BDC halts...
    I am executing the first BDC for IW21 with the following:
    CALL TRANSACTION 'IW21' USING bdcdata MODE 'E'.
    I'm wondering if it has to do with the mode I'm using ??
    Any assistance would be greatly appreciated...
    Thank you,
    Kim.

    Hi Kim,
    See this thread (different subject but similar result and, hopefully, resolution) Mass PO release using BAPI_PO_RELEASE fails
    Regards,   Andy

  • How to send email after bdc upload done?

    Hi Experts,
    How do we send an email after the bdc upload program run successfully. I want to send email to the users saying the material upload successfully message with the material details.
    How can i do it? Is there any way to trigger a mail after calling the bdc upload part?
    Please help me on this.
    Thanks in advance.
    Regards,
    Rashika.

    Hi,
    After the BDC has run. check if sy-subrc is zero or not.
    IF sy-subrc EQ 0.
            COMMIT WORK.
    and in this IF statement use the following code:
        wa_receivers-receiver = so_malid-low.
        wa_receivers-rec_id = so_malid-low.
        wa_receivers-rec_type = 'U'.
        wa_receivers-com_type = 'INT'.
        wa_receivers-notif_del = 'X'.
        wa_receivers-notif_ndel = 'X'.
        APPEND wa_receivers TO gi_receivers.
        CLEAR wa_receivers.
    Populate the subject/generic message attributes
      wa_doc_data-obj_langu = sy-langu.
      wa_doc_data-obj_name = lc_obj_name.
      wa_doc_data-obj_descr = 'Find Inactive PU/DU'(001).
      wa_doc_data-sensitivty = lc_sensitivity.
    Describe the body of the message
      wa_message = '<html><head>'.
      APPEND wa_message TO gi_messages.
      wa_message = '<style type="text/css">'.
      APPEND wa_message TO gi_messages.
      wa_message = lc_style_content.
      APPEND wa_message TO gi_messages.
      wa_message = lc_style_content1.
      APPEND wa_message TO gi_messages.
      wa_message = '</style></head>'.
      APPEND wa_message TO gi_messages.
      wa_message = '<body>'.
      APPEND wa_message TO gi_messages.
      wa_message = 'Hi,<BR><BR>'(002).
      APPEND wa_message TO gi_messages.
    CONCATENATE(' Updation successful')
        '.<BR><BR>'
        INTO wa_message SEPARATED BY space.
        APPEND wa_message TO gi_messages.
    DATA: lv_tab_lines TYPE i VALUE 255.
      CLEAR gi_packing_list.
      REFRESH gi_packing_list.
      wa_packing_list-transf_bin = space.
      wa_packing_list-head_start = 1.
      wa_packing_list-head_num = 0.
      wa_packing_list-body_start = 1.
      DESCRIBE TABLE gi_messages LINES lv_tab_lines.
      READ TABLE gi_messages INDEX lv_tab_lines INTO wa_message.
      wa_doc_data-doc_size = ( lv_tab_lines - 1 ) * 255 + STRLEN( wa_message ).
      APPEND wa_message TO gi_messages.
      DESCRIBE TABLE gi_messages LINES wa_packing_list-body_num.
      wa_packing_list-doc_type = 'HTM'.
      wa_packing_list-doc_size = lv_tab_lines * 255.
      APPEND wa_packing_list TO gi_packing_list.
      CLEAR wa_packing_list.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data              = wa_doc_data
          sender_address             = gc_sender_address
          sender_address_type        = gc_sender_address_type
          commit_work                = 'X'
        TABLES
          packing_list               = gi_packing_list
          contents_txt               = gi_messages
          receivers                  = gi_receivers.
    Regards,
    Rajesh Kumar

  • Two things, One freezing after sending files, two ...

    So yea, the first one i'm sure i'm not the first to wonder why it's doing that for and i did try some of the things that were told to be done like; Renaming skype in the %appdata% and then deleting that other skype folder in that other place but, it just re-freezes after sending anything again anyway, and secondly, for some reason the ads keeps flickering whenever i type something it's not really all that big of a deal on this one but, it's annoying anyway.
    So, in short, why does it keep freezing after sending something and how do i make it stop freezing.
    And on a side note, i'm very terrible with forums so, please don't be hating me if i posted this in the wrong place.

    What version of Windows are you on (XP, Vista, Windows 7, Windows 8 )? Is it 32-bit or 64-bit?
    http://support.microsoft.com/kb/827218
    What is the version of Internet Explorer installed on your computer?
    In Internet Explorer go to Help -> About Internet Explorer.
    P.S. Please, don’t say that you are not using Internet Explorer. This is irrelevant. Skype depends on Internet Explorer.

  • My mac has ALOT of things running just after i restart it.

    So, i play games with my mac (not a great idea xD) i play LoL(League of Legends) alot. So i once slept while watching a stream on Twitch.tv and now when I play LoL the fps are horrible, is almost unplayable. I tried switching video settings, doing softwares updates, restarting it and I turned it off for a whole hour to see if it would have helped on something. After a while i went to activity moniter and cheked "Memory" and saw i had 3.99gb memory used out of 4gb... I think that's the problem all i had open by then was Safari (still like that right now). I restarted my computer and with Safari closed still had like 3.60gb memory used, I don't even know where that is coming from, It has a bunch of files all with like 1-3mb and activity monitor with 24mb. How can i get rid of all those little things.

    Instead of taking me to my personalized desktop page, it froze on the generic mac background.
    The startup disk may need repairing...
    Using Disk Utility to verify or repair disks

  • My iPad air won't charge at all and I don't know if it's the charger or port help!i have had a new port put in before and it worked fine after but it's not working now! I have spent way to much trying to fix this thing one problem after another?

    My iPad air won't change at all, and I don't know if it's the port or charger cable it is charging normally but it just won't charge. I have had a new port put in before after a charger getting stuck in there but it worked fine after and now it's not working at all! I don't know if maybe it's the charger getting old but I have spent far too much money on this iPad then I should have as it's one problem after another witch is causing me lots of stress.

    Try giving your iPad a reset. Hold down the sleep and home keys for about 20 seconds. When you see the silver apple, let go and let it reboot and try again.
    How are you charging it? its's best charged plugged into the wall  not via USB. So if you're trying via USB, try using the supplied power block plugged into the wall.

  • Keeping iPhoto flickr/facebook online things intact during/after reformat?

    Hey all,
    About to wipe my Macbook (Erase & Install) - been awhile.
    I have several albums in iPhoto that are synced Flickr and Facebook albums - will these be 'lost' if i reformat? I can save the iPhoto Library file during the process - if I put that 'back' when I am on my new install of the OS, will those albums return? Is is a preference file that tells iPhoto what's supposed to be there (in terms of the online synced stuff) or something else?
    I really like that they are synced and that there are comments on the albums/photos - don't want to lose that, but need to wipe this machine. I know I can keep the local versions of the albums, and re-upload if I had to - just would like to keep it the way it is, and haven't reformatted since I started using iPhoto to manage online content.
    Thanks a bunch

    Thanks for the responses, was hoping the online sync stuff was held in the library file in the Pictures folder, wanted to ask before I hauled off and deleted everything.
    Not to go off topic but..
    I reformat/wipe every so often, knowing that it isn't necessary, but because for one I just like the fresh start - I like putting only the apps/docs/etc back that I know I am going to use (and anything I forget, I probably don't really need anyway right?), that I know are what I want on the machine - I try out new apps constantly (trial period junkie) to see what's out there - and end up with a stuffed Apps folder after awhile - not to mention whatever else I decide to gunk up my machine with. I work on a very tight (small) hd on my Macbook as my primary (only) machine - space is tight, even with 2TB's of external storage.
    I call it regular maintenance - I know most people don't do it, but I've gotten it down to such an exact science (used to do it every 90 days) I can wipe a machine and have it back up and running in probably an hour or two - preferences, user settings/passwords and all. Call me weird, but I think it's actually kind of fun.
    And it might just be psychosomatic but I swear there's a huge performance boost after a wipe and a fresh install. I work with fairly large 16 bit Photoshop files, and every second is noticeable (even in other apps, iTunes seems to do better after a wipe too) Probably pushing the limits of a non-pro laptop, but it's all I got!

  • Any chance I can recover the photos and other things on iPad after installing iOS7

    After installing iOS7, my photos, all apps/games had gone.  I can see the photos from a data recovery programme but couldn't recover them.  Any chance that I can restore the previous version and recover all the data?
    I didn't back up as I have changed laptop recently too, so the last back up time was long time ago. 

    I updated on iPad.  As I had new laptop, so I didn't back up anything on the new laptop, the old one was long time ago, so photos taken recenlty had all gone.  I can see the photos from a data recovery programme (trial) but is there any way to recover them without buying the programme?

  • I can't get a 'BELNR' after BDC with transaction 'ABABN'

    Hi everybody!
    I faced a problem with BDC.
    I was using
    GET PARAMETER ID 'BLN' FIELD  LV_BELNR.
    and
    CALL TRANSACTION 'ABAVN' USING  GT_BDC
                             OPTIONS FROM LT_OPT
                             MESSAGES INTO LT_MSG.
    These are not working.
    'GET PARAMETER' get previous BELNR number.
    and
    Message table is always empty.
    BDC is working correctly and BELNR number was created.
    I can't find any other function or statement
    What should i do?

    Hi,
    If msg table returning new BELNR number, Store this new BELNR to memory using SET.
    rgds,
    Shyam.

Maybe you are looking for