BO 4.1 SP3 WebI section space Issue - Work around

System:
SAP BO 4.1 SP3 Update
Windows 2008 R2 Std x64 Edition SP1
Universe - Single Source UNX
We upgraded from SP2 to SP3 recently and while working on the WebI report, I noticed that WebI reports with Section creates big spaces between sections and the table block. There is a setting to adjust the Top header vs actual section header space using Format Section. But in the View Mode, there will be lot of space between table blocks due to the Section boundary.
So, I read web articles and tried couple of options but in vain. But the following work around helped me to overcome this issue !!
I tried to create it from a new 'Add report' in the same WebI report, so that I can reuse my earlier tables/cross tabs etc.
1. At the bottom of the WebI report Right click the tab -> Add report -> In the new sheet go to Report Elements -> Section -> Insert Section and select the object from the UNX.
2. A new section is created.
3. Now check whether you can adjust the section size manually. If yes, then copy the Header content / table blocks from the problematic tab to this new tab;
4. You can use the newly created section report for other problematic report tabs.
The above steps are work around ONLY.
For me it looks like a SAP Product bug. If anyone else had similar issue please post your comments !!
Thanks,
Chithresh

Are you also having issues with merged dimensions that are used on the sections?
I've had to unmerge, merge, and create the section again. It throws an error if I don't do that.

