Can anyone help regarding an inbound interface for SAP HCM

Hi guys,
In my recent project I have a inbound interface requirement like the following:
1. The HCM solution system receives the objects on loan information from the non-SAP SCM source system;
2. The information, after certain validation, needs to be updated into the SAP HCM solution on loan Infotype 0040 with asset details.
4. If invalid, HCM solution should not be updated and a log needs to be generated.
The data needs flows through SAP PI. I could not find any IDoc type that can be used here but I found an ES http://esworkplace.sap.com/socoview(bD1lbiZjPTAwMSZkPW1pbg==)/render.asp?packageid=DE0426DD9B0249F19515001A64D3F462&id=227F23C7EFA911DA2B24000F20DAC9EF. I am not sure how to progress on this. I would really appreciate your help.
Kind regards
Nilay

You may find this document very useful for SAP HR integration using Idocs
http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=85884992

Similar Messages

  • Can anyone help me wid d codes for  Generated Program for gate pass

    can anyone help me wid d codes for  Generated Program for gate pass in MM
    Message was edited by:
            Ronei Shedi

    Hi
    There is no std business process in SAP for Gate pass for the Material entry
    before GR stock entry into the stores.
    You have to write a Z program based on the details of Purchase order tables EKKO and EKPO.
    This will mainly check whether the correct PO qty was delivered or not with proper quality.
    So use the PO tables EKKO and EKPO and fetch the data and use it
    Since this is client specific there is no feneralised program for it.
    Reward points if useful
    Regards
    Anji

  • Can anyone help or answer this question for me. Is there a way to have a private album for pictures sent to my phone? Don't exactly want kids ( niece and nephew ) to play on my phone and see private pictures of my girlfriend

    Can anyone help or answer this question for me. Is there a way to have a private album for pictures sent to my phone? Don't exactly want kids ( niece and nephew ) to play on my phone and see private pictures of my girlfriend

    What about this?
    https://itunes.apple.com/ru/app/best-secret-folder/id488030828?l=en&mt=8

  • Can Anyone suggest and audio/midi interface for MacBook Logic Express?

    Can anyone suggest an audio/midi interface for use with a MacBook and Logic Express? I'm seeing a lot of problems with Tascam devices; does anyone have an interface that actually works well? Two audio inputs and midi i/o would suit my current needs, but more would be fine if it works.
    Thanks!

    Any of the Pro-Tool Mboxs will work with Logic Express. Kind of an unadvertised feature. But I have an original M-box with very nice Focusrite Preamps that works like a charm. No midi though.. some of the newer M-boxes have them.
    Also, I have a Presonus Firebox and I know they make some smaller interfaces. No problems working with those.
    M-audio Makes some great interfaces too. Their Fast Track pro would probably have everything you need for under $200.

  • Can anyone help me with External power for the 2900XL

    I hope someone can help me,
    I've got the cisco 2900 XL catalyst, and now my power supply is broken.
    I know its possible to use my own adapter of an normal desktop pc, but i wanna know what the color code is that i must use.
    The current power supply to the mainboard of the cisco is from left to right:
    Orange | black | black | red | red | none
    I also try to find some on the internet but can't find a thing. Can anyone help me or refer me to an site ?
    Thnx.

    check out the following link on power connectors for Catalyst 2900 XL :
    http://www.cisco.com/en/US/products/hw/switches/ps605/products_installation_guide_chapter09186a00800d9cfe.html#1068450

  • HI PLEASE CAN ANYONE RECCOMEND  ME A GOOD INSTITUTE FOR SAP

    HI  I AM LOOKING FORWARD TO DO SAP SD IN NEW JERSEY CAN ANYONE RECCOMMEND ME A GOOD INSTITUTE PLEASE ITS REALLY IMPORTANT AS I AM NEW IN THIS CITY AND I'M REALLY CONFUSED WITH MAKING A CHOICE. YOUR HELP WOULD BE REALLY REALLY BE APPRECIATED
    THANKS

    Hi Monty,
    Check the list of SAP Education centers present in USA by going on the below link:
    http://www50.sap.com/useducation/locations/index.asp
    Regards,
    Subhasha

  • Can anyone help me develop an app for iOS?

    Im trying to develop an application for iOS 8, and I'm looking for anyone who can help me create the idea or maybe even create the idea with me.

    https://itunes.apple.com/us/app/dragon-express/id458613689?mt=12
    http://www.nuance.com/for-individuals/by-product/dragon-for-mac/dragon-dictate/i ndex.htm

  • Can anyone help me find a heatsink for a  dual

    Hi i need a dual processor heatsink. I have a single one in my quicksilver right now. Can the single work with a dual processor? if not please help me find one thanks.

    Suggest you join LEM-Swap for buying & selling Mac stuff. http://groups.google.com/group/lemswap
    After you join, post a WTB (want to buy).
     Cheers, Tom

  • Can anyone help regarding the Admin Login page and Normal User Page.

    Hi Friends,
    I have worked on normal login page it has been worked well. But now i have to create the Admin login page. That means, I have written the code in the following way.
    public String userLogin_action() {
            // TODO: Process the button click action. Return value is a navigation
            // case name where null will return to the same page.
            com.sun.sql.rowset.CachedRowSetXImpl crs = new com.sun.sql.rowset.CachedRowSetXImpl();
            String Name =  getUserName().getText().toString();
            String password =  getUserPwd().getText().toString();
             try {
                crs.setDataSourceName("java:comp/env/jdbc/Employee");
                crs.setCommand("SELECT * FROM srni.UserTable");
                crs.setTableName("UserTable");
                crs.execute();
                crs.beforeFirst();
                while(crs.next()){
                info("Cursor is been moving");   
                boolean ok = crs.getBoolean("Admin");
                info("Value of ok:" + ok);
                String Username = (String) crs.getObject("UserName");
                info("Usernames are:" + Username + Name);         
                if(Username.equals(Name)&&(ok)){
                info("Login Successfull");
                java.util.Date Date = new java.util.Date();
                info(" Admin Logged on :" + Date);
                return "toUserPage";
                info("Login Failed or Admin doesn't exist");
            catch (Exception e) {
                error("Login Failed : " + e.getMessage());
            } finally {
                crs.close();
            return null;
        }You can see there that i have used the boolean type of value for verifying wheter the user is admin or not. If the admin type of column in database is true then it must allow the admin to certain page. Otherwise it must not redirect. So i have used this logic. When i am checking it is showing everything true,but it is not redirecting and it is saying that login failed. Please try the above code with a sample database table and verify it. You can see the output like this.
    Cursor is been moving
    Value of ok:true
    Usernames are: srinu srinu //here it must not go to next cursor,because srinu has been identified, but it is not behaving like that.
    Cursor is been moving
    Value of ok:false
    Usernames are: Chandu srinu
    Cursor is been moving
    Value of ok:false
    Usernames are: kirank srinu
    Login Failed or Admin doesn't exist The above output describes that it is moving the cursor from first row to the last row and checking all the usernames i n each row with the given username, and it is also checking wheter it is admin or not. Currently i have three rows so it is moving three times. It is retreiving every value correctly but in comparing it is not comparing. What to do.
    Please help me out from this problem.
    Thanking You in Advance.

    The buttons are all created using the same library object (but MC), except for the code you have in the revised file does not call on that for the con button.
    You have it calling on something with a linkage name of "con", which a quick check tells me doesn't exist--so it is undefined in the code when you try to use it.  I found this by using trace(newConBut._x); after its _x value was assigned, as I mentioned you should try.   So the first thing you want to do is change the following line from...
    var newConBut = _root.attachMovie("con", "conbut", _root.getNextHighestDepth());
    To
    var newConBut = _root.attachMovie("but", "conbut", _root.getNextHighestDepth());
    so that it uses the but MC that serves that purpose in the library.  Then you want to correct the _x assignment of the buttons to what I think you had earlier...
    newConBut._x = 650-newConBut._width;
    newRecBut._x = newConBut._x-newRecBut._width;
    Here is a picture of what those changes do (note, without the XML file I had to finagle things just to work, so the biutton labels aren't what they will be)...

  • Homesharing could not be activated because an error occurred (310). can anyone help me with the solution for this issue please?

    I'm unable to activate homesharing due to an error (310). does anyone know the solution to this issue?

    This is indicates a hardwre issue:
    Check for hardware issues
    Related errors: 1, 3, 10, 11, 12, 13, 14, 16, 20, 21, 23, 26, 27, 28, 29, 34, 35, 36, 37, 40, 1000, 1002, 1004, 1011, 1012, 1014, 1667, or 1669.
    Try to restore your iOS device two more times while connected with a cable, computer, and network you know are good. Also, confirm your security software and settings are allowing communication between your device and update servers. If you still see the error message when you update or restore, contact Apple support.
    Error 1015 might happen after making unauthorized modifications to iOS, also called "jailbreaking."
    Use recovery mode to restore your device
    Related errors: 1015, “The required resource can't be found.”
    You might see these error messages if your device has a beta version of iOS or if you're installing an older version of iOS (downgrading). Use recovery mode to restore your device to the latest version of iOS.
    Quit virtualization software
    Quit any virtualization software (such as Parallels or VMware) that’s running on your Mac. Then use the latest version of iTunes to restore your device.
    Resolve specific iTunes update and restore errors

  • Can anyone recomend a good audio interface for 2011 PowerBook running Lion?

    I heard Motu makes good interfaces. I like the Avid Mbox because of Protools Le.
    My needs are to get a stereo keyboard in , a guitar. In , and a mike in. Don't need simultanious recording.Just stero inputs. Only 2 at that.
    Thanks-- Kevin

    Hi.
    I've been using MOTU hardware and software for years.  They seem to keep their drivers updated and I've never had a problem with any of their gear as I've upgraded my OS's as often as they've been introduced.
    Start here...
    http://www.motu.com/products
    I hope this is helpful.

  • Can anyone help me find a download for 10.6.3 so I can download music on iphone from itunes?

    I have updated my software on both the my macpro, as well as my itunes account supposedly.....but I am still being told my iphone 4 is not compatible with the software I am currently using, and that I need to go to itunes to download the latest version which is 10.6.3.  This may be Im just not looking in the right place, and Im not the most tech savvy person either, but would really appreciate your help.
    thanks

    Just to be clear, there are a number of things that have versions that sound like are not current, and there's a big difference between "update" and "upgrade" that you should be aware of.
    First, iTunes' current version is 11.0.2.  In order to run that, you need at least OS X version 10.6.8 (Snow Leopard) running as your Mac's operating system, which is what wjosten is referencing above.
    When you are being told to download the latest version, the guidance you are given is for an update.  Updates are free.  However, being very far behind (as it sounds like you are), you will need to upgrade (not free).  As wjosten points out, the SL (Snow Leopard) must be purchased.
    By the way, the current OS X operating system release is 10.8.3 (Mountain Lion), so even going to 10.6.8 would leave you quite a bit behind current.
    Hope that helps.

  • I have been given a second hand ipod from a friend for my 3 year old but I am unable to sync it to my itunes account. Can anyone help?

    I have been given an old ipod classic from a friend at work for my 3 year old to have to listen to her Disney songs on. I have tried but I can't get it to sync to my iTunes at all. The computer recognises that there is a device there but it won't link up. I have changed cables as I wasn't using an apple one but I managed to find one. I have tried factory resets and still not further forward. Can anyone help me?

    Thank you for using the Apple Support Communities
    From what I understand is that the device will show up in iTunes but it will not allow you to synchronize media over to the device even after you reset the device. When you say you reset the device, do you mean you restored the device in iTunes? What error message you are getting when attempting to synchronize media?

  • I have problem were safari quits before it has loaded up, I get a message " the problem may have been caused by ct_plugins plug-in" can anyone help. Regards Paul

    I have a problem were safari quits before it has loaded up, I get a message " the application safari quit unexpectedly. The problem may have been caused by
    Ct_plugins plug-in.
    Can anyone help
    Regards
    Paul

    HI and welcome...
    Open a Finder window. *Select your MacintoshHD in the Sidebar on the left*. Now open the Library folder, then the ScriptingAdditions folder, the InputManagers folder, and the ApplicationSupport folder.
    Move these files to the Trash:
    ctscripting.osax/Contents/MacOS/ctscripting
    CTLoader/ctloader.bundle/Contents/MacOS/ctloader
    Conduit/Plugins/cttoolbar.bundle/Contents/MacOS/ct_plugins
    Relaunch Safari.
    Carolyn

  • I have been using CS6 for two years without incident.  Suddenly the Media Encoder stops working, showing APPCRASH and displaying error message about WatchFolder.dll - I tried uninstalling and re-installing to no avail - can anyone help

    I have been using CS6 for two years without incident.  Suddenly the Media Encoder stops working, showing APPCRASH and displaying error message about WatchFolder.dll - I tried uninstalling and re-installing to no avail - can anyone help?

    Hi Mylenium,
    Thanks for your response.
    Here is the error information showing up:
    Problem signature:
      Problem Event Name: APPCRASH
      Application Name: Adobe Media Encoder.exe
      Application Version: 6.0.0.382
      Application Timestamp: 4f62fcf1
      Fault Module Name: WatchFolder.dll
      Fault Module Version: 6.0.0.382
      Fault Module Timestamp: 4f62f37f
      Exception Code: c0000005
      Exception Offset: 0000000000007899
      OS Version: 6.1.7601.2.1.0.768.3
      Locale ID: 4105
      Additional Information 1: 9a62
      Additional Information 2: 9a620826d8ae4a2fa8b984b39290a503
      Additional Information 3: 1fb3
      Additional Information 4: 1fb304eee594288faeefbf1271b70d37
    I am using a PC Windows 7

Maybe you are looking for

  • Debugging BAPI in WD application

    Hi All,      I want to debug the back end BAPI in the Wenduynpro application , i went to SAP --> Transaction se37 --> opened my fun mod --> utilities --> Settings --> Debugging -->Checked the Activate check box for external debugging -->Came back to

  • URGENT !! Calling XML document in FORMS 6i

    Hello Friends, This is Anurag here . I have created an Application Help System in XML based on a WORD Document . Please can any one let me know how can I call this XML document in my application created in FORMS 6i. Its slightly urgent and any help f

  • After an upgrade to IOS 7 volume button does not work .. ((What is the reason?

      On the IOS 6 everything worked correctly, but after the update button stopped working. Sometimes after a reboot it works, but rarely, and little work

  • Shutting down without notice

    I am having an issue with the computer shutting down by itself, while running an application. Is there a timer or something that would cause this? It has been mainly at night when watching a movie. The computer just turns off.

  • Testing tools for new web UI & PCUI

    Hi Experts, what are the different testing tools used by you in your engagements especially for testing web applications based on new UI (2006s) and PCUI (5.0). we have a need to automate our testing. thanks RH