Default Workbook Formatting - Apply Styles to Design Item Cells

Hi All,
I am trying to create a template workbook with design items and formatting that I want to use to build a number of end user workbooks with multiple queries.
The baisc idea is that the template workbook would contain a Theme with styles applied to design items. I would then make this as my default workbook ( not global default but only my user specific default workbook ) and then build the rest o the workbooks with queries in them on multiple sheets.
So these workbooks with queries would also contain the Theme from the template workbook. And in future if any formatting changes need to be made I would only have to change the Theme on my template workbook.
Sounds perfect in an ideal world. The challenge I'm facing is that I am unable to apply a SAPBEX style to design items object. Since the number of cells is dynamic on an Analysis grid I want to apply the style to the Analysis grid object as the help describes it - see below.
I am not turning off the formatting check in the data provider since it shows key figures in internal format. I have key figures that are rounded to zero decimals as well as % values in my queries and want to show them without decimals and with the % sign. Turning off the formatting flag removes the Std. formatting from the query definition.
So I was hoping to keep the formatting turned on and then apply a style to the analysis grid object. Please advice if htis is possible or any workaround to achieve this.
Thanks

Hi Ravi.
You cannot apply a style to a design item. The design items are using pre-defined styles, so you will have to modify the already existing SAPBEX*-style that handles the part of the design item you want to customize. If you cannot tell which style does what, just make a change to it and run the workbook to see what you changed.
Br
Jacob

