BPS Web Interface don't show multiple documents for each cell

Hi gurus,
I have an issue... we are trying use text documents from BPS on the WEB interface. Everything works fine, I can input text documents on each cell on the web, and from Query as well.
I saved several other documents from the query for the very same cell, and I can see these other documents from BPS itself or from the Query by clicking on the title... but on BPS WEB interface, it shows only the last text document saved.
Is there anything wrong on the configuration, or is it possible for the WEB interface to show the titles so that the user can choose which document he wants to open?
Thanks in advance,
Chen

Hi Luke,
did you check whether the document attributes are generated for your Characteristics?
AWB -> Documents -> Administration -> Generated Properties
There is also a SAP Note 431126, which you might want to consult.
Regards,
Eric

Similar Messages

  • Integrate WAD 7.0 Template into BPS Web Interface

    Dear all,
    We recently migrated to BW 7.01. We have an existing planning application running as a BPS Web Interface.
    I now want to integrate a query output (data and chart) by using a web template designed with WAD 7.0 into the existing BPS web interface. I know how to do this with a web template designed with WAD 3.5. There is also a How-to paper available that explains it for 3.5. I'm struggling now to do the same with WAD 7.0. The syntax for the URL generation changed, that's one problem. There maybe more when actually calling the web template from the web interface(?).
    I found some threads here in the forum dealing with this issue but no clear solution. Some posts even mentioned that integration of 7.0 web templates into BPS web interfaces is not possible at all. I would appreciate any information on this issue.
    Thanks in advance!
    Regards,
    Ulrich Meier

    Hello Ulrich,
    the 7.0 web templates run on your BI Java server which has a different host name (and port) than you BW ABAP server which run the BPS web interface. The servers are different in Dev/QA/Prod so you need to generate the URL dynamically.
    One way is to hardcode it in JavaScript. Something like: if CurrentDomain = ABAPDevDomain. Domain = JavaDevDomain. if CurrentDomain = ABAPQADomain. Domain = JavaQADomain. etc
    A fancy alternative would be to put the Java domain and port into an exit variable which you could include in the BPS web interface (in a hidden DIV tag for example). Fill the exit variable using function RSWR_GET_DEPLOY_PORTAL_INFO. Then your JavaScript can pick up this value to generate the proper URL for the web template.
    Regards,
    Marc
    SAP Techology RIG
    PS: Posting JavaScript directly is limited for security reasons (certain JS keywords are not allowed). You can put your JS into a text file and attach it to your posting.

  • BEx Web Applications in BPS Web Interfaces

    Hi all,
    I need to make a BPS web interface which enables the business user to see data in the BW system while posting the budget items in BPS. This is to be done in the Web, and I have therefore tried to implement a solution for the customer following the instructions in the HowTo-paper: "How To.... Integrate BEx Web Applications into BPS Web Interfaces".
    The report is displayed when the interface is executed, but the variable which I have included in the code does NOT have any effect on the BW query (which is a surprise to me) but rather only on the BPS Web Interface (which is no surprise to me).
    The above results in two questions:
    - What part of this code needs to be changed for the variable to take effect on the BW query as well as the BPS Web Interface:
    <iframe
        id="BWReport01"
        name="BWQUERY"
        src="/sap/bw/BEx?
        cmd=ldoc&TEMPLATE_ID=ALLOK_CHECK2"
        width="1200"
        height="600">
        Frames are not supported
    </iframe>
    <script language="JavaScript" type="text/javascript">
        var frame  = document.getElementByld( 'BWReport03' );
        var url    = '/sap/bw/BEx?cmdldoc&TEMPLATEID=';
        var filter = '&FILTER_IOBJNM=0PROFIT_CTR&FILTER_COLLAPS=&FILTER_VALUE_EXT=';
        var '1000/'  = '';
        var appl   = 'ALLOK_CHECK2';
        var varvl  = '%=descr(VarvlSel1_pctr/value)%>';
        var convert = /\((.*)\)/;
        convert.exec(varvl);
        if ( RegExp.$1 != "") varvl = RegExp.$1;
        url = url + appl + filter + comp + varvl;
        url = url.replace(/ /,"");
        frame.src = url;
    </script>
    Particular areas where I am in doubt (in squared brackets):
    [  var '1000/'  = ''; ]
    [  var convert = /\((.*)\)/; ]
    - has anyone had any experience in using the Selector Package (SEL_PACKAGE) rather than the Selector Variable Value (SEL_VARVL)? In case you have, how is it implemented in the HTML-code?
    Looking forward to hearing from you guys soon.
    Best regards
    Rune Rygaard

    Hi Rune,
    Here's what I found - I'm not sure it will solve your problem, but maybe it can give you some hints:
    <b><iframe
    id="BWReport01"
    name="BWQUERY"
    src="/sap/bw/BEx?
    cmd=ldoc&TEMPLATE_ID=ALLOK_CHECK2"
    width="1200"
    height="600">
    Frames are not supported
    </iframe></b>
    I think the section above in bold has to be deleted and replaced by the one specified in section 3.3 of the how to paper: <iframe id=BWReport03" name="BWQUERY" src="/sap/bw/mime/....</iframe>. The reason is the your defintion will display the report, but will not take any variables into consideration.
    Furthermore you're missing a '=' in your code (cmd=ldoc) - I marked it in bold below. What you could also do was to add an alert to display the URL generated by the javascript. I added that in bold as well. That can give you an idea of whats missing.
    Hope this helps,
    Jacob Lund - DK :o)
    <script language="JavaScript" type="text/javascript">
    var frame = document.getElementByld( 'BWReport03' );
    var url = '/sap/bw/BEx?<b>cmd=ldoc</b>&TEMPLATEID=';
    var filter = '&FILTER_IOBJNM=0PROFIT_CTR&FILTER_COLLAPS=&FILTER_VALUE_EXT=';
    var '1000/' = '';
    var appl = 'ALLOK_CHECK2';
    var varvl = '%=descr(VarvlSel1_pctr/value)%>';
    var convert = /\((.*)\)/;
    convert.exec(varvl);
    if ( RegExp.$1 != "") varvl = RegExp.$1;
    url = url + appl + filter + comp + varvl;
    url = url.replace(/ /,"");
    <b>alert (url);</b>
    frame.src = url;
    </script>

  • How to call a BPS Web Interface with predefined selections

    Hi,
    I have read and try to implement the "How to... call a BPS Web Interface with predefined selections" but it is not working.
    I have one Web Interface called ZXXXXX, then I created one BSP and copied the ABAP code into the Layout screen.
    I checked the ABAP and it concatenates and fill the variable l_url, but the page is not displayed.
    l_url = /sap/bc/bsp/sap/zxxxxx/zxxxxx.htm 
    I have checked that I have no errors in the BPS variables and its values.
    It just opens internet explorer and the page displays "<<<" in the top of the screen.
    I am working with BW7.0 and BPS 3.5.
    If anyone can help me it will be rewarded,
    Thanks a lot,
    Fernando

    I think the problem is in the last part of the code.
    <frameset framespacing=0 frameborder=0 border=0>
    <frame src="<%= l_url%>" name="x" framespacing=0 frameborder=0 border=0
    marginwidth=0 marginheight=0>
    </frameset>
    It is doing nothing in this point, but the ABAP fills correctly the l_url variable.
    Thnks

  • Open Bex workbook from BPS web interface,How hard it could be?

    Hi all,
        I want to add a link or function-button in my BPS web interface,hope it could open a query(excel analyser),I tried 2 methods as follow:
       1. MIME , It can only open a static excel file, not a analyser query. I gave up this method.
       2. I use the program RRMX_START_EXCEL and add a plan function which is a EXIT in BPS0,in my EXIT function I used some code in  RRMX_START_EXCEL,I test it in BPS0 ,it works ,it can open a analyser excel query.But when I put this plan function(including a parameter group ) in BPS_WB ,when I click the function-button in web interface, it crashed,says:
    Error when processing your request
    What has happened?
    The URL http://bw1.:8000/sap/bc/bsp/sap/zwebcaxa001_998/page1.htm was not called due to an error.
    The termination type was: TH_RES_FREE
    and some other Error infomation,
    Is it possible to realize my requirement? or Web interface and analyzer are just 2 total differrent things ,it is not possible to realize this?
    thanks all

    Hi Denny,
    Have a look at www.javascript.internet.com and do a search for "whatfile".....
    This should give you the javascript code whereyou can enter a file name (say an excel file name) and click a button to navigate to it.
    Although I have not tried exactly what you have asked, I have successfully used parts of this code to open specified files (excel files) on our local directory from a BPS planning web page.
    Obviously you will need to adapt the code to your specific evironment/situation...
    Good luck.
    Rael

  • Design Standard, and Design Premium, Design Web, and Web Premium don't show up as applications we can package in Creative Cloud Packager. What app replaces these in CC?

    Using our Enterprise License key Design Standard, and Design Premium, Design Web, and Web Premium don't show up as applications we can package in Creative Cloud Packager. What apps replaces these in CC?

    If your machine does not meet the tech specs for an application, the application will not be listed/offered in the manager.  In this case Premiere Pro CC is a 64-bit application and your machine is 32-bit.

  • How to show multiple messages for a single exception

    hi
    Please consider this example application created using JDeveloper 11.1.1.3.0
    at http://www.consideringred.com/files/oracle/2010/MultipleMessagesExceptionApp-v0.01.zip
    It has a class extending DCErrorHandlerImpl configured as ErrorHandlerClass in DataBindings.cpx .
    Running the page and entering a value starting with "err" will result in an exception being thrown and multiple messages shown.
    See the screencast at http://screencast.com/t/zOmEOzP4jmQ
    To get multiple messages for a single exception the MyDCErrorHandler class is implemented like
    public class MyDCErrorHandler
      extends DCErrorHandlerImpl
      public MyDCErrorHandler()
        super(true);
      @Override
      public void reportException(DCBindingContainer pDCBindingContainer,
        Exception pException)
        if (pException instanceof JboException)
          Throwable vCause = pException.getCause();
          if (vCause instanceof MyMultiMessageException)
            reportMyMultiMessageException(pDCBindingContainer,
              (MyMultiMessageException)vCause);
            return;
        super.reportException(pDCBindingContainer, pException);
      public void reportMyMultiMessageException(DCBindingContainer pDCBindingContainer,
        MyMultiMessageException pException)
        String vMessage = pException.getMessage();
        reportException(pDCBindingContainer, new Exception(vMessage));
        List<String> vMessages = pException.getMessages();
        for (String vOneMessage : vMessages)
          reportException(pDCBindingContainer, new Exception(vOneMessage));
    }I wonder if calling reportException() multiple times is really the way to go here?
    question:
    - (q1) What would be the preferred use of the DCErrorHandlerImpl API to show multiple messages for a single exception?
    many thanks
    Jan Vervecken

    fyi
    Looks like using MultipleMessagesExceptionApp-v0.01.zip in JDeveloper 11.1.1.2.0 (11.1.1.2.36.55.36) results in a different behaviour compared to when used in JDeveloper 11.1.1.3.0 (11.1.1.3.37.56.60)
    see http://www.consideringred.com/files/oracle/img/2010/MultipleMessages-111130versus111120.png
    When using JDeveloper 11.1.1.2.0 each exception seems to result in two messages where there is only one message (as intended/expected) per exception when using JDeveloper 11.1.1.3.0 .
    (Could be somehow related to the question in forum thread "multiple callbacks to DCErrorHandlerImpl".)
    But, question (q1) remains and is still about JDeveloper 11.1.1.3.0 .
    regards
    Jan

  • How do I convert a power point document to a pdf where it will show the notes for each slide?

    How do I convert a power point document to a pdf where it will show the notes for each slide?

    To get the 'handout view' with a slide and the speaker notes on the same page, you have to save the PDF file directly from PowerPoint (the later versions of Microsoft Office can make PDF files without the help of Acrobat).

  • My isight camera was not working. so i tried to smc reset it as said in apples support community but now wat happened is my macbook pro don't charge, it don't show any light for checking charge, nor it starts up. please help. Thanks

    my isight camera was not working. so i tried to smc reset it as said in apples support community but now wat happened is my macbook pro don't charge, it don't show any light for checking charge, nor it starts up. please help. Thanks

    Try zapping the PRAM.  See KB Article http://support.apple.com/kb/PH11243 OS X Mountain Lion: Reset your computer’s PRAM
    If you are still under warranty and/or have AppleCare, call them.  Let them deal w/it.

  • Comment or attach document for specific cell of data

    Dear all,
       Is it possible to create comment or attached document for specific cell of data in Webi report?
       For example, the sales of certain product & yearmonth is lower than previous month. I want write some comment for that cell of data . Which function should I use? I try the "Discussion" function. But, it's for the whole report not for certain range of data and I can't attached document in there. Please advise.
    Thx,
    Jeff

    Hi Jeff,
    This one is the most popular request from most of our customers. But what we always tell the client is that the reports that are created in webintelligence are analytical in nature and it is not cell based. For every refresh of the report, you may get different results based on the parameters and your annotation will not hold good.
    We suggest two methods to solve this issue. 1) Discussions - Standard text with the parameters used for refreshing and the observation. This would be a good option if the report is shared with many people.
    2) Add a cell to the report, place it at the right place adjacent to the block which you want to observe. Make your comments in different colors. This would be good for reports which need to be presented to some audience.
    The below link shows a prototype called Comment It for Crystal Reports. But I don't think this is available for webintelligence.
    Comment it [original link is broken]
    Thanks
    Mohanraj CP
    http://blog.mohanraj.org

  • How can I scan documents for duplicate cells?

    Hello!
    I've created 5 separate mailing lists in Numbers. I want to scan all five for duplicate email address. Can anyone think of a way to do this?

    Hi fp,
    Are the 'five mailing lists' in a single table? ...in multiple tables in a single document? ...in separate documents?
    Are you looking for duplicates in each list, or duplicates that may appear in separate lists?
    Here's an example, with two lists, each in a separate table.
    Column C shows the number of this each address appears in the list in 'This Table' only.
    C2, and filled down: =COUNTIF($B,$B2)
    Column D shows the total for each address in both tables.
    List 1::D2, and filled down: =COUNTIF($B,$B2)+COUNTIF(List 2 :: $B,$B2)
    List 2::D2, and filled down: =COUNTIF($B,$B2)+COUNTIF(List 1 :: $B,$B2)
    Tables that are in separate documents cannot be counted together as Numbers is unable to reference cells in other documents. The easiest way to handles these is to copy all the lists into a single document, code the rows to indicate which list it came from and its starting position in that list. the coding is to allow the combined list to be re-sorted into its original order to allow collecting each group's remaining members for pasting back to the original table.
    Trim the list by deleting any row showing a count that is greater than one. Numbers formulas respond to any change in the table, so the count of the remaining copies (or copy) of that address will be immediately updated as each copy of the address is removed. Remember to stop when the count reaches 1.
    Regards,
    Barry

  • How to print multiple footers for each page in RTF template xml report.

    Hi,
    How to print multiple footers for each page in RTF template xml report.
    i am able to print ( two sets ) ...
    up to last page ( one template ) and for last page ( another template).
    i want to change the footer information based on the group value printed in the report ( it might be 5 to 6) In every report run.. can you please check and let me know do we have any feasibility to achieve this.
    Thanks in advance.
    Regards,
    KAP.

    You can remove all other logic, like last page only contents (start@last-page:body), etc and section breaks if any you have inserted manually.
    Just have for-each@section logic.
    It would be difficult for me to guess what you have done without looking at your RTF or describing here.

  • Separate clearing document for each invoice wise while posting F-36

    Dear Experts
    I am posting F-36 Bills of exchange transaction for invoices. I am receiving one BOE for multiple invoices.
    Requirement is while saving document system should give separate clearing document for each invoice wise.
    Pls guide me
    Thanks in advance
    Sneha

    Hi,
    It is not for dunning.
    The F1 text for your understanding.
    Key for Payment Grouping
    Definition
    The grouping key represents a rule according to which the open items of the account are to be grouped together for payment.
    Use
    The grouping key is used in cases where you do not want all the open items of a customer or a vendor to be paid together but rather you want only those items which belong together to be grouped into a single payment. A maximum of three fields from the open items are defined for every grouping key; the contents of these fields must correspond in order that the open items can be paid together.
    Examples
    If you use loan management, you can define as a rule that only items with same loan number can be collected together by debit memo.
    Regards,
    Ravi

  • Multiple data in each cell in JTable

    Hi,
    I'm currently working on a program where I need to a JTable that can contain multiple data in each cell. I,ve solved this problem so far by making each cell contain a JList to hold the data, but I'm a little concerned about performance issues. Lets say I have a table with 10x10 cells, that would make 100 JList to render! So my question is if there is a better more light weight way of having multiple data in a JTable cell?
    a screendump of the layout can be seen here
    /Peter

    In the future, Swing related questions should be posted in the Swing forum.
    First of all it looks like you have a working program, so are you experiencing any renderering problems?
    The only suggesion I would make is to store the ListModel in the table not the JList. I don't think this will improve the renderering, but it should save on resources as you don't need to create multiple JLists.
    Or maybe you use JLabels on a panel with a GridLayout.
    Or, if you data isn't dynamic, then maybe you create and store an image of each cell and then just use the default renderer.

  • I imported events from iphoto into aperture and aperture is showing 2 photos for each picture, one original and one edited although none of the photos from iphoto had been edited. Any idea why this has happened and what I need to do to prevent this.

    I imported several events for iPhoto into Aperture3 and in Aperture it shows two photos for each photo imported, one original and one edited although none of the photos imported were edited. Why has this happened and what do I need to do to prevent this in future. I have only recently got Aperture and am trying to learn as I go along using the Focal Press guide. Thanks for any help.

    Ir. Bob wrote:
    A photo that was rotated in iPhoto will also show up as iPhoto edited.
    This is not what I found to be the case in a recent experiment using iPhoto11- I did repeat it to be sure.
    https://discussions.apple.com/message/15586837#15586837
    Quickly, what I found is that only the ones I did actual adjustments on brought over two images.  Images that were simply rotated, had "quick fixes" or "Effects" did not bring in two images.  More importantly, among the ones with adjustments that did bring in two images, the ones with the keyword  "iPhoto Edited" appear to be nothing more than iPhoto's 6MB JPEG Previews.  The master was a 25MB RAW image.
    I don't know why some users are experiencing doubles on everything, but I recommend caution in deciding which ones to remove or you may find yourself deleting masters and keeping previews. 
    DLS

Maybe you are looking for