Error When Loading Reader

Hi all
I have a machine that has started coming up with the following error when yrying to start Adobe reader
"This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem"
I have also tried install Acrobat 8 (Full Product) and that fails to start as well so the issue seems to affect all adobe products.
I have tried the following to reolve the issue:
Uninstalled  Adobe Reader9 and re-installed into a different folder
Run CCleaner to fix any Regisrtry errors
Manually Deleted all adobe folders of the system and re-installed
Tried installing Adobe 8 and Adobe reader 8 same problem on both
Any help would be much appreciated

I am having the same problem on one of our machines. Tried reinstalling Adobe Reader 9.1 as well as reinstalling Microsoft Visual C++ 2005 SP1 Redistributable Package (saw some similar problems linked to that) but no luck so far.

Similar Messages

  • ORA-00054 error when loading Oracle table using Data Services

    Hello,
    we are facing ORA-00054 error when loading Oracle table using BO Data services
    (Oracle 10g database, BODS Xi 3.2 SP3)
    Test Job performs
    1- truncate table
    2- load table (tested in standard and bulk load modes)
    Scenario when issue happens is:
    1- Run loading Job
    2- Job end in error for any Oracle data base error
    3- When re-running the same Job, Job fails with following error
         ORA-00054: resource busy and acquire with NOWAIT specified
    It seems after first failure, Oracle session for loading the table stays active and locks the table.
    To be able to rerun the Job, we are forced need to kill Oracle session manually to be able to run the Job again.
    Expected behaviour would be : on error rollback modifications made on table and BODS stops Oracle session in a clean way.
    Can somebody tell me / or point me to any BODS best practice about Oracle error handling to prevent such case?
    Thanks in advance
    Paul-Marie

    the ora-0054 can occure depending how the job failed before. If this occures you will need the DBA to release the lock on the table in question
    Or
           AL_Engine.exe on The server it creates the Lock. Need to Kill Them. Or stop it..
    This Problem Occurs when we select The Bulkloading Option in orclae  We also faced the same issue,Our admin has Killed the session. Then everything alright.

  • Error when loading data in Infopackage

    Hi Friends,
               I'm getting the following error when loading please help it is quite urgent.
    Value 'ZSATX #1 ' (hex. '436F6E7461696E6572202331 ') of characteristic ZSIGNI contains invalid characte BRAIN     
    Thnaks ,

    Hi Smily,
    It refers to an invalid char found in this InfoObject value. Does your system have anything maintained in RSKC?
    For good info you can refer to Eugene's blogs:
    /people/sap.user72/blog/2006/07/08/invalid-characters-in-sap-bw-3x-myths-and-reality-part-1
    /people/sap.user72/blog/2006/07/23/invalid-characters-in-sap-bw-3x-myths-and-reality-part-2
    Hope this helps...

  • JAVAMAP-Sax Parser ...............Linkage error when loading the class.

    Dear all,
    Do we have any extra things to execute the Java mapping using the Sax Parser?
    When I am executing the interface mapping ,I am getting the" Linkage error when loading the class" error.
    Kindly let me know your personnel maildId so that I can mail you the screen shots.
    Thanks,
    Srinivasa

    Dear sunil,
    Find the File.
    Source:
    <MTO_FTP_MAT_DETAILS>
    <MATDETAILS>
    <MAKTX>
    <MATNR>
    <WERKS>
    <LABST>
    <MEINS>
    <PERCNT>
    TARGET
    MTI_FTP_MAT_DETAILS
    <MATDETAILS>
    <MAKTX>
    <MATNR>
    <WERKS>
    <LABST>
    <MEINS>
    <PERCNT>
    Source:
    <MTO_FTP_MAT_DETAILS>
    <MATDETAILS>
    <MAKTX>
    <MATNR>
    <WERKS>
    <LABST>
    <MEINS>
    <PERCNT>
    TARGET
    MTI_FTP_MAT_DETAILS
    <MATDETAILS>
    <MAKTX>
    <MATNR>
    <WERKS>
    <LABST>
    <MEINS>
    <PERCNT>
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Map;
    import javax.xml.parsers.SAXParser;
    import javax.xml.parsers.SAXParserFactory;
    import org.xml.sax.Attributes;
    import org.xml.sax.SAXException;
    import org.xml.sax.helpers.DefaultHandler;
    import com.sap.aii.mapping.api.StreamTransformation;
    class Echo {
    public static OutputStream out;
    public class myEcho extends DefaultHandler implements StreamTransformation {
    private Map map;
    public void setParameter(Map param) {
    map = param;
    public void execute(InputStream in, OutputStream out) {
    DefaultHandler handler = this;
    SAXParserFactory factory = SAXParserFactory.newInstance();
    try {
    SAXParser saxParser = factory.newSAXParser();
    Echo.out = out;
    saxParser.parse(in, handler);
    } catch (Throwable t) {
    t.printStackTrace();
    public void startDocument() throws SAXException {
    try {
    Echo.out.write("<?xml version='1.0' encoding='UTF-8'?>".getBytes());
    } catch (IOException e) {
    e.notify();
    public void endDocument() throws SAXException {
    try {
    Echo.out.flush();
    } catch (IOException e) {
    throw new SAXException("I/O error", e);
    public void startElement(String namespaceURI, String sName, // simple name
    String qName, // qualified name
    Attributes attrs) throws SAXException {
    String eName = sName; // element name
    if ("".equals(eName))
    eName = qName; // not namespace-aware
    if ("ns0:MTO_SAP_MAT_DETAILS".equals(qName)) {
    try {
    Echo.out.write(("<MTI_FTP_MAT_DETAILS>").getBytes());
    } catch (Exception e) {
    e.printStackTrace();
    } else {
    try {
    Echo.out.write(("<" + qName + ">").getBytes());
    } catch (Exception e) {
    e.printStackTrace();
    public void endElement(String namespaceURI, String sName, // simple name
    String qName // qualified name
    ) throws SAXException {
    String eName = sName; // element name
    if ("".equals(eName))
    eName = qName; // not namespace-aware
    if ("ns0:MTO_SAP_MAT_DETAILS".equals(qName)) {
    try {
    Echo.out.write(("</MTI_FTP_MAT_DETAILS>").getBytes());
    } catch (Exception e) {
    e.printStackTrace();
    } else {
    try {
    Echo.out.write(("</" + qName + ">").getBytes());
    } catch (Exception e) {
    e.printStackTrace();
    public void characters(char buf[], int offset, int len)
    throws SAXException {
    String s = new String(buf, offset, len);
    try {
    Echo.out.write(s.getBytes());
    } catch (Exception e) {
    e.printStackTrace();

  • I now get an 500 Internal Server error when loading Firefox, after updating RealPlayer

    I now get an 500 Internal Server error when loading Firefox, after updating RealPlayer.
    When I try to open Firefox, it opens. But there is the error message.
    What is this? How do I did rid of it?
    '''bold text'''

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    You can also check the connection settings in Tools > Options > Advanced : Network : Connection<br />
    If you do not need to use a proxy to connect to internet then select "No Proxy"
    See "Firefox connection settings":
    * [[Firefox cannot load websites but other programs can]]

  • 403 error when loading WAP

    I am getting a 403 error when loading WAP from the site https://localhost:30091. 
    It was working and suddenly stopped. How do I troubleshoot this issue ?

    Hi,
    Do you use any proxy on the WAP server? If yes, please disable the proxy and try again.
    Also, please check if there is any warning or error in the event viewer of the WAP server.
    We can check the event of Azure Pack at Applications and Services Logs-->Microsoft-->WindowsAzurePack
    Best Regards.
    Steven Lee Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Error when loading XSLT mapping of the application

    Hi,
    I am using XSLT mapping in XI.
    It is working ok when I test it in Interface Mapping but it gives below error when I test end to end scenario.
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Request Message Mapping
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>Application</SAP:Category>
      <SAP:Code area="MAPPING">TRANSFORMER_CONF_EX</SAP:Code>
      <SAP:P1>com/cba/***.xsl</SAP:P1>
      <SAP:P2>urn:**:**</SAP:P2>
      <SAP:P3>450326d0-1559-11dd-99a1-d89c0a0a380b</SAP:P3>
      <SAP:P4>-1</SAP:P4>
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error when loading XSLT mapping of the application</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Yes, I have activated it
    Regards,
    Anirudh.

    hi
    please assure that if you save your xslt stylesheet locally, that it is saved in UTF-8 format, before you import it.
    Pls do export the imported archive as a zip file to your local disk and try opening the same. If its not then the zip file which you have uploaded might have got corrupted/is not fully uploaded.
    Try activating the imported archive and do a check before you do that. This you can do with a minor change in the description or so.
    reward points if found helpfull
    regards
    chandra.k

  • Error when loading lower case

    Hi Friends,
               I getting an error when loading the Infopackage ,
    "Value 'sss ' (hex. '737373 ') of characteristic Zapple contains invalid characters"
    I used the formula "To upper" in my T/R  still I was getting the same error" and also I edited the value in PSA to "SSS" and loaded and still pointing to the same error. when I do a find for "sss" I dont see any value in PSA.
    Please advice, it will be really appreciated,
    thanks alot in advance

    Hi,
    U cont see the special characters in display mode in PSA...
    for that First the check the reason for error,
    it is from PSA, and the status in the monitor turned to red with errors or collection eneded with source system.. then go to manage of data target delete the red request... now go to PSA in modelling then select ur infosource right click select the option edit PSA data..
    Now u can see the some special characteristics in the record that error occured... once it is complete then save come back to PSA screen then once again right click on the Infosource select immeadiate update.. it will work fine..
    Siddhu

  • Error -5000 and: Error when loading the transcode setting

    For a couple of days I've been trying to export my project on a DVD, but on the half way of the transcoding it comes the Error -5000, and then there is such a message, something about the navigation, can't be found etc... I work on a mac OS X, using Encore CS3, all my data I've got on my external harddisk, with space of 80 GB.
    Besides, when I'm trying to export my project on a blu-ray disc, there comes a message: Error when loading the transcode setting! I know that there are only two codecs there - H.264 and MPEG-2, and there are only MPEG-2 movie files there, so I set the MPEG-2 codec. And there comes such a thing! Having set the H.264, there comes the same. What can it be?
    And the last one is the copy protection. I know that it can be activated, with CGMS and Macrovision, only if the CSS option is set on "permit no copies". So I do, and then there comes a message - "for these settings there is no copy protection provided". So what now to do?

    My flash drive PNY comes up with error -5000 and i do not know what to do can you help me with this problems

  • Report Designer - Error when Loading Report

    Hi,
    We have created a report in Report Designer (7.0) and saved it. When we execute it runs fine. After closing the report and trying to reopen it, the report does not open. It gives an error "Error when Loading Report". Our BI frontend patch is 14.
    Did anyone encounter this issue and is there a solution to this.
    Thanks
    Hemant

    Hello,
    Please go to SE38 -> RS_REPORT_MAINTAIN,
    Type your report name, and DT als "Report Type".
    Goto edit mode, copy&paste this XML into txt file and send it to me ([email protected]). I will check whats going on with this report. Loading should be always possible.
    Regards, Karol Kalisz, BI Development

  • Error when loading the callback component

    Hi friends
      Am getting this error.  Error when loading the callback component. Am working in Travel expense workflow which is 2 level based on condition. If its EG > 8 its one level and EG < 8 its 2 level. When the approver does the approval am changing the status from 3 to 4 at that time the pernr is getting locked. Next step itself mail step. But the workflow is throwing the error and mail its hanging in the mail step. I have try to restart the workflow but its not restarting.  Error when loading the callback component this error is showing in the lock pernr. Am not locking the pernr system locks the pernr by itslef and not unlocking the pernr. How to solve this issue.
    Regards
    vijay

    Hello,
    Check if OSS Note 854495 is applicable.
    regards
    Rick Bakker
    Hanabi Technology

  • Caller 09 is missing error when loading

    Hi,
    I'm getting the above error when loading transaction data from source system. (connected to Oracle system with DBLink so the source system is Myself). This system has just been upgraded to 3.5 but I had similar issue in Dev prior to the upgrade so I don't think its upgrade related.
    Full error message is that the datasource must be replicated. Timestamp in source system and timestamp in BW are different.
    I've tried the following (several times).
    1. Replicated datasource (by right clicking on source system underneath infosource), then used program RS_TRANSTRU_ACTIVATE_ALL to activate the transfer structures.
    2. Replicated datasource then manually activated transfer structure, communication structure, regenerated underlying programs of transfer structure and PSA program.
    3. I've already logged off and back on
    4. I've gone into RSA5, and reactivated the extract structure.
    In the infosource, if I display its status, its has last changed timestamp of today. But in the error message I'm getting a timestamp of 25.05.06 for source system and 25.1.2003 for BW (bearing in mind they are both in fact BW).
    Any ideas? Please help !!
    Thanks
    Sue

    Hi,
    Re: Errors when uploading ODS to infocube
    1. Activate transfer rules that belongs to the data source
    2. Activate the ODS
    3. Activate the update rules (infosource to ODS)
    4. Activate the update rules (ODS to infocube)
    5. Right-click at the ODS, choose 'Generate Export Data Source'
    6. Replicate the data source
    Shreya

  • Errors when loading data to ODS

    Hi,
    I am getting the following dump when loading data to ODS
    whta might be the problem
    Runtime Error          MESSAGE_TYPE_X
    Date and Time          29.09.2006 14:26:52
    ShrtText
    The current application triggered a termination with a short dump.
    What happened?
    The current application program detected a situation which really
    should not occur. Therefore, a termination with a short dump was
    triggered on purpose by the key word MESSAGE (type X).
    What can you do?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    is especially useful if you want to keep a particular message.
    Error analysis
    Short text of error message:
    Test message: SDOK_GET_PHIO_ACCESS 001
    Technical information about the message:
    Message classe...... "1R"
    Number.............. 000
    Variable 1.......... "SDOK_GET_PHIO_ACCESS"
    Variable 2.......... 001
    Variable 3.......... " "
    Variable 4.......... " "
    Variable 3.......... " "
    Variable 4.......... " "
    How to correct the error
    Probably the only way to eliminate the error is to correct the program.
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "MESSAGE_TYPE_X" C
    "SAPLSDCL" or "LSDCLF00"
    "INTERNAL_ERROR"
    If you cannot solve the problem yourself and you wish to send
    an error message to SAP, include the following documents:
    1. A printout of the problem description (short dump)
    To obtain this, select in the current display "System->List->
    Save->Local File (unconverted)".
    2. A suitable printout of the system log
    To obtain this, call the system log through transaction SM21.
    Limit the time interval to 10 minutes before and 5 minutes
    after the short dump. In the display, then select the function
    "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
    supply the source code.
    To do this, select the Editor function "Further Utilities->
    Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
    or which actions and input led to the error.
    System environment
    SAP Release.............. "640"
    Application server....... "bomw093a"
    Network address.......... "132.186.125.66"
    Operating system......... "Windows NT"
    Release.................. "5.2"
    Hardware type............ "4x Intel 801586"
    Character length......... 8 Bits
    Pointer length........... 32 Bits
    Work process number...... 16
    Short dump setting....... "full"
    Database server.......... "BOMW093A"
    Database type............ "ORACLE"
    Database name............ "BIW"
    Database owner........... "SAPDAT"
    Character set............ "English_United State"
    SAP kernel............... "640"
    Created on............... "Nov 4 2004 23:26:03"
    Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
    Database version......... "OCI_920_SHARE "
    Patch level.............. "43"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 8.1.7.., ORACLE 9.2.0.."
    SAP database version..... "640"
    Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
    Memory usage.............
    Roll..................... 8112
    EM....................... 6271776
    Heap..................... 0
    Page..................... 24576
    MM Used.................. 3921120
    MM Free.................. 258392
    SAP Release.............. "640"
    User and Transaction
    Client.............. 800
    User................ "IC881147"
    Language key........ "E"
    Transaction......... " "
    Program............. "SAPLSDCL"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Information on where terminated
    The termination occurred in the ABAP program "SAPLSDCL" in "INTERNAL_ERROR".
    The main program was "RSRD_BROADCAST_PROCESSOR ".
    The termination occurred in line 25 of the source code of the (Include)
    program "LSDCLF00"
    of the source code of program "LSDCLF00" (when calling the editor 250).
    The program "SAPLSDCL" was started as a background job.
    Job name........ "SECOQUERY"
    Job initiator... "IC881147"
    Job number...... 14265102
    Source Code Extract
    Line
    SourceCde
    1
    2
      INCLUDE LSDCLF00                                                   *
    3
    4
    5
    6
          FORM INTERNAL_ERROR                                           *
    7
    8
          Handles unexpected error conditions (internal errors)
    9
    10
    -->  VALUE(U_ROUTINE)    Routine/function module where error occured
    11
    -->  VALUE(U_ERROR_CODE) Identifier in routine (e.g. number)
    12
    -->  VALUE(U_VAR1)       Variable containing further information
    13
    -->  VALUE(U_VAR2)       Variable containing further information
    14
    -->  VALUE(U_VAR3)       Variable containing further information
    15
    -->  VALUE(U_VAR4)       Variable containing further information
    16
    17
    form internal_error
    18
    using value(u_routine)
    19
    value(u_error_code)
    20
    value(u_var1)
    21
    value(u_var2)
    22
    value(u_var3)
    23
    value(u_var4).
    24
    >>>>>
    message x000 with u_routine u_error_code u_var1 u_var2.
    26
    27
    endform.
    28
    29
    30
    *&      Form  BAD_OBJECT_TO_SYMSG
    31
    32
          maps error information in u_bad_object into system message
    33
          variables
    34
    35
    -->  VALUE(U_BAD_OBJECT)  structure containing error information
    36
    37
    form bad_object_to_symsg
    38
    using value(u_bad_object) type sdokerrmsg.
    39
    40
    sy-msgid = u_bad_object-id.
    41
    sy-msgty = u_bad_object-type.
    42
    sy-msgno = u_bad_object-no.
    43
    sy-msgv1 = u_bad_object-v1.
    44
    sy-msgv2 = u_bad_object-v2.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    0
    SY-TABIX
    1
    SY-DBCNT
    4
    SY-FDPOS
    0
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE
    Report Dissemaintion Framework: Executing the Transferred Settings
    SY-MSGTY
    X
    SY-MSGID
    1R
    SY-MSGNO
    000
    SY-MSGV1
    SDOK_GET_PHIO_ACCESS
    SY-MSGV2
    001
    SY-MSGV3
    SY-MSGV4
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    15 FORM         SAPLSDCL                            LSDCLF00                               25
    INTERNAL_ERROR
    14 FORM         SAPLSDCI                            LSDCIU13                              303
    PHIO_GET_CONTENT_ACCESS
    13 FUNCTION     SAPLSDCI                            LSDCIU13                              113
    SDOK_PHIO_GET_CONTENT_ACCESS
    12 FUNCTION     SAPLSKWF_CONTENT                    LSKWF_CONTENTU02                       63
    SKWF_PHIO_CONTENT_ACCESS_GET
    11 METHOD       CL_RSRA_KWF_UTILITIES=========CP    CL_RSRA_KWF_UTILITIES=========CM00B    50
    CL_RSRA_KWF_UTILITIES=>COPY_MIME_TO_FOLDER
    10 METHOD       CL_RSRA_KWF_TMPL==============CP    CL_RSRA_KWF_TMPL==============CM002    28
    CL_RSRA_KWF_TMPL=>GET_STYLESHEET
    9 METHOD       CL_RSRA_KWF_TMPL==============CP    CL_RSRA_KWF_TMPL==============CM001   227
    CL_RSRA_KWF_TMPL=>CONSTRUCTOR
    8 METHOD       CL_RSRA_ENGINE_BC=============CP    CL_RSRA_ENGINE_BC=============CM010     9
    CL_RSRA_ENGINE_BC=>SET_TEMPLATE_FOLDER
    7 METHOD       CL_RSRA_ENGINE_BC=============CP    CL_RSRA_ENGINE_BC=============CM001    75
    CL_RSRA_ENGINE_BC=>CONSTRUCTOR
    6 METHOD       CL_RSRA_JOB===================CP    CL_RSRA_JOB===================CM003    47
    CL_RSRA_JOB=>EXECUTE_SINGLE
    5 METHOD       CL_RSRA_JOB===================CP    CL_RSRA_JOB===================CM00E    14
    CL_RSRA_JOB=>EXECUTE_SINGLE_RC
    4 METHOD       CL_RSRD_PRODUCER_RA===========CP    CL_RSRD_PRODUCER_RA===========CM001   147
    CL_RSRD_PRODUCER_RA=>IF_RSRD_F_PRODUCER_RT~PRODUCE
    3 METHOD       CL_RSRD_SETTING===============CP    CL_RSRD_SETTING===============CM005    28
    CL_RSRD_SETTING=>EXECUTE_NODES
    2 METHOD       CL_RSRD_SETTING===============CP    CL_RSRD_SETTING===============CM002    73
    CL_RSRD_SETTING=>EXECUTE
    1 EVENT        RSRD_BROADCAST_PROCESSOR            RSRD_BROADCAST_PROCESSOR              197
    START-OF-SELECTION
    Chosen variables
    Name
    Val.
    No.      15 Ty.          FORM
    Name  INTERNAL_ERROR
    U_ROUTINE
    SDOK_GET_PHIO_ACCESS
    54445445554445444455
    34FBF754F089FF133533
    SY-MSGV1
    SDOK_GET_PHIO_ACCESS
    54445445554445444455222222222222222222222222222222
    34FBF754F089FF133533000000000000000000000000000000
    U_ERROR_CODE
    001
    333
    001
    SY-MSGV2
    001
    33322222222222222222222222222222222222222222222222
    00100000000000000000000000000000000000000000000000
    U_VAR1
    2
    0
    SY-MSGV3
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    SDOKI_MODE_DELETE
    5
    0000
    5000
    U_VAR2
    2
    0
    SY-MSGV4
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    No.      14 Ty.          FORM
    Name  PHIO_GET_CONTENT_ACCESS
    SYST
    ####################################################A#######P###############è#################
    0000000000000000000000000000000000000000000000000000400000005000000000000000E00000000000000000
    0000000010002000000000000000000000000000400000001000100010000000000000000000840000000000000000
    PHIO_OBJECT_ID-CLASS
    2222222222
    0000000000
    DUMMY_VERSTYPE
    0
    3
    0
    DUMMY_FCT_EXPORT
    222222222222222222222222222222
    000000000000000000000000000000
    DUMMY_FCT_IMPORT
    222222222222222222222222222222
    000000000000000000000000000000
    DUMMY_FCT_DELETE
    222222222222222222222222222222
    000000000000000000000000000000
    FCT_VIEW
    222222222222222222222222222222
    000000000000000000000000000000
    BUFF_XPIRE
    000000000000
    333333333333
    000000000000
    NO_BUFFER
    2
    0
    SUBRC_AUX
    3
    0000
    3000
    SDOKA_EVENT_PH_FROM_REL_PRE
    0022
    3333
    0022
    SCREEN
    %_17SNS0001592815_%_%_%_%_%_%_
    2533545333333333352525252525252222222222222222222222222222222222222222222222222222222222222222
    5F173E30001592815F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000
    <%_TABLE_SDOKSTRE>
    SY-XFORM
    CONVERSION_EXIT
    444545544454545222222222222222
    3FE65239FEF5894000000000000000
    CONTEXT[]
    Table IT_5544[0x89]
    FUNCTION=SKWF_PHIO_CONTENT_ACCESS_GETDATA=CONTEXT[]
    Table reference: 324
    TABH+  0(20) = 00000000801CE03C0000000044010000A8150000
    TABH+ 20(20) = 0000000059000000FFFFFFFF047B0200D00E0000
    TABH+ 40( 8) = 10000000C1248000
    store        = 0x00000000
    ext1         = 0x801CE03C
    shmId        = 0     (0x00000000)
    id           = 324   (0x44010000)
    label        = 5544  (0xA8150000)
    fill         = 0     (0x00000000)
    leng         = 89    (0x59000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000058
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    store_id     = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = 0x00000000
    hsdir        = 0x00000000
    ext2         = 0x381CE03C
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0x98DC033D
    delta_head   = 000000000000000000000000000000000000000000000000000000000000000000000000
    pb_func      = 0x00000000
    pb_handle    = 0x00000000
    CONTEXT
    22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    PROPERTIES[]
    Table[initial]
    PROPERTIES
    22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    No.      13 Ty.          FUNCTION
    Name  SDOK_PHIO_GET_CONTENT_ACCESS
    ALLOW_MODEL
    2
    0
    CACHE_SERVER
    0000000000
    2222222222222222222222222222222222222222222222222222222222222222333333333322222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    CLIENT
    800
    333
    800
    CONTENT_ONLY
    X
    5
    8
    CONTENT_OR_URL_ONLY
    2
    0
    OBJECT_ID
    222222222222222222222222222222222222222222
    000000000000000000000000000000000000000000
    RAW_MODE
    2
    0
    TEXT_AS_STREAM
    X
    5
    8
    USE_URL_AT
    2
    0
    ACCESS_MODE
    00
    33
    00
    DOCUMENT_HTTPS_URL
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    DOCUMENT_URL
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    MODEL_RETURNED
    2
    0
    COMPONENTS[]
    Table[initial]
    COMPONENT_ACCESS[]
    Table IT_5533[0x8616]
    CLASS=CL_RSRA_KWF_UTILITIESMETHOD=COPY_MIME_TO_FOLDERDATA=L_T_COMPONENT_ACCESS
    Table reference: 337
    TABH+  0(20) = 00000000481BE03C00000000510100009D150000
    TABH+ 20(20) = 00000000A8210000FFFFFFFF04C5010088190000
    TABH+ 40( 8) = 01000000C1248000
    store        = 0x00000000
    ext1         = 0x481BE03C
    shmId        = 0     (0x00000000)
    id           = 337   (0x51010000)
    label        = 5533  (0x9D150000)
    fill         = 0     (0x00000000)
    leng         = 8616  (0xA8210000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000107
    occu         = 1     (0x01000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    store_id     = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = 0x00000000
    hsdir        = 0x00000000
    ext2         = 0x001BE03C
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0x985D043D
    delta_head   = 000000000000000000000000000000000000000000000000000000000000000000000000
    pb_func      = 0x00000000
    pb_handle    = 0x00000000
    CONTEXT[]
    Table IT_5544[0x89]
    FILE_CONTENT_ASCII[]
    Table IT_5534[0x1022]
    CLASS=CL_RSRA_KWF_UTILITIESMETHOD=COPY_MIME_TO_FOLDERDATA=L_T_FILE_CONTENT_ASCII
    Table reference: 312
    TABH+  0(20) = 00000000B01BE03C00000000380100009E150000
    TABH+ 20(20) = 00000000FE030000FFFFFFFF04C50100D81A0000
    TABH+ 40( 8) = 10000000C1248000
    store        = 0x00000000
    ext1         = 0xB01BE03C
    shmId        = 0     (0x00000000)
    id           = 312   (0x38010000)
    label        = 5534  (0x9E150000)
    fill         = 0     (0x00000000)
    leng         = 1022  (0xFE030000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000113
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    store_id     = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = 0x00000000
    hsdir        = 0x00000000
    ext2         = 0x681BE03C
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0xB813043D
    delta_head   = 000000000000000000000000000000000000000000000000000000000000000000000000
    pb_func      = 0x00000000
    pb_handle    = 0x00000000
    FILE_CONTENT_BINARY[]
    Table IT_5535[0x1022]
    CLASS=CL_RSRA_KWF_UTILITIESMETHOD=COPY_MIME_TO_FOLDERDATA=L_T_FILE_CONTENT_BINARY
    Table reference: 325
    TABH+  0(20) = 00000000181CE03C00000000450100009F150000
    TABH+ 20(20) = 00000000FE030000FFFFFFFF04C50100101B0000
    TABH+ 40( 8) = 10000000C1248000
    store        = 0x00000000
    ext1         = 0x181CE03C
    shmId        = 0     (0x00000000)
    id           = 325   (0x45010000)
    label        = 5535  (0x9F150000)
    fill         = 0     (0x00000000)
    leng         = 1022  (0xFE030000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000114
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    store_id     = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = 0x00000000
    hsdir        = 0x00000000
    ext2         = 0xD01BE03C
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0xC08FD33C
    delta_head   = 000000000000000000000000000000000000000000000000000000000000000000000000
    pb_func      = 0x00000000
    pb_handle    = 0x00000000
    PROPERTIES[]
    Table[initial]
    COMPONENT_ACCESS
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    FILE_CONTENT_ASCII
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    FILE_CONTENT_BINARY
    0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    OBJECT_ID_AUX
    222222222222222222222222222222222222222222
    000000000000000000000000000000000000000000
    X_DOCUMENT_URL
    X
    5
    8
    X_DOCUMENT_HTTPS_URL
    X
    5
    8
    X_COMPONENT_ACCESS
    X
    5
    8
    SUBRC_AUX
    0
    0000
    0000
    %_DUMMY$$
    2222
    0000
    %_SPACE
    2
    0
    SY-REPID
    SAPLSDCI
    5454544422222222222222222222222222222222
    310C343900000000000000000000000000000000
    No.      12 Ty.          FUNCTION
    Name  SKWF_PHIO_CONTENT_ACCESS_GET
    CACHE_SERVER
    0000000000
    2222222222222222222222222222222222222222222222222222222222222222333333333322222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    PHIO
    2222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000
    USE_URL_AT
    2
    0
    X_ALLOW_MODEL
    2
    0
    X_CONTENT_ONLY
    X
    5
    8
    X_CONTENT_OR_URL_ONLY
    2
    0
    X_RAW_MODE
    2
    0
    X_TEXT_AS_STREAM
    X
    5
    8
    ACCESS_MODE
    00
    33
    00
    DOCUMENT_HTTPS_URL
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    DOCUMENT_URL
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    ERROR
    000
    2222222222222222222223332222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    X_MODEL_RETURNED
    2
    0
    COMPONENT_ACCESS[]
    Table IT_5533[0x8616]
    CONTEXT[]
    Table IT_5544[0x89]
    FILE_CONTENT_ASCII[]
    Table IT_5534[0x1022]
    FILE_CONTENT_BINARY[]
    Table IT_5535[0x1022]
    PROPERTIES[]
    Table[initial]
    SKWFA_C_ACT_READ
    03
    33
    03
    SYST-REPID
    SAPLSKWF_CONTENT
    5454545454445445222222222222222222222222
    310C3B76F3FE45E4000000000000000000000000
    %_ARCHIVE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    PHIO+1(42)
    222222222222222222222222222222222222222222
    000000000000000000000000000000000000000000
    CL_ABAP_TABLEDESCR=>TABLEKIND_STD
    S
    5
    3
    SKWFC_YES
    X
    5
    8
    No.      11 Ty.          METHOD
    Name  CL_RSRA_KWF_UTILITIES=>COPY_MIME_TO_FOLDER
    I_S_MIME_IO
    FM_FOLDER  3AA00E1E0D0E3DCBE10000000A1144B5
    4454444452234433434343434444333333334333343
    6DF6FC4520031100515040534325100000001114425
    I_S_FOLDER_IO
    FBW_FLD    08BSWBLVV6N1IJCIG3VHEX2H8
    4455444222233455445534344444354453432222222
    627F6C40000082372C666E19A397368582880000000
    L_T_PROPERTY_REQUEST
    Table IT_5512[1x25]
    CLASS=CL_RSRA_KWF_UTILITIESMETHOD=COPY_MIME_TO_FOLDERDATA=L_T_PROPERTY_REQUEST
    Table reference: 316
    TABH+  0(20) = 28D5D23C68D5D23C000000003C01000088150000
    TABH+ 20(20) = 0100000019000000FFFFFFFF04C5010038110000
    TABH+ 40( 8) = 10000000C1248400
    store        = 0x28D5D23C
    ext1         = 0x68D5D23C
    shmId        = 0     (0x00000000)
    id           = 316   (0x3C010000)
    label        = 5512  (0x88150000)
    fill         = 1     (0x01000000)
    leng         = 25    (0x19000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000069
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xC00BE03C
    pghook       = 0x00000000
    idxPtr       = 0x00000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    store_id     = 3644  (0x3C0E0000)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x00000000
    hsdir        = 0x00000000
    ext2         = 0x600DE03C
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0x98D5033D
    delta_head   = 000000000000000000000000000000000000000000000000000000000000000000000000
    pb_func      = 0x00000000
    pb_handle    = 0x00000000
    L_S_PROPERTY_REQUEST
    KW_RELATIVE_URL
    4555444545455542222222222
    B7F25C14965F52C0000000000
    L_T_PHIO
    Table IT_5494[1x43]
    CLASS=CL_RSRA_KWF_UTILITIESMETHOD=COPY_MIME_TO_FOLDERDATA=L_T_PHIO
    Table reference: 309
    TABH+  0(20) = E8D4D23CE0D3D23C000000003501000076150000
    TABH+ 20(20) = 010000002B000000FFFFFFFF04C5010018120000
    TABH+ 40( 8) = 10000000C1248000
    store        = 0xE8D4D23C
    ext1         = 0xE0D3D23C
    shmId        = 0     (0x00000000)
    id           = 309   (0x35010000)
    label        = 5494  (0x76150000)
    fill         = 1     (0x01000000)
    leng         = 43    (0x2B000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000073
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x2010E03C
    pghook       = 0x00000000
    idxPtr       = 0x00000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    store_id     = 3643  (0x3B0E0000)
    shmIsReadOnly = 0     (0x00000000)

    Hi priya,
    Not sure: check syntax in your Update Roules, also at level of start routine.
    Ciao.
    Riccardo.

  • JSP on BEA  Weblogic: random error when loading a jsp page that uses a Bean

    Hi!
    I wrote a simple jsp page that stores a String in a JavaBean, and then forwards to another jsp page to display that String. The jsp pages are deployed on a BEA Weblogic 6 Server, but I get a weird behaviour when loading the page into my browser. Usually I get an error message:
    /Response.jsp(9): class 'query.jsp.QueryBean' could not be loaded
    probably occurred due to an error in /Query.jsp line 9:
    <jsp:useBean id = "queryBean" scope = "request" class = "query.jsp.QueryBean" />
    But the funny thing is that after reloading the page a few times it eventually works. The bahaviour seems to be totally random - sometimes it works, sometimes it claims not finding the JavaBean class.
    Anyone experienced something similar?
    Thank you very much,
    Charlie

    Is QueryBean.class located under '<appname>/Web_inf/query/jsp/'?
    If it is please try changing the package name to something else like com.myclass or something like that.

  • Error when loading the data from PSA to ODS......

    Hi BW guru's,
    i am facing one problem while loading the data from PSA to ODS.so please help me in this regard.
    Please give a step by step guidelines for me...
    the error while loading the data from PSA to ODS is "There are no PSA tables for these selection criteria","An error occurred when reading PSA data".
    thanks in advance,
    ashok.

    hi ashok,
    u can push data from  psa to ods, for this goto the psa in rsa1>psa>goto that request>rightclick>select " schedule update Immediately ", then data will moved from psa to ods.
                                                 or
    In ods > delete the failed request>goto the processing tab-->select 3rd option   " psa and then subsequentially to data targets ", --> schedule the infopackage.
    bye
    sunil

Maybe you are looking for