Similar Messages

  • [WPF] DataGrid: apply style to text into cell from codebehin

    Hi,
    in a dataGrid, can I apply a style to text into cell from code behind?
    I know that I can use DataTrigger, but I can't add a new property to model that it is binds with datagrid.
    With 
    DataGridRow tmpRowSelected = dgProperties.ItemContainerGenerator.ContainerFromItem(dgProperties.SelectedItem) as DataGridRow;
    I get my selecte row, I would apply TextDecorations.Strikethrough to text into the cells of this row.
    Thanks.

    You could use a helper method that finds all TextBlock elements within the DataGridRow in the visual tree and set any property (TextDecorations, Style, etc.) of these:
    DataGridRow tmpRowSelected = dgSample.ItemContainerGenerator.ContainerFromItem(dgSample.SelectedItem) as DataGridRow;
    if (tmpRowSelected != null)
    foreach (TextBlock txtBlock in FindVisualChildren<TextBlock>(tmpRowSelected))
    txtBlock.TextDecorations = TextDecorations.Strikethrough;
    private static IEnumerable<T> FindVisualChildren<T>(DependencyObject depObj) where T : DependencyObject
    if (depObj != null)
    for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
    DependencyObject child = VisualTreeHelper.GetChild(depObj, i);
    if (child != null && child is T)
    yield return (T)child;
    foreach (T childOfChild in FindVisualChildren<T>(child))
    yield return childOfChild;
    Hope that helps.
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question.

  • OBIEE 11g default pivot formatting changes

    Hi, in OBIEE 11g, there are several default pivot table formatting options that we would like to disable - I don't want end users to have to do this manually:
    #1 - All cells that are not in the "Measures" area have a default tan background applied to them
    #2 - All cells that are not in the "Measures" area have a "fade" color that gets dark near the bottom of the cells
    Does anyone know how to disable these?
    Thanks!
    Scott

    I did not get a chance to work on 11g yet, which is really not good :), but I am guessing you can do this by conditional formatting as in 10g. If you want to custom format a column/heading you can do it by formatting/conditional formatting. If you talking about the OOTB colors, then you might have to edit CSS files.
    Sorry dude..I wish I worked on 11g and know this.

  • How can I tell that a default numeric format has been applied to a numeric limit step?

    I am working on generating custom HTML code for our test systems in order to reduce the 'footprint' of the standard HTML entries for numeric limits, multiple-numeric limit steps etc....
    For a Numeric Limit step, I can set the Numeric Format via the 'Limits' tab and select the pulldown arrow to select any format.  Does TestStand actually save this information with the step so I could possibly use this later?   I ask this because my modifications are within the 'ModifyReportEntry' Callback.   When I am modifying the code to generate new HTML within this callback, I have no idea if the developer has selected a Numeric Format for a given step OR simply left it as DEFAULT.
    To make matters more confusing, here is some more information....
    When I pause the execution in the callback I notice the following:
    Case 1:  User has selected a Numeric Format ( this example I will say 3 digits of precision ) %.3f. for a numeric limit step.
    Parameters.Result.Limits.Low = 10.000
    Parameters.Result.Limits.High = 20.000
    Parameters.Result.Numeric = 15.657
    Notice the numeric data is ALREADY formatted! Great, I can simply use this to generate my custom HTML table for the numeric limit step.
    Case 2 : User has left the numeric format to <Default> for the step.
    Parameters.Result.Limits.Low = 10
    Paramters.Result.Limits.High = 20
    Parameters.Result.Numeric = 15.65713515155
    Numeric data is NOT formatted.  I know that TestStand will apply the Default Numeric Format that is configured in the report options when it writes the report but since I am doing a custom report I am stuck.
    My question is how can I possibly tell that the data has already been formatted by TestStand in the ModifyReportEntry callback?  Is there some flag that I could check or anything?
    I do notice that the Parameters.ReportEntry string contains TestStand's default HTML code for the step and this is already properly formatted.. so as a possible workaround I could 'pick out' the data from this string but this is slow and time consuming.
    Thanks
    PH

    PH,
    You can find out if the numeric format has changed using the TestStand API. I use the following statement in my step's post-expression to find out the numeric format that TestStand uses for the step.
    Step.Limits.Low.NumericFormat
    If the string returned is an empty string, then it is the default format, otherwise, it's the one specified in the string.
    Hope this helps.
    Raj
    National Instruments
    Applications Engineer

  • [svn] 3148: You can now use CSS styles to set the default text format for TextView.

    Revision: 3148
    Author: [email protected]
    Date: 2008-09-08 15:01:15 -0700 (Mon, 08 Sep 2008)
    Log Message:
    You can now use CSS styles to set the default text format for TextView. It no longer has any formatting properties. It supports the entire set of Gumbo text format styles.
    SkinnableComponent and Group now also support all these styles. However, skins such as ButtonSkin, TextInputSkin, and TextAreaSkin continue for now to specify instance styles on their TextBox, TextGraphic, and TextView, in order to give them a Gumbo look rather than a Halo look. So if you try setting, for example, the fontSize on the Application, it doesn't yet affect the text format of a Button, TextInput, TextArea, etc. unless you remove the instance style in the skin.
    Reviewer: Glenn
    Bugs: -
    QA: Lots of new stuff to test!
    Doc: No
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/component/TextArea.as
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/component/TextInput.as
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/component/TextView.as
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/core/Group.as
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/core/SkinnableComponent.as
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/graphics/TextBox.as
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/graphics/TextGraphic.as
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/graphics/graphicsClasses/TextGraphicEle ment.as

    Nevermind guys - I did it using the 'rb_on.selected' command on the "on" radio button if the .txt file variable was "on", else the "off" radio button is selected.
    Thanks for taking a look though!
    Shaun

  • Applying a shortcut to "Apply "style" then next style"

    In CS2, is there a way to apply a keyboard shortcut to the "Apply 'style name' then next style" command in the paragraph styles menu.
    thanks
    jon

    Gerald,
    I retrieved the script for CS2 which I've copied below. I changed the name of the tag to fit my book but I have a problem running it. When it gets to the line:
    if (app. selection. length> 0) {
    I get an error: undefined is not an object
    Can you offer any quick help? Thanks very much. Script below:
    / FirstAndNextStyles.jsx
    var myFirstPStyle = "X Appendix Co. Name";
    Object.prototype.isText = function()
    switch(this.constructor.name)
    case "InsertionPoint":
    case "Character":
    case "Word":
    case "TextStyleRange":
    case "Line":
    case "Paragraph":
    case "TextColumn":
    case "Text":
    case "TextFrame":
    return true;
    default :
    return false;
    if (app.selection.length > 0) {
    var myDoc = app.documents[0];
    for (oneSel = 0; oneSel < app.selection.length; oneSel++) {
    if (app.selection[oneSel].isText()) {
    // apply paragraph style to the first of selected paragraphs
    try {
    app.selection[oneSel].paragraphs[0].appliedParagraphStyle = myDoc.paragraphStyles.item (myFirstPStyle);
    catch(e){
    // apply paragraphs next style to the following paragraphs
    if (app.selection[oneSel].paragraphs.length > 1) {
    for (oneP = 1; oneP < app.selection[oneSel].paragraphs.length; oneP++)
    app.selection[oneSel].paragraphs[oneP].appliedParagraphStyle = app.selection[oneSel].paragraphs[oneP-1].appliedParagraphStyle.nextStyle;
    else if ((app.selection[oneSel].paragraphs.length == 1) && (app.selection[oneSel].paragraphs[0].insertionPoints[-1].paragraphs[0])) {
    app.selection[oneSel].paragraphs[0].insertionPoints[-1].paragraphs[0].appliedParagraphSty le = app.selection[oneSel].paragraphs[0].appliedParagraphStyle.nextStyle;

  • Applying styles to place assest from AppleScript. CS5.5

    We are running a script that based on a csv file, loads various elements from a library then imports XML.  An example of these elements might be designed to have 4 separate item records within it and each item record might contain a few text boxes and an image and each of these items have xml tags.  To better understand, think of  a supermarket circular where they might have 4 meat items in one section with a description, size, price and an image.  We've broken it into different sections and based on data coming from our database we can relate to a specific element in our indesign library and know how many items will need to be loaded in that section.  This all works fine so far and is pretty cool how it loads but we are looking to maybe pass a basic page theme which might be both object and paragraph styles so we'd like to apply these styles through our script because it is possible that different elements might get different styles in same load or even same elements might be re-used in same load and have different styles so really can't define elements with styles we'd like or associate specific xml tages with styles because might be different in each element.
    I can in Applescript apply paragraph and object styles to by either index like applying style x to paragraph 1 but would like to do it to element that we placed on page.  Here is an example of our script to maybe better understand.  Look for comments where we place our assets(elements) on page.  Looking to how we can apply style to say paragraph 1 or text frame 1 of placedAsset says can't get text frame 1 or paragraph 1 of group xxx.
    Tried variations of:
    tell application "Adobe InDesign CS5.5"
    set myDocument to active document
    set myPage to active page of active window
    set placedAsset to place asset asset "7" of library "GT.indl" on myDocument
    move placedAsset to {0.65, 0.6}
    tell myDocument
      set myStyle to paragraph style "Style1"
      set objStyle to object style "objStyle"
    --This works for just applying styles by index
      tell paragraph 1 of text frame 1
       apply paragraph style using myStyle
      end tell
      tell text frame 1
       apply object style using objStyle
      end tell
    --This gives error described above
      tell text frame 1 of placedAsset
       apply object style using objStyle
      end tell
    end tell
    end tell
    Script which runs now but is not set to apply styles yet:
    try
    set CSVstr to "Please locate your CSV file..."
    set CSV_File to (choose file with prompt CSVstr) as text
    set csvData to read file CSV_File
    set csvEntries to paragraphs of csvData
    tell application "Adobe InDesign CS5.5"
      set myDocument to active document
      tell XML view preferences
       set show attributes to false
       set show structure to true
       set show tagged frames to false
       set show tag markers to false
       set show text snippets to true
      end tell
      tell XML import preferences
       set allow transform to false
       set create link to XML to false
       set ignore unmatched incoming to true
       set ignore whitespace to true
       set import CALS tables to true
       set import style to merge import
       set import text into tables to false
       set import to selected to false
       set remove unmatched existing to false
       set repeat text elements to true
      end tell
      set myPage to active page of active window
      set AppleScript's text item delimiters to ","
      repeat with i from 1 to count csvEntries
       set csvEntry to csvEntries's item i
       set {fldElement, fldLocationX, fldLocationY} to csvEntry's text items
       --  display dialog fldElement
       set placedAsset to place asset asset fldElement of library "GTElements.indl" on myDocument
       move placedAsset to {fldLocationX, fldLocationY}
    --This is where we'd like to apply styles to placed asset contents. This placed asset will have a few text frames and at
    --least one image.  We would just pass extra fields in our csv file with names of styles to be applied
      end repeat
      set AppleScript's text item delimiters to {""}
      tell myDocument
       set XMLstr to "Please locate your XML file..."
       set XML_File to (choose file with prompt XMLstr)
       import XML from XML_File
      end tell
      tell application "Adobe InDesign CS5.5"
       set find text preferences to nothing
       set change text preferences to nothing
       set find what of find text preferences to "mykzlplx"
       set change to of change text preferences to ""
       tell active document
        change text
       end tell
       set find text preferences to nothing
       set change text preferences to nothing
       set find what of find text preferences to "Â"
       set change to of change text preferences to ""
       tell active document
        change text
       end tell
       set find text preferences to nothing
       set change text preferences to nothing
      end tell
    end tell
    end try

    It would be a lot easier to help you if you were more succint. You should practice narrowing down the problem to the smallest possible case that demonstrates it. This is a good skill for two reasons: (1) It makes it easier to find the problem yourself (2) It makes it easier for others to help you.
    I believe your problem is you are asking for the first textframe of the placed asset:
    set placedAsset to place asset asset "7" of library "GT.indl" on myDocument
    tell myDocument
    --This gives error described above
      tell text frame 1 of placedAsset
       apply object style using objStyle
      end tell
    end tell
    end tell
    At least in JavaScript, the place command returns an array of objects, without regard to type. I suspect that's true in AS as well.
    So you probably want something like "tell first item of placedAsset" rather than "text frame 1". And if you want to make sure it is a text frame, because there are other things in the placedAsset, you'll need to use a filter. ("first item of placedAsset whose constructor is textFrame" or something like that).
    Again, my applescript is really rusty, but I think that's the general idea.

  • "Always Use Selected Format" check box in line items report

    Hi Experts,
    I have an issue in ECC 6.0.
    From the transaction code FBL1N (Vendor Line Items) I am trying to export the report to spreadsheet by selecting the option  List> Export>Spreadsheet  then I have selected "Always Use Selected Format" check box.  But if I execute the same report again I am not getting this option "Always Use Selected Format". Please let me how can we retrieve that option. Is there any possibility to get that option again either functionally or technically. I would like to know all the possible ways to get this option again.
    Please do the needful.

    Hello,
    In one my thread Mr. Frank has replied as follows. I believe he has solved this.
    Hope this may be really helpful.
    The problem with the spreadsheet download is at one point, users have selected their default file type.
    That said, SAPGUI is working as it should. (gui710)
    Question though is how do we reset the values so they get the ?Select Spreadsheet Format? popup again.
    The following steps should be performed :
    - Call transaction SE38, enter program SALV_BS_ADMIN_MAINTAIN, and press F8.
    - Follow the parameters below :
    - Select ?DELETE? on the Actions Group
    - Select ?DETAILED SELECTION? on the General Data :
    - On Client - your number
    - User : <user name>
    -Hit EXECUTE.
    -Press ENTER on the POPUP
    - If there is an entry in the report that will need to be deleted. Also, make sure that the entry you will delete (for the user) has a value of GUI_ALV_XML_VER on field ?Parameter? .
    - Select the line and hit the DELETE icon .
    - Press ?Y? to continue delete. Press ENTER on the popup.
    - Then EXIT all the way out of the program.
    NOTE : When you run program SALV_BS_ADMIN_MAINTAIN, make sure they are out of any program that they are using for download.
    Re: "Always Use Selected Format" check box in line items report
    Regards,
    Ravi
    Edited by: Ravi Sankar Venna on May 15, 2009 2:31 PM

  • Shortcut to: Apply (style), Clear Overrides  ?

    Hi there,
    I'm working on a approx 100pg price list that I've set up a tables for, and the design of it has changed slightly (sigh). It looks like a basic excel spreadsheet and I have imported the text already. Basically, I'm going through and applying a cell style to various rows, not equidistant from each other -- some 3 rows apart, some 15. I need to, and have been, highlighting the row, right-clicking the particular cell style, and doing the "Apply (style), Clear Overrides" to get the desired result. So, what I was wondering, Is there ANY way to create a shortcut to do this? I know how to apply the style with a shortcut, but not the overrides option.
    Even better, if anyone knows how to select multiple rows at once and apply, that would be fantastic.
    Love this forum and thanks in advance!

    I was just thinking about that cost/benefit analysis on my way to work this morning. If it takes me a whole hour to gin up that script, then how many months before I make those hours back in time saved? My parastyles always have numpad shortcuts (e.g. Control + numpad 8), and my "Clear All Overrides" shortcut is Control + Shift + numpad Enter, so it might be a long, long time before the saved fraction of a second from using a single script instead of two keyboard shortcuts that are right next to one another adds up to the hour of Javascript fumbling.
    (Then again, if I cared that much about saving milliseconds, I wouldn't be posting this. )

  • Set Default Date Format in 4.2 jQuery Mobile Smartphone

    Hi guys,
    on "normal" Desktop interfaces you can set a default date format in the Globalization settings. Currently I'm working on a JQM app, and I noticed, that the same settings I have for date format in other apps, don't take affect.
    I now read in the 4.2 release notes, that somehow this issue was a bit buggy. Is this fixed? I would like to set a german date format like "DD.MM.YYYY"; (as it's working in desktop apps). How can I do it? In global settings this entry gets saved.
    But whenever I want to set an individual date-picker-item to that format, it changes back to "YYYY-MM-DD" after saving. And I don't really want to get into writing a conversion function in the dml-processing now.
    Thanks for any hints, best regards,
    tobi

    Hi Tobi,
    the "Date Picker (HTML5)" item type maps to the HTML5 input type="date", which requires that the internal format of the date value always has to be YYYY-MM-DD, but it's up to the browser to actually display the date in the format of the local operating system setting. The browser of iOS for example shows the date in the format of my local language/country setting.
    See also http://stackoverflow.com/questions/7372038/is-there-any-way-to-change-input-type-date-format
    To make a long story short, it's not possible to specify the display format for those date pickers, because it's not supported by the HTML5 spec.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • How to set default export format in CrystalReports Viewer

    When Viewing Crystal Reports in InfoView, the top left button can choose export file format, how to set it default to Excel?

    Hi Jennie Xiang,
    You can set the default export format in Crystal designer before publishing in infoview.
    Open the report in Crystal designer and go to file>export>export options--> select the export option to xls and check the options that you want and click on OK.
    Now try exporting the report by clicking on export button then you can see the first option as xls with all format options that you have selected before by default.
    By saving this report at server (infoview) you can get the same options while exporting from viewer.
    Regards,
    Ragahvendra

  • GREP help "apply style before the ' – ' and add return"

    Hi,
    I'm a newbie to GREP and not good at code so I need some help.
    I think if I new the code to say " apply Heading Paragraph style to text before the ' – ' and add return.
    Then it would work.
    I'm OK with looping nested paragraph styles.
    This is what I have currently got:
    Nerang Community Respite Centre – 5578 1668
    Provides a podiatry service.
    www.nerangrespite.org.au
    Ozcare Allied Health Program – 5569 6200 / Fax 5578 1331 
    Physiotherapy, occupational therapy, speech pathology, podiatry, dietetics and social work.
    www.ozcare.org.au
    And this is how I need it formatted with styles applied
    Nerang Community Respite Centre (Heading Paragraph Style)
    5578 1668 (Phone Paragraph Style)
    Provides a podiatry service. (Descrip Paragraph Style)
    www.nerangrespite.org.au (URL Paragraph Style)
    Ozcare Allied Health Program (Heading Paragraph Sty
    5569 6200 / Fax 5578 1331  (Phone Paragraph Style)
    Physiotherapy, occupational therapy, speech pathology, podiatry, dietetics and social work. (Descrip Paragraph Style)
    www.ozcare.org.au (URL Paragraph Style)

    Thanks for the help so far. It's working but I still to iron some things out.
    Replacing the em dash with a paragraph space or return is straight forward. But getting the styles applied while doing that is not working.
    Also I want to split the phone and fax separated by the '/" onto separate lines.
    1. Not all the entries are the same see below example.
    This is what I have currently got
    ^p = paragraph
    Nerang Community Respite Centre – 5578 1668^p
    Provides a podiatry service.^p
    www.nerangrespite.org.au^p
    ^p
    Ozcare Allied Health Program – 5569 6200 / Fax 5578 1331^p
    Physiotherapy, occupational therapy, speech pathology, podiatry, dietetics and social work.
    www.ozcare.org.au^p
    Volunteering Gold Coast – 5591 8388^p
    Cerebral Palsy League of Queensland – 5532 2088 / Fax 5591 7725^p
    Provides community access to people with Cerebral Palsy and related disabilities.^p
    And this is how I need it formatted with styles applied
    Nerang Community Respite Centre (Heading Paragraph Style)
    5578 1668 (Phone Paragraph Style)
    Provides a podiatry service. (Descrip Paragraph Style)
    www.nerangrespite.org.au (URL Paragraph Style)
    Ozcare Allied Health Program (Heading Paragraph Style)
    5569 6200 (Phone Paragraph Style)
    Fax 5578 1331  (Fax Paragraph Style)
    Physiotherapy, occupational therapy, speech pathology, podiatry, dietetics and social work. (Descrip Paragraph Style)
    www.ozcare.org.au (URL Paragraph Style)
    Volunteering Gold Coast (Heading Paragraph Style)
    5591 8388 (Phone Paragraph Style)
    Cerebral Palsy League of Queensland
    5532 2088 (Phone Paragraph Style)
    Fax 5591 7725 (Fax Paragraph Style)
    Provides community access to people with Cerebral Palsy and related disabilities. (Descrip Paragraph Style)

  • Permanent workbook formatting with Excel

    Hello community,
    I am trying to format my workbooks in Excel (mainly text alignment within cells and merging multiple cells into one cell, simple stuff), but the formatting does not stick. The next time I open my workbook, the formatting is gone. How can I make the formatting permanent?
    Thanks,
    Alfred

    Hi,
    Go to workbook's Analysis mode click on the table-> Uncheck the checkbox 'Apply Formatting'->Save and apply Ur formatting and check the workbook.
    Hope this helps...
    Rgs,
    Ravikanth

  • Default paragraph format in SMART FORMS

    Hi all!
    Can we mention  default paragraph format for SMART FORMS? How can we do that?
    Please suggest.

    Goto FORM attributes of your smartform and insert your smart style in output options tab.. before inserting your smartstyle you should create a smart style and create a paragraph format in your smartstyle in header data of smartstyle it ask for standard paragraph(i.e default paragraph)...
    Close rge thread once your question is answered.
    Regards,
    SaiRam

  • How to Set default Workbook as .XLS for Bex 7.0

    Dear Experts,
    I have a customised default workbook set for Bex 7.0. The Extention of this Workbook is .XLSM
    Currently it is not accessible using Excel 2003 due to format issue.
    1)Kindly let me know what should be done so that I can open this Workbook in Excel 2003.
    2) Suggest a way to set the default extension for Bex 7.0  "Custom" workbook (Not SAP standard, the option is available in Global settings-->Default workbook) to .XLS.
    Thank you,
    Nandita

    Dear Nandita,
    The only correction for this situation is documented on these two notes below:
    1339061 - BExAnalyzer: opening XL 2007 files in XL 2003 not possible
    1267924 - BExAnalyzer: Use XLS as File Format when using Excel 2007
       With Frontend Patch 800 a new property "Use XLS File Format" in "Global
       Settings" dialog is available when using BExAnalyzer with Excel 2007 and
       the SAP Default Workbook is being used.
    So, everytime when you created a new workbook, check the flag of "Use XLS File Format" checkbox and save the workbook.
    Then you will be able to open with Excel 2003.
    Best Regards,
    Edward John

Maybe you are looking for

  • ITunes 10.6 Install on Windows 7 problem

    Hi I try to install ITunes 10.6(the newest from apple itunes website) on my laptop. the install stuck on "Publishing product information" and after couple of minutes i get this error: An error occurred during the installation of assembly 'Microsoft.V

  • BO 4.1 SP04 Installation on Linux - Changing CMS Database to HANA

    Hi All, Greetings!! We are planning to install BO 4.1 SP04 on SUSE Linux 11.0 SP03. And we are going to fetch data directly from ECC (HANA Database), so no BW in place. During BO installaiton we will go with the default database Sybase SQL Anywhere f

  • Code error for several graphs

    Hi, for several graphs visualize this error: Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119

  • ESS/MSS 1.31 version for download

    Hi where can I find the downloads for the version ess/mss 1.3,HR admin 1.1,talent developement,simplified reporting etc.. for NW2004s? Thanks KK

  • Jar file and gif file

    why jar file cant load the .gif file? is it need to specify the directory for the .gif file in jar? when i run my applet, that can't load the picture, what is the problem? below is my code: public static final ImageIcon ICON_FOLDER =new ImageIcon("fo