Bw report iview with values

Hello,
I have created a bw report iview in EP. The user has to enter certains values and then execute the report. There are like 10 fields or parameters for the user to enter Is there a way where some of the values can be set automatically, (some values should appear in the input fields so that the user may not enter the values again). Also if this can be done , can these values be personlized.
Also one more question, there is option called save view once we execute the report. what is this option for , can somebody shed some light on this.

Hi Prabhakar,
In the BW system check for the WAS property.
Description : WAS
WAS property: <WAS server with FQDN>:<WAS port>
WAS Property: /sap/bw/BEx
protocol: http
You can also check by opening the browser
http://<WAS server with FQDN>:<WAS Port>/sap/bw/BEx?
This should display the details
Regards
Arun

Similar Messages

  • Calling or submiting a report program with value passed from zscreen

    Dear All,
    The requirement is like bellow.
    I have desiogned a zscrees in module pool with three fields as plant ,date and inv.date
    now when i clk a button present in my scren then it should go to standard transaction VF04 with value passed to the filed shipping point==plant enbterd in zscreen (u can see in vf04 in tab selection)
    SUBMIT SDBILLDL  with S_VSTEL-LOW = 0002 VIA SELECTION-SCREEN .
    is not wrking
    wht sholud i do?
    Rajendra

    Hi,
    Try using the below code.
    Define a range table for VSTEL as LR_VSTEL.
    lw_vstel-sign = 'I'.
          lw_vstel-option = 'EQ'.
          lw_vstel-low = your value here.
          APPEND LW_VSTEL TO LR_VSTEL.
          CLEAR : LW_VSTEL.
          SUBMIT rv50sbt1 WITH s_vstel IN lr_vstel.
    Hope this helps you !!!
    Regards,
    Ganga

  • SAP BW Report iView problem

    Hi,
    I’m trying to create a SAP BW Report iView with a BEx URL, but I’m getting an error:
    <i>“Session Management will not work! Please check the DSM log file for details.”</i>
    When I use the wizard (for SAP BW Report iView), it asks me to fill out the web application string. Here I pasted in the URL. I left the application parameters blank.
    The BEx URL:
    http://<hostname>/sap/bw/BEx?sap-language=DA&bsplanguage=DA&CMD=LDOC&TEMPLATE_ID=WEB_TRAFIK_STARTSIDE
    The BW call works fine in the browser and with a URL iView!?
    EP 6.0 / WAS 6.40 / BW 3.5
    Thanks
    Joachim

    you should be using  BW Report iView.
    and when you create  BW Report iView pass the following for the querystring parameter
    CMD=LDOC&TEMPLATE_ID=WEB_TRAFIK_STARTSIDE
    for this to work, in the system definition WAS host , was path and was protocol should be maintained
    Regards
    Raja

  • Report Builder Wizard and Parameter Creation with values from other data source e.g. data set or views for non-IT users or Business Analysts

    Hi,
    "Report Builder is a report authoring environment for business users who prefer to work in the Microsoft Office environment.
    You work with one report at a time. You can modify a published report directly from a report server. You can quickly build a report by adding items from the Report Part Gallery provided by report designers from your organization." - As mentioned
    on TechNet. 
    I wonder how a non-technical business analyst can use Report Builder 3 to create ad-hoc reports/analysis with list of parameters based on other data sets.
    Do they need to learn TSQL or how to add and link parameter in Report Builder? then How they can add parameter into a report. Not sure what i am missing from whole idea behind Report builder then?
    I have SQL Server 2012 STD and Report Builder 3.0  and want to train non-technical users to create reports as per their need without asking to IT department.
    Everything seems simple and working except parameters with list of values e.g. Sales year List, Sales Month List, Gender etc. etc.
    So how they can configure parameters based on Other data sets?
    Workaround in my mind is to create a report with most of columns and add most frequent parameters based on other data sets and then non-technical user modify that report according to their needs but that way its still restricting users to
    a set of defined reports?
    I want functionality like "Excel Power view parameters" into report builder which is driven from source data and which is only available Excel 2013 onward which most of people don't have yet.
    So how to use Report Builder. Any other thoughts or workaround or guide me the purpose of Report Builder, please let me know. 
    Many thanks and Kind Regards,
    For quick review of new features, try virtual labs: http://msdn.microsoft.com/en-us/aa570323

    Hi Asam,
    If we want to create a parameter depend on another dataset, we can additional create or add the dataset, embedded or shared, that has a query that contains query variables. Then use the option that “Get values from a
    query” to get available values. For more details, please see:http://msdn.microsoft.com/en-us/library/dd283107.aspx
    http://msdn.microsoft.com/en-us/library/dd220464.aspx
    As to the Report Builder features, we can refer to the following articles:http://technet.microsoft.com/en-us/library/hh213578.aspx
    http://technet.microsoft.com/en-us/library/hh965699.aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Stock report with value and qauntity for given date not month wise

    Hi gems,
    can any body give me the standard report for Stock value and qauntity for given date not month wise at storage location level

    Hi
    check the report S_P00_07000139 with the option inventory and raw material report- detail and selection date (from, to date same). List will give opening & closing balances with goods movment and their values.
    Thanks

  • Inventory opening and closing stock with value report

    Hi All,
    Is it possible to get details of both opening and closing stock with value of each items of last financial year (2009-10) in inventory report?
    Mizan

    Hi..
    you can  try this query
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    set @FromDate =
        (Select min(S0.Docdate) from OINM S0 where S0.Docdate >='[%0]')
    set @ToDate =
        (Select max(S1.Docdate) from OINM S1 where S1.Docdate <='[%1]')
    select * from
        SELECT T0.itemcode,
        min(T0.Dscription) as 'Item Description',
        min(B1.ItmsGrpNam) as 'Item Group', W1.Whscode, C1.Location,
        (isnull((
            Select sum(isnull(inqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode
            and O1.Warehouse=W1.Whscode
            and O1.docdate<@FromDate ),0)-
        isnull((
            Select sum(isnull(outqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode
            and O1.Warehouse=W1.Whscode
            and O1.docdate<@FromDate),0)
        ) as [Opening Stock],
        isnull((
            Select sum(isnull(inqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode
            and O1.Warehouse=W1.Whscode
            and O1.docdate>=@FromDate
            and O1.docdate<=@ToDate and O1.inqty>0
            and O1.transtype in (20,18)),0
        ) as [Purchase Quantity],
        isnull((
            Select sum(isnull(outqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
            and O1.docdate>=@FromDate and O1.docdate<=@ToDate
            and O1.outqty>0 and O1.transtype in (21,19)),0
        ) as [Purchase Return Quantity],
       isnull((
            Select sum(isnull(outqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
            and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0
            and O1.transtype in (13,15)),0
        ) as [sale Quatity],
        (isnull
            Select sum(isnull(inqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
            and O1.docdate<=@ToDate),0
            isnull((
                Select sum(isnull(outqty,0))
                from OINM O1
                where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
                and O1.docdate<=@ToDate),0)
        ) as [Closing Stock]
        FROM OINM T0
        INNER JOIN OITM T1 ON T0.ItemCode = T1.ItemCode
        INNER JOIN OITW T2 ON T1.ItemCode = T2.ItemCode
        INNER JOIN OITB B1 ON T1.ItmsGrpCod=B1.ItmsGrpCod
        INNER JOIN OWHS W1 ON T2.WhsCode = W1.WhsCode
        INNER JOIN OLCT C1 ON W1.Location=C1.Code
        Group by T1.itemcode, T0.Itemcode, W1.WhsCode, C1.Location
    ) a
    where (a.[Opening Stock]
            +a.[Purchase Quantity]
            + a.[Purchase Return Quantity]
            +a.[sale Quatity]+a.[Closing Stock]
           ) !=0
    Regards,
    Bhavank

  • Display Currency symbol with value in ALV Report

    Hi Experts,
    I need to display currency symbol with value in ALV Report like if currency type is dollar then $200.
    Here I am using field catalog type slis_t_fieldcat_alv and suing field merge catalog FM: 'REUSE_ALV_FIELDCATALOG_MERGE'
    I tried like this
        IF <fs_fieldcat>-fieldname = 'STPRS'.
          <fs_fieldcat>-seltext_s = 'Std Cost '.
          <fs_fieldcat>-seltext_m = 'Std Cost'.
          <fs_fieldcat>-seltext_l = 'Std Cost '
           <fs_fieldcat>-tabname = 'MBEW'.
          <fs_fieldcat>-ctabname = 'T001'.
          <fs_fieldcat>-cfieldname ='WAERS'.
          <fs_fieldcat>-datatype = 'CURR'.
        ENDIF.
    Please any one can suggest the solution for this.
    Advance Thanks.
    Regards,
    Bala Achari

    Hİ,
    Check this link.
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=24379571
    Take care.
    Çağatay

  • Issue with SAP BW Report Iview

    Hi,
    The issue stands with the context menu(right click menu)
    I have created a BI Query and generated a BW Report with the Web Designer Wizard.
    When I run the generated URL it is working fine, with the context menu also working perfectly.
    However when I use that report in SAP BW Report Iview, the report gets opened perfectly but the context menu is taking me to a new page with those options.
    As of now i do not know of any setting for context menu specially.
    If anyone can help me or if anyone has encountered this error before, pl. let me know the solution.

    Atul -- i am running into simillar issue. Please let me know if you found a solution for this.
    Hi all -
    When i create a BW Report iView 7.x in EP 6.0, the second level context menu doesn't appear for the template. Please let me know if this can be fixed.
    Thanks
    PR

  • BO Webi report hierarchy with measure values showing more(almost double value) compare to BW Bex report

    Hi,
    In our BO Webi report hierarchy with measure values showing more(almost double value) compare to BW Bex report. Can any one please help on this.
    Is it BW problem or BO problem?
    I checked in some other threads but it's not given solution.
    Thanks,
    Manjunatha

    Hi,
    Is it BW problem or BO problem? : BO
    is it causing problem with hierarchly data only ?  without hierarchies data is matching or not?
    Post same in SAP BusinessObjects Web Intelligence  .
    Thanks.

  • Report on AB / LA confirmed POs along with values

    Hi,
    How to get the report on list of Purchase Orders that have AB confirmations along with values.
    How to get the report on list of Purchase Orders that have LA confirmations along with values.
    Kindly help.
    Regards,
    Vengat

    TRy ME2A...ME2N ..
    You have the option for giving the confirmation types...
    And give the confirmation category as AB and LA ..
    karthick

  • Help with BI Report iView integration!

    Hello,
    I have been provided with a BI 7.0 Report URL (http://<BI FQDN>:8000/sap/bw/BEx?cmd=ldoc&infocube=<SUPPLIED INFOCUBE>&query=<SUPPLIED QUERY>&sap-language=EN) that i need to integrate into Portal as an iView. I have created BI System in the Portal System Landscape by entering following Parameters:
    Connector Properties:
    Logical System Name: <BI LS Name>
    SAP Client: 100
    SAP System ID (SID): B01
    SAP System Number: 00
    System Type: SAP_BW
    User Management Properties:
    Logon Method: UIDPW
    User Mapping Type: admin, user
    Web Application Server (Web AS) Properties:
    Web AS Description: BI Web AS
    Web AS Host Name: <BI FQDN>:8000
    Web AS Path: /sap/bw/Bex
    Web AS Protocol: http
    After this i gave an alias SAP_BW for this system and then did the User Mapping for this system with my user account. Now i from PCD i am creating a New iView of type "SAP BW Report iView" and entered following parameters:
    Application Verison: 7.x
    Application Parameter: SAP_BW
    BEx Web Application Query String: infocube=<SUPPLIED INFOCUBE>&query=<SUPPLIED QUERY>
    Then when i do a PREVIEW test i get following message:
    Service cannot be reached
    What has happened?
    URL http://<BI FQDN>:8000/irj/servlet/prt/portal/prtroot/com.sap.ip.bi.web.portal.integration.launcher call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system B01 with error code 404 and for the reason Not found.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:sapb01_B01_00-v:0-s:404-r:Notfound
    HTTP 404 - Not found
    Your SAP Internet Communication Framework Team
    If i execute the same query from Query Designer then also i get a error screen with an invalid URL in the address bar and a message in the body saying "The Page Cannot be Displayed". The URL that is pointed from Query Designer is:
    http:///irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?QUERY=<SUPPLIED QUERY>&VARIABLE_SCREEN=X&DUMMY=7
    The same report gets perfectly executed from BI System. Can anyone please tell me why am i getting these error messages and how do i resolve? Please advice. Thanks.

    Hi Vasu ,
    I think you have a problem is due to BI-JAVA . Please check the  links in below.
    BI Java
    Displaying BW3.x Objects on Portal 6.0 SP9 after upgrade to NW2004s BI
    what exactly is in "BI java" ?
    Regards,

  • Report for Storage location wise Stock with value..?

    Hi guru's
    Can anybody explain me what is T.code i want to use to get a report for STORAGE LOCATION STOCK  with VALUE..?
    Urgent reply me  ..
    Thanks
    sap-mm

    Sorry Mr chetan,
    I want to see only the stock available in my company with Value and storage location wise..
    Please try to get report for this
    Thanks
    sap-mm

  • Inventory Audit Report - Zero quantity but with value

    Hi All,
    Our client are using FIFO costing, due to some backdated transaction we get 0 Qty but the value is not 0 when running Inventory Audit Report base on posting date (system date is fine) at the month end. I understand that the system calculate the cost base on system date and this is system behavior.
    So, i just wanted to seek for advice from any expert in accounting especially on costing, will this 0 Qty with value report be accepted by auditor and will it caused any legal issue or this accounting practice is acceptable?
    Thanks.

    Dear Mr Kong,
    From what you said it looks like opening a message for this issue is the appropriate action this time.
    The stock group will give you an update on this issue.
    Kind Regards,
    Marcella Rivi
    SAP Business One Forums Team

  • Problem With the BI reports iviews in EHP 1.0 for Maintenance

    Hi All,
    We are using EHP1.0. In the portal for BI report i have to make visible/Invisible the BI report iview According to user.
    Is it possible to remove all the active queries except the ones relating to notifications from the maintenance Tasks Iview? Could you provide a step by step please?
       In the Reports section and the Service Map section, there are many BI reports but the customer does not have BI.
    1)  How to hide these reports Iview by changing the launchpad ?
    2)  is it possible to do this globally so all users do not see these?
    Kindly help me with your valuble suggestion or document related to that issue.
    Prashant Krishen
    Edited by: prashant krishen on Oct 27, 2010 9:01 AM

    Why this behaviour. Why the "Classpath" entry should
    not be the last line in the manifest file.
    That is a question for the people at Sun. The behaviour is not specific to Class-Path. The last line of the Manifest is not read unless it ends with a newline.

  • Access denied error for BW Report iView..Please help :(

    Hello All,
    I have created a BW Report iView..containing a Bex query.
    Have created the required BW system object too.
    When I preview this iView, it asks me for BW system authentication....since am not mapped to this BW system.
    Its alright till here......
    Problem:
    Now, when I copy paste the URL (URL generated when you preview this iView) into a new browser window, I get an error saying:
    " <b>An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    Access denied (Object(s): <<i>iView path</i>>
    Exception id: 02:57_13/02/06_0034_6204550
    See the details for the exception ID in the log file</b> "
    I checked tha bove mentioned log and it says:
    <b>Permission check failed - Object <<i>iView path</i>>  Pcd.Use Principal: Information not available with current trace level#</b>
    Changed the iView authentication scheme to every value present but it did not resolve.
    Please help me resolve this.
    Awaiting Reply.
    Thanks and Warm Regards
    Ritu

    Hi Raja,
    Firstly thanks for a quick response.
    I did as per you suggested but it isnt working. Am getting the same error again.
    <u>Please refer to the log details below</u>:
    1.5#000F206F053800610000008100000A1000040CAA10AF2627#1139824470727#com.sap.portal.pcd.Gl.Admin#sap.com/irj#com.sap.portal.pcd.Gl.Admin#Guest#0##sapnw2_J2E_6204550#Guest#63f4e0f093d911da8b7b000f206f0538#SAPEngine_Application_Thread[impl:3]_1##0#0#Warning#1#/System/Server#Plain###Permission check failed - Object portal_content/Ritu/MIDAS/CEO_redalert Permissions: Pcd.Use Principal: Information not available with current trace level#
    #1.5#000F206F053800610000008300000A1000040CAA10AF2963#1139824470743#com.sap.portal.pcd.Gl.Admin#sap.com/irj#com.sap.portal.pcd.Gl.Admin#Guest#0##sapnw2_J2E_6204550#Guest#63f4e0f093d911da8b7b000f206f0538#SAPEngine_Application_Thread[impl:3]_1##0#0#Warning#1#/System/Server#Plain###Permission check failed - Object portal_content/Ritu/MIDAS/CEO_redalert Permissions: Pcd.Use Principal: Information not available with current trace level#
    #1.5#000F206F053800610000008600000A1000040CAA10AF4031#1139824470743#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#Guest#0##sapnw2_J2E_6204550#Guest#63f4e0f093d911da8b7b000f206f0538#SAPEngine_Application_Thread[impl:3]_1##0#0#Error#1#/System/Server#Java###Exception ID:03:24_13/02/06_0059_6204550
    [EXCEPTION]
    #1#com.sapportals.portal.prt.runtime.PortalRuntimeException: Access is denied: pcd:portal_content/Ritu/MIDAS/CEO_redalert - user: Guest
         at com.sapportals.portal.prt.deployment.DeploymentManager.getPropertyContentProvider(DeploymentManager.java:1932)
         at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refresh(PortalComponentContextItem.java:230)
         at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getContext(PortalComponentContextItem.java:312)
         at com.sapportals.portal.prt.component.PortalComponentRequest.getComponentContext(PortalComponentRequest.java:385)
         at com.sapportals.portal.prt.connection.PortalRequest.getRootContext(PortalRequest.java:435)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:607)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:232)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:153)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Caused by: com.sapportals.portal.pcd.gl.PermissionControlException: Access denied (Object(s): portal_content/Ritu/MIDAS/CEO_redalert)
         at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterContext.java:390)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1066)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1072)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1072)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1072)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookupLink(PcdProxyContext.java:1168)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookup(PcdProxyContext.java:1115)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.java:909)
         at com.sapportals.portal.pcd.gl.PcdGlContext.lookup(PcdGlContext.java:78)
         at com.sapportals.portal.pcd.gl.PcdURLContext.lookup(PcdURLContext.java:238)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at com.sapportals.portal.prt.deployment.DeploymentManager.getPropertyContentProvider(DeploymentManager.java:1919)
         ... 26 more
    ==========================
    The auth scheme of this iView is set to default
    Please help me resolve this......
    Awaiting Reply.
    Thanks and Warm Regards,
    Ritu
    Message was edited by: Ritu  Hunjan

Maybe you are looking for

  • ODI reading csv file issue

    Hi, I am in ODI 11.1.1, which is our ELT tool for metedata load for all Planning App. One issue i am facing is , one data extract coming from an essbase cube using a Calc Script as .csv file. when i am trying to read that in ODI , it is unable to rea

  • Custom field type - SPFieldLookup

    All, I am creating a custom field type based on the SPFieldLookup.  public class CustomAutoComplete : SPFieldLookup public CustomAutoComplete(SPFieldCollection fields, string fieldName) : base(fields, fieldName) public CustomAutoComplete(SPFieldColle

  • "File" does not have "Import. Can't open Import Wizard

    "File" on the Mozilla Firefox screen has no "Import" necessary to open the Import Wizard. I can't import any info. from my former browser.

  • Excess time taken to schedule requests to the report server

    I have a file which contains 10000 requests to be send to the report server. The total time taken by the report client to send the request to the report server is somewhere around 4 - 5 hours. Why does report client take so much time to schedule the

  • Service catalogue.

    Hi, how setting up a service catalogue? Best regards