How to capture userinfo after a partner application is authenticated through SSOSDK?

I have successfully installed and deployed the Partner application for Portal using SSOSDK. My question is, once the user is authenticated through SSOPartnerServlet.java and gets thrown back to the partner app(PAPP), how do we get the user info(i.e. username) from the PAPP?
Is there an API?
I have already asked this question from oracle tech and they told me to post it
Thanks,
Hamid

Pass the name of a subrotine to handle your user commands to the fm parameter.
I_CALLBACK_USER_COMMAND = 'USER_COMMAND'.
Then code for the user command function,
form user_command using r_ucomm type sy-ucomm.
case r_ucomm.
when '<FCODE of your button>'.
Code your logic....
endcase.
endform.
To add your button using your own pf-status, you should copy a standard gui status and modify it.
To trigger this pf-status you should pass routine name to I_CALLBACK_PF_STATUS_SET.(I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS..)
form set_pf_status.
set pf-status 'ZSTAT'.  "THis ZSTAT must be created by copying a STANDARD pf-status of say some std program like SAPLKKBL. and then modifying it.
endform.

Similar Messages

  • How to capture memory usage for web application

    In OATS openscripts, how to capture memory usage for web application? Does it have the exisitng java method that we can call to get the memory data (e.g. peak bytes, private bytes) consumed by web application?

    JProbe

  • How to capture the parameter in webdynpro application?

    Hi ,
    We have a requirement like this :
    the scenario is :
    user will get a mail to  inbox(here mail is coming from SAP Workflow) saying that :"proposal is waiting for your approval".for details please click on the below link:
    once user clicks on the link it has to open up the webdynpro application and has to display the details of the particular proposal no.
    how to pass the proposal no to the webdynpro application URL and how to capture the proposalno in webdynpro java?
    Thanks in advance.
    Regards,
    Pavani

    From the workflow when you create the link, also add the proposal number as an url parameter.
    For example if the url for requesting WD application is <WD_URL>, then URL with parameter would be
    <WD_URL>?PROPOSAL_NO=<actual_proposal_number>
    In the webdynpro, you can access this parameter with the following piece of code(ideally in wdDoInit of component controller).
    String proposalNo = WDProtocolAdapter.getProtocolAdapter().getRequestObject().getParameter("PROPOSAL_NO");
    Regards
    kk..

  • How to capture PKID after insert in Oracle

    All--
    Please help.
    This is a general question about Oracle in general, in the hope that someone has solved this problem.
    I want to capture the PKID after an insert into Oracle.
    I expect that this is just a syntax issue.
    I use DataAdapter.Update() passing in a DataTable.
    It looks like...
    ...the trigger is using the sequence correctly...
    ...the PKID value is provided for insert correctly...
    ...the insert occurs correctly...
    ...the output parameter is set by the SP...
    ...and then the DataAdapter trys to fill the underlying DataTable's PKID column and thats where the problem occurs...
    ...so, I think,...
    ...either the cast from OracleType Number (from the SP) to DotNetType decimal (from the DataTable) is failing...
    ...or...
    ...for some unknown reason Oracle is actually passing <10007>, with the brackets included, after the insert and casting that to decimal fails... (but, this seems unlikely)...
    ...or...
    ...something else?
    Any ideas?
    (See below for details.)
    ...this is the error...
    Code:
    System.ArgumentException: System.InvalidCastException: Specified cast is not valid. at System.Convert.ToDecimal(Object value) at System.Data.Common.DecimalStorage.Set(Int32 record, Object value) at System.Data.DataColumn.set_Item(Int32 record, Object value)Couldn't store <10007> in PKID Column. Expected type is Decimal. at System.Data.Common.DbDataAdapter.Update(DataRow[] dataRows, DataTableMapping tableMapping) at Oracle.DataAccess.Client.OracleDataAdapter.Update(DataRow[] dataRows, DataTableMapping tableMapping) at System.Data.Common.DbDataAdapter.Update(DataTable dataTable) at DLSLOD.Private.Business.Entity._LodAccesscode.Save(OracleConnection p_OpenConnection) in c:\vsswap3\wadprojects\dls\dlslod_01\dlslod\private\business\entity\_lodaccesscode.cs:line 715 at DLSLODAdmin.TestLodAccesscode01.SaveNewRow_Click(Object sender, EventArgs e) in c:\vsswap3\wadprojects\dls\dlslod_01\dlslodadmin\testlodaccesscode01.aspx.cs:line 144
    ...and the SP looks like this...
    Code:
    CREATE OR REPLACE PROCEDURE LOD_ACCESSCODE_INS
    P_PKID OUT LOD_ACCESSCODE.PKID%TYPE,
    P_DEPT_PKID IN LOD_ACCESSCODE.DEPT_PKID%TYPE,
    P_NAME IN LOD_ACCESSCODE.NAME%TYPE,
    P_NOTE IN LOD_ACCESSCODE.NOTE%TYPE,
    P_CHANGEACCT IN LOD_ACCESSCODE.CHANGEACCT%TYPE,
    P_CHANGEDATE OUT LOD_ACCESSCODE.CHANGEDATE%TYPE
    IS
    BEGIN
    INSERT INTO LOD_ACCESSCODE
    DEPT_PKID,
    NAME,
    NOTE,
    CHANGEACCT
    VALUES
    P_DEPT_PKID,
    P_NAME,
    P_NOTE,
    P_CHANGEACCT
    BEGIN
    SELECT LOD_ACCESSCODE_SEQ.CURRVAL INTO P_PKID FROM DUAL;
    END;
    BEGIN
    SELECT CHANGEDATE INTO P_CHANGEDATE FROM LOD_ACCESSCODE WHERE PKID = P_PKID;
    END;
    END LOD_ACCESSCODE_INS;
    ...and the trigger that fills the PKID is this...
    Code:
    TRIGGER LOD_ACCESSCODE_TR_SEQ
    BEFORE INSERT
    ON LOD_ACCESSCODE
    FOR EACH ROW
    BEGIN
    SELECT LOD_ACCESSCODE_SEQ.NEXTVAL
    INTO :NEW.PKID
    FROM DUAL;
    END;
    ...and my sequence looks like this...
    Code:
    CREATE SEQUENCE LOD_ACCESSCODE_SEQ INCREMENT BY 1 START WITH 10001 MINVALUE 10001 MAXVALUE 9223372036854775807

    All--
    FYI, this is a follow-up to my post above.
    After much Googling, I found no helpful answer to this issue.
    Therefore, I have implemented a workaround.
    Here is the situation and current solution.
    --I do a "select * from SomeTable where 1 = 2" to get the schema from the database into an empty DataTable.
    --Internally, DotNet converts from Oracle datatypes to DotNet datatypes. Therefore, the DataTable is created with typed columns. This is great so far.
    --Note that in the case of a column with Oracle datatype "NUMBER" DotNet creates a column in the DataTable with the datatype as "decimal". Fine, this should work. DotNet is now sending the message that an Oracle datatype "NUMBER" can and will be converted automatically to a DotNet datatype "decimal".
    --Now, I need to make an insert and then put the resulting OUT parameter from an Oracle column with datatype "NUMBER" into that DataTable column with DotNet datatype "decimal". One would think that this should work because DotNet already allowed this conversion once.
    --Not so.
    --When Oracle returns a column of datatype "NUMBER" as an OUT parameter from a proc, it cannot be cast internally by DotNet from NUMBER to decimal. It fails with a conversion error, as shown in detail above.
    --Now, this would make some sense if it were consistent. For example, it may be that C# disallows narrowing casts in this scenario. However, what is not consistent and does not make sense is that DotNet does allow narrowing conversions when selecting the schema and building the initial DataTable. Also, given that the magnitude of an Oracle NUMBER exceeds that of a DotNet decimal (and no other DotNet numeric datatype will hold all possible values of a NUMBER), then DotNet either must allow narrowing conversions in this case OR we would never be able to map the datatypes from one platform to the other, which would be a serious problem.
    --Therefore, since one cannot change the way Oracle is behaving, an adjustment needs to be made in the middle-tier. The datatype of the column needs to be set to some friendly datatype that both DotNet and Oracle can agree upon.
    What I now do is grab the DataTable, get the column, and forcibly set the datatype to "string". It seems to work just fine, especially since that DataTable is for simple UI binding so, the datatype of the column is not important.
    That's the "solution" for now.
    An overview of the code is below.
    Please send along any thoughts you may have.
    Thank you.
    --Mark
    ...here is what the SP now looks like...
    Code:
    CREATE OR REPLACE PROCEDURE LOD_ACCESSCODE_INS
    P_PKID OUT LOD_ACCESSCODE.PKID%TYPE,
    P_DEPT_PKID IN LOD_ACCESSCODE.DEPT_PKID%TYPE,
    P_NAME IN LOD_ACCESSCODE.NAME%TYPE,
    P_NOTE IN LOD_ACCESSCODE.NOTE%TYPE,
    P_CHANGEACCT IN LOD_ACCESSCODE.CHANGEACCT%TYPE,
    P_CHANGEDATE IN LOD_ACCESSCODE.CHANGEDATE%TYPE
    IS
    BEGIN
    INSERT INTO LOD_ACCESSCODE
    DEPT_PKID,
    NAME,
    NOTE,
    CHANGEACCT,
    CHANGEDATE
    VALUES
    P_DEPT_PKID,
    P_NAME,
    P_NOTE,
    P_CHANGEACCT,
    P_CHANGEDATE
    BEGIN
    SELECT LOD_ACCESSCODE_SEQ.CURRVAL INTO P_PKID FROM DUAL;
    END;
    END LOD_ACCESSCODE_INS;
    ...and here is the adjustment that I made in the middle-tier....
    Code:
    System.Type myType;
    myType = System.Type.GetType("System.String");
    _CurrentDataTable.Columns["PKID"].DataType = myType;

  • A12E1 How to fix this after I have called and went through all the steps they set up on the website?

    Someone please tell me WHY i can"t download the cc installer? I have literally tried everything they told me on customer support (which is a very horrible place that provides no help) and I scowered all through the internet to fix this! No answer found!

    http://helpx.adobe.com/creative-cloud/kb/a12e1-error-downloading-creative-cloud.html
    For anything beyond that you will have to provide proper technical info about your system and otehr details, which you have not done so far.
    Mylenium

  • How to get back to the calling application ?

    Hi Friends ,
                I am having a BSP application which is being called from different Planning layouts in BPS .
      Its a stateful application and I am finding that when i hit standard browser Back button i am returning to my application again .
      I tried creating a button and passing the javascript method history.back()
    <htmlb:button id       = "BACK"
                                onClick  = "BACK"
                                text     = "BACK"
                                tooltip  = "Back"
                           disabled = "<%= v_save_disable %>"
                           onClientClick="history.back();"
                                width    = "15" />
    it is notworking.
    Please let me know how can i resolve the issue ? I have another idea to divert the user to the calling application using URL but dont know how to capture the URL of calling application ?
    i appreciate your contribution in advance.

    <i>It generates a BSP in which i am adding a URL link to call my application.</i>
    while adding the url add a parameter to it masterdatabsp.htm?frompage=<currentpagename>
    (runtime->PAGE_NAME will return current page name)
    and in the master data maintenance bsp page declare a page attribute and name it frompage type string and check the auto check box.
    now within your masterdatamanintenance bsp you will have the calling page name.
    Hope this is clear. if not do getback.
    Regards
    Raja
    i work in a place where weekends are on thursdays and fridays - today is a working day

  • How to enable a partner application for Single Sign-On?

    Can someone please advise me on how to enable my existing J2EE web application for the Oracle Single Sign-On?
    My requirement is i want to provide the single sign-on authentication service to my J2EE web application. For this, I would like to make my application as a partner application similar like the OracleAS Portal.
    I am using Oracle 10g ( OralceAS, Oracle Infra, OID ...)
    I found the following service/APIs which Oracle provides. I am not sure which one is suitable for me.
    1. mod_osso ( Static)
    --- In this case, I have to make a entry in mod_osso.config file to protect the URL. should I have to register the URL again through single sign on admin page ("Administer Partner Application") after make a entry in config file?
    2. mod_osso ( Dynamic directive)
    -- in this case, I have to modify the code by providing the directives like 401, 499.. etc. So i don't prefer this as i don't want to touch my app.
    --If I go with this option, should i have to register the URL with Single sign on server through SSO admin page ( as mentioned in the above step#1) ?
    3. SSO SDK
    - Since it was deprecated and need java coding, i am prefer this option.
    -- however, if i go with this option, i will develop code by using SDK. in this case i need to register the URL in SSO server through admin page.. am i right?
    Note:- OSSO server integrated with Active Directory for the authentication.
    Thanks,
    -Senthil

    sharon38_74 wrote:
    they said that our internal application needs to send a "login request" to etran via SSL with the user's information encoded in base 64 format. etran captures the HTTP header containing user authentication and authorization information, and parses the required information from the HTTP header.
    My question is that how I set user information in HTTP header? From my understanding, once I am able to set the user information in HTTP header, it is in base 64 format?Your application need to act like a proxy. You can invoke a HTTP request programmatically using java.net.URLConnection. You can set request headers using URLConnection#setRequestProperty(). Also see the API docs: [http://java.sun.com/javase/6/docs/api/java/net/URLConnection.html]. You only need to know the header field name where to set the Base64-encoded value in. You need to Base64-encode the value yourself.

  • How can i use my custom login page in a custom partner application ?

    Dear All,
    I'm trying to customize a login page displayed other than the default sso login page
    by submiting my form to the regular pl/sql procedure : "PORTAL.wwptl_login.login_url"
    but i tried to type the requested partner application url in the browser i got the sso
    login page other than my custom login page. So, How can i use my custom login page in a custom partner application ?
    Regards,
    Mohammed Amin
    [email protected]

    I cannot begin to express my level of frustration. I have been trying to use the composition widget light box display for some time now. I drag the widget to my document. The default widget has three small trigger boxes and a large area made up of a forward and backward button, a background, a text box and a frame for your image.
    My steps have been …
    I click on the little trigger box.
    I click on the frame that holds the main image.
    I go to the fill menu and browse my computer for my image and then click OK.
    IT shows up on my screen. Yay
    I attempt to continue using the next two trigger boxes provided in the widget.
    After that, I add more by clicking on the little plus sign.
    This is where all heck breaks loose.
    Every single time I attempt to add thumbnails, something messes up. When I go to preview, either not all of my main images show up, or it starts with the wrong one, or some are missing. I have looked and looked for help on this and the only thing I can find is how easy it is to create a great portfolio lightbox display.  But as we know, that only works when your thumbnails are the same image as the images in your lightbox. If you want something different, you have to use the composition wizard. I am finding it extremely difficult and confusing to customize.
    Is there an exact sequence you need to use to add images to the slideshow? I am my wits end.

  • HOW TO SET UP PARTNER APPLICATION TO USE SSO OUTSIDE OF PORTAL

    If anyone knows how Portal switches context to run as the db user mapped to the lightweight schema and how it knows the db schema password please let me know.
    Should you have any queries please do not hesitate to contact me on 07775 896738.
    From document Oracle Portal Security Overview on PortalStudio.oracle.com:
    In Single Sign On mode (EnableSSO=Yes in the DAD), mod_plsql determines the name of the light-weight user and mapped database schema by calling
    WPG_SESSION_PRIVATE.GET_LW_USER and WPG_SESSION_PRIVATE.GET_DB_USER respectively.
    ** These calls are done using the Portal Schema (PORTAL30) and Portal schema password **
    mod_plsql then executes the procedure in the requested URL by using the N-Tier Authentication feature to connect to the database as the user returned from
    WPG_SESSION_PRIVATE.GET_DB_USER. ..... Note that N-Tier Authentication requires all schemas to be used for Portal user mappings to be granted 'connect
    through' privleges to the Portal schema (PORTAL30).
    The WWCTX packages are also used.
    So this is how it works with standard Portal
    - the document states that the WPG_SESSION_PRIVATE package is only accessible to the Portal schema
    - but I checked and it is also available to PORTAL30_SSO
    SQL> desc WPG_SESSION_PRIVATE
    PROCEDURE CREATE_SESSION
    Argument Name Type In/Out Default?
    P_COOKIE_NAME VARCHAR2 IN
    FUNCTION GET_DB_USER RETURNS VARCHAR2
    FUNCTION GET_LW_USER RETURNS VARCHAR2
    PROCEDURE GET_SESSION_INFO
    Argument Name Type In/Out Default?
    NUM_PARAMS NUMBER OUT
    PARAM_NAMES TABLE OF VARCHAR2(32000) OUT
    PARAM_VALUES TABLE OF VARCHAR2(32000) OUT
    PROCEDURE RESET_SESSION
    Argument Name Type In/Out Default?
    P_COOKIE_NAME VARCHAR2 IN
    In my case only the Login Server (PORTAL30_SSO) is going to be used/installed
    - the SAMPLE_SSO_PAPP application will only work if the DAD used to access is it set to use Basic authentication, i.e. the actual integration with the Login Server
    is done in the sample application code calls, stored in the database
    - when a DAD has enableSSO=yes it automatically accesses Portal (PORTAL30) packages to implement N-Tier authentication
    I'm currently testing:
    1. Configuring the SAMPLE_SSO_PAPP sample as documented with a DAD with Basic authentication
    2. Amending the ssoapp procedure to set context to another (db) user on successful authentication:
    wwctx_api.set_context (
    p_user_name => 'SCOTT',
    p_password => 'TIGER' );
    3. If this works then set_context with get_lw_user instead
    I have now amended the ssoapp procedure as follows to print out
    1. The userid entered when the login box is presented
    2. The Database user which the Portal Lightweight user is mapped to
    3. The Lightweight user Portal has used for authentication
    Amendments to papp.pkb:
    (ssoapp procedure, declare db_user_info and lw_user_info as VARCHAR2 in declare section)
    htp.p('Congratulations! It is working!<br>');
    db_user_info := wwctx_api.get_db_user;
    lw_user_info := wwctx_api.get_user;
    htp.p('User Information:' || l_user_info || '<br>');
    htp.p('DB User Information:' || db_user_info || '<br>');
    htp.p('LW User Information:' || lw_user_info || '<br>');
    The following shows the interesting results from my testing:
    - if the user owning the sample_sso_papp package is PORTAL30_SSO then the call to wwctx_api.get_db_user succeeds
    - if the user owning the sample_sso_papp package is a non-portal schema e.g. SSOAPP below the call to wwctx_api.get_db_user generates a User Defined exception
    Steps to test:
    Created new schema SSOAPP on the database
    - edited it in Portal and checked the use this schema for Portal users checkbox
    - created new Lightweight user SSO_LW in Portal, mapped it to SSOAPP schema
    - created new Lightweight user SSO_SCOTT in Portal, mapped to SCOTT schema
    - loadjava -user ssoapp/ssoapp@portal30 SSOHash.class
    - sqlplus portal30/portal30@portal30
    @provsyns ssoapp
    - sqlplus ssoapp/ssoapp@portal30
    @loadsdk.sql
    @loadpapp.sql
    Created DAD with basic authentication SAMPLE_SSO_PAPP
    - username: ssoapp
    - default home page: sample_sso_papp.ssoapp
    Registered the Sample SSO Partner Application with the Login Server and ran regapp.sql
    Commented out the calls to get_db_user in papp.pkb to avoid exception
    - called http://<server>/pls/sample_sso_papp
    - logged on as SSO_LW/sso_lw
    - got output:
    Congratulations! It is working!
    User Information: SSO_LW
    LW User Information: PUBLIC
    So the Portal lightweight user is not returned as SSO_LW
    if anyone knows why the Lightweight User in my test is returned as PUBLIC not SSO_LW
    Best Regards
    MIchael

    http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox

  • How to get logout to work for partner applications

    Hi
    I have configured the demo partner application of the ssosdk 3.07
    And login / logout works.
    My problem is that the sample logout code, only clears the
    cookie of the partner application, so the code redirects the
    appliation to the login server which reauthenticates the partner
    application.
    So shall the logout code clear the portal30_sso cookie.
    My other problem is the other way around, when I log out of
    Portal, I also need to be logged out of the partner application,
    have anybody have any success with that.
    Jakob

    FOR ASSISTANCE WITH ORDERS - iTUNES STORE CUSTOMER SERVICE
    For assistance with billing questions or other order inquiries, please refer to our online support page by clicking here: http://www.apple.com/support/itunes/store/. If you cannot find the answers you are seeking in our robust knowledge base, you can contact us by visiting the following URL http://www.apple.com/support/itunes/store/, clicking on the appropriate Customer Service topic, then using the contact button or email form at the bottom of the page. Responses to emails will be provided as soon as possible.
    Phone: 800-275-2273 How to reach a live person: Press 0 four times
    Hours of Operation: Mon-Fri: 9am-5pm ET
    Email: [email protected]
    How to report an issue with Your iTunes Store purchase
    http://support.apple.com/kb/HT1933
    iTunes Purchase Problems: How to Report a Problem to iTunes Support
    http://tinyurl.com/7tscpa7
    How to Get a Refund from the App Store
    http://gizmodo.com/5886683/how-to-get-a-refund-from-the-app-store
    Getting Refunds for your iTunes Store Purchases
    http://www.labnol.org/software/itunes-app-store-refunds/13838/
    Canceling a Digital Subscription
    http://gadgetwise.blogs.nytimes.com/2011/10/14/qa-canceling-a-digital-subscripti on/
     Cheers, Tom

  • How can I allow the application to line through a field that has been locked after being digitally signed?  We have multiple sections on a form with some fields being proposed information and other in another section having the approved information. once

    How can I allow the application to line through a field that has been locked after being digitally signed?
    We have multiple sections on a form with some fields being proposed information and other in another section having the approved information. once the approved information is entered we line through the proposed field so the data entry clerk won't pick up the wrong information.  However we are receiving an error when attempting to enter data  in the field which we have this edit.  Error property: line through cannot be set because doing so would violate the document permission setting.  any idea how we can get around this issue?

    You can control which fields are locked down after signing by setting up a collection. Then those that are not locked can be changed after signing. If this is not possible, then the line outs must occur prior to signing.

  • How to capture 'DELETE' menu bar option in VA02 application.

    Hi to all
    Please tell me how to capture 'DELETE' menu bar option in VA02 application.
    It is captured in Sy-ucomm but as the pop up message comes it is over written.
    Based on the 'DELETE' selection i need to write my own validation coding in user exit .
    Please tell me how to do that.
    Thanks & Regards
    Anubhav Gupta

    Thanks to all
    In present situation userexit_save_document_prepare
    Validation logic is fired for both VA01 and VA02 application.
    Here for checking logic is  :
    if T180-TRTYP = 'H'.
      vmbtcode = 'VA01'.
    else.
      vmbtcode = 'VA02'.
    endif.
    Now I want to skip this logic if -  In  VA02 application Delete sales order option from menu is selected.
    Please give me suggestion.
    Thanks& Regards
    Anubhav Gupta

  • When using tethered capture I often get this notification "The metadata for this photo has been changed by both Lightroom and another application". This slows or stalls the loading of incoming photos. How do I find out which other application is changing

    When using tethered capture I often get this notification "The metadata for this photo has been changed by both Lightroom and another application". This slows or stalls the loading of incoming photos. How do I find out which other application is changing the metadata and stop it?

    Thanks Sean,
    I've had a look at the TC settings dialog and tried to keep it as simple as possible. I also had a copy of LR 4 on the hard drive so have trashed that also incase of any conflicts. LR seems to be running ok now but as said it's an intermittent problem.
    I also have a copy of Capture One on the hard drive so am going to uninstall that also in case it is trying to launch.

  • How to change the Data sources after deploying the application ??

    Hi All,
    i want to know how to change the Data sources after deploying the application to the application server ???
    I'm using Oracle Application Server 10g Release 3 (10.1.3.1.0)

    Can you access the Enrprise Manager website of the target Application Server from your location? If so, you can change the datasource in it. If not, yo can bundle the datasource definition in your archive and use that one instead of the one configured in the target OC4J container. Or this will just be the responsability of your customer: whenever you send a new WAR file, they have to modify the datasource if needed and deploy the application?

  • How can I allow the apHow can I allow the application to line through a field that has been locked after being digitally signed? plication to line through a field that has been locked after being digitally signed?

    How can I allow the application to line through a field that has been locked after being digitally signed?
    We have multiple sections on a form with some fields being proposed information and other in another section having the approved information. once the approved information is entered we line through the proposed field so the data entry clerk won't pick up the wrong information.  However we are receiving an error when attempting to enter data  in the field which we have this edit.  Error property: line through cannot be set because doing so would violate the document permission setting.  any idea how we can get around this issue?

    HI,
    Kindly post this query in Acrobat forum:Acrobat
    Regards,
    Florence

Maybe you are looking for

  • Have tried everything in forum and cant burn cds or import them. itunes says to reinstall but doesn't fix problem.

    Hi.  I have had a message each time I open Itunes. It has varied but includes the following: Itunes was not properly installed. If you wish to import or burn cds you must reinstall itunes. Itunes helper not installed correctly - Error 7 Itunes is not

  • Converting to PDF crashes Word

    I'm using Acrobat Pro 9 and Word 2007. I have a document of approximately 160 pages with a Table of Contents, Figures, Tables, and lots of text. Every time I try to convert it to PDF, Word crashes. I have other similar documents that convert just fin

  • Red-d-led

    Hello, i getting 4 red led on my d-led. and an clicking noise. whats wrong? k7d master-l 2000+ amd xp 1.667 512mb crucial ecc ddr pc 2100 ram regester ati radeon 7000 pci 40gb western digital hd 430w psu 3 case fans 80mm and an amd retail fan hope u

  • Table storing PACKAGE details

    hi   i want to know table which contains information about PACKAGES we create for storing Prg. names, DDIC items .           i have created one package ZSS like this SAP repotrs and Prg. are also stored in  some packages , where this info get stored.

  • RF Console and Siteminder SSO.   Anyone implemented this products together?

    Has anyone had success layering RF Console behind siteminder to allow single signon ?