Problems with letter type

Problems with letter type homepage www.JO-qigong.nl When I want to make another type it changes the whole page? Why?

Thank you for responding. I am sure that I selected the text. I don't do anything different than I did many times before. But if I change a text know, for exemple in the color Red, than other text, that I didn't selected, get a different text: bigger text or other color. In iWeb everything is OK, but when I publish it, than there are those grazy changes. I use iWeb for 3 years now and had no problems till now.
Is it because the software is not supported anymore by Apple, because you can not update the software anymore. It is a pitty, because I like iWeb. It is easy to work with.

Similar Messages

  • Problem with mime type in web.xml file

    Hi everybody,
    I actually got a problem with mime types on Weblogic 6.0 under Linux.
    I read the documentation so I added the next lines in the web.xml file in
    the WEB-INF directory of my server :
    <mime-mapping>
    <extension>
    doc
    </extension>
    <mime-type>
    application/msword
    </mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>
    ppt
    </extension>
    <mime-type>
    application/vnd.ms-powerpoint
    </mime-type>
    </mime-mapping>
    Why can't I retrieve a .doc or .ppt files with an internet browser correctly
    ? I get only text/plain ...
    Can someone help me ?
    Regards,
    Alexis Berger

    I am having the same problem with doc and xsl. I have added this
    <mime-mapping>
    <extension>xls</extension>
    <mime-type>application/vnd.ms-excel</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>doc</extension>
    <mime-type>application/msword</mime-type>
    </mime-mapping>
    to my web.xml. I even restarted the server. I still see doc and xsl in binary.
    Is there some other setting that needs to take place?
    I am using WL6.1 with fixpack 1.
    I can see the doc and excel files in the browser if I don't go through the weblogic
    server. That just confirms it's not my browser.
    Kumar Allamraju <[email protected]> wrote:
    <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
    <html>
    It works fine for me in 6.1 SP1.
    <br><br>
    If the following doesn't work , can you
    <br>try application/winword instead of application/msword?
    <p>--
    <br>Kumar
    <p>Siming Mu wrote:
    <blockquote TYPE=CITE>Hi,
    <p>I setup in my web.xml a mime mapping as follows,
    <p><mime-mapping>
    <br><extension>doc</extension><mime-type>application/msword</mime-type>
    <br></mime-mapping>
    <p>When I specify a test.doc url, the doc file appears in my browser
    as
    binary data
    <br>instead of download.
    <p>Please reference change request 055002, which decribes this problem. 
    According
    <br>to edocs, it has been fixed in wls6.1sp1.
    <p>But I am seeing it fixed.  Am I doing anything wrong? Thanks.
    <p>Siming</blockquote>
    </html>

  • How do fix problem with iPages - type does not enter - ?

    How do I fix this problem with Pages - type from keyboard does not enter ?  If I need to re-install, How do I do that?

    Hello DonAndNorma,
    You may need to uninstall, then reinstall the Pages application. Steps for doing so can be found in the article linked below.
    OS X Mavericks: Install, update, and uninstall apps
    http://support.apple.com/kb/PH14299
    Cheers,
    Allen

  • Dynamic ITAB copy problem with field type P

    Hello everyone
    I need to copy the structure of an internal table that is pass by reference into a method.
    Actually everything is fine else than the field type P with decimal is not created properly in the new itab.
    Scenario:
    An internal table is pass by reference to a method. We need to trait the data without modifying the original table. The Idea is to copy the structure and the data of the referenced internal table into an internal table created dymanically in the method.
    Here is what I did and working fine when there are no field of data type "CURR".
    Extract the structure of the reference data.
    Create a dynamic internal table.
    So far so good. Everything seams to work fine. BUT
    when I am trying to copy the data from the reference table to the just created internal table the field with data type "CURR" doesn't work.
    Here is my example:
    FIELD-SYMBOLS: <FS_TABLE> TYPE STANDARD TABLE,
                   <TMP_TABLE> TYPE STANDARD TABLE,
                   <LS_TMP_TABLE> TYPE ANY,
                   <LS_TABLE>     TYPE ANY,
                   <LS_VALUE>     TYPE ANY.
    DATA: lt_data      TYPE STANDARD TABLE OF vbak,
          ls_data      LIKE LINE OF lt_sortfield,
          ref_data     TYPE REF TO data,
          l_structure  TYPE REF TO DATA,
          lv_ltname    TYPE string.               
    select * from vbak UP TO 10 rows INTO CORRESPONDING FIELDS OF TABLE lt_data.
    * --- Assign the reference variable to the table
    * ---- Only use to simulate a parameter that is assign to a reference to a internal table
    unassign <FS_TABLE>.
    lv_ltname = 'lt_data[]'.
    ASSIGN (lv_ltname) to <FS_TABLE>.
    GET REFERENCE OF <FS_TABLE>[] INTO ref_data.
    * --- Assign the reference to the field-symbol
    UNASSIGN <FS_TABLE>.
    ASSIGN ref_data->* TO <FS_TABLE>.
    * --- Create a working area for the reference table to a field-table
    CREATE DATA l_structure LIKE LINE OF <FS_TABLE>.
    ASSIGN l_structure->* TO <LS_TABLE>.
    * --- Retrieve the structure of the field-symbol pointing to the internal table
    DATA: lr_tabledescr   TYPE REF TO cl_abap_tabledescr,   " Internal Table description
          _r_structdescr  TYPE REF TO cl_abap_structdescr.
    lr_tabledescr ?= cl_abap_tabledescr=>describe_by_data( <fs_table> ).
    _r_structdescr ?= lr_tabledescr->get_table_line_type( ).
    * --- Read internal table structure to create dynamic internal table
    data: ls_struc like LINE OF _r_structdescr->components,
          xfc           type lvc_s_fcat,
          ifc           type lvc_t_fcat.
    * --- Why the field (component) NETWR length is now 8 instead of 15?
    LOOP AT _r_structdescr->components into ls_struc.
      clear xfc.
      xfc-fieldname = ls_struc-name .
      xfc-datatype  = ls_struc-type_kind.
      xfc-inttype   = ls_struc-type_kind.
      xfc-intlen    = ls_struc-length.
      xfc-decimals  = ls_struc-decimals.
      append xfc to ifc.
    ENDLOOP.
    DATA:   dy_table      type ref to data,
    * --- Create dynamic internal table
    call method cl_alv_table_create=>create_dynamic_table
      EXPORTING
        it_fieldcatalog = ifc
      IMPORTING
        ep_table        = dy_table.
    * --- assign reference internal table to Field-symbol
    assign dy_table->* to <tmp_table>.
    unassign <ls_tmp_table>.
    DATA: ls_tmp_struc type REF TO DATA.
    CREATE DATA ls_tmp_struc like LINE OF <tmp_table>.
    ASSIGN ls_tmp_struc->* TO <ls_tmp_table>.
    Loop at <fs_table> INTO <LS_TABLE>.
    MOVE-CORRESPONDING <ls_table> TO <ls_tmp_table>.
    APPEND <ls_tmp_table> TO <tmp_table>.
    ENDLOOP.
    * <fs_table>-netwr length is 15
    * <ls_tmp_table>-netwr length is 8
    * ??????????? Why the length is different?
    * ??????????? It should a structure copy and have the
    * ??????????? same length
    I use VBAK as example, and the field NETWR is using data type "NETWR_AK" where it us a data type "CURR" with length 15 and decimal 2.
    When reading the structure, the method get_table_line_type of the class cl_abap_tabledescr return a length of 8 instead of 15.
    Any idea how to get the exact structure of a variable that is refering to a data type?
    Regards
    Daniel

    Hello Everyone
    Thank you for your replies.
    I think I didn't explain myself clearly.
    My goal is to be able to create an exact  structure copy of a "Type ref to data" into a new internal table that is not defined yet.
    Example:
      A method contain a parameter that is a ref to DATA type.
      That parameter is refering to an internal table from the calling program.
      Now I want to create an internal table into the method where this one will be an exact structure copy of the parameter.
      So, lets put some name here.
      parameter: ip_data type ref to data.
      FIELD-SYMBOLS: <FS_REF_DATA> TYPE STANDARD TABLE,
                                    <FS_CP_DATA>  TYPE STANDARD TABLE.
    ASSIGN ip_data->* TO <FS_REF_DATA>.
    " some code to assign the same structure to <FS_CP_DATA> from <FS_REF_DATA>
    " than copy the data from <FS_REF_DATA> to <FS_CP_DATA>.
    <FS_CP_DATA> [ ] = <FS_REF_DATA> [ ].  " This is working if no type P with decimal exist into the structure
    " Than I can play with the data of <FS_CP_DATA> without modifying the data of <FS_REF_DATA>.
    My problem would be solved if I can create dynamically an internal table that has an exact structure copy of the passed parameter.
    Regards
    Daniel

  • Problem with Column types and String

    Hi
    I have some problem while comparing against empty string.
    My column is of type it_Linked_Button. Actually it seems that column type doesn't matter.
    If cell that belongs to this column is empty and based on other columns' values I put some value into this cell.
    It works fine.
    But when I clear that cell and try to put some value again nothing happens.
    In my if statement I'm checking against empty string and it fails second time.
    Before I put anything in that cell (in debugger) that value is "" so it is empty and it works.
    (OK, I see that after I posted this message it was slightly reformated)
    But after I put something and clear that cell and try to put something again (in debugger) I get "(here is some long space) " which fails String.IsNullOrEmpty(var) test.
    What is going on? Has it something to do with Column type?
    How to clear it so I can put something in it again?
    One more thing - to put values and clear it I use DbDataSource SetValue method. And String.Empty or ""(doesn't matter)
    Thanks
    Kamil
    NOTE
    I made some workaround that gives me the behaviour I want but still I would like to know what is going on?
    Edited by: Kamil Wydrzycki on Sep 24, 2009 12:57 PM

    DrLaszloJamf wrote:
    warnerja wrote:
    DrLaszloJamf wrote:
    1. Could you define an Enum? Then you could switch on enum values.
    2. Wait for Java 7 which is supposed to extend switch to strings?3. Put the target strings in a collection, write a loop to find the match in the collection and use the matching index in the switch statement. At least that will get rid of the hashcode kludge, where it won't mistakenly 'match' a string which isn't the actual target.3b: Map<String, Command>Yep.
    I also wanted to point this out to the OP:
    For example, let's say the 7 character string "BugABoo" happens to have the same hashcode as "EDI_DOC". And let's say your input just happens to have the string "BugABoo" in it, where you're extracting the 7 character substring. See the problem? You're getting "BugABoo" but treating it as if it really were "EDI_DOC", by virtue of comparing hashcodes instead of actual strings.
    OOPS!

  • Problem with numeric types in Abap Proxy

    Hello,
    We are having problems with some abap proxy calls. When a numeric type is filled with 0 the node it´s automatically removed and no value it's recived in XI. The only way I have found to avoid this problem it's to define the field with type string or change the cardinality to 1..1 instead of 0..1. It's there any way to maintain the type and the cardinality?? Maybe with a pattern??
    Regards,
    Alberto Pla.

    Hi Alberto
    I had this problem, and I decided to use xsd:string instead of xsd:integer. This will solve the issue.
    Anyway.. check this note:
    [Note 1242795 - Mapping of XSD default values by ABAP Proxy Generation|https://service.sap.com/sap/support/notes/1242795]
    Regards
    Francesco

  • Problem with file type... some files have been changed to folders... Help !

    Hello,
    I have problem with some files that are located in Library / Quicktime.
    I have 7 files in that folder and all are .component files.
    3 of them used to look like a lego block :
    DivX Encoder.component
    macam.component
    MayaIFF.component
    But today, I have accidentally change them into folders (and I don,t Know how...) So instead of having thoses 3 files with the lego block icon , I have 3 folders and If I click on thoses folder, It open like a standard folder, so I see the "content" folder inside them...
    How can I change it back to the .component file type they should be... I know how to change the type of a file, but since they are now folders, there's no "file Type" associated with them (right click / infos)...
    Help !

    There are lots of things that are in fact folders, but the Finder treats them as "files"--in the sense that normally when you select one you cannot see the contents of the folder. One way this is done is by the use of certain extensions, for instance .app, .pkg, .mpkg, .bundle and .component all tell the Finder to NOT display the folders as folders. If you do a GetInfo on them and the name is still "whatever.component" and the Kind: Component is still showing, and you haven't noticed any problem with QuickTime, then don't worry about it.
    Those are all third party QT components. If they aren't working, you may have to reinstall them from the original source.
    Francine
    Francine
    Schwieder

  • Problem with field type STRING in table

    Hi Experts,
             I am new to ABAP. I have created a new transparent table which hold error info. One of the field has to store data of size about 1500 char.
    Since CHAR type is not acceptable for this field So I gave STRING type. Now when I try to create a TABLE parameter in a RFC enabled functional module using "LIKE YERROR" Then I get a error:
    "YERROR must be a flat structure. You cannot use internal tables, strings, references, or structure as component" 
    Why is this error? How to resolve it? Is it because I have used a field of type STRING in the table? If this is the problem then what other type can I use?
    What are other know problems with using STRING type?
    Please help!
    Thanks
    Gopal

    Hi,
    Try to declare it as type LCHR , it can hold up to 32000 chars.
    Regards
    vijay

  • Trying to export video, stuck at 0%. File in project is .mp4. I only have this problem with this type of file.

    Hello,
    I am trying to export a video and I'm stuck at 0%.  The file in the video is a .mp4 that I downloaded from my own Youtube page.  I have the same problem with any project containing this type of file.  I have tried to export as .mov, .Mpeg, .wmv, .avi, with the same results.
    I am able to export videos that contain other sorts of files without difficulty. 
    I am using a PC.  Adobe Premiere Elements 12.
    Any assistance will be greatly appreciated. 
    Thank you!
    Travis

    Travis
    Do you have the latest version of QuickTime installed on your computer with Premiere Elements 12?
    Sides mentions....
    Have you updated from 12 to the 12.1 Update? If not, please do so using an opened project's Help Menu/Update.
    What is the computer operating system in use.
    Are you running the program from a User Account with Administrative Privileges?
    We will be watching for your results.
    Thank you.
    ATR

  • Data loading problem with Movement types

    Hi Friends,
            I extarcted data using the data source General Ledger : Line itemdata (0fi_gl_4) to BW side.
        Problem is Movement Types for some documents missing.
    But i checked in rsa3 that time showing correctly.
    i restricted the data in bw side infopackage level only particular document that time data loading perfecly.
    this data source having 53,460 records.among all the records 400 records doc type 'we' movement types are missing.
    please give me solution for this how to loading the data with movement types.
    i checked particular document of 50000313 in RSA3 it is showing movement types. then i loaded data in bw side that time that movement types are not comming to be side. then i gave the particular doc 50000313 in infopackage level loading the data that time movement types are loading correctly. this extaractor having 55000 records.
    this is very urgent problem.Please give me reply urgenty. i am waiting for your's replys.
    Thanks & Regards,
    Guna.
    Edited by: gunasekhar raya on May 8, 2008 9:40 AM

    Hi,
    we enhanced Mvement type field(MSEG-BWART) General ledger (0FI_GL_4) extractor.
    this field populated with data all the ACC. Doc . number.
    Only 50000295 to 50000615  in this range we are not getting the movement types values.
    we didn't write any routines in transfer and update rules level.
    just we mapped to BWART field 0MOVETYPE info object.
    we restrict the particular doc no 50000313 infopackage level that time loading the the data into cube with movement types.
    but we remove the restriction infopackage level then loading the data that time we missing the movement types data of particular doc no 50000295 to 50000615.
    Please give mesolution for this. i need to solve this very urgently.
    i am witing for your reply.
    Thanks,
    Guna.

  • Problem with DB2 Type 4 driver

    Hi
    The problem has been narrowed down to a problem with the IBM DB2 Type 4
    driver (COM.ibm.db2.jdbc.net.DB2Driver). In some situations, it introduces a
    100ms delay when sending parameters for a prepared statement (846 bytes in
    the truss trace below). With the IBM app driver (type 2) we get the
    performance that we expect.
    In other words, this has to do with TCP/IP communication and whether this is
    a JVM, DB2 or Solaris issue we don't know. Probably a combination.
    Regards
    Steffen Jensen
    Nordija
    Below, the Solaris truss trace that shows how the JDBC driver (in the WLS
    VM) sends data and how the DB2 listener process receives it.
    WLS
    24092: 5.6607 send(7, "\001\0\003 N", 6, 0) = 6
    24092: 5.6611 send(7, "\0 O\001\004\001FFE7FFFB".., 846, 0) = 846
    24092: 5.6682 poll(0xFEC07A50, 0, 10) = 0
    24092: 5.6882 poll(0xFEC07A50, 0, 10) = 0
    24092: 5.7082 poll(0xFEC07A50, 0, 10) = 0
    24092: 5.7282 poll(0xFEC07A50, 0, 10) = 0
    24092: 5.7482 poll(0xFEC07A50, 0, 10) = 0
    24092: 5.7625 read(7, "\0", 1) = 1
    DB2 listener
    24109: 5,6607 recv(5, "\001", 2, 0) = 2
    24109: 5,6617 recv(5, "\0\003 N", 4, 0) = 4
    24109: 5,7583 recv(5, "\0 O\001\004\001FFE7FFFB".., 846, 0) = 846
    24109: 5,7606 semop(2883608, 0xFFBED4C0, 1) = 0
    24109: semnum=0 semop=1 semflg=0
    24109: 5,7618 semop(2883608, 0xFFBED5C0, 1) = 0
    24109: semnum=1 semop=-1 semflg=0

    Hi
    The problem has been narrowed down to a problem with the IBM DB2 Type 4
    driver (COM.ibm.db2.jdbc.net.DB2Driver). In some situations, it introduces a
    100ms delay when sending parameters for a prepared statement (846 bytes in
    the truss trace below). With the IBM app driver (type 2) we get the
    performance that we expect.
    In other words, this has to do with TCP/IP communication and whether this is
    a JVM, DB2 or Solaris issue we don't know. Probably a combination.
    Regards
    Steffen Jensen
    Nordija
    Below, the Solaris truss trace that shows how the JDBC driver (in the WLS
    VM) sends data and how the DB2 listener process receives it.
    WLS
    24092: 5.6607 send(7, "\001\0\003 N", 6, 0) = 6
    24092: 5.6611 send(7, "\0 O\001\004\001FFE7FFFB".., 846, 0) = 846
    24092: 5.6682 poll(0xFEC07A50, 0, 10) = 0
    24092: 5.6882 poll(0xFEC07A50, 0, 10) = 0
    24092: 5.7082 poll(0xFEC07A50, 0, 10) = 0
    24092: 5.7282 poll(0xFEC07A50, 0, 10) = 0
    24092: 5.7482 poll(0xFEC07A50, 0, 10) = 0
    24092: 5.7625 read(7, "\0", 1) = 1
    DB2 listener
    24109: 5,6607 recv(5, "\001", 2, 0) = 2
    24109: 5,6617 recv(5, "\0\003 N", 4, 0) = 4
    24109: 5,7583 recv(5, "\0 O\001\004\001FFE7FFFB".., 846, 0) = 846
    24109: 5,7606 semop(2883608, 0xFFBED4C0, 1) = 0
    24109: semnum=0 semop=1 semflg=0
    24109: 5,7618 semop(2883608, 0xFFBED5C0, 1) = 0
    24109: semnum=1 semop=-1 semflg=0

  • FrameGrabbingControl - grab frame problem with video type

    Hi all
    I have a problem with extracting frames from a video.
    Currently I am able to extracting video from some avi formats. But this method does not works for many formats. like mpg etc...
    The FrameGrabbingControl object return null for many formats.
    This is my code
    public Player getVideoPlayer() throws Exception
            if (videoPlayer == null)
                File file = new File("E:\\Songs\\English\\Video\\Alizee\\20090209114235.avi");
                MediaLocator videoMediaLocator = new MediaLocator(file.toURL());
                videoPlayer = Manager.createRealizedPlayer(videoMediaLocator);
            return videoPlayer;
    public FrameGrabbingControl getFrameGrabCntrl() throws Exception
            if (frameGrabCntrl == null)
                frameGrabCntrl = (FrameGrabbingControl) getVideoPlayer().getControl("javax.media.control.FrameGrabbingControl");
            return frameGrabCntrl;
    // frame extract method
    public Image captureCurrent() throws Exception
            Buffer frame = getFrameGrabCntrl().grabFrame();
            BufferToImage stopBuffer = new BufferToImage((VideoFormat) frame.getFormat());
            return stopBuffer.createImage(frame);
        }Here are some 3 sample media information I have tested with the program. First two works fine but 3rd one does not works.
    // taken from http://www.exactfutures.com/index02.htm and downloaded http://www.exactfutures.com/vid2jpg.zip
    // WORKS FINE
       General
          Complete name : E:\Songs\English\Video\Alizee\testcam04.avi
          Format : AVI
          Format/Info : Audio Video Interleave
          Format/Family : RIFF
          File size : 1.88 MiB
          PlayTime : 29s 596ms
          Bit rate : 533 Kbps
       Video #0
          Codec : Indeo 4
          Codec/Info : Intel Indeo Video 5.0 Wavelet
          PlayTime : 29s 596ms
          Bit rate : 528 Kbps
          Width : 320 pixels
          Height : 240 pixels
          Aspect ratio : 4/3
          Frame rate : 3.818 fps
          Bits/(Pixel*Frame) : 1.801
    // recorded video from a webcam
    // WORKS FINE
       General
          Complete name : C:\Program Files\MSI\MyGuard Live\VideoClip\20090209114235.avi
          Format : AVI
          Format/Info : Audio Video Interleave
          Format/Family : RIFF
          File size : 311 KiB
          PlayTime : 3s 200ms
          Bit rate : 710 Kbps
       Video #0
          Codec : Indeo 4
          Codec/Info : Intel Indeo Video 5.0 Wavelet
          PlayTime : 3s 200ms
          Bit rate : 705 Kbps
          Width : 640 pixels
          Height : 480 pixels
          Aspect ratio : 4/3
          Frame rate : 15.000 fps
          Bits/(Pixel*Frame) : 0.153
    // downloaded avi sample video
    // NOT WORKS
       General
          Complete name : E:\Songs\English\Video\Alizee\fvss_demo.avi
          Format : AVI
          Format/Info : Audio Video Interleave
          Format/Family : RIFF
          File size : 10.3 MiB
          PlayTime : 2mn 300ms
          Bit rate : 715 Kbps
       Video #0
          Codec : MS Video
          Codec/Info : Microsoft Video 1
          PlayTime : 2mn 300ms
          Bit rate : 638 Kbps
          Width : 160 pixels
          Height : 120 pixels
          Aspect ratio : 4/3
          Frame rate : 10.000 fps
          Bits/(Pixel*Frame) : 3.325
       Audio #1
          Codec : PCM
          Codec/Family : PCM
          Codec/Info : Microsoft PCM
          PlayTime : 2mn 300ms
          Bit rate : 64 Kbps
          Channel(s) : 1 channel
          Sampling rate : 8000 Hz
          Resolution : 8 bitsI think problem is the codec. Am I correct?
    Could anyone please tell me why can't I use this FrameGrabbingControl object to extract frames?

    deshan wrote:
    Currently I am able to extracting video from some avi formats. But this method does not works for many formats. like mpg etc...
    The FrameGrabbingControl object return null for many formats.That's expected behavior when the codec doesn't support capture...
    Could anyone please tell me why can't I use this FrameGrabbingControl object to extract frames?Because it's not supported for that format.
    But T.B.M. and I have recently worked on / posted a workaround that should capture any video format that JMF can play.
    [http://forums.sun.com/thread.jspa?messageID=10596692#10596692]

  • Problem with Data Type

    Hi,
    I am performing SAP Production Order Confirmations (CO11N transaction) using an xMII BLT. In the CO11N screen, SAP doesn't let you type character values in the field 'Yield'. It is the same thing in xMII BLT where I have defined 'Yield' as the Data Type 'Double'. However, when I pass a character value for the input field 'Yield' from an Xacute query, I get the message 'Confirmation of order XXXXXXXX saved'. This is not correct because you can't have character values for the field 'Yield'. When I display the respective confirmation in SAP, the 'Yield' quantity is being shown as '0'. This is a discrepancy. To sum up, when you do a confirmation in the SAP screen CO11N it doesn't let you type a character value in the filed 'Yield' however, when you pass a character value from an Xacute query it accepts it as '0'. Can somebody tell me how I can fix this problem? Thanks.
    Regards,
    V M.

    V_M,
    The message 'Confirmation of order XXXXXXXX saved' is created within SAP, not from xMII.  So the input filtering and error handling in the BAPI itself is not designed correctly.  This is not all that unusual with BAPIs.  Rather than simply testing performance in CO11N, I usually start with BAPI Explorer and use the single test functionality. 
    This is not a bug in xMII, but rather the normal (albeit, invalid) performance of the BAPI.  It doesn't cause real problems within SAP since it records 0 (zero) as the quantity confirmed (Yield).  The corrective action would be a custom BAPI and/or enter a CSS ticket for the BAPI.  Remember that the BAPIs rarely (more likely, never) fully reproduce the internal functionality of the SAP screens.
    SAP has error handling built into their transactions such as CO11N which prevent invalid entries.  You may have to do the same in your transaction, web page, etc.
    Hope this helps,
    Mike

  • Problem with True Type font

    I have a Windows True Type font (Palatino Linotype, purchased directly from Linotype) that I use in my PowerPoint presentations in order to provide compatibility with my benighted PC-based clients. I just installed Leopard (a Christmas present from my family!), and this font is not working properly in Word.
    Two letters are bad: i and j. There is extra space inserted after the letter i whether upper or lower case. There is no space around the letter j: if I type 10 consecutive j's, I see only one.
    It was working fine in Tiger. It works fine in Excel, PowerPoint, and Mail (i.e., it displays correctly and prints correctly). The error only occurs in Word and persists when I send the file to the printer, and also persists if I print to PDF or Preview. The error is visible in all layouts of Word.
    I checked out 10-12 other fonts, including several other TTF fonts, and they are all okay. I also tried moving the font from my user Library to the System Library, and taking it out of the folder that it came in, but the effect is the same.
    I have the latest version of Word (11.3.8). I have updated my initial install to 10.5.1. I do not have any special drivers loaded. My machine is pretty much plain vanilla Apple.
    I suspect that this is either a Word problem or a Linotype problem, but neither of those vendors are usually of much help, so I'm hoping that someone here might be able to assist.
    Duncan

    If anyone has been able to resolve this please let me know. Thanks. -Derryl
    If you haven't done so already, it's important to ask yourself here
    http://groups.google.com/group/microsoft.public.mac.office.word/topics
    so at least the MS experts that hang out there know about the problem

  • Problems with enumerated type and DataSocket

    I am publishing an enumerated type variable using DataSocket write and I am having problems subscribing to this with other clients on the network. I can get the program to work ok if I replace the enumerated type with a straight numeric or a Text Ring for example. Is there anything special I should be looking out for when using enumerated types in this type of application.
    Thanks Kelly

    Updating to the latest version of LabVIEw (6.0.2) should correct this problem:
    http://digital.ni.com/softlib.nsf/websearch/F983BDA17B8F401B862569EC005A11C2
    Also, I would suggest updating to the latest version DataSocket:
    http://digital.ni.com/softlib.nsf/web%2Fall%20software?OpenView&Start=1&Count=500&Expand=6#6
    Chris_Mitchell
    Product Development Engineer
    Certified LabVIEW Architect

Maybe you are looking for

  • List of Queries/Workbooks in old version (3.5)

    Dear experts, I'd like to get a list of all queries and workbooks still beeing used in the old version (3.5). I'm looking for information like: ID, Name, Version, LastUsed, Creator, User ... Is there a way to enable the old frontend tools ( BeX, Quer

  • I cannot cancel a print job, cannot print or restart print so other jobs won't print. any help?

    I cannot cancel print job or restart, so I cannot print new job. How do I clear this off?

  • Problems w/ Safari 5.0 Since Installation

    I have had ongoing problems with Safari ever since I installed v5.0. For most websites (even the ones I check multiple times per day), Safari "can't find server" after loooonnnng period of trying, but retry is almost always successful. (Yes, I've emp

  • Nexus 7k EEM Script

    I had plans to configure a EEM script to send a email when an OSPF adjacency drops. I have an odd spanning-tree issue that I believe the drops are related to and I want to see if my suspicions are correct. This doesn't happen very often, and it's nor

  • Get Authorization Workflow status

    Hello Everyone, Does someone know how can i get the current status from an authorization workflow using some API? I need to code a method to validate how many documents have been authorized. on a specific folder in km. Thanks for any help. Regards.