Presentation Server Issue

Hi All
The BI server logs me out when I try to modify existing report without throwing an error.
--> Steps
I tried re naming a report using catalog manager i.e
here i didn't check this option for reference.
-->Preserve references to old name of this item.
Now once this is renamed now try to modify the report(renamed one) and then try to save it.
The presentation server logs me out of the server.
'Not Logged In
You are not currently logged in to the Oracle BI Server.
I have checked the nqserver.log and saw.log files for errors, but no luck
Can some body help me out with this ?

Have tried the renaming operations in the Presentation Services Admin Panel.
Under "Settings" - "Administration"

Similar Messages

  • Presentation Server 4.5 - Warning Balloon Display Issue

    Hi all,
    We're experiencing an issue within one of our apps being hosted via Presentation Server/XenApp 4.5. This issue is only happening to a select users, regardless of which server the app is hosted on. For this app, it's being hosted on 2 servers. Other users using this app on either server are being displayed properly.
    Has anyone seen this issue before?
    This topic first appeared in the Spiceworks Community

    Good evening to every one, I have the next question,I gota DellPower EdgeT710 Server, in this server I have 2 HDwithRaid Level1(00:00 and 00:01) but one of those (00:01) is damage, my concern is about a failure in the main one (Main 00:00-HD 2TB Dell Win ad sv2012R2 and it hassome programs anddatabases).So the question is if I buy a new hard drive with the same specs for replace my damage HD:- Can I Install it to initialize and virtualize for the Raid Level 1 ? is this possible ?-If the above question is possible after this what I have to do for synchronize or obtain an exact copy of my OS andall the information of the main drive to the new one? I have to clone it?OrThis is not possible and I have to replace the hard drive, format, initialize, virtualize, Fix RIAD1,install my OS, programs and restore mydatabases fromback up, copyfiles...

  • Issue in material master update from presentation server  using BAPI....

    Hi Guru's...
    i am trying to change the material master from presentation server (desktop flat file)
    using BAPI(BAPI_MATERIAL_SAVEDATA) ....
    while executing my program i am getting the message like material had changed...
    but while in mm02 i am un able to fine the updates...
    please find below program logic and correct me if any mistakes....
    thanks in advance...
    *& Report  ZAREPAS36
    REPORT  zarepas36.
    DATA : gs_bapimathead             TYPE  bapimathead,
           gs_clientdata              TYPE  bapi_mara,
           gs_clientdatax             TYPE  bapi_marax.
    TYPES : BEGIN OF gty_itab1,
            matnr(18),
            matkl(9),
            spart(2),
            ntgew(13),
            gewei(3),
            meins(3),
            END OF gty_itab1.
    DATA : gt_itab1 TYPE STANDARD TABLE OF gty_itab1,
           gwa_itab1 TYPE gty_itab1.
    TYPES: BEGIN OF gty_itab2,
           abc(132),
           END OF gty_itab2.
    DATA: gt_itab2 TYPE STANDARD TABLE OF gty_itab2,
          gwa_itab2 TYPE gty_itab2.
    flat file at selection screen
    PARAMETERS: p_files TYPE string.
    CALL METHOD cl_gui_frontend_services=>gui_upload
      EXPORTING
        filename = p_files
        filetype = 'ASC'
      CHANGING
        data_tab = gt_itab2
      EXCEPTIONS
        OTHERS   = 8.
    LOOP AT gt_itab2 INTO gwa_itab2.
      IF gwa_itab2-abc(1) = 'S'.
        gwa_itab1 = gwa_itab2-abc(132).
        APPEND gwa_itab1 TO gt_itab1.
      ENDIF.
    ENDLOOP.
    loop at gt_itab1 into gwa_itab1.
    *Material
    gs_bapimathead-material    = gwa_itab1-matnr.
    *Material details at client data
    *material group.
    gs_clientdata-matl_group = gwa_itab1-matkl.
    gs_clientdatax-matl_group = 'X'.
    *Division
    gs_clientdata-division = gwa_itab1-spart.
    gs_clientdatax-division = 'X'.
    *Net Weight
    gs_clientdata-net_weight = gwa_itab1-ntgew.
    gs_clientdatax-net_weight = 'X'.
    *Unit of Weight
    gs_clientdata-unit_of_wt = gwa_itab1-gewei.
    gs_clientdatax-unit_of_wt = 'X'.
    *Base Unit of Measure
    gs_clientdata-base_uom = gwa_itab1-meins.
    gs_clientdatax-base_uom = 'X'.
    endloop.
    *calling BAPI for making changes in material and saving thru BAPI.
    CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
      EXPORTING
        headdata    = gs_bapimathead
        clientdata  = gs_clientdata
        clientdatax = gs_clientdatax.
    IF sy-subrc NE 0.
      CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
      WRITE: / 'Error occured while changing material'.
    ELSE.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      WRITE: / 'material',gs_bapimathead-material,'changed'.
    ENDIF.

    hi hello Guru's
    i resolved the issuee..
    pleaso go thru the below proram logic for your reference..........
    *& Report  ZAREPAS36
    REPORT  zarepas36.
    DATA : gs_bapimathead             TYPE  bapimathead,
           gs_clientdata              TYPE  bapi_mara,
           gs_clientdatax             TYPE  bapi_marax.
    TYPES : BEGIN OF gty_itab1,
            matnr(18),
            matkl(9),
            spart(2),
            ntgew(13),
            gewei(3),
            meins(3),
            END OF gty_itab1.
    DATA : gt_itab1 TYPE STANDARD TABLE OF gty_itab1,
           gwa_itab1 TYPE gty_itab1.
    TYPES: BEGIN OF gty_itab2,
           abc(132),
           END OF gty_itab2.
    DATA: gt_itab2 TYPE STANDARD TABLE OF gty_itab2,
          gwa_itab2 TYPE gty_itab2.
    DATA:ls_return         TYPE bapiret2,
         lt_bapiret2       TYPE standard table of bapiret2.
    flat file at selection screen
    PARAMETERS: p_files TYPE string.
    CALL METHOD cl_gui_frontend_services=>gui_upload
      EXPORTING
        filename = p_files
        filetype = 'ASC'
      CHANGING
        data_tab = gt_itab2
      EXCEPTIONS
        OTHERS   = 8.
    LOOP AT gt_itab2 INTO gwa_itab2.
      IF gwa_itab2-abc(1) = 'S'.
        gwa_itab1 = gwa_itab2-abc(132).
        APPEND gwa_itab1 TO gt_itab1.
      ENDIF.
    ENDLOOP.
    LOOP AT gt_itab1 INTO gwa_itab1.
    *Material
      gs_bapimathead-material    = gwa_itab1-matnr.
    *Material details at client data
    *material group.
      gs_clientdata-matl_group = gwa_itab1-matkl.
      gs_clientdatax-matl_group = 'X'.
    *Division
      gs_clientdata-division = gwa_itab1-spart.
      gs_clientdatax-division = 'X'.
    *Net Weight
      gs_clientdata-net_weight = gwa_itab1-ntgew.
      gs_clientdatax-net_weight = 'X'.
    *Unit of Weight
      gs_clientdata-unit_of_wt = gwa_itab1-gewei.
      gs_clientdatax-unit_of_wt = 'X'.
    *Base Unit of Measure
      gs_clientdata-base_uom = gwa_itab1-meins.
      gs_clientdatax-base_uom = 'X'.
    ENDLOOP.
    *calling BAPI for making changes in material and saving thru BAPI.
    CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
      EXPORTING
        headdata    = gs_bapimathead
        clientdata  = gs_clientdata
        clientdatax = gs_clientdatax
      IMPORTING
        return      = ls_return.
    LOOP AT lt_bapiret2 INTO ls_return.
      EXIT.
    ENDLOOP.
    IF sy-subrc = 0.
      CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
      WRITE: / 'Error occured while changing material'.
    ELSE.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      WRITE: / 'material',gs_bapimathead-material,'changed'.
    ENDIF.

  • How to exreact multiple pdf files from a zip files from application server to presentation server

    Hello exprts,
    I am passing one pdf file and one text file to zip file in apllication server through my custom program and then downloading it using standard function module to my desktop. its working fine. Then I added  another pdf file to my zip file. But only single pdf file is getting download . So can you please help me regardiong this issue? 

    Dear Experts ,
    I finded out the way to extrcat pdf files in presentation server. But now my problem is that I am not able to add multiple pdf files in a zip file. When I am adding new pdf file then older one is not coming in read data set. So please kindly tell me how can I add multiple pdf file in my zip file and again I can get all the pdf files from here.

  • Urgent: loading a pdf file  to presentation server at the end of the day

    hi
    I got a requirement like smartform will be converted into pdf file and it will loaded into application server, at the End of the day all the pdf files which are generated on that day will be loaded to in file at presentation server ,
    so please help me out regarding
    Thanks in advance
    regards
    krishna

    Hi Chris,
    this problems are in fact new to me, but I'm just starting on a new workplace where they have these issues since forever.
    I'm hoping that new point of view may find a solution to it ;-)
    I'll try to watch the traffic - it could be related to the particular network we have. Will ask and post some more info tomorrow.
    Thank you!
    /best
    /j

  • XML file download to presentation server.

    Hi Experts,
    Here I have a question regarding file download to desktop.
    I have a report which will generate xml file. Once it is generated i would like to download to desktop.
    I tried with 'GUI_DOWNLOAD', but it is not working. It means the file is downlaoded to presentation server but when i opened it 'Page can't be displayed' message is comming.
    Could you pleas help me to solve this issue.
    Thanks in advance.
    Regards,
    Anil.G

    Hello,
    For processing XMLs always try to make use of the class CL_XML_DOCUMENT.
    You can download the XML stream to a local file using the method of EXPORT_TO_FILE class CL_XML_DOCUMENT.
    Further reading: [/people/uwe.schieferstein/blog/2010/10/17/visualizing-any-kind-of-xml-data-using-class-clxmldocument]
    BR,
    Suhas

  • Error while downloading the PDF file on presentation server

    Hi all,
    i have converted OTF file into PDF one and then downloading it to the presentation server . But it gives the error as follows
    'Access to file denied'    . Can anyone tell me what may be the issue ? Below is my code
    DATA: i_lines TYPE tline OCCURS 0 WITH HEADER LINE.
    DATA: ws_bin_size TYPE i.
    DATA: t_otf  TYPE TABLE OF itcoo,
                ws_filename TYPE string.
      t_otf[] = wa_job_info-otfdata[].
    CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format        = 'PDF'
          max_linewidth = 132
        IMPORTING
          bin_filesize  = ws_bin_size
        TABLES
          otf           = t_otf
          lines         = i_lines.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          bin_filesize = ws_bin_size
          filename     = 'C:\ABC.PDF'
          filetype     = 'BIN'
        TABLES
          data_tab     = i_lines.

    Hi Sayeed,
          You may not having the permissions to create files in 'C' folder. Change the path and try again.

  • Dowloading data to presentation server

    Hi,
    My requirement is to download large amount of data on to the presentation server. Space on presentation server is not an issue.
    If I use GUI_DOWNLOAD, I need to know what type of file I need to create and whether there is any limit on the file size that is going to be created (since large amout of data needs to be downloaded). If not, is there any other way?
    Also, since GUI_DOWNLOAD cannot be used in background processing (since large amout of data is being downloaded) will usage of SAP_GUI_PROCESSOR help in averting the time out while execution.
    Advance Thanks...

    Hi,
    If you are using background processing then you cannot use GUI_DOWNLOAD.
    so its better to download the file to application server using OPEN DATASET .
    Then you can use the Transaction CG3Y to download the file to presentation server.
    Hope this solves your problem.
    Reward points if helpful.
    Thanks and regards

  • "Bad data format" when reading txt file from the presentation server

    Hello,
    I have a piece of code which reads a txt file from the presentation server to an internal table like below:
    DATA : lv_filename type string.
    lv_filename = 'C:\abap\Test.txt'. "I created a folder called abap under C:\
    CALL method CL_GUI_FRONTEND_SERVICES=>GUI_UPLOAD
    EXPORTING
       FILENAME              = lv_filename
    CHANGING
       DATA_TAB            = lt_tsd. " lt_tab has the exact same fields as the Test.txt's. Test.txt has only one line, tab delimited.
    When running this code, exception BAD_DATA_FORMAT is issued.
    Is it because of the file encoding or delimiter or other reason?
    Thanks,
    Yang

    Hello,
    If its tab delimited then use the has_field_seperator parameter and check
    DATA : lv_filename type string.
    lv_filename = 'C:\abap\Test.txt'. "I created a folder called abap under C:\
    CALL method CL_GUI_FRONTEND_SERVICES=>GUI_UPLOAD
    EXPORTING
       FILENAME                = lv_filename
       FILETYPE                 = 'ASC'
       HAS_FIELD_SEPARATOR          = u2018Xu2019
    CHANGING
       DATA_TAB            = lt_tsd.
    Vikranth

  • Connection Error in Presentation Server log file - Socket:524

    Hi All,
    Earlier I had issues with starting presentation server , so i installed OBIEE again.
    I started all the services and Started oc4j.
    And i'm able to open the Administrator tool. But get error in IE while opening presentation server.
    When i opened the saw0log file from this location "C:\OracleBIData\web\log" ,this is the error i see
    Type: Error
    Severity: 42
    Time: Thu Apr 08 11:08:06 2010
    File: project/webcomm/socket.cpp Line: 892
    Properties: ThreadID-1736
    Location:
         saw.rpc.client.impl.verify
         saw.rpc.client.impl.initFixedRPC
         saw.rpc.client.endpoint.noncluster.initFixedLenRPC
         saw.rpc.ping.send
         saw.threads
    An error occurred during execution of "connect". No connection could be made because the target machine actively refused it.
    [Socket:524]
    Type: Error
    Severity: 42
    Time: Thu Apr 08 11:10:08 2010
    File: project/webcomm/socket.cpp Line: 892
    Properties: ThreadID-1736
    Location:
         saw.rpc.client.impl.verify
         saw.rpc.client.impl.initFixedRPC
         saw.rpc.client.endpoint.noncluster.initFixedLenRPC
         saw.rpc.ping.send
         saw.threads
    An error occurred during execution of "connect". No connection could be made because the target machine actively refused it.
    [Socket:524]
    Type: Error
    Severity: 42
    Time: Thu Apr 08 11:12:10 2010
    File: project/webcomm/socket.cpp Line: 892
    Properties: ThreadID-1736
    Location:
         saw.rpc.client.impl.verify
         saw.rpc.client.impl.initFixedRPC
         saw.rpc.client.endpoint.noncluster.initFixedLenRPC
         saw.rpc.ping.send
         saw.threads
    An error occurred during execution of "connect". No connection could be made because the target machine actively refused it.
    [Socket:524]
    Please help me where to change the connection details.
    Thanks
    Mehaboob

    Step : 1: Check your NQSCONFIG.ini file and in Repository section should be like
    [ REPOSITORY ]
    Star = bise1.rpd, DEFAULT;
    or
    [ REPOSITORY ]
    bise1 = bise1.rpd, DEFAULT;
    Step : 2 : Open ODBC Data source Administration ->System DSN and then Select AnalyticsWeb - Oracle BI Server
    In Oracle BI Server LoginId and Password window you should check and enable the Change the default repository to
    Here the name should be Star or bise1 ( Refer step:1:)
    Click next and enable Change the default catalog to and select the Database (highlighted gray to blue color)
    Leave others are default.
    Note : whatever repository will be put under change Default repository section will be override by the DEFAULT settings in NQSCONFIG.ini .You can tick “Connect to Oracle BI Server to obtain default settings for the additional configuring”, so that RPD connection will be established as per the definition in .ini file after BI server restart.
    Plz award points, if it helpful,
    Thanks,
    Balaa...

  • FM for presentation server

    Hi Experts,
    I need a FM which return all the file names in a specified directory of presentation server. I also need FM which will provide F4 help on presentation server to search  directories.
    Regards,
    Jeetu

    Function module name      Function module description
    DOWNLOAD      Store Internal Table with Dialog as File on the Presentation Server
    WS_DOWNLOAD      Save Internal Table as File on the Presentation Server
    UPLOAD      Load Data from the Presentation Server into an Internal Table / Dialog
    WS_UPLOAD      Load File from the Presentation Server into Internal Table
    WS_FILENAME_GET      Call file Selector
    WS_EXECUTE      Execute an External Program on the Presentation Server
    WS_MSG      Issue the Presentation Server style message
    WS_EXCEL      
    WS_QUERY      Execute query function on the Presentation Server
    Reward points if useful..............
    Regards
    Minal

  • OBIEE 10g: Presentation Cache in Second Instance of Presentation Server

    Hi everyone,
    I've been having an issue with my presentation cache disappearing every couple of minutes.
    I'm working with OBIEE 10.1.3.4, on Oracle Application Server on a Linux RHEL 5.4 32bit. I've spun up a second instance of the presentation service using the commands from RNM1978's blog here (http://rnm1978.wordpress.com/2009/08/25/multiple-rpds-on-one-server-part-2-presentation-services/). The reason why I have a second instance of the presentation service is for mobile reporting purposes. We have lots of executives using iPhones and the Oracle Business Intelligence Indicators application. The second instance defaults all charts to be PNGs, it also uses a separate, clean catalog, so that the executives don't get lost in all of the out of the box BI Applications content that is in our main catalog.
    Everything is setup and working properly, both presentation services are accessible and use the same RPD but different catalogs. The only thing that isn't working is the presentation service cache. A lot of these reports are QTD or YTD so it takes a few minutes to run some. We were hoping to use iBots to create BI Server cache at the beginning of the day. That seemed to help a bit but it seems to clear after a few minutes.
    Additionally, before we went to do demos to end users, we would run all the reports from a demo iPhone. Go to do the demo and within five minutes, the presentation cache would have already cleared. I confirmed the same by looking in the Session Manager of the second presentation service.
    Does anyone know why this would be happening? I have cache turned on in the bi server and I also have the following settings in my instanceconfigMobile.XML:
    <Cache>
    <Query>
    <CacheMaxEntries>1000</CacheMaxEntries>
    <CacheMaxExpireMinutes>720</CacheMaxExpireMinutes>
    <CacheMinExpireMinutes>720</CacheMinExpireMinutes>
    <CacheMinUserExpireMinutes>720</CacheMinUserExpireMinutes>
    </Query>
    </Cache>
    Are there other settings I need to investigate?
    Is this just additional commands I need to run when launching the additional presentation service? Here's the command I'm using:
    . ./common.sh
    . ./sa-init.sh
    sawserver -c /home/oracle/OracleBIData/web/config/instanceconfigMobile.xml >> /home/oracle/OracleBIData/web/log/sawserverMobile.out.log 2>&1 &
    Thanks!
    -=Joe

    Hi Joe
    I can't say I've tried Robin's technique to run two presentation servers but from my basic understanding of it, both versions will share the same cache as defined in a single nqsconfig.ini file. Maybe these 2 are conflicting somehow?
    I see that a separate instanceconfig.xml is used for each presentation server. I know there are a bunch of advanced, largely undocumented, cache properties you can set in there. I can send you a document listing the various properties if you want to play with it - contact me via my website.
    Paul
    http://total-bi.com

  • Retrieving records to presentation server after Background Job.

    Hi Friends,
    Here i am working on a data updation program.I am passing the data in an excel and after updation all the error records are populating into another Excel file whose path also i am providing in the selection scree. This error excel file i am storing in the presentation server(user workstation).
    Its working fine in foreground and creating error file in case of errors successfully.Initially i did not have a background execution option as its communicating presentation server.
    but now user wants it to run in background, so i have given a background radiobutton on selecting this it will SUBMIT the same program again as a job.
    This also working fine but as a batch job could not create the error log file in the front end.
    So now i am thnking of a logic :    I ll write the error log records in the Application server.  Then i ll check whether the file has written completely in the application server by giving some delay (in 15 seconds it will check the appl server if the dataset has been created successfully).
    Eg ;
    Code for delay setting that i would like to know from you .
    OPEN DATASET ERRLOG........
    If sy-subrc EQ 0.
    Loop.
    Put the values into an internal table.
    ENDLOOP.
    Using GUI_DOWNLOAD download the content of int table to Excel file.
    As of now i am having this logic to go further.
    Already started R&D .
    Would like to know from you how far this will be feasible and the way to set the delay to read the Error from appl server?
    If you have any other idea please let me know.
    Ask me on any clariffication on this issue.
    Thanks & Regards,
    SAM.

    Hi!
    You can't see a presentation server while your program is running in the background. It is, because in this case there is no presentation, no user-display for the results. So all GUI related functions are unreachable, downloading also.
    You might try to send the log, in email, or like a sapoffice mail.
    You might try to set up a directory on a shared file server, and put the file there into user specified directories.
    But forget downloading into presentation server.
    Regards
    Tamá

  • Browse users presentation server directory and save a text file in it

    Hi All,
    We have a requirement in which I need to provide two buttons Browse and Export in CRM web UI with following functionality:-
    1) On click of browse button user should have an option to browse and select a folder(not file) from presentation server(useru2019s computer).
    2)Once user selects a folder and click export button, I need to save a text file in this folder.
    Any help on any of the above two requirements will be highly appreciated.
    Regards,
    Vimal

    Hey Vimal,
    did you find a solution for your problem?
    Actually I'am facing exactly the same issue.
    Thank you very much.
    Regards
    Marc

  • Communicating with presentation server in the background mode

    Hi Folks,
        I have a requirement to communicate the presentation server in the background mode. I'm following the below article for achieving it.
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/9831750a-0801-0010-1d9e-f8c64efb2bd2?quicklink=index&overridelayout=true|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/9831750a-0801-0010-1d9e-f8c64efb2bd2?quicklink=index&overridelayout=true]
    But I'm getting an error while testing in the dos prompt. The error is as following.
    The system cannot execute the specified program.
    Kindly Help.
    Regards,
      santosh

    But I'm getting an error while testing in the dos prompt. The error is as following. The system cannot execute the specified program.
    You see this error usually if some libraries (dll's) are missing. To investigate this issue it might help to use the [dependency walker|http://www.dependencywalker.com/] tool on the executable and check for any missing libraries. If you cannot figure it out yourself, please try to post exact comments of what you're doing and complete error messages including ideally version of your RFCSDK.
    Cheers, harald

Maybe you are looking for

  • Database connection problem from RDBMSRealm

    Hi Everyone, I am implementing an application with Weblogic5.1, RDBMSRealm, Merant type 4 JDBC driver and SQL server 7.0. When I am starting the Weblogic server, I am getting an error as described as follows. Can anyone there give me a clue? As you s

  • Itunes wont detect iphone 5 and it just keeps vibrating

    im trying to connect my iphone to itunes, and now it says it cant be detected. I synced some songs into it two nights ago,and now it wont work. i've been googling stuff for 2 hours and nothing helps. i've uninstalled and installed itunes, turned off

  • BIEE and BI Publisher standalone

    Hi, I am new to BI, I went through OBE for BIEE and BI Publisher. I have installed BIEE (and BI publisher desktop) successfully, when I launch BI Publisher shipped with BIEE, I dont get admin tab and thus account tab in preferences. Moreover, no opti

  • Thumbnail css on photo galleries

    I could have sworn I saw this topic once before here on the forum, but now that I've been working through the photo gallery tutorial and am having a problem with the display of my thumbnails, my search using css, thumbnails, and photo galleries faile

  • In PSE 11, is it possible to associate a KEYWORD PLACE Tag with a pin marker on the PLACES map?

    I would like to be able to tag a photo (ie: many photos at one time) with a KEYWORD tag for a place and then be able to find those photos on the map under the PLACES tab.