Similar Messages

  • [Oracle Web Service Manager] Issues working with gateway

    Hello,
    Whenever we create a gateway which have a component id other then "C0003001" then we have to create its entry in "gateway-config-installer" and restart soa suite, Why its like that? Ofcourse we can not restart the soa suite on production.
    Moreover, we created a second gateway, it was assinged with id "C0003003" (first one was having if "C0003002") , also we created its entry in "gateway-config-installer" and restarted soa suite, then it was observed that services with gateway C0003003 are working but services with gateway idC0003002 have stopped working. Does this means that only one gateway can be active at a given time?
    Also on some developer machines, service urls provided by the gateway are not working (Page not found error occurs). What can be the possible reasons?

    Hai munir,
    I have some doubt on registering with the gateway and an registering the webservice. I think you have done the same.
    I specify my hostname and ports. I am working on Oracle SOA 10.1.3.3.0.
    Hostname: http://DWH-34316-K2.wipro.com or (10.118.70.181) Port: 7777
    Component Name: - user defined gateway name or what?
    Component type : - gateway
    Component URL : I have doubt on giving this In my case If I give like this is it correct. http://DWH-34316-K2.wipro.com:7777/gateway
    After this we will be registering a webservice.
    In that it will be asking the following details.
    service name : CallHelloWorld (In my case)
    service version: 1.0
    service description : user defined.
    WSDL URL : --> Here how we must want to give. I have given the wsdl taken from the Enterprise manager console. I have taken it while we test the web service we will find the service decription and I clicked it and taken that it is working one.
    http://dwh-34316-k2.wipro.com:7777/orabpel/default/CallHelloWorld/1.0?WSDL
    After I all this and click Next and It will go to the Http messenger page and in this page in URL column the same WSDL url given is auto populated and save and commit this.
    When I go to test page and paste the URL got from the Service WSDL Url and give submit query it is displaying the following error message.
    Failed to read WSDL from http://dwh-34316-k2.wipro.com:7777/gateway/services/SID0003017?wsdl:WSDL not found
    Please specify any other changes do I need make some changes in the server otherthan changing the Id in the gateway-config-installer.properties
    Can you help on this please. It is somewhat urgent.
    Regards,
    Mahes.

  • Web Comment Space Has Been Cut TOO LOW

    In Lightroom 2 I lost the ability to make comments at the top of the web page...someone decided to cut its length arbitrarily... to a very short commenting space. It used to be quite large...now it is restrictlvely small.
    Please let the user decide how many words to add...take away the artificial boundaries in the Web Creation Space.
    Thanks
    Suzzie

    yaoifix a écrit :
    You mean the font is too large? It's the same size I always use, so I don't think that's the issue. :/
    Yes, to me, the size of the font of your header is too large. Besides it is the same as the title of your chapter, and the latter is too small.
    I don't use Lulu templates because my wordprocessor is WordPerfect, not MS-Word. With WP it is very simple to create one's own formats (paper size, margins, etc.). From there WP automatically determines the right  position for the headers and the footers. If you don't like them you can always modify them. Can't you do the same with your own wordprocessor?

  • Castor beans white space issue...

    So I have this code that mmimmicks my java objects for some classes I have that was built based off of a schema using castor. This code exports some data from a database to a .xml file just beautifully, but importing it (Reading back in the straight up xml) is another story...
    imagine I have a xml file that contains some members that act as names for their java object brothers:
    <xmlWasJavaObjectHere>
    <xmlSimpleName>AIRBORNE/STATIC LINE</xmlSimpleName>
    </xmlWasJavaObjectHere>
    now imagine the xml file repeating a ton of such objects(after all it was exported from a database that was essentially an array of such objects). So we have:
    ...some other object names here...
    <xmlWasJavaObjectHere>
    <xmlSimpleName>AIRBORNE/STATIC LINE</xmlSimpleName>
    </xmlWasJavaObjectHere>
    <xmlWasJavaObjectHere>
    <xmlSimpleName>AIRBORNE/STATIC LINE</xmlSimpleName>
    </xmlWasJavaObjectHere>
    <xmlWasJavaObjectHere>
    <xmlSimpleName>AIRBORNE/STATIC LINE</xmlSimpleName>
    </xmlWasJavaObjectHere>
    <xmlWasJavaObjectHere>
    <xmlSimpleName>AIRBORNE/STATIC LINE</xmlSimpleName>
    </xmlWasJavaObjectHere>
    ...some more objects here with different names.
    So now this exports just like this, just fine. The problem is when I read back in the data using the castor bean unmarshaller, it reads into the member as such:
    myXMLObj.getSimpleName(); returns
    AIRBORNE/STATIC LINE
    AIRBORNE/STATIC LINE
    AIRBORNE/STATIC LINE
    AIRBORNE/STATICLINE
    AIRBORNE/STATICLINE
    AIRBORNE/STATICLINE
    So it returns it right for the first few instanceus of it from the xml then it misses a white space(obviously this breaks importing this back into the database.) I am no xml/java/castor guru but I cannot figure out why it decides to loose white space (id say it does this randomly, but it starts doing it on the same index (item count whatever) every single time. And its the same name,does anyone have any ideas? Im pulling my hair out. Perhaps my naming scheme in the xsd was big depature from what it should of been. (Cause i had other issues working with XMLBeans and web services on naming some complexTypes (or was it elements?) with a upper case, when it should be lower case (and the name was getting mangaled).
    oh well thats all I have im totally out of ideasm, so perhaps people have seen this before and confirm its some wierd quirk of using castor beans to load in xml data back to our objects (and i Did double check, the white space is missing in the actual xml object hta tis populated with an unmarshall.), any help will be appreciated. Thanks,
    Shane
    thanks in advance,
    Shane

    Hm, well 2 possible ideas:
    1. There is a line of code in the middle of your tabbed panels that shouldn't be there.  It reads at follows
    <!-- BEGIN: Constant Contact Bubble Opt-in Email List Form --> <div align="center"></div>
    <!-- END: SafeSubscribe -->
    2. In this code, do you need the clear:both?
    <div style="clear:both; font-size: 18px; color: #0055A6; font-weight: bold;">
                       <blockquote>
                         <p>Follow Us:

  • A different take on the "Save For Web" color shift issue...

    Ok, everyone who has fussed much with photoshop and "Save For Web" knows about the color shift issue. If you want your colors to look right after you "save for web", you have to work in the sRGB colorspace, and have Proof Colors checked (soft proofing on) and the proof color setup set to Monitor RGB, otherwise what you get looks terrible when displayed in a browser.
    But of course if you are editing for print, this is exactly what you DON'T want to do. Well, I work in both. In fact, often the same images, and I want them to appear as close as reasonably possible in both print and web formats, and without a lot of fussing on my part. And I'm pickiest about the print mode, since I have the most control there, so that's the way I want to edit by default.
    Nothing new here.
    Now comes the interesting part (in my mind, anyway). Obviously there is a known remapping -- because PhotoShop DOES it when you select Proof Colors. So the inverse mapping must also be known (with some gamut issues, but I'm not concerned with those, because, after all, I'm VIEWING it on a monitor anyway!). What I want is a plug-in that automatically applies that inverse mapping so that, when I do a Save For Web, I end up with the colors I've been viewing all the time when setting the shot up in print mode. Then, too, I don't have to worry about what mode I'm in when I'm editing -- it just fixes it when doing a save-for-web.
    Again, I want to edit in my normal print mode (typically ProPhoto colorspace, and with soft-proofing off or set to the printer/medium combination I expect to use), then do a single operation (might be a multi-step action) to "screw up" my colors so that when I then do a "Save-For-Web", the resulting image, when viewed on the average color-stupid browser, looks like the image I've been seeing in Photoshop.
    Anyone know of such a beast?   I would gladly pay for a plug-in that really works and fixes the problem.
    And if you have other solutions, I'm interested, but the absolute requirement is that it I do one single edit pass for my colors for both print and web use, and I get what I see on the screen in PS on both the prints and on the web display (i.e., working in sRGB/Monitor RGB mode all the time won't cut it). And PREFERABLY, let me do all my editing work in the ProPhoto (or at least AdobeRGB) colorspace so I have a gamut closer to what the printer can do.
    Anyone got a decent solution for this?

    Sorry, I think I'm being unclear.  This has nothing to do with individual monitor profiles.  In Proof Setup, "Monitor RGB" amounts to turning off ALL color management, and simply letting the monitor do what it will.  It is what the vast majority of web browsers do (even if the operating system provides color management, the browsers don't take advantage of it), so that is what you need to consider for images that will be viewed on a web browser.  If you convert your image to sRGB,  select Monitor RGB in Proof Set up, and turn on Proof Colors, you will see the image as it would appear on a web browser (after you save it as a jpg or use "Save For Web/Devices" to save it as a jpg).   Since almost everyone is running different uncalibrated monitors, there will be lots of variation in how it will look to them, so precise control of the color is unimportant.
    That said, I would expect the color on a calibrated monitor (such as the one I use when editing) to be reasonably close to the colors I am seeing while editing in PS.  To the extent a monitor deviates from "calibrated", those colors will vary, but a good monitor should show good colors.   Unfortunately, this is NOT the case, as my previous post shows.  The colors produced by the steps above are oversaturated and significantly shifted in hue.  There is, to my mind, anyway, no reason for this.  Adobe clearly knows what the mapping is between the colors as it displays them in PS and the un-controlled "Monitor RGB" -- that is, it is the color map they are using during normal editing display.  If they were to reverse-apply that map prior to saving it as a jpg, then the image would appear on a browser on that same (presumably calibrated) monitor very similar to what you set up when editing.  Anyone else viewing the image on a web browser with a calibrated monitor would also see good colors.  To the extent other viewers' monitors are out of calibration, their colors will suck, but there's nothing you can do about that.
    I guess in some sense I AM "asking for a Color-Mamangement-solution for a "non-Color-Management-situation", but specifically I'm asking for PS Color Management to do the best it can for non-Color-Managed situations that we all face every day.
    Does that make more sense?

  • Looking for a better solution to the "Save for web" color shift issue

    Ok, everyone who has fussed much with photoshop and "Save For Web" knows about the color shift issue. If you want your colors to look right after you "save for web", you have to work in the sRGB colorspace, and have Proof Colors checked (soft proofing on) and the proof color setup set to Monitor RGB, otherwise what you get looks terrible when displayed in a browser.
    But of course if you are editing for print, this is exactly what you DON'T want to do. Well, I work in both. In fact, often the same images, and I want them to appear as close as reasonably possible in both print and web formats, and without a lot of fussing on my part. And I'm pickiest about the print mode, since I have the most control there, so that's the way I want to edit by default.
    Nothing new here.
    Now comes the interesting part (in my mind, anyway). Obviously there is a known remapping -- because PhotoShop DOES it when you select Proof Colors. So the inverse mapping must also be known (with some gamut issues, but I'm not concerned with those, because, after all, I'm VIEWING it on a monitor anyway!). What I want is a plug-in that automatically applies that inverse mapping so that, when I do a Save For Web, I end up with the colors I've been viewing all the time when setting the shot up in print mode. Then, too, I don't have to worry about what mode I'm in when I'm editing -- it just fixes it when doing a save-for-web.
    Again, I want to edit in my normal print mode (typically ProPhoto colorspace, and with soft-proofing off or set to the printer/medium combination I expect to use), then do a single operation (might be a multi-step action) to "screw up" my colors so that when I then do a "Save-For-Web", the resulting image, when viewed on the average color-stupid browser, looks like the image I've been seeing in Photoshop.
    Anyone know of such a beast?   I would gladly pay for a plug-in that really works and fixes the problem.
    And if you have other solutions, I'm interested, but the absolute requirement is that it I do one single edit pass for my colors for both print and web use, and I get what I see on the screen in PS on both the prints and on the web display (i.e., working in sRGB/Monitor RGB mode all the time won't cut it). And PREFERABLY, let me do all my editing work in the ProPhoto (or at least AdobeRGB) colorspace so I have a gamut closer to what the printer can do.
    Anyone got a decent solution for this?

    Chris
    I spent all day Googling and doing side by side comparisons of my old and new systems.
    My display is a Dell U2410. It has several presets, including sRGB and Adobe RGB. I've been using sRGB.
    On my OLD system, (Win XP, PsCS2, DwCS4) there seems to be no distinction between color managed and non color managed apps, even on this wide gamut display. I could capture (digital camera) in Adobe RGB, open and edit in PsCS2, save as .psd, convert to CMYK for print, or convert to sRGB for SFW. All images looked identical and they printed and displayed perfectly. I thought this was normal, and seemed logical. This also seems to be the source of my incorrect assumptions. I was trying to get my new machine to behave like my old one.
    So I get this new machine (Windows 7, PsCS5, DwCS5) and now (still in sRGB display mode) all color managed apps appear de-saturated. Non color managed apps are OK. If I switch the display to Adobe RGB, color managed apps are OK, but non color managed apps are way too saturated. From my investigation, I believe this is normal behavior on a wide gamut display. I've tried changing the Control Panel > Display > Screen Resolution > Advanced settings > Color Management options, but to no avail. Either I'm missing something, or Windows 7 is doing color management differently.
    It seems my only option now is to use Adobe RGB display setting for Ps, etc. and switch to sRGB for Dw and non color managed apps. Or, have 2 separate files for print and web. I've Googled 'til my eyes are numb and still not sure I'm getting this. Any enlightenment would be greatly appreciated.
    Finally, I don't see an edit function here, so I can't remove my previous incorrect reply. Moderator, please feel free to do so.
    Thanks

  • Error while deploying application in Web center Spaces via ant script

    Hi all,
    Jdeveloper version 11.1.1.6
    I am trying to deploy application in Web center Spaces using ant script .
    I am able to deploy it if i keep these two files in local machine .
    wls.userkey=C:\\myFiles\\myuserkeyfile.secure
    wls.userconfig=C:\\myFiles\\myuserconfigfile.secure
    where as when I am trying to pick these files from remote web-logic server I am getting following error
    [exec]  Deploy started at Thu Dec 12 17:26:41 2013
    [exec]
    [exec] Please enter your username :Please enter your password :
    [exec] java.lang.NullPointerException
    [exec] This Exception occurred at Thu Dec 12 17:26:41 GMT+05:30 2013.
    [exec] at weblogic.management.scripting.WLSTHelper.connect(WLSTHelper.java:176)
    [exec] at weblogic.management.scripting.WLScriptContext.connect(WLScriptContext.java:61)
    [exec] at weblogic.management.scripting.utils.WLSTUtil.initializeOnlineWLST(WLSTUtil.java:147)
    [exec] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [exec] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [exec] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [exec] at java.lang.reflect.Method.invoke(Method.java:597)
    [exec] at org.python.core.PyReflectedFunction.__call__(Unknown Source)
    [exec] at org.python.core.PyMethod.__call__(Unknown Source)
    [exec] at org.python.core.PyObject.__call__(Unknown Source)
    [exec] at org.python.core.PyObject.invoke(Unknown Source)
    [exec] at org.python.pycode._pyx4.connect$1(<iostream>:16)
    [exec] at org.python.pycode._pyx4.call_function(<iostream>)
    [exec] at org.python.core.PyTableCode.call(Unknown Source)
    [exec] at org.python.core.PyTableCode.call(Unknown Source)
    [exec] at org.python.core.PyFunction.__call__(Unknown Source)
    [exec] at org.python.pycode._pyx72.f$0(C:\Abhishek_Mr.Price\SampleWebCenterSpacesExtensions\SampleWebCenterSpacesExtensions\WebCenterSpacesSharedLibExtension\extspaces.py:14)
         [exec] at org.python.pycode._pyx72.call_function(C:\Abhishek_Mr.Price\SampleWebCenterSpacesExtensions\SampleWebCenterSpacesExtensions\WebCenterSpacesSharedLibExtension\extspaces.py)
    [exec] at org.python.core.PyTableCode.call(Unknown Source)
    [exec] at org.python.core.PyCode.call(Unknown Source)
    [exec] at org.python.core.Py.runCode(Unknown Source)
    [exec] at org.python.util.PythonInterpreter.execfile(Unknown Source)
    [exec] at weblogic.management.scripting.WLST.main(WLST.java:124)
         [exec] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [exec] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [exec] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [exec] at java.lang.reflect.Method.invoke(Method.java:597)
    [exec] at weblogic.WLST.main(WLST.java:29)
    [exec] None
    [exec] #########################################################
    [exec] #####     Deployment Failed #########
    [exec] #####     Contact support with Exception Stack #########
    [exec] #########################################################
    [exec]
    [exec]
    Chandana

    Any Updates

  • Regarding space issue

    There is an space issue in datatop.Could you please help me out in deleting any logs and unnecessary data in that location.As the mount which own datatop is completely filled.

    Hi,
    Do you have any archivelog files on this disk? If so, consider moving/deleting obsolete files. For datafiles/tablespaces, if it is possible to shrink it, please do so. Otherwise, you need to move it to some other disk.
    Also, if AUTOEXTEND is enabled, you need to disable it (at least for now) until you have more space on this disk.
    You may also refer to the following document, it should be helpful.
    Note: 274666.1 - Cleaning An 11i Apps Instance Of Redundant Files
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=274666.1
    Regards,
    Hussein

  • Cant open web pages when connected to the internet via Telstra's Pre Paid WiFi has anyone else had the same issues works fine with BigPond WiFi

    Cant open web pages when connected to the internet via Telstra's Pre Paid WiFi (this connection is working on other devices) has anyone else had the same issues, works fine with BigPond Wifi

    and now, when i tried to check again my network preference below the airport tab is showing a message that
    "my airport does not have an IP address and cannot connect to the internet!"
    then after seconds it will goes back to the first message that
    "airport has the self assigned IP address etc....."
    i don't know whats going on now!
    airport tab is not showing green color anyway! i'ts always in yellow!
    i tried turning it on and off but nothing happen! HEEELLLLPP!!!!

  • Query as a web service Sorting issue

    Hi All,
    We have designed an existing BI query as a web service but it seems to be ignoring the Sort order of different characteristics used (as defined in Bex Query Designer).
    Using the Context menu in QAAS and defining/managing the Sort is not working.
    Has anyone experienced such an issue and how to handle this?
    Thanks and Regards,
    Bansi

    Hi All,
    You can try this solution. It has something to do with the universe parameter, END_SQL.
    I implemented this as a work around and it solved our problem about the sorting issue with QAAWS.
    Here are the steps:
    1: Open the universe
    2. Ope File,  then Universe Parameter
    3. Click the parameter tab
    4. Scroll down until you see the 'END_SQL' entry. This entry is blank by default.
    5. Select END_SQL
    6. On the VALUE box, type: ORDER BY 1
    7. This will enable the REPLACE button. Click REPLACE
    8. Save the universe
    9 Test a query using 2 columns and view the SQL.
    You should see now the ORDER BY 1 inferred in the SQL statement.
    Voila!!!!
    Of course you can always add ORDER By 1,2,3 later if there's a need.
    Enjoy.....
    Ferdinand

  • 11g 11.1.1.4.0 premgen space issue

    I had 11.1.1.3.0 installled in XP-2.8 GHZ (core 2) 3GB machine and it was running fine with
    -Xms512m -Xmx1024m PermSize=128m -XX:MaxPermSize=512m
    Then I have installed 11.1.1.4.0 and statred getting 'could not allocate heap memory to JVM' so I have chnaged the setting to
    -Xms512m -Xmx768m PermSize=128m -XX:MaxPermSize=512m
    Then I got 'premgen-space' issue repetedly so change to
    -Xms512m -Xmx768m PermSize=512m -XX:MaxPermSize=512m
    or -Xms512m -Xmx768m PermSize=256m -XX:MaxPermSize=512m
    But still I am getting this premgen-space issue after every 10-15 minutes hence unable to work.
    Guru's pleas suggest for best JVM memory setting.
    Thanks,
    Biltu

    When configuring PermGenSpace you must be aware that this is taken from the HeapSize (physical RAM does not count). Things get difficult if the PermGenSpace equals the MaxheapSize. A good setting is -Xmx2048m -XX:MaxPermSize=512m.
    Since you run the Sun JDK, you could give jvisualvm a try. My tip is to get the plugins and use the VisualGC one to monitor the memory.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • IdM DB Space Issue

    Hi Experts,
        We are facing IdM DB space issue in our PRD environment. Upon observing, it was found that the below tables are taking much space in IdM DB. Could anyone tell me what impact will my PRD system have if I truncate the below tables to free space. Please do help us out in this , if this problem is not solved, this will become the show stopper.
    mc_exec_stat
    MC_LOGS
    MC_SYSLOG
    mxi_entry
    mxi_link_audit
    mxi_link
    MXI_OLD_VALUES
    MXI_VALUES
    MXP_AUDIT
    MXP_Audit_Variables
    MXP_Ext_Audit
    Kind Regards,
    Mohamed Fazil

    I don't know what you mean with too much diskspace? Perhaps you can post the sizes here and the number of entries in your system so we can evaluate if it's normal or not.
    Most of the tables you list should not be touched and if you truncate link and entry you will delete all your assignments and entry data, and you would possibly be looking for a new job the next day.
    The log tables should be maintained by the housekeeping as mentioned, but
    mc_exec_stat
    MC_LOGS
    MC_SYSLOG
    can be cleaned but neither should have that much data, but large amounts of transactions cause logs to grow. Have you checked that your backup is cleaning the transaction logs? Also reduce loglevels to ERROR to reduce the amount logged here.
    MXP_Audit_Variables should not contain audits that are not in the provisioning queue, if you delete those workflows will fail.
    MXP_Ext_Audit can probably be cleaned without affecting operations (reports might be affected though) but you'll loose the detailed execution history on the entries, perhaps you can do partials, delete entries older than 3 years or similar.
    For future reference:
    List transaction log sizes (SQL Server):
    DBCC SQLPERF(LOGSPACE)
    List table siszes (SQL Server):
    DECLARE @SpaceUsed TABLE( TableName VARCHAR(100)
          ,No_Of_Rows BIGINT
          ,ReservedSpace VARCHAR(15)
          ,DataSpace VARCHAR(15)
          ,Index_Size VARCHAR(15)
          ,UnUsed_Space VARCHAR(15)
    DECLARE @str VARCHAR(500)
    SET @str =  'exec sp_spaceused ''?'''
    INSERT INTO @SpaceUsed EXEC sp_msforeachtable @command1=@str
    SELECT * FROM @SpaceUsed order by CAST(REPLACE(ReservedSpace,' KB','') as INT) desc
    Oracle undo, user and redofiles:
    select * from dba_data_files where tablespace_name LIKE 'UNDOTB%1' OR  tablespace_name LIKE 'USERS%'; 
    select l.group#,f.member,l.archived,l.bytes/1078576 bytes,l.status,f.type
    from v$log l, v$logfile f
    where l.group# = f.group#
    C
    Message was edited by: Per Krabsetsve

  • Spaces Issues

    I was reading through the posts tonight looking for a hopeful solution to my answer, but it's not happening! I use spaces ALL the time. Yes, I have the Microsoft word annoyance, but I've learned that when you have all spaces on the screen at the same time, you can drag from one space to another. Took a long time to learn that one! Anyway, tonight I was using itunes and spaces stopped working. I have mine set up that when I hit the center button on my mouse, all the windows appear on the screen. Using itunes however, it wasn't happening. I'm not sure if it's an itunes or spaces issue, but since I opened itunes, my center button to activate spaces no longer works, but the key commands do. I need it to work with my mouse again. Any suggestions would be greatly appreciated! Thank you!
    Oh, by the way. I have since quit itunes and the center button to activate spaces still does not work!

    It is the one thing in Leopard that is going to cause me to lose my mind. I tried Spaces but really do not find that it is helpful to me. Thus, I turned it off. Now when I work in with multiple apps (let's say Mail and Firefox) an app window - let's say Mail - will suddenly disappear and no amount of clicking or restarting the app will bring it back The only thing I can do is turn Spaces back on and - VOILA- the Mail window re-appears. This is incredibly annoying. It is forcing me to keep Spaces on even though I hate it.

  • Publishing Webi Section in Dashboards 4.0

    Hi Guys,
    Is it possible to publish a Webi report Section into Dashboards 4.0. If not, is there a work around it?

    Hi Jeewan,
    When you say "Webi Section", what are you referring to?
    We can publish a webi block using BI web services.
    Select the webi block -> Publish as a web Service.
    Go to web Service Publisher -> Copy the WSDL.
    Import the WSDL in Dashboards Data Manager -> Web Service Query (Query As A web Service) -> WSDL.
    Let me know if this helps.
    Thanks,
    Neha

  • EP 6.0 SP3/Web AS 6.40 JAVA:

    I want to install the Portal Platform EP 6.0 SP3.
    After installing Web AS 6.40 JAVA SP3, can we directly upgrade to the highest SP level?
    The install guide for the EP 6.0 on Web AS 6.40 mentions the following sequence:
    Web AS 6.40 JAVA SP3 -> Web AS 6.40 JAVA SP4 -> EP 6.0 SP3 -> Web AS SP9 -> EP 6.0 SP9
    The link from the SDN:
    Install SAP EP 6.0 on Web AS 6.40
    mentions the following sequence:
    Web AS 6.40 JAVA SP3 -> Patch Web AS 6.40 JAVA to latest SP -> EP 6.0 SP3 -> Patch EP 6.0 to latest SP
    My platform: Solaris 9, 64-bit mode, Oracle 9.2.0.5
    Any thoughts?
    Kind Regards,
    Phani.

    Nick,
          I understand the part that Web AS 6.40 SP09 comes with SR1. I would like to know the recommendations for existing systems that already have a Web AS 6.40 SP3 installed.
    Phani.

Maybe you are looking for

  • Itunes for windows 7 won't load?? Please Help

    I've tried loading iTunes after restarts and re-installations but for some reason it won't load. I've never had this problem before and can't seem to solve it. Any help would be much appreciated Thanks Trickster

  • BW - AP Aging Report

    Hello BW Experts, Could someone guide me through the development of an AP Aging report in releation to Base Date, Due Date, Net Due Date and how to derive the aging.  I am considering the use of FIAP Line Item (0FIAP_C03) cube. Thanks

  • 0IC_C03  -- not updating 0MATERIAL

    Hi there, just followed instructions on loading 0IC_C03 from: - blog "Loading to the Inventory Cube 0IC_C03" [/people/akshay.chonkar2/blog/2010/05/19/loading-to-the-inventory-cube-0icc03|/people/akshay.chonkar2/blog/2010/05/19/loading-to-the-inventor

  • DW CS6 won't open CSS files

    When trying to open any css file in DWCS6, I get "Unexpected file format" If I try to preview a page that has a CSS file attached to it, I get "Attempted to access a file past its end". Was working fine yesterday. I'm fully updated (according to file

  • Burning blu-ray discs

    Here at the office we're running all macs with Final Cut Studio 2. We want to be able to encode for blu-ray and also burn blu-ray discs. I know we need an external burner, but does our current software support blu-ray?