FM for SAP Login id with pernr no.

Hi All
I need to make function module for below three requirement. Please tell if there is any standards fm available for these or how can i proceed to finish these fm.
1. Get HR Information for employees - bank account, dependent informaiton, start date, org unit, manager,
2. For employee get the associated sap login users. We want the ability to download a list of sap users/pernr automatically into the admin database.
- function to get a list of employees, pernr and sap login ids.
- function to get the org unit and hr information for employees, pernr, sap login ids
3. Org structure/profit center hierarchy list-
get the list of org structure with persons. display for a user or a list of user the org structure hierarchy
Thanks And Regards
Ranjeet Singh

There is no single fm which will give you all the info.
you need to create a custom that makes use of HR_READ_INFOTYPE and HR_GETEMPLOYEEDATA_FROMUSER  and some OM related fms to get the required data
Thanks
Bala Duvvuri

Similar Messages

  • Jabber for Windows Login failed with - "Must change at Next Login" for CUCM Authentication

    Jabber for Windows users cannot login when "User Must Change at Next Login" is selected in the CUCM credential Policy
    I found this Bug-ID: CSCuh84476
    https://tools.cisco.com/bugsearch/bug/CSCuh84476
    We use Jabber for Windows 9.7.4!
    I just want to know if there are other users have the same problem and which workaround they applied.
    I’m currently testing a User with different Policy credentials (Credentials expire after 1 day).
    I think this will also lead to a “username or password wrong”-popup but tomorrow I will see it myself ;)
    The planed workaround for us will be to set the “User Must Change at Next Login ” option and the users first have to login at UCM-Userpage to change their initial password.
    BTW: Maybe somebody from Cisco know when this get fixed?
    Best regards
    Franz

    J4W does rely very heavily on DNS, you should at least all required entries to hosts and lmhosts.
    How are your servers defined under system -> server??
    Are you able to log into UCMuser page??
    Have you properly configured all user/device/line association, and created the necessary service profiles???

  • ABAP transformation to XML for sap chart engine with internal table

    Hello.
    I am new to the SAP chart engine, XML and transformations so please be patient with me from an ABAP-program I am trying to call a Z-transformation and attach an internal table with two columns. In the ST program I want to loop through the table and for each row insert the two values from the table in the XML.
    In an ABAP-program I have an internal table containing datacoordinates for a scattered chart.
    The table looks like this:
    DATA: BEGIN OF coordinate,
                x_value TYPE f,
                y_value TYPE f,
               END OF coordinate,
               polygon_data LIKE STANDARD TABLE OF coordinate with header line.
    As a prototype I just add a few coordinates like this:
    polygon_data-x_value = '700'.
        polygon_data-y_value = '8'.
        APPEND polygon_data.
        polygon_data-x_value = '1400'.
        polygon_data-y_value = '3'.
        APPEND polygon_data.
        polygon_data-x_value = '1400'.
        polygon_data-y_value = '10'.
        APPEND polygon_data.
        polygon_data-x_value = '700'.
        polygon_data-y_value = '10'.
        APPEND polygon_data.
        polygon_data-x_value = '700'.
        polygon_data-y_value = '3'.
        APPEND polygon_data.
    I have created a Z-transformation and I call it like this (I also have a separate transformation for all the customizing generated with SAP chart designer but that one works fine):
    DATA: data_xml TYPE xstring.
    CALL TRANSFORMATION ztest_ce_tables2xml
          SOURCE polygon_data = polygon_data
          RESULT XML data_xml.
    Since I am trying to create a scattered chart I need to insert an X and Y value for each coordinate.In the manual SAP Chart engine - XML format description it looks like this:
    <ChartData>
    <Series>
    <Point>
    <Value type="x">1</Value>
    <Value type="y">1</Value>
    </Point>
    <Point>
    <Value type="x">2</Value>
    <Value type="y">2</Value>
    </Point>
    My ST-program that I cannot get to work looks like below. How can I loop through my internal table and get the X and thy Y value for each row in my internal table?
    BR Tommy (Sweden)
    <?sap.transform simple?>
    <tt:transform xmlns:tt="http://www.sap.com/transformation-templates">
    <tt:root name="POLYGON_DATA"/>
    <tt:template>
    <ChartData>
    <Series>
    <tt:loop ref=".POLYGON_DATA">
       <Point>
         <Value type="x"><tt:copy ref=".POLYGON_DATA.X_VALUE"/></Value>
         <Value type="y"><tt:copy ref=".POLYGON_DATA.Y_VALUE"/></Value>
       </Point>
       </tt:loop>
    </Series>
    </ChartData>
    </tt:template>
    </tt:transform>

    Hello again.
    I found the solution and would like to share it with the forum, maybe it could help someone.
    My first error was in the call transformation statement:
    CALL TRANSFORMATION ztest_ce_tables2xml
          SOURCE polygon_data = polygon_data [] <----
    Do not forget these
          RESULT XML data_xml.
    I also had an error in the ST program, it should look like this:
    <?sap.transform simple?>
    <tt:transform xmlns:tt="http://www.sap.com/transformation-templates">
    <tt:root name="POLYGON_DATA"/>
    <tt:template>
    <ChartData>
    <Series>
    <tt:loop ref=".POLYGON_DATA">
       <Point>
         <Value type="x"><tt:value ref="$ref.X_VALUE"/></Value>
         <Value type="y"><tt:value ref="$ref.Y_VALUE"/></Value>
       </Point>
       </tt:loop>
    </Series>
    </ChartData>
    </tt:template>
    </tt:transform>

  • Inqmy resource adapter for SAP with Bea Weblogic Server

              Hi everybody,
              Anybody have tried to use INQMY resource adapter for SAP with Bea weblogic server
              It works well with INQMY server, but with BEA I'm getting a lot of problems creating
              the connections.
              Thanks in advance.
              Xavi.
              

    All,
              Here are the steps we (used for internal testing) had to perform to get
              IN-Q-MY adapter for SAP to work with WebLogic:
              The wli.adapter.inqmy.sapr3.spi package contains extensions to the
              In-Q-My J2EE Connector Architecture classes to overcome some limitations
              in the base implementation classes. To get around these issues, we had
              to extend their R3ManagedConnectionFactory, R3ConnectionManager, and
              R3ConnectionFactory classes.
              * The javax.resource.spi.ManagedConnectionFactory implementation
              does not over-ride the equals and hashCode methods correctly. This
              causes problems with WLS 6.1.
              * There is a bug in their javax.resource.spi.ConnectionManager
              implementation for non-managed uses of the adapter. Consequently, their
              adapter cannot be used in a non-managed scenario.
              * The javax.resource.cci.ConnectionFactory class does not support
              the getConnection() method that does not take any arguments (it throws a
              null pointer exception).
              I am attaching the classes discussed above.
              Cheers,
              Chris
              Torsten Friebe wrote:
              > Hi,
              >
              > does anybody know where to get a trail version - if one exists - of IN-Q-MY
              > application server or the resource adapter?
              >
              > Thanks, regards
              > Torsten
              >
              > "Xavi" <[email protected]> schrieb im Newsbeitrag
              > news:[email protected]...
              >
              >>Hi everybody,
              >>
              >>Anybody have tried to use INQMY resource adapter for SAP with Bea weblogic
              >>
              > server
              >
              >>?
              >>
              >>It works well with INQMY server, but with BEA I'm getting a lot of
              >>
              > problems creating
              >
              >>the connections.
              >>
              >>Thanks in advance.
              >>Xavi.
              >>
              >>
              >
              >
              package wli.adapter.inqmy.sapr3.spi;
              import java.io.Serializable;
              import javax.resource.ResourceException;
              import javax.resource.cci.Connection;
              import javax.resource.cci.ConnectionSpec;
              import javax.resource.spi.ConnectionManager;
              import javax.resource.spi.ConnectionRequestInfo;
              import javax.resource.spi.ManagedConnection;
              import javax.resource.spi.ManagedConnectionFactory;
              import com.inqmy.r3adapter.R3ConnectionSpec;
              import com.inqmy.r3adapter.R3ManagedConnectionFactory;
              * Extends the In-Q-My implementation to allow for getConnection() with no
              * connection spec, i.e. use the default configured connection parameters.
              public class R3ConnectionFactory
              extends com.inqmy.r3adapter.R3ConnectionFactory
              implements com.bea.connector.IProxyMarker {
              private R3ConnectionSpec m_cspec;
              public R3ConnectionFactory(ConnectionManager cm, R3ManagedConnectionFactory mcf)
              throws ResourceException {
              super(cm, mcf);
              String strClientNumber = mcf.getClientNumber();
              if (strClientNumber == null) {
              throw new javax.resource.spi.IllegalStateException("ClientNumber not set for "+mcf);
              String strLanguage = mcf.getLanguage();
              if (strLanguage == null) {
              throw new javax.resource.spi.IllegalStateException("Language not set for "+mcf);
              String strUserName = mcf.getUserName();
              if (strUserName == null) {
              throw new javax.resource.spi.IllegalStateException("UserName not set for "+mcf);
              String strPassword = mcf.getPassword();
              if (strPassword == null) {
              throw new javax.resource.spi.IllegalStateException("Password not set for "+mcf);
              m_cspec = new R3ConnectionSpec(strClientNumber, strLanguage, strUserName, strPassword);
              public Connection getConnection(ConnectionSpec connectionSpec)
              throws ResourceException {
              if (connectionSpec == null) connectionSpec = m_cspec;
              return super.getConnection(connectionSpec);
              package wli.adapter.inqmy.sapr3.spi;
              import java.io.Serializable;
              import javax.resource.ResourceException;
              import javax.resource.spi.ConnectionManager;
              import javax.resource.spi.ConnectionRequestInfo;
              import javax.resource.spi.ManagedConnection;
              import javax.resource.spi.ManagedConnectionFactory;
              * Extends the In-Q-My implementation to over-ride the
              * allocateConnection method to return a CCI connection vs. a ManagedConnection
              public class R3DefaultConnectionManager
              implements ConnectionManager, Serializable {
              public R3DefaultConnectionManager() {}
              public Object
              allocateConnection(ManagedConnectionFactory mcf, ConnectionRequestInfo cri)
              throws ResourceException {
              ManagedConnection mc = mcf.createManagedConnection(null, cri);
              return mc.getConnection(null, cri);
              package wli.adapter.inqmy.sapr3.spi;
              import javax.resource.spi.ConnectionManager;
              import javax.resource.spi.ConnectionRequestInfo;
              import javax.resource.spi.ManagedConnection;
              import javax.security.auth.Subject;
              * Extends the In-Q-My implementation to get around some problems encountered
              * while running on WebLogic:
              * <ul>
              * <li>Must over-ride default implementation of equals and hashCode method</li>
              * <li>Needed to provide my version of the CCI ConnectionFactory</li>
              * <li>Needed to provide my version of the default ConnectionManager for the
              * non-managed scenario use case</li>
              * </ul>
              public class R3ManagedConnectionFactory
              extends com.inqmy.r3adapter.R3ManagedConnectionFactory {
              private int m_iHashCode;
              transient private com.inqmy.r3adapter.R3ConnectionRequestInfo t_cri = null;
              public R3ManagedConnectionFactory() {
              super();
              java.rmi.server.UID uid = new java.rmi.server.UID();
              m_iHashCode = uid.hashCode();
              public Object createConnectionFactory() {
              // need to install our own default connection manager because In-Q-My
              // version causes a ClassCastException in CCI ConnectionFactory
              // getConnection
              return createConnectionFactory(new R3DefaultConnectionManager());
              public ManagedConnection createManagedConnection(Subject subject, ConnectionRequestInfo cri)
              throws javax.resource.ResourceException {
              // need to check for null on the ConnectionRequestInfo object because the
              // In-Q-My R3ManagedConnection ctor does not check for null
              if (cri == null) cri = getDefaultConnectionRequestInfo();
              return new com.inqmy.r3adapter.R3ManagedConnection(this, subject, cri);
              public Object createConnectionFactory(ConnectionManager connectionManager) {
              // need to supply a connection factory that can deal with getConnection
              // that does not take a ConnectionSpec
              try {
              return new R3ConnectionFactory(connectionManager, this);      
              } catch (javax.resource.ResourceException re) {
              re.printStackTrace();
              throw new java.lang.IllegalStateException(re.getMessage());
              com.inqmy.r3adapter.R3ConnectionRequestInfo getDefaultConnectionRequestInfo()
              throws javax.resource.spi.IllegalStateException {
              if (t_cri == null) {
              String strClientNumber = this.getClientNumber();
              if (strClientNumber == null) {
              throw new javax.resource.spi.IllegalStateException("ClientNumber not set for "+this);
              String strLanguage = this.getLanguage();
              if (strLanguage == null) {
              throw new javax.resource.spi.IllegalStateException("Language not set for "+this);
              String strUserName = this.getUserName();
              if (strUserName == null) {
              throw new javax.resource.spi.IllegalStateException("UserName not set for "+this);
              String strPassword = this.getPassword();
              if (strPassword == null) {
              throw new javax.resource.spi.IllegalStateException("Password not set for "+this);
              t_cri = new com.inqmy.r3adapter.R3ConnectionRequestInfo(strClientNumber, strLanguage, strUserName, strPassword);
              return t_cri;
              public boolean equals(Object obj) {
              if (obj == null) return false;
              if (obj == this) return true;
              if (!this.getClass().isInstance(obj)) return false;
              R3ManagedConnectionFactory mcf = (R3ManagedConnectionFactory)obj;
              return compare(getClientNumber(), mcf.getClientNumber()) &&
              compare(getLanguage(), mcf.getLanguage()) &&
              compare(getUserName(), mcf.getUserName()) &&
              compare(getPassword(), mcf.getPassword()) &&
              compare(getServerName(), mcf.getServerName()) &&
              compare(getSystemNumber(), mcf.getSystemNumber());
              protected final boolean compare(final Object obj1, final Object obj2) {
              if (obj1 == obj2) return true;
              if (obj1 != null) {
              return obj1.equals(obj2);
              } else {
              if (obj2 == null) {
              return true;
              } else {
              return false;
              public int hashCode() { return m_iHashCode; }
              

  • Configure sap login page

    Hi Expert,
    I want to Add my client in default client with description, how to configure sap login page with my company lobo. Is there any transaction code for that.
    Regd,
    Rahul

    -> have a look at <b>sapnote 205.487</b>
    -> you can change the log by using transaction SMW0, select "Binary data..." the logo must be in GIF format...cfreate new object, chose import, select your gif and transfer; then maintain table ssm_cust via sm30, change field start_image to the above imported object..
    GreetZ, AH

  • Extended Notifications for SAP Business Workflow

    Hi expert,
    i need your help!!
    i have configured the "Extended Notifications for SAP Business Workflow" with the tnx SWNADMIN and this was successful. I can write emails, but i can read this only on SAP GUI with the tnx SOST. I don't receive email on my email-address.
    can you say me, where is the problem?
    Thank you in advance
    marcel

    Hi Marcel
    Rope in your Basis Guy!
    Basically, your Extended notif part is working fine..... emails reaching SOST is proof. Going out of SAP may need basis config.
    What do you see, a yellow triangle or a red light in SOST?
    Regards,
    Modak

  • License for Crystal Report for SAP 8.8

    Hi All!
    Our customer ask that  can they install the crystal report for SAP 8.8 with multi computer and no need to buy any license for this because they bought license for SAP B1 already.
    I wonder this and everyone can help me?
    How can we should advice them.
    Thanks!

    Hi,
    If you want more users to edit CR, you need to buy extra licenses.  B1 only include one free license for maintaining reports for 2007 version.
    Thanks,
    Gordon

  • Need books for SAP-XI reference

    Hello experts,
    Can anybody suggest me what are the referral books available for SAP-XI along with authors.
    Thnx in advance.
    sreenivas.

    Hi sreenivasulu,
    http://www.bookware.com.au/cgi-bin/bookware/159229037X
    http://www.sapgenie.com/xi/
    http://whatis.techtarget.com/generic/0,,sid9_gci1162424,00.html
    http://www.amazon.com/gp/product/sitb-next/159229037X/102-8721161-7322560
    award if helpful.
    regards,
    keerthi.

  • EDI Formats for SAP

    What are the different Electronic Data Interchange  (EDI) formats available  for SAP B1?With complete details.

    hi,
    please check the ff.
    http://www.di-international.com/Solutions/SAP-Integration.aspx?gclid=CJic7Pat4K0CFU4b6wodlU3J4A
    http://www.dicentral.com/sap_edi/
    http://www.highjump.com/solutions/truecommerce/business-system-plugins/sap-business-one
    http://www.youtube.com/watch?v=_KhBs2Sh7Pg
    regards,
    Fidel

  • About future for SAP XI?

    Hi Experts,
    Im new to SAP.
    Im an MCA fresher and im planning to go for SAP XI training with my friend's suggestion.
    Just i wanted to know the openings for XI and Future for XI.
    Can i start my career as XI fresher?
    what are the basic requirements i should have if i go for XI training?
    Kindly do needful.
    regards,
    Arvind.

    Hi Arvind Subramaniam  ,
    >>Can i start my career as XI fresher?
    Yes. It is a good Netweaver technology & u can either try as a developer or at Admin side. But there r good oppurtinities as a XI Developer.
    >>what are the basic requirements i should have if i go for XI training?
    XI is configuration type & maximum stuff wil be mapping . But , sometimes there arises a need to import JAVA code into XI. Hence if u know JAVA/J2EE it's a added advantage.
    All the best for u'r success in future!
    These r some excellent websites on basics of XI which familarizes u with XI:
    SAP Exchange Infrastructure 3.0 Integrating Heterogeneous Systems with Ease
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1ebea490-0201-0010-faad-a32dd753d009
    SAP NetWeaver Technology Overview
    http://www.gi-ev.de/regionalgruppen/aachen/vortraege/abstract/04/21-04.pdf
    SAP NetWeaver Visual Composer
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/events/sdn-meets-labs-walldorf-05/sap%20netweaver%20visual%20composer%20in%202005.pdf
    SAP Exchange Infrastructure for Developers ( This is an excellent website for free pdf book for XI)
    http://www.sap-press.de/download/dateien/1191/sappress_exchange_infrastructure.pdf
    Exchange Infrastructure  :  XI Transaction Codes 
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/xiTransactionCodes&
    A Beginner's Guide to SAP XI Settings part I
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/73527b2c-0501-0010-5398-c4ac372c9692
    A Beginner's Guide to SAP XI Settings part II
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6bd6f69a-0701-0010-a88b-adbb6ee89b34
    SAP XI AND SLD
    http://www.sappro.com/downloads/nov06/XIandSLD.pdf
    Exchange Infrastructure Learning Map 
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/learning+map&
    SAP Exchange Infrastructure eLearning Catalog(U wil get all downloads regarding XI starting from basics to end)
    https://www.sdn.sap.com/irj/sdn/xi-elearning
    All Articles on SAP NetWeaver Exchange Infrastructure(This website gives al articles on XI)
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/f04b44aa-fe06-2a10-859e-82ad4965781d?startindex=101 [original link is broken]
    Mastering SAP Netweaver XI - Programming( PDF Book for XI)
    http://www.sap-hefte.de/download/dateien/1241/140_leseprobe.pdf
    SAP XI Learning Guide
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci1008087,00.html
    SAP Exchange Infrastructure 2.0
    http://www.sun.com/third-party/global/sap/collateral/SunSAPWP_final.pdf
    http://help.sap.com/bp_bpmv130/Documentation/Planning/TechnicalInfrasture.pdf
    Process Integration with SAP Netweaver new features and functions
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4042611d-04e5-2910-bd9d-f97627b1c164
    SAP NetWeaver Process Integration 7.1 –Overview
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/706005a3-3bd6-2910-91ae-a2016239bdcf
    End To End Process Integration Features in SP15 and higher incl. SAP NetWeaver 2004s
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6a90d6aa-0b01-0010-8a83-cf0e6c70dcce
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/54f20a2e-0801-0010-f787-87653d356508
    cheers!
    gyanaraj
    ****Pls reward points if u find this helpful

  • How to Prepare for SAP SD Certification

    Hi All,
    I have applied for SAP SD certification with EhP5 with exam code C_TSCM62_65, I am little nervous regarding preparation.
    Can any one tell me on how to prepare with proper methods to crack SAP SD certification.
    I have 3 years of experience in SAP SD and MM and I have referred  the syllabus from SAP training site.
    Little guidance will help ma a lot.
    Thanks,
    Sokita

    Hi Nouman,
    We are fully aware of this but this does not make it legal, I'm afraid. Using exam patterns and illegal material only undermines the quality of SAP certifications and diminishes the value for people who have honestly prepared for the exams and have fully earned it.
    Additionally, learning exam patterns by heart completely misses the point of becoming certified, because you don't actually gain any new knowledge or go into depth.
    I hope you understand this and I ask you politely to please stop sharing or asking for copyright materials.
    Regards,
    Joey

  • NetWorker Module for SAP/Oracle

    Legato has NetWorker Module for SAP R/3 on Oracle and
    NetWorker Module for Oracle. Which one is better for a
    large SAP database over 1TB?

    Hi,
    we are using
    Module Name:  Legato NetWorker Module for SAP R/3 with Oracle @(#) Module Vers: 3.0.1
    for SAP R/3 Enterprise 4.7x110 with 6.40-Kernel.
    Regards
    Jürgen

  • Pls send the SAP FICO  ECC 6.0 material for  SAP certification exam.

    Hi gurus,
    can any one send the material for SAP certification exam with new version.
    Thank you
    sasikanth

    well, it says;
    'You have no authorization to order. Please refer to SAP Note 532145 !'
    I read this but don't know wht to do next.
    Please guide the steps

  • SAP Tutor Player with recorder

    Hi all!
    Someone can send me the installable file for SAP Tutor Player with recorder and editor.
    Thanks!

    Check this, if this is of any help to you
    https://websmp102.sap-ag.de/~sapidp/011000358700001572552002E
    award points if it helps.

  • Disable login prompt for SAP NW based Xcelsius Dashboard

    Hi all,
    Need assistance to understand what needs to be done in the below case:
    Current scenario:
    1. Developed Xcelsius Dashboard based on SAP NW Connectivity on BO XI 3.1 SP2+.
    2. Configured trust between SAP BW server and BO Server using steps outlined in integration kit(login/accept_sso2_ticket, etc).
    Imported user roles in BOE and enabled SAP authentication.
    After this, WEBI Reports based on Bex queries refresh in Infoview without prompting for Login id/Password.
    3. Configured SAP Server to enable portal/interop switch to display the Xcelsius Dashboard within Infoview which is the existing BI portal. Used Hyperlink object for enabling the link.
    In the hyperlink, I am using the same link which gets generated when I use the option Xcelsius 2008>>file menu>>SAP>>Launch
    Issue: On click of Hyperlink, I get SAP EP Login window. Once I fill up the SAP user id and password, the dashboard comes up
    Server Configuration:All on same domain
    SAP system ID=X(SAP BW server)
    SAP system id=Y(SAP EP Portal)
    BOBJ system Z(BOBJ Server)
    User roles stored in X. Entitlement system defined in Z for SAP BW Server X.
    Dashboard is not available in SAP EP Portal in any folder as of now. Have not created any roles yet.
    As per the various posts and KB articles,
    Do I need to enable SNC for both X and Y? or trust between Infoview and SAP EP portal can be enabled without enabling SNC?
    Just like SAP BW server, does the SAP EP portal also has *.cert files that can be used to exchange with BO Server to enable trust.
    Thanks,
    V Fernandes

    Hi Ingo,
    Thanks for your explanation. I was referring the configuration mentioned in the wiki article for displaying Xcelsius Dashboard in Infoview where this was explained as a possibility. Even though its not Lean.
    Link: [http://wiki.sdn.sap.com/wiki/display/BOBJ/IntegrationofanXcelsiusdashboardinBOE+Infoview]
    The only difference in my case is the use of SAP Authentication instead of Enterprise.
    Thus as per your last update the following workflow is only valid:
    1. User logins to Infoview using SAP Authentication.
    2. User clicks on Xcelsius Dashboard Hyperlink object.
    3. SAP Enterprise Portal login pops up within the Infoview Workspace.
    4. User has to fill in the Login credentials again.
    5. Dashboard load up successfully.
    Please correct me in case I am wrong.
    Thanks for the response.In case there is any other way this can be achieved, then please do let me know. Appreciate for all the help.
    Regards,
    V Fernandes

Maybe you are looking for

  • JDeveloper 9i, Foreign Keys and LOVs.

    Greetings all, I'm using Jdev 9i to try and create some maintenance applications quickly. These applications are pretty standard; insert, update, delete, some validation, including foreign keys. The problem is, I can't figure out how to get JDev to g

  • Undisplayed Physical query SQL Server 208

    Hi, I am querrig an SQL Server 2008 database with OBIEE. But the physical query syntax isn't dispalayed in the nqQuery. I got a message seems to History unfound. Is there any way to get the physical query on database different from oracle like SQL se

  • Hi how can I execute a getQueryHitCount() on getbindings

    Hi I need additional functionality over an executable, like the following. public String but_nav_ultimo_action() { but_nav_ultimo1.setDisabled(true); BindingContainer bindings = getBindings(); OperationBinding operationBinding = bindings.getOperation

  • Party Mode

    Hey; My friend was showing me "Media Monkey" on his (Shudder) widows machine... and it had an awesome feature called "Party Mode" ... When activated the user could not switch away from "Media Monkey" (basically locked the computer - Password required

  • Please help ME..im not able to Access "F1 Keyword help"

    Hi all, This is my 1st question im posting in SAP community..I hope u wont dissappoint me.. The issue is, I had downloaded the "F1 help in HTML format" to the local system using the Standard Function Module Program "ABAP_DOCU_DOWNLOAD". I executed th