How to login into another BO from my BO

Hi
My requirement is to login into another BO from a link in my BO without asking user to enter uername and password.
Can you pls help me to know how this can be done.
Thanks
Regards
Amit

siteminder configuration requires you to set up a web agent and web server which must be 6.x only.
You may be interested in using trusted authentication which doesn't have any such limitations. Look for the directions in the admin guide or business objects articles above. For siteminder you can enable HTTP_HEADER and the user param is usually smuser. You can also use trusted auth for any otyher authentication mechanism IIS, Oracle, you name it...
Regards,
Tim

Similar Messages

  • How to login into 000 client -- sap*   in ecc6.0

    how to login into 000 client--sap*  in ecc6.0
    because i need to generate solution maneger key.
    or tell me any alternate for generating the same.
    Edited by: THIRU MALAI on May 9, 2008 9:55 AM

    Hi,
    1. You have to Configure the Email connections through SCOT tcode.
    2. After that you ccan send/recive a mails from exchange server and SAP R/3 systems.
    Look into the following link.
    http://help.spa.com--> search for E-mail configuration and aslo search for FAX configuration.
    Regards,
    Srini Nookala

  • My computer keyboard has a bad "M" key so I cannot login into my computer from boot     is there a way to bypass the login to reset my macbook pro

    my computer keyboard has a bad "M" key so I cannot login into my computer from boot     is there a way to bypass the login to reset my macbook pro

    Late reply, but if anyone is experiencing the same problem, I've found a solution. For whatever reason, some macbooks don't recognize usb flash drives during the boot-up phase, even though the usb ports themselves are powered (I tested this with a multimeter). The solution then, was to use an external USB hard drive that has its own power supply to install Snow Leopard. I don't know why, but it's the only way I got my macbook (Macbook 2,1/A1181) to recognize the install drive. Every was smooth sailing from there!

  • How to login into yahoo from j2me midlet?

    Hi all,
    I want to login into yahoo from my j2me midlet and chat with more than one user in my friendlist?How to proceed for doing this?Plz help?What all will be required for doing this
    Thanks
    Sagar

    ask to yahoo to know if it's possible...

  • How to insert into a table from 3 tables?

    Hello,
    How to insert into a table getting values from 3 different tables?
    For example table_A has col_1 to col_10.
    I want to insert into table_A,
    values: col_1 to col_4 are from table_B,
    col_5 is from table_C,
    col_6 to col_10 are from table_D.
    Thanks!

    Normally, you'd do this by joining B, C, and D together. In the simplest case, something like
    INSERT INTO A( col1, ... col10 )
      SELECT B.col1, ..., B.col4,
             C.col5,
             D.col6, ..., D.col10
        FROM B,
             C,
             D,
       WHERE B.someKeyColumn = C.someKeyColumn
         AND C.anotherKeyColumn = D.anotherKeyColumnYou'd have to know how the data in B, C, and D relate to fill in the WHERE clause. This basically tells Oracle how to match the data in a particular row in B with the data in a particular row in C with the data in a particular row in D.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Getting data into another collection from UNION of 2 collections

    Hi,
    I have a requirement like this.
    cursor c1 is
    select a,b,c,d from abc
    UNION
    select e,f,g,h from def;
    I am replacing cursor with collection variables.
    Created collection variables for both the select statements as
    select a,b,c,d BULK COLLECT INTO coll_abc from abc;
    select e,f,g,h BULK COLLECT INTO coll_def from def;
    Now, I want to get the UNION of both these collections into another collection variable.
    Can I write
    select * BULK COLLECT INTO coll_abc_def from coll_abc,coll_def;Thanks
    Rajiv

    Hi,
    I ran into some problem here.
    TYPE main_coll is RECORD (
         dte_ent_woc date,     
         sched_beg_dte_woc date,     
         inst_dte_woc date,     
         sub_acct_no_woc number,     
         wo_stat_woc varchar2(5),     
         wo_key_woc number);
    TYPE main_coll_typ IS TABLE OF main_coll;
    main_collection_union main_coll_typ;
    -- Declaration Ends
    BEGIN
       err_loc      := 10;
       file_name    := '14932_welcome_call_'               ||
                       TO_CHAR(TRUNC(SYSDATE), 'YYYYMMDD') ||
                       '.txt';
       file_handle  := UTL_FILE.fopen('/apps/custsrv/custsrv/data/output',
                                      file_name,
                                      'W');
       UTL_FILE.put_line(file_handle,
                         '"DV DATE"~"SCHEDULE DATE"~"INSTALL DATE"~"ACCOUNT
    #"~"ADDRESS1"~"ADDRESS2"~"CITY"~"STATE"~"ZIP"~"ACTIVATION DATE"~"CURRENT BALANCE"~"DV STATUS"~"ACCOUNT
    STATUS"~"RESTART DATE"~"IS DV LAST?"');
       err_loc      := 20;
    SELECT  dte_ent_woc,     
         sched_beg_dte_woc,     
         inst_dte_woc,     
         sub_acct_no_woc,     
         wo_stat_woc,     
         wo_key_woc
    BULK COLLECT INTO main_collection_union
    FROM ((SELECT dte_ent_woc,
                 sched_beg_dte_woc,inst_dte_woc,
                 sub_acct_no_woc,
                 wo_stat_woc,
                 wo_key_woc
            FROM woc_base_comp
           WHERE
              wo_typ_woc = 'DV'
             AND MOD(INSTR(wo_rsn_woc, 'BF'), 2) != 0)
          UNION
          SELECT /* index(a DTE_ENT_WOO_I) */
                  dte_ent_woo,
                  sched_beg_dte_woo,inst_dte_woo,
                  sub_acct_no_woo,
                  wo_stat_woo,
                  wo_key_woo
            FROM woo_base_open a
           WHERE
              wo_typ_woo = 'DV'
             AND MOD(INSTR(wo_rsn_woo, 'BF'), 2) != 0
             AND wo_stat_woo in ('X','O')
           );When I compiled, I got these errors...
    Error(146,10): PL/SQL: Statement ignored
    Error(146,51): PLS-00302: component 'SUB_ACCT_NO_WOC' must be declared
    Error(155,10): PL/SQL: SQL Statement ignored
    Error(159,35): PL/SQL: ORA-00904: "MAIN_COLLECTION_UNION"."DTE_ENT_WOC": invalid identifier
    .I understand that the declared collection is not being recognized.
    But, I am not getting where to declare and where to define the collection.
    Any help regarding this would be appreciated.
    Thanks
    Rajiv

  • How to sign into another AIM account?

    I must be missing something obvious, I can't find how to switch AIM accounts in iChat and I can't find the instructions on the Apple support pages.
    I have ichat 4 with Leopard and when I launch it signs into one of my AIM accounts automatically. The other AIM accounts are listed in the preferences under Accounts. However, I can't figure out how to sign into one of the other accounts.
    Can anyone tell me where/how to switch?
    Thanks and happy holiday.

    Hi,
    If in iChat Menu > Preferences > Accounts you list several Accounts/Screen Names then the pane on the right when the Account Info tab is highlighted will have a Box to say "Use this Account".
    This will then log those Accounts in to the relevant Servers at Launch (But read below).
    In the General Section of the Preferences you can set whether iChat Logs Accounts in at Launch or not.
    If you have more than one Buddy List open you can "Hide" the one you don't want by using the Red Button to left of the Window. This will not Quit iChat nor will it Log you out of that Screen Name.
    NOTE: If you Quit iChat with Buddy List Hidden it will Remember this as the Window Position - the same as if you move a Buddy List and Quit iChat - It will be in the same place you left it.
    Use the Window Menu to bring On-line Accounts listed Buddy Lists back into view.
    9:57 PM Friday; December 25, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • How to login into XI integration repository

    Hii Guyz , i installed PI 7.0 (NW04s) . Now i hit SXMB_IFR tx code and it opened Xchange infrastructure window. But what is the userid and password to login into "Integration repository" and "integration directory" . Plzz help me asap
    Thank you

    Any ID with proper authorization will be able to login to IR and ID.
    What is the error you are getting while trying to login in?
    -Pinkle

  • HOW TO LOGIN INTO iNTEGRATION REPOSITORY

    Hii Guyz , i installed PI 7.0 (NW04s) . Now i hit SXMB_IFR  tx code and it opened Xchange infrastructure window. But what is the userid and password to login into "Integration repository" and "integration directory" . Plzz help me asap
    Thank you

    Hi,
    It is the same user id and password which u have used for login into SAP XI box.
    Have u tried that?
    Or try to first create an user using SU01 transaction assign all the roles to that uses then login.
    Check the roles which needs to be given to users.
    http://www.erpgenie.com/sap/netweaver/xi/xiauthorizations.htm
    Thnx
    Chirag Gohil

  • How can I get back my back into another fin from icloud

    Please let me know that how can I get back my backup which related to my previous I phone
    I was installed once on my new after unfortunately it deleted
    I tried one more time but I could not get back but I don't how to keep use it to bring it back. To this iphone4s

    Is this your issue >  http://support.apple.com/kb/HT5818
    If so...
    The Apple ID and Password that was Originally used to Activate the iDevice is required
    If you do not have that information you will not be able to use the Device.

  • I can not login into skype anymore from skype prog...

    Hello there, I had an account which is blocked with no a clear reason from skype, they told me that it had some suspicious activites and all i did is adding my friends' accounts simultaneously and skype support told me to create another account and there is noway to get the old account back which had about 100 important contacts on it and I lost them all and I can not retrieve them now even I asked the support to just backup my contacts and send them to me and they refused, after this I can not sign into skype from my PC. The next step i did was to create another account to start over from the beginning again, I signed into it from my Android device. I Added some of my friends who were on the old account - just about 5 - 7 friends -without being confirmed the request and this account also got blocked and I can not sign into skype with any other account from my android device. Now there is noway to use skype from my side and I dunno what the wrong i did and how can I solve this problem before I think of another alternative better than skype. Thanks in advance.

    Hi Mariama and welcome to the Skype Community,
    You didn't really specify what happens when you try to sign in.
    Just wildly guessing this help article might help you get back on your feet again: https://support.skype.com/en/faq/FA109/i-ve-forgotten-my-username-or-password
    Let us know some more details about what happens when you fail to sign in.

  • How to insert into 2 tables from the same page (with one button  link)

    Hi,
    I have the following 2 tables....
    Employees
    emp_id number not null
    name varchar2(30) not null
    email varchar2(50)
    hire_date date
    dept_id number
    PK = emp_id
    FK = dept_id
    Notes
    note_id number not null
    added_on date not null
    added_by varchar2(30) not null
    note varchar2(4000)
    emp_id number not null
    PK = note_id
    FK = emp_id
    I want to do an insert into both tables via the application and also via the same page (with one button link). I have made a form to add an employee with an add button - adding an employee is no problem.
    Now, on the same page, I have added a html text area in another region, where the user can write a note. But how do I get the note to insert into the Notes table when the user clicks the add button?
    In other words, when the user clicks 'add', the employee information should be inserted into the Employees table and the note should be inserted into the Notes table.
    How do I go about doing this?
    Thanks.

    Hi,
    These are my After Submit Processes...
    After Submit
    30     Process Row of NOTES     Automatic Row Processing (DML)     Unconditional
    30     Process Row of EMPLOYEES     Automatic Row Processing (DML)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    50     Insert into Tables     PL/SQL anonymous block     Conditional
    My pl/sql code is the same as posted earlier.
    Upon inserting data into the forms and clicking the add button, I get this error...
    ORA-06550: line 1, column 102: PL/SQL: ORA-00904: "NOTES": invalid identifier ORA-06550: line 1, column 7: PL/SQL: SQL Statement ignored
         Error      Unable to process row of table EMPLOYEES.
    Is there something wrong with the pl/sql code or is it something else?

  • In a jsp page how can i include another page from differenct web context

    Hi,
    i want to include a page from another web content to my page. How is it possible. For example in a jsp page i want to include "http://www.google.com". How is it possible. can i use <jsp:include tage for this purpose? any idea?
    Edited by: JavaHeroPrince on Apr 2, 2009 12:05 AM

    I'm afraid you cannot do that using <jsp:include/> tag.
    However, you can achive this using <c:import/> tag which comes with JSTL core tags.
    Please find the below example of how to go about.
    <%@ taglib uri = "http://java.sun.com/jstl/core" prefix = "c"%>
    <c:import url = "http://www.google.com/search">
      <c:param name="q" value="c%3Aimport+jstl"/>
      <c:param name="rls" value="com.microsoft:en-us"/>
      <c:param name="ie" value="UTF-8"/>
      <c:param name="oe" value="UTF-8"/>
      <c:param name="startIndex" value=""/>
      <c:param name="startPage" value="1"/>
    </c:import>
    -------------------------------------------------------------------------for more info
    [http://java.sun.com/developer/technicalArticles/javaserverpages/faster/]
    Hope that helps :)
    REGARDS,
    RaHuL

  • How to login into NP Identity System using ObSSOCookie?

    I am using the Web Services API to Netpoint, generated by WSDL files. I have an ObSSOCookie (from IWA) which I want to use to log into Netpoint Identity System. The usual method is as follows:
    Authentication authN = new Authentication();
    authN.setLogin("admin");
    authN.setPassword("passwd");
    port.oblixIDXML_common_search( authN, myrequest);
    I could not find a method to use an ObSSOCookie to authenticate against Netpoint Identity System. (I understand that ObSSOCookie can be used to log into a Netpoint Access System protected URL using AccessSDK).
    If there is any other solution using utilities like HTTPClient, etc, please let me know.
    Thanks,
    Prashant.

    Hi Pankaj,
    I had tried this code earlier once. This is what I wrote:
    Authentication authObject = new Authentication();
    authObject.setLogin("pshetty");
    authObject.setPassword("dummyPassword");
    authObject.setDomain(".mydomain.com");
    OblixIDXMLPortType port = loc.getOblixIDXML_common_search_Port();
    ((javax.xml.rpc.Stub)port)._setProperty ("javax.xml.rpc.session.maintain", Boolean.TRUE);
    ((javax.xml.rpc.Stub)port)._setProperty(HTTPConstants.HEADER_COOKIE, "ObSSOCookie=" + ssoCookie);
    port.oblixIDXML_common_search( authObject, myrequest);
    The error I get is:
    "Invalid Credentials. Login failed."
    I guess it is still using the password from the AuthN object instead of the cookie. Am I missing something here?
    Thanks,
    Prashant.

  • In Captivate 7, how can I call another action from within an action?

    I have a conditional action called FakeSuccessRewind. Now I need to call another function called ShowGrayBalloons02 from within its Else statement, but I couldn't find something like "Execute Advanced Action." Can anybody share some tips here? Thanks!
    Below are screenshots of my two actions:
    1) FakeSuccessRewind (if/else). Here I need to call the 2nd action from the Else statement, underneath the statement Go to the next slide.
    2) ShowGrayBalloons02. Note this function has five seperate runs when the variable is decrementing from 5-1.
    Thanks a lot!
    Melissa

    You can't, you need to add the other action into the first one.

