VML Support

XML Publisher 5.6.2 does't support VML yet(?)
I have some reports with VML components. I'd like to use XML Publisher to transform/export such reports to PDF. What are my options?

Sorry for not knowing what VML is - there are two many 3 letter acronyms...
I checked with our development guru. We do not support VML yet - and again you
are the first one who asked for it.
We do, however, support SVG - which may be an acceptable replacement for you.
Klaus

Similar Messages

  • How to use VML(Vector Markup Language) in swing Components

    hi .
    i have an xml file that contain VML .
    how can i load VML into jEditorPane .
    Or
    does swing Component such as jEditorPane supports VML .
    thanks

    hi,
    wondering if you got your answer to VML support in SWING?
    thanks

  • Error when using VML functions of Intel MKL v9.0 with LabVIEW 8.2.1

    Hi,
    I have created a DLL in Visual Studio 2005 which uses functions from the Intel Math Kernel Library (MKL) v9.0. The DLL works perfectly when I run it in VS 2005, but when I use it in the LabVIEW environment, I receive the error 1097 [An exception occurred within the external code called by a Call Library Function Node.].
    It seems that the VML function vdPowX(), which raises each element of a vector
    to the constant power, creates an access violation reading at location 0x00000000.
    Unhandled exception at 0x0652d545 (OptimisationDLL_Intel.dll) in LabVIEW.exe: 0xC0000005: Access violation reading location 0x00000000.
    When I trace it with VS2005, it seems to read at 0x00 when they check for the mode of the function (HA or LA) to see if the function will uses High Accuracy or Low Accuracy. You can reproduce the bug by simply trying to read the Mode with the Intel Function vmlGetMode().
    I'm not sure why I only get the crash in LabVIEW and not in VS2005. The other function from the MKL that I use, daSum(), works correctly in VS2005 and LabVIEW. It doesn't have an accuracy mode since it's not in the VML family, that's probably why.
    I've included the source code in C that causes the crash when the DLL is used in LabVIEW (Corellation_Intel.c).
    When you attach the LabVIEW process to Visual Studio Debug mode, the execution stops at eax,dword ptr [edx+ecx*4]:
    _mkl_vml_core_w7_vml_GetMode:
    023D528C  mov         ecx,dword ptr [__tls_index (240EA0Ch)]
    023D5292  mov         edx,dword ptr fs:[2Ch]
    023D5299  mov         eax,dword ptr [edx+ecx*4]
    Anyone had this kind of error or have any idea what I might have done wrong? I uses mkl_c.lib and libguide.lib libraries in the i32 of Intel MKL.
    Thanks a lot for your help and feel free to contact me if you need more information.
    Regards,
    Mat
    Attachments:
    Corellation_Intel.c ‏2 KB

    Dear Mat,
    While more details are desirable to give precise answer I guess that I know the origins of the problem. VML functions are thread-safe. VML engineers use Mircosoft TLS mechanism to maintain thread safety of VML global variables. The TLS use is different for static and dynamic case. This implies that it is impossible to use MKL static library which contains TLS stuff to build dynamic library. Indeed, your DllMain function must have VML TLS initialization/processing/finalization stuff (for details see http://msdn2.microsoft.com/en-us/library/ms686997.​aspx). In case VML TLS stuff is absent in your DllMain routine you will see Access Violation on any attempt to access VML global variables.
    VML engeneers are seeking for possible solutions/workarounds. Thus far they don't see any elegant way of solving this with existing technologies. Specifically, _mkl_vml_core_w7_vml_GetMode routine does access one of VML global variables.
    There is a possibility to build custom VML DLL from static MKL library using MKL Builder Tool. The limitation is that the built DLL cannot contain non-MKL stuff (recalling DllMain issue, MKL Builder Tool cannot put into DllMain routine user's stuff).
    Feel free to go to Intel MKL web forum or contact Intel Tech Support in case you have additional questions.
    I will keep you informed.
    Regards,
    Sergey Maidanov
    Intel Corporation

  • Support for Office 2007 files (especially docx) ?

    Hi,
    can you please give me a hint if it's possible to use ora-text with the current office 2007 file formats ?
    I need to have support for word 2007 (docx) format very soon
    Is it already available ?
    If not, is there a plan to support those formats ?
    Thank you

    Hi,
    the workaround descrived above would also work for your plsql app. Therefore you can use the PL/SQL XSLT Processor in order to extract the content needed from the office 2007 documents. See DBMS_XSLPROCESSOR.
    What is your business case? How do you store and index your documents?
    p.s Here is an example of an xslt to extract the text content from an docx document. The internal structure of docx document is based on the Open Packaging Conventions (see http://openxmldeveloper.org/articles/OPC_parts.aspx )
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
    xmlns:v="urn:schemas-microsoft-com:vml"
    exclude-result-prefixes="w v">
    <xsl:output method="text" indent="no" encoding="UTF-8" version="1.0"/>
    <!-- document root -->
    <xsl:template match="/">
    <!-- root element in document -->
    <xsl:apply-templates select="w:document"/>
    <!-- root element in header -->
    <xsl:apply-templates select="w:hdr"/>
    <!-- root element in footer -->
    <xsl:apply-templates select="w:ftr"/>
    <!-- root element in comments -->
    <xsl:apply-templates select="w:comments"/>
    <!-- root element in foornodes -->
    <xsl:apply-templates select="w:footnotes"/>
    <!-- root element in endnodes -->
    <xsl:apply-templates select="w:endnotes"/>
    <!-- root element in glossary -->
    <xsl:apply-templates select="w:glossaryDocument"/>
    </xsl:template>
    <!-- ****************************
    start document
    **************************** -->
    <xsl:template match="w:document">
    <xsl:for-each select="//w:p">
    <xsl:apply-templates select="*/w:t"/>
    <xsl:text>
    </xsl:text>
    </xsl:for-each>
    <!-- used for word art text -->
    <xsl:apply-templates select="//v:textpath"/>
    </xsl:template>
    <!-- get all text nodes within a para -->
    <xsl:template match="*/w:t">
    <xsl:value-of select="."/>
    </xsl:template>
    <!-- gword art text -->
    <xsl:template match="//v:textpath">
    <xsl:value-of select="@string"/>
    </xsl:template>
    <!-- ****************************
    end document
    **************************** -->
    <!-- ****************************
    start header
    **************************** -->
    <xsl:template match="w:hdr">
    <xsl:for-each select="//w:p">
    <xsl:apply-templates select="*/w:t"/>
    <xsl:text>
    </xsl:text>
    </xsl:for-each>
    </xsl:template>
    <!-- ****************************
    end header
    **************************** -->
    <!-- ****************************
    start footer
    **************************** -->
    <xsl:template match="w:ftr">
    <xsl:for-each select="//w:p">
    <xsl:apply-templates select="*/w:t"/>
    <xsl:text>
    </xsl:text>
    </xsl:for-each>
    </xsl:template>
    <!-- ****************************
    end footer
    **************************** -->
    <!-- ****************************
    start comments
    **************************** -->
    <xsl:template match="w:comments">
    <xsl:for-each select="//w:t">
    <xsl:value-of select="."/>
    <xsl:text> </xsl:text>
    </xsl:for-each>
    </xsl:template>
    <!-- ****************************
    end comments
    **************************** -->
    <!-- ****************************
    start footnodes
    **************************** -->
    <xsl:template match="w:footnotes">
    <xsl:for-each select="//w:p">
    <xsl:apply-templates select="*/w:t"/>
    <xsl:text> </xsl:text>
    </xsl:for-each>
    </xsl:template>
    <!-- ****************************
    end footnodes
    **************************** -->
    <!-- ****************************
    start endnodes
    **************************** -->
    <xsl:template match="w:endnotes">
    <xsl:for-each select="//w:p">
    <xsl:apply-templates select="*/w:t"/>
    <xsl:text> </xsl:text>
    </xsl:for-each>
    </xsl:template>
    <!-- ****************************
    end endnodes
    **************************** -->
    <!-- ****************************
    start glossary
    **************************** -->
    <xsl:template match="w:glossaryDocument">
    <xsl:for-each select="//w:p">
    <xsl:apply-templates select="*/w:t"/>
    <xsl:text>
    </xsl:text>
    </xsl:for-each>
    <!-- used for word art text -->
    <xsl:apply-templates select="//v:textpath"/>
    </xsl:template>
    <!-- ****************************
    end glossary
    **************************** -->
    </xsl:stylesheet>
    Edited by: user304344 on Mar 30, 2009 10:23 PM

  • HTML 5 and CSS 3 Support In Dreamweaver CS5

    I cannot find any information on this web site about whether and how Dreamweaver CS5 supports HTML 5 and CSS 3. There are lots of other fancy high-end whiz-bang technologies highlighted in CS5, but without support for HTML 5 and CSS 3, Adobe has left a great big hole in the middle of the new Dreamweaver. If I'm going to have to code these by hand, then there's little incentive for me to upgrade from CS4. Adobe may, by this oversight, intend to extend the useful life of Flash, but if this is so it's penny wise and pound foolish. There is much to like about Flash - and much to dislike about how it works on the user side. Leaving these problems unresolved hurts Flash, and leaving HTML 5 and CSS 3 support out of Dreamweaver hurts Dreamweaver. In other words, this is a lose-lose strategy.

    Hi Scott
    Sorry for the delay in replying, but I turn my internet connection off when working, otherwise I have found I tend to do more research than work.
    Media-Queries:
    I had viewed the video on the possible implementation of media-queries when it was first released, and in most respects the implementation is as I would expect, but it would be helpful if it was, (in a future development of the use) possible to show a list of 'common' smartphone/handheld devices, (makes/models) within the dreamweaver interface that would be usable with the screen size being used, (possibly as an import from the 'device central' device list as a drop-down list). My reason for asking for this feature is primarily as a time saving feature for the css layouts via media-queries as it would then show the targeted/usable devices in a list, and possibly alleviate the requirement of developing layouts that are not really required.
    Video:
    At the moment I am using the video feature as you have indicated where possible, and am doing so with the use of IECC's for IE as a fall-back for that browser. I have tried targeting versions if Firefox and Safari that support the video element by testing for it with JavaScript, but I have found this unreliable, possibly when the standard is finalized this may be the better method.
    SVG:
    I personally have decided to go with svg in preference to canvas. I have seen a few 'wow' factor demo's produced using canvas but as they use cross-compiled java to javascript code they are in reality showing nothing that has not been done before, (If we had 4Ghz processors with multi-core in 1999 similar trial graphics in vml would have worked just as good then, showing my age here!).
    My current work-flow with svg is - Inkscape - Modify the code by hand/preview in a browser - copy/past the code into dreamweaver.
    The current in-line implementation of svg's in the IE9 preview is where I see the main future of the svg implementations, as this makes using svg's for graphic elements and basic animations much more viable/easier for the average designer/developer, and lets not forget that as it is a vector it is ideal for resizeable background images in fluid/liquid layouts.
    I should say here, that I will for the foreseeable future use flash/swf's for more complex animations, as these are still much better quality than anything that can be achieved with svg or canvas.
    I would like to see the possibility of using Fireworks for the creation of svg's, and a work flow similar to that available between fireworks and dreamweaver at the moment.
    Cache manifest and database:
    As you have rightly grouped these two together, (and I cannot really envision a situation that they would not be used so) the situation with these is for me, (when trying to create the code for use) the necessity of 'remembering' what I must include in the cache and the transfer of the data for the database.
    Both are probably better explained with a typical scenario -
    A new research/development firm has developed the technology and parts to upgrade an autos internal combustion engine to an hydrogen powered engine. However the products list is specific to the motor manufacturers engine type, and to make matters worse the sales department also wishes an off-line version of the demos and parts list to be available to its sales team and customers, (o/k, maybe this is not a typical scenario, but it does demonstrate the usage).
    When developing the 'custom' html 5' enabled page I would require the cache manifest to include all necessary javascript/images/videos that would be required for the particular auto manufacturer to be available off-line, and compiling the list must be done at present by hand making it subject to possible errors.
    As for the database, (manufacturer specific) this must also be available off-line and updateable by the sales person and customer, as they are not always on-line and no hard-copys of material will be produced, (except when printed by the mechanic).
    My solution for me regarding the cache manifest would possibly be a dialogue in dreamweaver that would show all resources associated with the auto manufacturers model type used in the html site. I have used namespaces, (or some form of identifier) for general and model specific javascript, and a model identifying code for images and videos. The dialogue would then allow me to filter the resources required using the namespaces and identifier and include them in the list as required, possibly in much the same way that items are moved from a general list to a more specific list when creating the 'favourites' toolbar in dreamweaver.
    The database is on first appearance much simpler, as I would simply download the database using the motor_id as a filter, (yes Scott, you can see where I am going with this ) for those who cannot this would be wrong. You have correctly seen the problem with doing this, but I will explain for those who have not. The sales person and the customer would not see any of the images or videos that have references stored in the database, as these are just references and not the actual images/videos, yes one could use 'BLOB' for storing the items but this is not in my experience a reliable method. What is required is some form of method that would also download these items and place them into the required file position for off-line viewing, (which is what the cache manifest would do).
    So I would also require the possibility to add dynamically to the cache manifest from an sql database at the same time as the 'save for off-line' option is generated, (I have experimented with doing this in a similar manner that xml is created from an sql database).
    That's it for the html 5.
    Accessibility:
    For checking I use the firefox accessibility extension and total validator extension first, then the WAVE evaluation tool.
    But for Dreamweaver I would like to see the inclusion of the ARIA options as standard, especially when developing 'rich-internet-applications' particularly the aria-live and role options. I often find it interesting in discussions about html 5 where it is seen by many as a 'new' mark-up' language for the web, but rarely seen in the context of helping in accessibility when used correctly. Even the html 5 spec contains a section on using the new mark-up as part of accessibility and how the ARIA roles should be applied, (see - http://www.whatwg.org/specs/web-apps/current-work/multipage/content-models.html#annotation s-for-assistive-technology-products-%28aria%29).
    The inclusion of an extra live-view option in dreamweaver that render the page in 'screen reader' mode would also be a possible accessibility checking help. This could be done by simply turning off the background-images 'on-mass' and rendering any items as they would be seen by a screen reader. As most screen readers do now parse JavaScript and css, it would illustrate the problems of using such techniques as light-boxes without using the aria-live role to tell users that the light-box in now the focus of the page.
    For anyone who has stayed with this post, my sincere thanks, and any comments on the content would be welcome.
    Paula Z

  • Error while creating a support message in satellite system

    Hi,
    I am facing an error while sending a support message to solman form the satellite system
    (( Error Description :  Error in Local Message System: Error when opening
    an RFC connection Message was Not Created ))
    1) I gone through various threads and set the required authorizations like
    SAP_SUPPDESK_CREATE and
    SAP_SV_FDB_NOTIF_BC_ADMIN ,
    SAP_SUPPDESK_ADMIN
    for the user in the solman .
    2) I checked the RFC connection and it is working fine.
    Anyone pls help me to resolve this issue

    hi rohit,
    thanks for u r immmediate response
    do i have to assign the roles to the user in the satellite system or the solman.
    some roles in those 4 roles are not in the satellite system.
    thanks
    Rahul

  • Cannot install windows 8.1 on imac 5k - apple support says "Correct, that machine can't install windows" Boot camp fail

    I have a brand new imac 5k, with 4ghz i7, 295x GPU, 3.1TB fusion drive.  Bought the machine so I could dual boot - I need windows for VR Dev work.
    I've spent the last week and a half on tech support calls with Apple Senior Tech agents, and Microsoft agents as well, and today have been told that indeed this machine cannot run windows 8.1.  Apparently Apple engineering knows about the issue, but says the problem is microsoft's.  Ugh.
    The latest iteration of the issue comes when installing 8.1 onto an external thunderbolt SSD (without even using boot camp) - I go through the EFI installer, convert the drive to GPT, format it as ntfs, but when I select the partition to install onto, the installer says it can't find the partition it just created.  Smuh? 
    I've also tried the install through boot camp.  This installation actually worked twice, but the install was unstable.  After booting back into osX, then returning to Windows, the windows install went corrupt and couldn't be repaired.  Subsequent attempts to install windows yielded a flurry of different errors, including "windows doesn't support GPT in this mode" or "the disk is locked, please unlock the disk" or "MBR must be converted to GPT" (where once I converted to GPT, the drive could no longer be found, despite the operation completing successfully.)
    At any rate, it's a huge mess.  I'd happily return the machine for a different config, but the company I bought it from will only swap it for a similar model -- so I've spent a pile on a machine that does not function as advertised; apple says "too bad, talk to Microsoft." Microsoft says "too bad, we've never seen this, this is an apple issue."
    Has anyone out there gotten windows up and running on an iMac5k with fusion drive?  If so, did you have to go through a crazy maze to make it work?
    Any help is appreciated.
    Thanks,
    MC

    Michael Conelly wrote:
    After much gnashing of teeth, and a half dozen support calls, I'd all but given up.  I finally seem to have solved this though - sort of - by installing windows 8.1 on boot camp on an older iMac, then cloning the bootcamp disk to an external thunderbolt drive via Winclone.  That worked seamlessly, sticking to winclone's instructions, and I can boot via EFI to Windows 8.1 on the new iMac.  So far so good.
    I usually install W8.1 via EFI by using DU and a Free Space partition. The 3TB Fusion is first split into the underlying SSD/HDD physicals. OSX and Windows OSes are installed on SSD via EFI (no BCA). The OSX part and half the HDD are then used to create a new CS volume. The other HDD half becomes NTFS for non-Windows OS files. The Hybrid MBR method is completely unsatisfactory with the 3TB Fusion drive.
    How is the TB/Winclone image for performance of the OS (since pagefile.sys is also on the TB)?

  • Unable to capture DV to FCE, apple support told me a PC is the way forward!

    Hi there
    I recently bought an apple imac with a view to editing DV footage taken previously.
    I had captured some of these tapes on to a PC before buying an imac. These files I was able to edit on FCE and imovie (once I had transferred them from the pc hard drive). HOWEVER although I could control my DV camera through imovie and FCE none of my old DV tapes could be captured to the imac. An error message states that the frame rate is incorrect.
    I have apple care protection and have spent ages trying to get support for this only to be told by apple support that FCE and imovie will not capture my old DV tapes! The support person told me that I should go back to a PC if I want to do the job properly!
    Unfortunately I have just spent thousands on this very nice looking imac (and FCE) that is apparently unable to do the most basic capturing. Does anybody have any ideas (other than going back to pc) for getting my DV footage captured?
    Needles to say I have found all this incredibly frustrating as a new apple user. Are these sorts of issues common to imacs?
    cheers
    rupert

    Hey Rich,
    thanks for getting back to me,
    I shot tape previously (in 2000) on a sony mini DV camcorder set to SP. I have since bought a new sony mini DV camcorder (DCR-HC40 NTSC).
    With the new camera and a PC I was able to capture my 2000 tapes and edit them. I was also able to edit the earlier footage I had transffered from my PC hard drive to the i-mac on i-movie and FCE.
    Unfortunatley everytime I have tried to capture my old tapes directly onto the i-mac I have had the message "preview disabled" from FCE and the following from i-movie:
    "The camera is sending half-sized frames, which iMovie can’t accept. Check your camera’s record mode (this is the setting that affects recording quality, which determines the total recording time on a tape). The mode must be set to “SP” or “LP.” If that doesn't help, try removing all the cables and batteries from the camera, wait a minute, replace them, and then reset the date, time, and record mode."
    I have spent weeks on the support site and found a thread that recommended re-installing quicktime etc but nothing has worked.
    I connect to the i-mac via firewire and am able to control the camera, capture my newly recorded miniDV's (so it is not a problem with the proprietary software application etc) but nothing seems to work for my old tapes.
    Apple support told me that apple doesn't do older miniDV's and that a pc would be the only way I could capture my tapes. I couldn't believe it! Unfortuatley I no longer have access to my old pc.
    Any ideas? Is there any other way of getting DV onto my i-mac?
    And thanks for your interest in my problem here
    regards
    rupert

  • Support package / add on import error in DB2 V9.1 / windows 2003 system

    Hi
    I have installed ERP 6.0 IDES version in Windows 2003 server with DB2 LUW 9.1 / FP5.
    I have selected "Row Compression" and "Deferred Table Creation" during installation.
    Now when I am importing add on BI Content 7.03, I am getting error during Movename tabs phase.
    Error in phase: IMPORT_PROPER
    Reason for error: TP_STEP_FAILURE
    Return code: 0008
    Error message: OCS Package ALL, tp step "6", return code 0008
    The error message in the file D:\usr\sap\trans\log\P090113.IDS is as follows,
    2 ETP301
    3 ETP361 "96" Shadow-Nametabs activated, DDL executed
    2 ETP362 "6" Shadow-Nametab activations failed
    2 ETP360 Begin: Act. of Shadow-Nametabs with DDL ("2009/01/13 02:57:51")
    2 ETP363 End : Act. of Shadow-Nametabs with DDL ("2009/01/13 02:58:07")
    2 ETP301
    1 ETP172 MOVE OF NAMETABS
    1 ETP110 end date and time : "20090113025807"
    1 ETP111 exit code : "8"
    1 ETP199 ######################################
    I have read some notes it may be due to "Row compression" and "Deffered table creation" option in DB2. Please help me in resolving this issue if it is DB2 related.
    Regards,
    Nallasivam.D

    Hi,
    Please find the real error message which I found in the same log file. This is a new installation.
    System configuration details:
    ERP 6.0 IDES SR3 + Windows 2003 enterprise server SP2 + DB2 V9.1 / FP5
    BASIS and ABAP support pack level: (700) 13.
    Error message:
    3 ETP399 INDEX IN "IDS#BTABI"
    3 ETP399 LONG IN "IDS#BTABD COMPRESS YES"
    3 ETP399 
    2WETP000 02:53:26: Retcode 1: error in DDL statement for "/OSP/T_REPINFO                " - repeat
    2EETP345 02:53:38: Retcode 1: SQL-error "-107-SQL0107N  The name "IDS#BTABD COMPRESS YES" is too lo
    2EETP345 ng.  The maximum length is "18".  SQLSTATE=42622" in DDL statement for "/OSP/T_REPINFO   
    2EETP345             "
    2 ETP399  -
    DB-ROLLBACK() -
    3 ETP399 INDEX IN "IDS#POOLI"
    3 ETP399 LONG IN "IDS#POOLD COMPRESS YES"
    3 ETP399 
    2WETP000 02:54:05: Retcode 1: error in DDL statement for "/SAPPO/CMP_ASG                " - repeat
    2EETP345 02:54:17: Retcode 1: SQL-error "-107-SQL0107N  The name "IDS#POOLD COMPRESS YES" is too lo
    2EETP345 ng.  The maximum length is "18".  SQLSTATE=42622" in DDL statement for "/SAPPO/CMP_ASG   
    2EETP345             "
    2 ETP399  -
    DB-ROLLBACK() -
    2EETP334 02:54:17: error in DDL, nametab for "/SAPPO/CMP_ASG" not activated
    3 ETP399 IN "IDS#POOLD"
    3 ETP399 INDEX IN "IDS#POOLI"
    3 ETP399 LONG IN "IDS#POOLD COMPRESS YES"
    3 ETP399 
    2WETP000 02:54:17: Retcode 1: error in DDL statement for "/SAPPO/CSCRN_HDR              " - repeat
    2EETP345 02:54:29: Retcode 1: SQL-error "-107-SQL0107N  The name "IDS#POOLD COMPRESS YES" is too lo
    2EETP345 ng.  The maximum length is "18".  SQLSTATE=42622" in DDL statement for "/SAPPO/CSCRN_HDR 
    2EETP345             "
    2 ETP399  -
    DB-ROLLBACK() -
    2EETP334 02:54:29: error in DDL, nametab for "/SAPPO/CSCRN_HDR" not activated
    3 ETP399 INDEX IN "IDS#POOLI"
    3 ETP399 LONG IN "IDS#POOLD COMPRESS YES"
    3 ETP399 
    2WETP000 02:54:29: Retcode 1: error in DDL statement for "/SAPPO/F_ASG                  " - repeat
    2EETP345 02:54:41: Retcode 1: SQL-error "-107-SQL0107N  The name "IDS#POOLD COMPRESS YES" is too lo
    2EETP345 ng.  The maximum length is "18".  SQLSTATE=42622" in DDL statement for "/SAPPO/F_ASG     
    2EETP345             "
    2 ETP399  -
    DB-ROLLBACK() -
    2EETP334 02:54:41: error in DDL, nametab for "/SAPPO/F_ASG" not activated
    Regards,
    Nallasivam.D

  • Upload Error message: HTTPS protocol is not supported

    Hi,
       Whenever I do a quick par upload i'm getting an 'Operation failed' message to check sap-plugin.log.
       Log says
    Upload Error message: HTTPS protocol is not supported, please ensure this server is not using HTTPS. My webdynpro applications are getting deployed without any issues.
         How to resolve this?
    Thanks
    Sumathi

    Hi Sumathi,
    As there are often problems with the Quick PAR Upload reported, I would suggest to use the "normal" PAR upload from the icon tray (you have to activate the portal icons in the icon tray). That is almost that "quick" (one or two clicks more needed, we don't talk about more than a second) and - it works (it least it should, and at least it works in most cases even if the Quick PAR Upload fails).
    Hope it helps
    Detlev

  • Worst Customer support

    Worst customer expense ever, three think pad’s and this v570 latter and all they say is try again. After this im done with their products
    This is my experience over what has become a 2 month long episode and a very bitter ending for me.
    I recently bought a laptop for school, I chose Lenovo because iv only have ever used a thinkpad and was very happy with them.
    I bought a v570 , the model I got was a great price but only has a 2200mha 6 cell battery (half the normal amount) so battery life is only 3 hours. Which is not a big deal because I can buy another battery and this is where my story begins .
    I call Lenovo (feel better when I support someone though commission) and asked about available battery’s, and wow my luck a 8 cell battery is available for my laptop! So I order it and was told it would take 9 business days for me to receive it, which is perfect because I can return my laptop with in 15 days.
    Latter that week I look at the battery I got
    http://shop.lenovo.com/SEUILibrary/controller/e/webca/LenovoPortal/en_CA/catalog.workflow:item.detai...
    and notice that it has crazy dimensions that will not fit my laptop.
    So I call in explaining this, and was told that I was wrong and that is will certainly fit my laptop ( which is okay because it is their job and I believe than are far more knowledgeable than me)
    So two weeks latter over 20 days latter I have no battery and no call or e-mail saying why I haven’t got it.
    I call in with my order number and am told that there are “Manufacturing problems” and the battery is in very tight supply, and they would put me to top of the list.
    I am mad at this point because I can no longer return the laptop and need this battery for work, but there is nothing I can do or any one els its life so I say thank you very much and goodbye
    And I call back 1 week later to check the status of my order, wow great news they have one and will ship if out in 7 business days, and I will get it with in a week or two.
    So it’s a month and half and I finally get my battery!
    HURRAY I can finally use my nice laptop for my work that I bought it for!!!!!!!!!!
    I open up my battery and sure enough it is not even a close fit for my laptop it’s a completely different shape…..
    So I call them, and explain to them how I was ASSURED the battery would fit and it dose not. They send me a return ups page so I can drop it off and get my money back, after wasting over a month and a half of my time and 900$ on a laptop.
    And all they say is I will get a refund with in 5 days of receiving it and and have to purchase the proper battery.
    Worst customer expense ever, three think pad’s and this v570 latter and all they say is try again. The worst part of this was that when their was a delay they did not care to call me or send me an e-mail with a simple update. After this im done with their products.

    hey jul644,
    sorry to hear about what had happened. could you pm to me the following details as i would like to check what had happened.
    Name:
    Country:
    Mobile:
    Email:
    MTM [machine type model]:
    ( To locate MTM - http://support.lenovo.com/en_US/FindProductNumber.page#find )
    Serial Number (S/N):
    Date of Purchase:
    Case/Order Number : (if any)
    Screenshot of Error(if applicable) : (upload it to a hosting site and paste the link here)
    Location of unit : Home / Repair Center (delete where appropriate)
    Description of issue :
    Troubleshooting Taken : (if any)
    WW Social Media
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    Have you checked out the Community Knowledgebase yet?!
    How to send a private message? --> Check out this article.

  • HT203167 A movie I purchased in the iTunes store is missing. It isn't hidden and doesn't show up in search. I've followed support steps.  Where is it and how do I find it?  I believe I originally purchased the film on my 1st Gen AppleTV.

    A movie I purchased in the iTunes store is missing. It isn't hidden and doesn't show up in search. I've followed support steps.  Where is it and how do I find it?  I believe I originally purchased the film on my 1st Gen AppleTV...other movies show up. Help.

    It was Love Actually. It's been in my library a few years but is now missing. It's odd...it isn't even in the iTunes Store anymore. I think there is a rights issue because a message appeared in the store saying it wasn't available at this time in the U. S. store. Still, if I bought it years ago it should be in my library or I should get a refund....

  • I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because

    I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because its a prestiage of Apple Company.
    Pls inform me how can i resolve the problem of wifi.

    You have to go to autherized iPhone agent.

  • MacBook Mini-DVI to VGA - Samsung 32" LCD - Mode Not Supported

    I followed the instructions on Apple's site to use the MacBook with the lid closed and an external LCD. It worked perfectly the first time I tried it. (I believe in 1920 x 1024). It seemed a little hard to read so I changed the Display resolution, then encountered the "Mode Not Supported" on my LCD. I unhooked and used my MacBook to change the settings back, but the MacBook seems to revert to the "Mode Not Supported" resolution when I close the lid. Any suggestions? Can I reset the Display Preferences on my MacBook?

    I think this procedure should work, but it requires an external USB keyboard.
    - Shut down the Mac.
    - Have all the following connected:
    - MacBook power supply
    - External display
    - USB keyboard and mouse
    - Open the lid on the MacBook and hit the power button.
    - Immediately close the lid on the MacBook and start holding down the Shift key on the USB keyboard.
    - Release the Shift key once you see the spinning gear on the gray screen on the external display.
    The above procedure should cause the Mac to start in Safe mode and hopefully will finish booting into a useable screen. If that is the case, go into Displays preferences and select a known working resolution different from the one the Mac started up in under Safe mode. Now restart normally. Hopefully the newly selected resolution will persist through the normal restart and you will have a working external screen again.

  • HT3153 Can the early 2006 MAC mini support a DVI to hdmi adapter for TV monitor support?

    Can the early 2006 MAC Mini support a DVI to HDMI adapter for a TV Monitor?

    Hi, I can't see why not...
    Supports digital resolutions up to 1920x1200 and analog resolutions as high as 1920x1080.
    http://www.everymac.com/systems/apple/mac_mini/specs/mac_mini_cd_1.66.html

Maybe you are looking for

  • Validations for G/L accounts and Cost Centers!

    Help!!! I need to create bunch of validations: Ex. If account is 12345  - then is can be posted to only cost center XXX, YYY, ZZZ, BBB... If G/L account is 33333 - then it can be posted to cost centers AAA and BBB... There are different rules for 137

  • Export to xml error

    hi, I am getting the following error while exporting to xml please can neone help thanks in advance      ORA-06502: PL/SQL: numeric or value error: character to number conversion error

  • 3DS XL Free Pokemon X or Y conditions

    Hi, I would like to buy the Nintendo 3DS XL with Mario & Luigi: Dream Team for my boyfriend for his birthday. It has an offer that says he can receive a free Pokemon X or Y code if the product is registered between March 1st and March 31st. The first

  • K5B45PA vs L2Y68PA - is there any difference at all.

    Folks,  Can any one highlight the differences between HP g049AU and HP g206AX ? Not sure why we have a different product number when the specifications are the same. Am sure there is something that is different. Guess only people from HP know it. Als

  • CSADMIN configuration &Content server configure the HTTP script

    Hello Experts, i had install the Content server 640/MaxDB 7.6on Solories platform . how to configure the CSADMIN in R/3 system . when we are adding the R/3 system , it need to mention the HTTP script what i need to mention in the field: HTTP script(.