Column settings in Portal

I have a report that executes fine when I run it though BEx (Excel).  But when I run it via the Portal I only get the first few columns of the report.  Is there a Portal setting that I'm missing?
Thanks,
Dave

Hi Dave,
Assuming you are using BW 7.0 and you have not many changes to the standard web template (0ANALYSIS_PATTERN), you could increas the following Analysis Item parameters: "Number of Data Columns Displayed at once" and " Number of Data rows displayed at once". These parameters are by default set to 4 and 17. You could increase this count as per your requirement. Hope this helps.
Thanks and Regards
Subray Hegde

Similar Messages

  • Tutorial 2 for BAPI WDA - set column settings in Wizard - page 7, step 4.

    To the Pretty Good WDA Programmers, and/or Experts,
         I am new at this, so any help is appreciated.
         In the tutorial: Dynpro for ABAP: Tutorial 2 - BAPI Usage at: https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/9cb5d345-0801-0010-6a8e-fc57c23fd600  has in page 7, step 4. Seems a little vague to me:
    The Required Methods and Context Elements
    On the two subsequent dialog windows, default values are listed for giving names to the context nodes and attributes required by the service call as well as to the required methods. The proposed names are based on the names of the embedded service, but you can change them as required.
        So the question is, in the wizard for page 7, step 4, what are the column settings set to: Parameter Values / Controller Attribute / Context Node ... to get the BAPI Input/Output and Changing columns looking like they do in the tutorial on the next page (pg 8)?
       Step-by-step, or in this case, column-by-column directions would be most helpful!
    Thank You...
    Edited by: Daniel Perecky on May 4, 2009 10:58 PM

    To Trikanth and  Saurav,
       Thank you for those screen-shots Trikanth. They definitely helped point me in the right direction. The problem was that all of the 'Changing' structure sub-structures would end up in the view node.
       When I would try to map 'Changing | Flight_List' with the context, a message would appear: 'Mapping is only possible for Flight_List if Parent is Mapped'. Then when I mapped the entire 'Changing' node, it would map to the Component Controller, but then it would not map correctly to the output display table.
       Apparently only one dimension of structures could be mapped. A (deep) structure of structures cannot be.
       So in step 4, in the wizard, to make this work, I had to only make visible 'Changing' by what you both kindly confirmed: making it Context.
    Settings Summary: Root Node- unchangable.
    Parameter Group 'Importing'- Context (Node/Attribute)- Unchangeable 
    Parameters-  Airline - Changed to Context (Node/Attribute)
    Dest_From              - Changed to Context (Node/Attribute)
    Dest_To                  - Changed to Context (Node/Attribute)
    Max_Rows              - Changed to Context (Node/Attribute)
    Parameter Group 'Changing'- Context (Node/Attribute)- Unchangeable                             
    Date_Range            - left as Controller Attribute
    Extension_In           - left as Controller Attribute
    Flight_List               - Changed to Context (Node/Attribute)  <---
    Extension_Out         - left as Controller Attribute
    Return                     - left as Controller Attribute
    So, when 'Changing' and ONLY 'Flight_List' was made visible in the node, it mapped correctly to both the Context node and to the output table columns.
    This is great. Thanks a Lot!

  • Error saving column settings with ORA-01403: no data found Error

    Hi
    I have a region with multi row report updatable.
    When I am trying to change the query I am getting below error.
    Anybody let me know what will be the problem.
    ORA-01403: no data found
    Error saving column settings
    Regards
    Kiran

    Hi
    I was using below query for this region.
    SELECT
    result.segment1 Item#,
              result.inventory_item_id,
              result.revision,
              result.lot_number,
              result.Lot_Onhand,
              result.Heat,
              result.Cert_Site_Number Cert_Site_Number_Display,
              result.status_code Status_Code_Display,
    result.Cert_ID Cert_ID_Display,
              result.Cert_Site_Number,
              result.status_code,
    result.Cert_ID,
              result.transaction_id,
    result.po_header_id,
    result.po_line_id,
    result.rcv_transaction_id,
    result.shipment_header_id,
    result.shipment_line_id
    FROM          
    SELECT      
    msi.segment1,
              mmt.inventory_item_id,
              mmt.revision,
              mtln.lot_number,
              xx_utility_pkg.get_available_qty(mmt.inventory_item_id,mmt.organization_id,mmt.subinventory_code,mtln.lot_number,'ONHAND') Lot_Onhand,
              mtln.attribute1 Heat,
              mtln.attribute2 Cert_Site_Number,
              mms.status_code,
                        (          SELECT     clx.cert_id
                        FROM     xxqc.cert_mst cm,
                                  xxqc.cert_lot_xref clx
                        WHERE      cm.cert_id = clx.cert_id
                        AND cm.cert_type='MILL'
                        AND     clx.lot_no = mtln.lot_number
              ) Cert_ID,
              mmt.transaction_id,
              rsl.po_header_id,
              rsl.po_line_id,
    mmt.rcv_transaction_id,
    rt.shipment_header_id,
    rsl.shipment_line_id
    FROM      mtl_material_transactions mmt,
              mtl_transaction_lot_numbers mtln,
              mtl_material_statuses_tl mms,
              rcv_transactions rt,
              rcv_shipment_headers rsh,
              rcv_shipment_lines rsl,
    mtl_system_items_b msi
    WHERE     mmt.transaction_id = mtln.transaction_id
    AND          mmt.organization_id = mtln.organization_id
    AND          mtln.status_id = mms.status_id
    AND          rt.transaction_id = mmt.rcv_transaction_id
    AND          rsh.shipment_header_id = rt.shipment_header_id
    AND          rsl.shipment_header_id = rsh.shipment_header_id
    AND          rsh.organization_id = mmt.organization_id
    AND          rsl.item_id = mmt.inventory_item_id
    AND msi.inventory_item_id=rsl.item_id
    AND msi.organization_id = mmt.organization_id
    AND          rsl.po_line_id = DECODE(:P5_PO_LINE_NUMBER, 0,rsl.po_line_id,:P5_PO_LINE_NUMBER)
    AND rsl.po_header_id IN (     SELECT     po_header_id
                        FROM      po_headers_all
                        WHERE      segment1 = :P5_PO_NUMBER
                        AND      org_id = :P5_ORG_ID)
    AND          mtln.status_id = 90 -- Which is 'T' Status means Temporary
    AND          mmt.transaction_action_id = 27
    AND          mmt.transaction_source_type_id = 1
    AND          mmt.transaction_type_id = 18
    ) result
    WHERE result.Lot_Onhand > 0
    when I use above query I am able to update the region perfectly.
    But when I comment last WHERE CONDITION I am getting above problem.
    What could be the possilbe reason for this?
    Regards
    Kiran Akkiraju

  • How to get the dynamic columns in UWL portal

    Hi All,
    I am working on UWL Portal. I am new to UWL. I have down loaded uwl.standard XML file and costomized for getting the  values for "select a Subview" dropdown and I am able to see the values in the dropdown. Now my requirement is to get the dynamic columns based on the selection from dropdown value.
    can any body suggest on how to get the dynamic columns in UWL portal.

    Hi  Manorama,
    1) If you have already created a portal system as mentioned in following blog
                  /people/marcel.salein/blog/2007/03/14/how-to-create-a-portal-system-for-using-it-in-visual-composer
    2) If not, then try to create the same. Do not forgot to give the Alias name .
    3) After creating a system, log on to the VC, Create one iView.
    4) Now Click on "Find Data" button from the list which you can view in right side to Visual composer screen.
    5) After clicking on "Find Data" button, it will ask for System. If you have created your system correctly and Alias name is given properly, then your mentioned Alias name is appeared in that list.
    6) Select your system Alias name and perform search.
    7) It will display all the BAPIs and RFCs in your systems.
    8) Select required BAPI and develop the VC application.
    Please let me know if you any further problems.
    Thanks,
    Prashant
    Do reward points for useful answers.

  • How to add 1 more column in standard portal UWL and map the values.

    Hi
    I have one issue/requirement, please help me out on that also.
    In portal UWL, i want to add one more column TICKET ID COLUMN, and ticket id value I  will be putting as work item ID of abap Workflow, so whenever  approver opens his portal UWL, in first column i want to show ticket ID say 00012345, so how to add this ticket ID column in standard portal UWL and how to put/map  value of work item in that column.
    My idea behind this is, when ever say employee wants to know the status about his ticket ID, he can simply ask his manager regarding the ticket status by referring to that ticket ID which manager can easily find in his portal UWL in that extra TICKET ID COLUMN .
    Do I have to change anything in SAP inbox also ? Do i have to add 1 more colum in sap R/3 inbox also ? and will adding 1 more colum in sap inbox (R/3 inbox), will create automatically one more ticket ID colum in portal UWL also ?
    please let me know , as i do not want to add 1 extra column in R/3 inbox, just i want in portal UWL extra ticket ID column should come and i want to put workitem ID generated at the start of workflow, in that colum in portal UWL
    please help me on this.
    Thanks...
    Edited by: User Satyam on May 29, 2011 6:16 AM

    Hi Satyam,
    These are called custom attributes.  Here is a powerpoint that may be able to assist you with the documentation that the other poster gave you too.
    Always remember too when you make a change on the backend R/3 side, you must reregister your UWL connector.  And yes, the column must be available on the backend R/3 side.  We can't create on the fly columns in the UWL, that have no reference to the backend system in this case.
    Beth Maben
    EP - Senior Support Consultant II
    AGS Primary Support
    Global Support Centre Ireland
    Please see the UWL Wiki @
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/bpx/uwl+faq  ***

  • NW04s: How to change column settings like 'do not adjust' 'fit to resuts' e

    In the new Analyzer, old report format: how to change column settings: do not adjust, fit to results, etc.?
    Regards
    -Bala

    Hello,
    In the properties dialog of the Grid and some other items, there is a checkbox by name "Autofit". When this is checked, the result columns are expanded to correct data widths.
    Regards,
    Manjunath

  • Appraisals - Column settings

    We are implementing Ehp4 Web Dynpro ABAP UI for Performance Management. The appraial template has been configured and released via transaction phap_catalog_pa. Tab and Process configuration for the Temaplate has been defined. Apprasial documents are created using this template. Although a rating scale is assigned to a Score column in the Appraisal Template, this rating scale seems to be inactive or missing as the values are not displayed in this column in the portal (via MSS). The 'Weighted Average'  is assigned to the Criteria Group as part of configuration, the individual (criteria) elements are not averaged up to the Criteria group level when assigning rating to the documents. What could be causing this as this configuration is working fine in SAP (back-end). Is there something that needs to activated.

    Hi,
    So for that you have to either pass the values to the column using web dynpro , or u have to change that column to a listbox & insert  the values in Adobe form.
    Then you can able to see the values when you re executing it from ESS portal.
    If you want to  pass the values to the column using web dynpro, try to search it in Web dynrpo using ABAP/Java section.
    If you want to know how to pass the value from Adobe form then please try to search in Interactive form Fourms.
    Hope this might help you.
    Thnkx & Regards,
    Gaurav

  • Batch Apply EQ and Column Settings.... Anyone??

    This has been driving me nuts. I am a DJ, i use Serato, so it is crucial that my column settings and output EQ apply to ALL tracks in a given playlist... without having to assign each and EVERY tune.
    Has anyone sorted this out? PLEASE HELP!!
    i.e. "Custom" EQ - i am tired of going through 30 tracks and applying to each song... individually. Same goes for column settings... i want to set it up once [title-artist-length-size-bitrate-format-year-genre-dateadded] then apply that to my whole library.
    I would really appreciate some help here.... i will return the favor with some of my music for free... if you like hip hop or jungle ; )
    thx

    I am going through the same thing... any help would be appreciated.

  • How I can insert one row on table,  with columns settings: readonly = true

    I have a problem. (jdeveloper 11.1.1.2.0)
    How I can insert row on table (EditingMode= clickToEdit), with columns settings: ReadOnly = true.
    When I make click on button create insert, ADF create one row on the table with output text invisible ( ReadOnly = true.)
    I make double click, then output text is visible (ReadOnly = false)
    I dont want make double click. I want output text is visible (ReadOnly = false), when I make click on button create insert
    Thanks

    Hi,
    try changing the edit mode of the table when pressing the button and refresh the button. This of course turns the whole table into editable mode, but this is how it needs to work. Alternatively, you create an input form for the user to edit the new record and show the form in a popup or beneath the table. Then when the user submits the created row data, you refresh the table to shwo the new row
    Frank

  • How to customize row and column settings in BI report

    Hi SDN,
    We have integrated EP702 and BI 704systems and uploaded BI roles into portal. Now i want to personalize BI report settins.
    There are 10 columns in BI report, but initially 4 columns are only displayed. But we want to display all the columns initially. I didn't find any option to customize these settings. And variable screen button is displayed when click on Filter link. But we require this button in report itself. Information and Show chars buttons are not available in report.
    I am working on BI reports for the first time. Please help me to customize settings.
    regards,
    Sree.

    By default BEx web using a web template called 0ANALYSIS_PATTERN to render the queries. Most clients create a copy of SAP supplied standard web template and customize it to their needs. Most of the changes are what you have described. You can add a new button on the toolbar. Change the Analysis Item properties to control the number of columns.
    Once you have a new desired web template, you can set it as your default adhoc-analysis web template in IMG. Look for a node called Report relevant settings. All this setup needs to be done on the BW system. A restart of BI java is required after the customizing settings have been changed.
    Thanks
    Vineet

  • Language Settings for Portal

    Hi All:
    How do we will enable translations for the custom iviews that we are developing.
    For standard delivered iview when we turn switch for a specific language the headers ( the java labels ) are translated automatically.
    Is there special settings in Java that needs to be enabled for translations.
    Thanks
    Rachel

    Hi my friend:
      That is an amazing document where you can learn and manage translations in your applications. See to the end of Document... See page 60.
       https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/ep/j-l/jsps resources and internationalization
    Good luck!
    Josue
    PS. Don´t forget reward points.

  • Language settings in Portal for WAD reports

    hI,
    In WAD 3.x when we execute the report in the URL we can see language =EN, (https://inls51556188a:6001/sap/bw/BEx?sap-language=EN&bsplanguage=EN&CMD=LDOC&TEMPLATE_ID=ZLUMM_Q100_TPL01)so even when the user browser settings are in German still the report gets displayed in English where as when the user login in German and  execute the report in WAD 7.0 it displaying the techical names for text data and infoobjects names as there is no text data maintained in German.
    Is there a way to fix the language in the iView of the WebTemplates directly in the Portal.If so how can this be done?
    Thanks ,
    Sany

    HI,
    Now there are two options that you can use to over come this:
    1. If the concern is just about the query related then you can do 1 more thing. In the query designer login- with language german, Open your query, you will see the technical names of the chars and key figures (calculated, restricted and formula, selection's as well), now here u need to maintain the description for each of them in english (i.e. simply type the text in general tab for each of them) and save the query.
    2. There is table for info-object's text manintainece you need to maintaine the description of info-object's used in your report's in english with language key set to German.
    thanks in advance
    regards
    Edited by: venugopal vadlamudi on Jun 27, 2008 8:53 AM

  • Webdynpro ABAP columns hidden in portal only

    We have configured webdynpro abap application HRESS_A_CATS_1.
    When we test from the backend, we see a delete column on the left and each day has a detail column as below:
    When we launch from the portal, those columns are hidden:
    Is there some personalization or customizing feature that I am missing?  I am not familiar with portal administration, could there be a parameter on the iView itself that is causing this to occur?
    When I look over the shoulder of our portal administrator and he looks at the iView preview itself, the columns are there.
    Something is hiding them, but not sure what it is....

    The delete icon will not show up in the line of the favorite/templates, if no hours are recorded on it. There is no transfer to the backend either, unless hours are recorded on these working time attributes. also ensure note 1986356 is implemented for details column check CAC2 for the CATS profile attached to the user in CVR in Su3

  • WD ABAP ALV: filter in unsorted columns settings

    Hello WD ABAP experts,
    in a WD ABAP ALV Table, in settings, it is possible to filer in the "hidden columns" section for the column name. Unfortunately this filter is not possible in the "Sort" section, where I get only a list of unsorted columns. In a big table it is then hard to find the right columns.
    Can the filter somehow be generally enabled for settings->sort in "unsorted columns" ?
    thank you
    Johannes

    Hi Ragini,
    Please refer this thread: [alv total and subtotal|How to display graphs;.
    I hope it helps.
    Regards
    Arjun

  • Changed column sequence in Portal

    Hi,
    I have the following query:
                                  columns 0FISCPER
                                               Key Figures
                                                 0AMOUNT
    rows
    ZCUSTGR
    0GLACCOUNT
    - standard sorting options
    When I run query in BEx analyzer the sequence of the columns is fine. (001.2009, 002.2009 etc.)
    When I run it in portal (Web Application, Web Analyzer) the column sequence is changed.
    It seems like it is sorted by overall result in rows.
    Do you have any idea why such a thing happens?
    Thanks,
    Marek Krzeminski

    Hi,
    the sequence in the portal should be the same than in the bex analyzer. Can you give us some more details? Maybe you can try this with a very simple query - sometimes it makes it is easier to understand where the error is coming from. Maybe it also helps if you provide us with an example?
    Best regards,
    Janine

Maybe you are looking for