Maybe you are looking for

  • How to install SMP Kernel on RHEL 4

    Hi all, I am installing 2 Node RAC on VMWare on RHEL 4. For which i need to have SMP Kernel installed. As of now this is what i have. uname -a Linux abc.xyz.com 2.6.9-5.EL #1 Wed Jan 5 19:22:18 EST 2005 i686 i686 i386 GNU/Linux Kindly guide me to the

  • Can't Download Maps To X6 With Ovi

    Hi there. I've had my X6 for a few days now, and I'll be going on a trip, so I want to try out the Ovi Maps. I have installed  all software from the CD that came with my X6 and I have the latest versions of Ovi Suite and PC Suite on my Computer. The

  • PRINTING - HP DESKJET 3520 ePRINTER

    I bought new HP ink cartridges. At first, docs printed in blue only, now nothing at all. Ran the print test and all colors are good to go. Please help

  • Why is the apple website no longer selling the original MacBook as of this month?

    Just as I am about to purchase a Macbook (not Pro, not Air-- the original 13" which I think is more practical and reasonably priced), Apple removed it from the site! Can I still find it in their retail stores?

  • X11 - where is it? ...and how do i get rid of it?

    hello there! yesterday something rode me to install openoffice. when i wanted to start it i got the message that apple x11 is needed (ok, i know you knew that)... ...so i took my apple cd and installed that x11 thing. but openoffice still did tell me