ESS-portal integration with Time and Travel management(HR) in R/3

Hi,
     Im doing with ESS-portal configuration with Time and Travel Management in R/3,So please kindly send me Documents for integration part.I'll b so thankful if u people send me docu as soon as possible.
send me documents to [email protected]
thanks
pavi

Hi
Please go through this functional module HRMS_BIW_EXTRACT_PY1 in r/3 side to know the exact table where u r getting the data.
There are lot of tables involved in HR-payroll info types.
As far as your problem is concerned you take one employee and go to PA20 and analyse the payroll for each week or twice a month (depends up on ur client)
run the report on the payroll cube and find out exactly what u want.
Thanks
Roopa
Assign points if help full

Similar Messages

  • Webcenter Spaces/Portal integration with UCM and use of FrameworkFolders

    Hi All,
    We are looking at the possibility of using Desktop Integration Suite organisation wide.. We are also in the process of an organisation wide roll out of Webcenter spaces.
    The preference is to use FrameworkFolders because its replacing the folders_g component and address the limitations posed by folders_g (for example can have a max of only 1000 content within a folder, time to load the pages when a folder has large no of content items).
    Since only folders_g can be used for integrating with Webcenter Spaces/Portal we are not sure of what our strategy should be. Is there plan to use framework folders with Webenter in the future?
    Thanks,
    Manjunath
    Edited by: 890922 on 14-Aug-2012 18:20

    Since only folders_g can be used for integrating with Webcenter Spaces/Portal we are not sure of what our strategy should be. Is there plan to use framework folders with Webenter in the future?Certainly there are. Unfortunately, no exact date/release has been communicated so far. If you need a quick implementation (following few next months) I'm afraid you will have to go with folder_g

  • Portal integration with workflow and contracts

    gurus,
    are there any whitepapers on the integration of the portal with oracle workflow and oracle contracts.
    it would be great help ...
    has anyone done this before ...?
    pls reply ...
    thanx a bunch ...

    reposted for attention ...
    has anyone done this ??
    oracle contracts integrated with oracle portal ...

  • Portal Integration with PKI and CAC

    Hi, I'm hoping someone can point me in the right direction. I need to integrate 10g AS Rel 2 Portal and SSO with client-site PKI certs, specifically NMCI (Navy) CACs. Has anybody done this? I'm trying to find out just how much we can integrate, I'd like to be able to parse info on the server side such as username and supply it to the SSO server so that the user only as to enter a pin.
    thanks!
    Aaron

    For anyone else who can't view the website (yeah, sorry about that... I do try to keep it family-friendly :) ), the following code should allow you to map your PKI certificate's username to any arbitrary user in Oracle Internet Directory:
    <blockquote>/*
    FILE:
    SSOCertMapperCustom.java
    DESCRIPTION
    Use this to map your Certificate's CN to an arbitrary field in OID.
    package oracle.security.sso.server.auth;
    import java.security.Principal;
    import java.security.cert.X509Certificate;
    import javax.servlet.http.HttpServletRequest;
    import oracle.security.sso.ias904.toolkit.IPASUserInfo;
    import oracle.security.sso.ias904.toolkit.IPASUserMappingInterface;
    import oracle.security.sso.ias904.toolkit.IPASException;
    * The following classes must be imported to perform LDAP searches using the pre-configured
    * OC4J connections.
    import oracle.ldap.util.*;
    import oracle.ldap.util.jndi.*;
    import javax.naming.*;
    import javax.naming.directory.*;
    import java.io.*;
    public class SSOCertMapperCustom implements IPASUserMappingInterface
    // Name of the certificate attribute.
    private static final String X509_CERT_CLASS = "javax.servlet.request.X509Certificate";
    private InitialDirContext _context;
    private Subscriber _mysub;
    * Configuration for this Plugin
    private static final String oidattribute = "description";
    private static final String oidhost = "localhost";
    private static final String oidport = "389";
    private static final String oidsearch_base = "dc=domain,dc=com";
    public SSOCertMapperTfsms()
    try
    // Notice that this will only bind anonymously...
    context = ConnectionUtil.getDefaultDirCtx( oid_host, oidport, "", "" );
    mysub = new Subscriber(context,Util.IDTYPE_DN,_oid_search_base,false);
    catch( Exception e )
    System.out.println(" * * * * There appears to be some kind of problem in the c'tor." );
    * Use this method to strip out the "cn=" attribute from the DN provided.
    private String getUserCn( String inputDn )
    // In this example, the user certificate DN format is:
    // CN=,CN=users,DC=acme,DC=com
    // Get the first common name(CN) value as directory nickname
    int l_indx1 = inputDn.indexOf('=');
    int l_indx2 = inputDn.indexOf(',', l_indx1 + 2);
    String userCn = inputDn.substring(l_indx1+1 , l_indx2);
    return userCn;
    * This method returns user information derived from the user certificate
    * @param request The HttpServletRequest request object
    * @return IPASUserInfo object that contains user directory nickname and
    * optionally realm nickname obtained from the user certificate
    * @exception IPASException if user information can not be obtained
    public IPASUserInfo getUserInfo(HttpServletRequest request)
    throws IPASException
    IPASUserInfo l_usrInfo = null;
    try
    // Get the user certificate from the HTTP request object
    X509Certificate [] l_usrBCerts
    = (X509Certificate[])(request.getAttribute(X509_CERT_CLASS));
    if( (l_usrBCerts != null) || (l_usrBCerts.length > 1) )
    Principal l_usrPrincipal = l_usrBCerts[0].getSubjectDN();
    String l_certDN = l_usrPrincipal.getName().toUpperCase();
    String l_usrNickName = getUserCn( l_certDN );
    // Search for "description=..." in the JAAS-configured LDAP tree.
    // (Note: If this is not OC4J/JAAS/JAZN, it'd probably be best not
    // to try using this method...)
    String[] _attribs = { "dn", "description", "cn", "sn", _oid_attribute };
    User[] _users;
    try { _users = _mysub.getUsers( _context,
    Util.IDTYPE_FILTER,
    "(" + oidattribute + "=" +
    l_usrNickName +
    ")", null, _attribs );
    catch( Exception e )
    throw new IPASException(
    "Error obtaining user listing from OID.");
    if( _users.length > 1 )
    throw new IPASException( "Oops, found " +
    _users.length +
    " user(s), instead of 1. Perhaps your attribute selection is wrong?" );
    else if( _users.length < 1 )
    throw new IPASException( "User not found in OID." );
    else
    l_usrNickName = getUserCn( users[0].getDn(context) );
    // Set the realm name to null to use the default realm
    String l_realm = null;
    l_usrInfo = new IPASUserInfo(l_usrNickName, l_realm);
    return l_usrInfo;
    else
    // User certificate not found.
    throw new IPASException("User certificate not found");
    catch(Exception e)
    throw new IPASException ("User certificate information not found. "
    + e.toString());
    }</blockquote>
    As an aside, if you need this to work behind an F5 (with backend traffic remaining unencrypted), the following iRule will make your life <i>much</i> easier. It's rudimentary, but should work until something better comes along:
    <blockquote>when CLIENTSSL_HANDSHAKE
    set cur [SSL::sessionid]
    set ask [session lookup ssl $cur]
    if { $ask eq "" } {
    session add ssl [SSL::sessionid] [SSL::cert 0]
    when HTTP_REQUEST
    HTTP::header replace HTTPS on
    set id [SSL::sessionid]
    set the_cert [session lookup ssl $id]
    if { $the_cert != "" }
    HTTP::header insert SSL-Client-Cert [ join [string trim [string map { "-----BEGIN CERTIFICATE-----" "" "-----END CERTIFICATE-----" ""} [X509::whole $the_cert ] ] ] "" ]
    } else {
    HTTP::respond 200 content "&lt;html&gt;&lt;body&gt;
    &lt;h1&gt;Access Denied&lt;/h1&gt;
    Access to this resource is denied without a valid
    DOD Common Access Card. If you do not have one,
    please visit the &lt;a href=\"https://www.cac.mil/Home.do\"&gt;Common
    Access&lt;/a&gt; website for information on obtaining a CAC
    card. Otherwise, please insert your CAC card into your
    reader, close this window, and try accessing this website again.
    &lt;/body&gt;&lt;/html&gt;"
    }</blockquote>
    Sorry for the formatting... The original can be found at: http://www.snappedshot.com/archives/843-An-Endless-Pile-of-Technical-Cruft.html if it hurts your eyes too much.

  • Time and Travel Integration

    Hi Friends
    can you suggest me how to achieve integration between time and travel? All i want is when the employee is traveling, the 2002 attendance also need to be updated so the employee is not counted as absence without notification. I've been searching the forum and most of them say no such integration but that was 3 years ago. I'm not using cross app time sheet. Regards

    I'm no expert on CATS either, but an option that i can see from what you have mentioned is that you can write a custom function in the time schema to check for clock in and clock out of the employee, if both of them are not present you can trigger a mail to the immediate supervisor who can take manual action for creating a record in 2002. Alternately you can create an infotype in 2002 after verifying that clock-in/out is not present and follow a workflow process for its approval. You can also check for clock-in/out of the employee, if both of them are not present then check if the employee has an approved travel request, if present then you can create an attendance.
    Raghu

  • SAP Travel Management Integration with Time Management

    Hello Gurus,
    Need some assistance with Travel integration with Time Management.
    Scenario.
    Punch in Punch out system at the client so when the employee is traveling or when he enters the Trip Request, after approval the attendance should be counted.
    Is there a config step for the same or a BADI needs to be implemented in this scenario ?
    Regards,
    BLITZZ

    A direct update of time infotypes is not possible. You can however switch on the integration in view V_T702N_A. With add. user parameter START_CATS = X you have the possibility to jump to CAT2 to record the time. For the update of the infotypes you have to follow the subsequent steps in time management.

  • Mobile Time and Travel  on a PDA with MAM

    Hi Everyone,
    Can I deploy Mobile Time & Travel to a PDA instead of a Laptop?  We will be using a PocketPC Device for the application but not so sure if you can run Mobile Time & Travel and Mobile Asset Management with the same device.  Please advice.  Thanks.
    Dai

    Hello Dai,
    Mobile Time and Travel is really designed for laptops.  The UI would not be user-friendly on a PDA (always scrolling).
    Regards,
    Nadia

  • Mobile Time and Travel supporting Device types

    Hi Mobile Guru's,
    We would like to implement Mobile Time and Travel to our client. Currently they are using the PDA's. I have gone through installation guides of MTT and came to know that MTT is possible only for Laptops. Is my assumption is true? Please let me know. Actually our client wanted to implement MTT to their PDA's which they are currently using. Where can I get information that MTT supports which type of device types? Please help me.
    Thanks in advance.
    With best regards,
    Ameer Baba.

    Hi Ameer
       The MTT application is supported only on Laptops and doesnt support PDAs and your assumption is absolutely true. More information on this can be obtained in the following link http://service.sap.com/instguides In this link navigate to Installations and Upgrades->Entry by Application Group->SAP xApps
    ->SAP xApps for Mobile Business->SAP XMTT.   Also the following notes will be useful for the latest version of MTT i.e 2.0 which is JSP based rather than MicroITS.
    892203 - Mobile Travel Expenses 2.0 - Composite Note
    892204 - Mobile Time Sheet 2.0 - Composite Note
    942046 - Restrictions for Mobile Time Sheet 2.0
    942044 - Restrictions for Mobile Travel Expenses 2.0
    Hope this is helpful
    Best Regards
    Sivakumar

  • SAP Portal Integration with InfoView

    Hi Experts,
    I have successfully configured SAP Portal Integration with InfoView using the following steps provided by Ingo:
    - set the system that you want to be authenticated against as the DEFAULT system in the options of the SAP authentication.
    - go to the webapps folder of your app server and navigate to the InfOView folder
    For the Java version of InfoView (Windows environment) you need to edit the file web.xml, which is located (assuming Tomcat as application server) in the directory \Program Files\Business Objects\Tomcat55\webapps\InfoViewApp\WEB-INF for the actual deployment.
    In addition you can make the change to the file in the folder <INSTALLDIR>\BusinessObjects Enterprise12.0\warfiles\WebApps\InfoViewApp\WEB-INF. The files in the second locations are being used when you redeploy the web applications with a tool like wdeploy. You need to change the following values
    authentication.default = secSAPR3
    siteminder.enabled = False
    sso.enabled = True
    Then I have created URLiView to InfoView login page, when the user click on the link, BOBJ will use the DEFAULT system to authenticate user.
    However, there is a new requirement for users who exist in another SAP system to SSO into InfoView too. My question is whether we can specify in URLiView url or other configuration to select which SAP System to authenticate user on?
    I would like to create Role A and Role B in Portal and each will display different URLiView that will authenticate user against different SAP System if possible.
    Appreciate your advise.
    Regards,
    Medy

    Hi Ingo,
    Thank you for your reply.
    We are trying to create an URLiView to the logon page of InfoView: http://<BOBJ Server>/InfoViewApp/logon.jsp that will bring the user to InfoView home if SSO passed instead of OpenDocument URL.
    I have tried to add URL parameters to the URLiView (http://<BOBJ Server>//InfoViewApp/logon.jsp?SAP_SYSID=DCD&SAP_CLIENT=200), but InfoView is still using the default system in CMC to authenticate user.
    Please advise.
    Best Regards,
    Medy
    Edited by: Medy henry on Apr 29, 2010 4:00 AM

  • Enterprise Portal integration with E-Sourcing Portal

    Hi,
    Has anyone done Enterprise Portal integration with E-Sourcing Portal.How can we use the E-Sourcing portal url in Enterprise Portal?
    Thanks,
    Rajani

    Hello Rajani,
    For Connecting  web based Application we have to use AppIntergator Application.
    Please go thorugh the blog and implement the same thing its many connect to your java portal.
    blog is Integrating your Web Front-ends into the SAP Enterprise Portal using the Application Integrator
    Please go through the below blog where its define how to pass user and password it the url iview.
    SP12/SP20: Setting URL Dynamically in URL iView
    Thanks
    Chittya Bej
    Edited by: Chittya Bej on Apr 5, 2010 11:31 AM
    Edited by: Chittya Bej on Apr 5, 2010 11:33 AM

  • Portal Integration with JAVA ?

    Hello All,
           I've been working in the Portal for the past 1 Year.
    The work which I've done is :
    1. Creation of BSP's in SAP
    2. Create iViews in Portal accessing these BSP Applications.( BSP , IAC, URL,BW etc )
    3. Create Roles.
    Now I'm moved to one more Project which does the Portal Integration with JAVA.
    Can any one tell me what is it and how it can be done ?
    Regards,
    Deepu.K

    Hi Deepu
    You can achieve the same,please visit the following links:-
    http://help.sap.com/saphelp_nw04s/helpdata/en/d8/6ee03fc2269615e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/d8/6ee03fc2269615e10000000a155106/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/771fa290-0201-0010-3d93-865e66cc6d7e
    Regards
    Navneet
    Please revert incase of doubt.

  • Portal Integration with XI

    Hi Guru's,
    Could any one tell me two scenarios where we integrate Portals with the XI system.
    If Portal is the receiver/sender then what could be the possible sender/receivers respectively.
    Please, also let me know what scenarios (IDOC to HTTP etc) is used for ECC and Portal integration with XI.
    What are the Adaptors used for Portals.
    Thanks in advance.  I will assign points.

    Hi,
    Take a look at this blog,
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1334 [original link is broken] [original link is broken] [original link is broken] [original link is broken]
    You can make a webservice ( SOAP ) call from the portals to XI, or a HTTP call for the same.
    For integrating XI and ECC , as usual IDOC's , RFC or Proxies can be used. This blog discusses the same,
    /people/ravikumar.allampallam/blog/2005/08/14/choose-the-right-adapter-to-integrate-with-sap-systems
    Regards,
    Bhavesh

  • Integration between Finance and service management

    Hi,
    Does anybody know integration between Finance and Service management? If you have any documentation please send to [email protected] It is urgent!! Please help me I will reward you with points.
    Thanks,
    Neeli

    Hello
    Check this link.
    http://help.sap.com/erp2005_ehp_02/helpdata/en/3c/05ce40c3e10366e10000000a1550b0/frameset.htm
    Reg
    *assign points if useful

  • Quality Center 11 (ALM) Query - Integration with Subversion and Jenkins

    Hi OHPCPaT Forum,
    Are there any restrictions to enabling the QC integration with Subversion and Jenkins when the QC server is a SaaS cloud instance? Is there any additional config I should be aware of?
    Thanks in anticipation

    Hi,
    Yes all the users are facing the issue. Please find more details for the issue.
    Currently we are upgrading Quality Center 10.0 to 11.0 with HP Enterprise Integration module for SAP applications. The project successfully upgraded from QC 10.0 to 11.0 but there are some error popup for the project for which Application Module and Enterprise Integration for SAP applications Version 2.6 was enabled
    Quality Center Details:
    HP Application Lifecycle Management 11.00
    ALM patch level: 07
    Quality Center 11.00 Enterprise Edition
    Component     Build
    OTA Client     11.0.0.6051
    User Interface     11.0.0.6051
    WebGate Client     11.0.0.6051
    Test Run Scheduler     11.0.0.6051
    Execution Flow     11.0.0.6051
    Site Administration Client     11.0.0.6051
    Extension Version     
    Enterprise Integration for SAP applications     2.6.0.3232
    Sprinter     11.0.0.6051
    Application Model     2.6.0.917
    Installation Steps followed:-
    1.Installed HP ALM
    2.Installed Patch Service Pack 2 (Patch 2,3,4)
    3.Installed Patch 6
    4.Installed Patch 7
    5.Installed the Extensions HP Enterprise Integration module for SAP applications using Extension Deployment Tool by following the steps provided in the Addin Page
    6.Created new project in HP ALM
    7.Login to the project (no issue)
    8.Enabled the Project Extensions
    9.Login to the project (able to access the project but error message is popup when we access Test plan and Defect module)
    Note: There is no error when we access the project for which the HP Enterprise Integration module for SAP applications EI not enabled. QC 11.0 is not integrated with any tools.
    Let me know is there any step we missed or we need to do any manual steps we need to do before enabling EI

  • I am trying to find an app that will track the usage on my iphone with times and dates to see what was accessed on my phone when I was away from it and what if anything was done eg deleted messages viewed facebook etc?

    Hi! I am trying to find an app that with track everything that is done on my phone with times and dates? im not really woried about call usage and texts sent I need it to view what has been done - for example:
    Messages received
    Messages deleted
    Facebook viewed
    Messages viewed
    Internet viewed and what?
    I just have an issue with someone using my phone - I used to track this through double clicking the home button and roughly knowing in what order I had been on things but they have sussed this one!
    Thank you!!

    No way to do that on a non-jailbroken iPhone. Why don't you just passcode protect your phone? That way no one but you can use it...unless they know your passcode.

Maybe you are looking for

  • BPM 1:n mapping

    Hi all, I am doing a BPM for 1:n multimapping. Start->receive idoc->Transformation->send asynchronous->Stop. In the transformation, I have a source message and two target messages. I want to send this message as a single message to the receiving MQ s

  • Deploying MDB on WebLogic server 8.1 (SP2) with Tibco JMS

    Hi,           I am currently facing problems to deploy and run my MDB on weblogic connecting it to Tibco JMS as the foreign jms server.           <br>           <b>My ejb-jar.xml:</b>           <br>           <message-driven>                     <ejb

  • Bandwidth managment/limiting on ME3400

    This is crazy long, but please bear with me. My goal is basically to provide tiers of service ie. 3Mb down 512k up or 1Mb down 256k up. I'm able to set the upload rate just fine by applying the following. ip access-list extended matchanyacl permit ip

  • Why are there no older Safari files in Time Machine?

    For reasons I won't go into now, I lost all my Safari Bookmarks on my mac.  I need to restore them from Time Machine, but TM has NO bookmarks.plist files from before the event occurred, just the current ones from yesterday.  I can't find any Safari f

  • Artboard converted to guides? (CS4)

    Hi, I have an Illustrator file with several artboards which I created on a PC. When I open the same file on a Mac, all the artboards are converted into guides on a new layer called "Guides for Artboards". The same thing happens when I save the file o