Text costcenter

Hi,
we have a problem with the text of our costcenter variable.
The text of our variable costcenter is shown as key/short text instead of long text as well in the variable screen as in the displayed text elements (Layout > Display text elements).
We tried to change the settings in the Info Object as well as in Query Designer (Properties of the characteristic) an in the related Info Cube with no result.
Thank you for your help in advance.
Uli

Hello Uli,
We had a similar problem recently.
Below listed notes helped:
0001042902 Text-Key Darstellung Merkmalswerte werden falsch angezeigt
0001071167 Wertehilfe für Variablen ist falsch sortiert / dargestellt
Kind regards
Klaus

Similar Messages

  • How to use table in standard text

    Hi,
    I created one standard text using SO10 and I need to populate my internal table data values in the standard text. Below is the standard text i created.
    XXXXXXXXXXXXXXX
    XXXXXXXXXXXXXXXXXXXXXXXXX
    XXXXXXXXXXXXXXXXXXXXXXXXX
    XXXXXXXXXXXXXXXXXXXXXXXXX
    XXXXXXXXXXXXXXXXXXXXXXXXX
    &GV_ASSIGNMENT&   &COSTCENTER&    &ORGUNIT&
    &GV_ASSIGNMENT&   &COSTCENTER&    &ORGUNIT&
    &GV_ASSIGNMENT&   &COSTCENTER&    &ORGUNIT&
    Thanks,
    XXXXXXXXX
    If an employee have multiple assignments, I have to send a mail to org unit head with the above format.
    I created the above format in standard text (SO10). Now how to populate the values in the standard text.
    Thanks,
    Ram

    Hi Ram,
    A standard text like this does not have the concept of looping through data (which is what you'll have to do if there you have a table of data).
    What are you using to generate the mail?  If is is comning from smartform or SAPscript you should use the form to define the layout and the loop, meaning you'll need to split your standard text into smaller texts.
    Regards,
    Nick

  • Create Material Master Record with Text

    Hi, I am looking to create material Master Data via ABAP.  I currently have some code that creates the Master Data Characteristic value I want, but I need the text as well.  Can someone tell me what I need to do to add the text for the Master Data Characteristic value?
    Here's what I have using CL_RSDMD_UPDATE_MASTER_DATA=>UPDATE_ATTRIBUTES_STATIC
    TYPE-POOLS: RS, RSSM.
      DATA: T_ZFREETEXT   LIKE STANDARD TABLE OF ZFREETEXT.
      DATA: T_INFO        TYPE RSSM_S_MINFO.
      DATA: RETURN_STATUS TYPE RSARR_T_IDOCSTATE.
      DATA: RETURN_SUBRC  LIKE SY-SUBRC.
      DATA: MSG TYPE RS_T_MSG.
      DATA: L_R_ACTIVATE_MASTER_DATA TYPE REF TO CL_RSDMD_ACTIVATE_MASTER_DATA.
      INSERT ZFREETEXT INTO TABLE T_ZFREETEXT.
      CALL METHOD CL_RSDMD_UPDATE_MASTER_DATA=>UPDATE_ATTRIBUTES_STATIC
        EXPORTING
          I_IOBJNM        = '0MATERIAL'     " Technical name of InfoObject
          I_CHAVL_ENQUEUE = RS_C_FALSE
          I_T_DATA        = T_ZFREETEXT
          I_S_MINFO       = T_INFO
          I_MONITORING    = RS_C_FALSE
        CHANGING
          C_T_IDOCSTATE   = RETURN_STATUS.
      IF SY-SUBRC <> 0.
        RETURN_SUBRC = 'Error happened'.
      ELSE.
        RETURN_MSG = 'Process Completed Successfully'.
        CREATE OBJECT L_R_ACTIVATE_MASTER_DATA
          EXPORTING
            I_IOBJNM            = '0MATERIAL'
            I_P_Q_HAVE_TO_EXIST = RS_C_FALSE.
        IF SY-SUBRC = 0.
          L_R_ACTIVATE_MASTER_DATA->ACTIVATE(
          IMPORTING
          E_SUBRC = RETURN_SUBRC
          CHANGING
          C_T_MSG = MSG ).
        ENDIF.
      ENDIF.

    Dear Kenneth,
    do you need to add master data during load of transaction data in planning scenario? If yes, you can do this with a planning function of type exit in the INIT function module.
    I think you've to use the table ETO_CHAS (table for char. combinations) and all kind of char. combinations has to be transfered.
    data:
    l_s_chas type /1SEM/_YS_CHAS_"YOURCLIENT"YOURPLANNINGAREA",
    l_r_co_area type range of /bi0/oico_area,
    l_s_costcenter type /bi0/pcostcenter.
    field-symbols:
    <f_coar> type /bi0/oico_area,
    <f_cctr> type /bi0/oicostcenter.
    select * from /bi0/pcostcenter into l_s_costcenter
                 where co_area IN l_r_co_area
                 and objvers = 'A'.
    <f_coar> = l_s_costcenter-co_area.
    <f_cctr> = l_s_costcenter-costcenter.
    INSERT l_s_chas INTO TABLE eto_chas.
    endselect.
    Regards, Clemens

  • When text/xml is not XML

    Greetings XDBers,
    [ (9.2.0.4.0) on Windows Server 2003 (Standard) ]
    Using xdbconfig.xml, I mapped the custom extensions "xrq" and "xnt" to mime type "text/xml" however, the resources created in the repository in response to an FTP upload with those extensions are created as CLOB (non-schema-based) XML.
    Strangely enough
    INSERT INTO <schema_mapped_table>
    SELECT rv.res.createSchemaBasedXML()
    FROM RESOURCE_VIEW rv
    WHERE under_path( v.res, '/public/application/inbound' ) = 1;
    works correctly, so its seemingly not the inbound XML structure thats at fault.
    Is the schema mapping (shred) triggered in some other way?
    Thanks,
    Lachlan

    SQL*Plus: Release 10.1.0.2.0 - Production on Thu Apr 8 22:34:13 2004
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> spool addMimeType.log
    SQL> set trimspool on
    SQL> connect sys/&1 as sysdba
    Connected.
    SQL> --
    SQL> set timing on
    SQL> set long 10000
    SQL> set pages 10000
    SQL> set feedback on
    SQL> set lines 132
    SQL> --
    SQL> column EXTENSION format A10
    SQL> column MAPPING format A32
    SQL> --
    SQL> select extractValue(value(MAPPING),'/mime-mapping/extension','xmlns="http://xmlns.oracle.com/xdb/xdbconfig.x
    2 extractValue(value(MAPPING),'/mime-mapping/mime-type','xmlns="http://xmlns.oracle.com/xdb/xdbconfig.x
    3 from table(xmlsequence(extract(xdburitype('/xdbconfig.xml').getXML(),'/xdbconfig/sysconfig/protocolconfig/
    ppings/mime-mappings/mime-mapping'))) MAPPING
    4 /
    EXTENSION MAPPING
    au audio/basic
    avi video/x-msvideo
    bin application/octet-stream
    bmp image/bmp
    doc application/msword
    eml message/rfc822
    gif image/gif
    htm text/html
    html text/html
    jpe image/jpeg
    jpeg image/jpeg
    jpg image/jpeg
    jsp text/html
    mid audio/mid
    mov video/quicktime
    movie video/x-sgi-movie
    mp3 audio/mpeg
    mpe video/mpg
    mpeg video/mpg
    mpg video/mpg
    msa application/x-msaccess
    msw application/x-msworks-wp
    pcx application/x-pc-paintbrush
    pdf application/pdf
    ppt application/vnd.ms-powerpoint
    ps application/postscript
    qt video/quicktime
    ra audio/x-realaudio
    ram audio/x-realaudio
    rm audio/x-realaudio
    rtf application/rtf
    rv video/x-realvideo
    sgml text/sgml
    tif image/tiff
    tiff image/tiff
    txt text/plain
    url text/plain
    vrml x-world/x-vrml
    wav audio/wav
    wpd application/wordperfect5.1
    xls application/vnd.ms-excel
    xml text/xml
    xsd text/xml
    xsl text/xml
    zip application/x-zip-compressed
    45 rows selected.
    Elapsed: 00:00:00.30
    SQL> alter session Set events='19027 trace name context forever,level 4'
    2 /
    Session altered.
    Elapsed: 00:00:00.01
    SQL> call dbms_xdb.cfg_update
    2 (
    3 insertxml
    4 (
    5 dbms_xdb.cfg_get(),
    6 '/xdbconfig/sysconfig/protocolconfig/common/extension-mappings/mime-mappings',
    7 'mime-mapping',
    8 xmltype
    9 (
    10 '<mime-mapping xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">
    11 <extension>mdd</extension>
    12 <mime-type>text/xml</mime-type>
    13 </mime-mapping>'
    14 )
    15 )
    16 )
    17 /
    Call completed.
    Elapsed: 00:00:00.22
    SQL> call dbms_xdb.cfg_update
    2 (
    3 insertxml
    4 (
    5 dbms_xdb.cfg_get(),
    6 '/xdbconfig/sysconfig/protocolconfig/common/extension-mappings',
    7 'xml-extensions',
    8 xmltype
    9 (
    10 '<xml-extensions xmlns="http://xmlns.oracle.com/xdb/xdbconfig.xsd">
    11 <extension>mdd</extension>
    12 </xml-extensions>'
    13 )
    14 )
    15 )
    16 /
    Call completed.
    Elapsed: 00:00:00.07
    SQL> commit
    2 /
    Commit complete.
    Elapsed: 00:00:00.00
    SQL> select extractValue(value(MAPPING),'/mime-mapping/extension','xmlns="http://xmlns.oracle.com/xdb/xdbconfig.x
    2 extractValue(value(MAPPING),'/mime-mapping/mime-type','xmlns="http://xmlns.oracle.com/xdb/xdbconfig.x
    3 from table(xmlsequence(extract(xdburitype('/xdbconfig.xml').getXML(),'/xdbconfig/sysconfig/protocolconfig/
    ppings/mime-mappings/mime-mapping'))) MAPPING
    4 /
    EXTENSION MAPPING
    au audio/basic
    avi video/x-msvideo
    bin application/octet-stream
    bmp image/bmp
    doc application/msword
    eml message/rfc822
    gif image/gif
    htm text/html
    html text/html
    jpe image/jpeg
    jpeg image/jpeg
    jpg image/jpeg
    jsp text/html
    mid audio/mid
    mov video/quicktime
    movie video/x-sgi-movie
    mp3 audio/mpeg
    mpe video/mpg
    mpeg video/mpg
    mpg video/mpg
    msa application/x-msaccess
    msw application/x-msworks-wp
    pcx application/x-pc-paintbrush
    pdf application/pdf
    ppt application/vnd.ms-powerpoint
    ps application/postscript
    qt video/quicktime
    ra audio/x-realaudio
    ram audio/x-realaudio
    rm audio/x-realaudio
    rtf application/rtf
    rv video/x-realvideo
    sgml text/sgml
    tif image/tiff
    tiff image/tiff
    txt text/plain
    url text/plain
    vrml x-world/x-vrml
    wav audio/wav
    wpd application/wordperfect5.1
    xls application/vnd.ms-excel
    xml text/xml
    xsd text/xml
    xsl text/xml
    zip application/x-zip-compressed
    mdd text/xml
    46 rows selected.
    Elapsed: 00:00:00.25
    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    open mdrake-lap 2100
    user XDBTEST XDBTEST
    cd /home/XDBTEST
    ls -l
    put "testcase.xml" "testcase.xml"
    ls -l
    get "testcase.xml" "testcase.xml.out"
    quit
    Connected to mdrake-lap.
    220 mdrake-lap FTP Server (Oracle XML DB/Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production)
    331 pass required for XDBTEST
    230 XDBTEST logged in
    250 CWD Command successful
    200 PORT Command successful
    150 ASCII Data Connection
    drw-r--r-- 2 XDBTEST oracle 0 APR 09 05:34 xsd
    226 ASCII Transfer Complete
    ftp: 59 bytes received in 0.00Seconds 59000.00Kbytes/sec.
    200 PORT Command successful
    150 ASCII Data Connection
    226 ASCII Transfer Complete
    ftp: 4810 bytes sent in 0.05Seconds 96.20Kbytes/sec.
    200 PORT Command successful
    150 ASCII Data Connection
    -rw-r--r-- 1 XDBTEST oracle 0 APR 09 05:34 testcase.xml
    drw-r--r-- 2 XDBTEST oracle 0 APR 09 05:34 xsd
    226 ASCII Transfer Complete
    ftp: 127 bytes received in 0.00Seconds 127000.00Kbytes/sec.
    200 PORT Command successful
    150 ASCII Data Connection
    226 ASCII Transfer Complete
    ftp: 4434 bytes received in 0.00Seconds 4434000.00Kbytes/sec.
    221 QUIT Goodbye.
    SQL*Plus: Release 10.1.0.2.0 - Production on Thu Apr 8 22:34:16 2004
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> spool testcase.log
    SQL> set trimspool on
    SQL> connect &1/&2
    Connected.
    SQL> --
    SQL> set timing on
    SQL> set long 10000
    SQL> set pages 10000
    SQL> set feedback on
    SQL> set lines 132
    SQL> --
    SQL> select object_value from PURCHASEORDER
    2 /
    OBJECT_VALUE
    <PurchaseOrder xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://localh
    /poSource/xsd/purchaseOrder.xsd">
    <Reference>AMCEWEN-20030209123335701PDT</Reference>
    <Actions>
    <Action>
    <User>KPARTNER</User>
    </Action>
    </Actions>
    <Reject/>
    <Requestor>Allan D. McEwen</Requestor>
    <User>AMCEWEN</User>
    <CostCenter>S30</CostCenter>
    <ShippingInstructions>
    <name>Allan D. McEwen</name>
    <address>Oracle Plaza
    Twin Dolphin Drive
    Redwood Shores
    CA
    94065
    USA</address>
    <telephone>650 506 7700</telephone>
    </ShippingInstructions>
    <SpecialInstructions>Counter to Counter</SpecialInstructions>
    <LineItems>
    <LineItem ItemNumber="1">
    <Description>Blood for Dracula</Description>
    <Part Id="715515009522" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="2">
    <Description>That Obscure Object of Desire</Description>
    <Part Id="37429162026" UnitPrice="29.95" Quantity="4"/>
    </LineItem>
    <LineItem ItemNumber="3">
    <Description>Carnival of Souls</Description>
    <Part Id="715515010221" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="4">
    <Description>The Rock</Description>
    <Part Id="786936150421" UnitPrice="49.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="5">
    <Description>How to Get Ahead in Advertising</Description>
    <Part Id="715515012324" UnitPrice="29.95" Quantity="3"/>
    </LineItem>
    <LineItem ItemNumber="6">
    <Description>Playtime</Description>
    <Part Id="37429155820" UnitPrice="29.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="7">
    <Description>Beastie Boys Video Anthology</Description>
    <Part Id="715515010924" UnitPrice="29.95" Quantity="3"/>
    </LineItem>
    <LineItem ItemNumber="8">
    <Description>Charade</Description>
    <Part Id="37429139424" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="9">
    <Description>That Obscure Object of Desire</Description>
    <Part Id="37429162026" UnitPrice="29.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="10">
    <Description>Withnail &amp; I</Description>
    <Part Id="715515012225" UnitPrice="29.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="11">
    <Description>Bob le Flambeur</Description>
    <Part Id="37429165928" UnitPrice="29.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="12">
    <Description>A Nous la Liberte</Description>
    <Part Id="37429147726" UnitPrice="29.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="13">
    <Description>Amarcord</Description>
    <Part Id="37429121825" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="14">
    <Description>Peeping Tom</Description>
    <Part Id="37429142929" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="15">
    <Description>That Obscure Object of Desire</Description>
    <Part Id="37429162026" UnitPrice="29.95" Quantity="3"/>
    </LineItem>
    <LineItem ItemNumber="16">
    <Description>Blood for Dracula</Description>
    <Part Id="715515009522" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="17">
    <Description>Orpheus</Description>
    <Part Id="37429141427" UnitPrice="0" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="18">
    <Description>General Idi Amin Dada</Description>
    <Part Id="37429166529" UnitPrice="29.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="19">
    <Description>A Nous la Liberte</Description>
    <Part Id="37429147726" UnitPrice="29.95" Quantity="4"/>
    </LineItem>
    <LineItem ItemNumber="20">
    <Description>Big Deal on Madonna Street</Description>
    <Part Id="37429155424" UnitPrice="29.95" Quantity="3"/>
    </LineItem>
    <LineItem ItemNumber="21">
    <Description>All That Heaven Allows</Description>
    <Part Id="715515011426" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="22">
    <Description>Sullivan&apos;s Travels</Description>
    <Part Id="715515012126" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="23">
    <Description>Diary of a Chambermaid</Description>
    <Part Id="37429158128" UnitPrice="29.95" Quantity="1"/>
    </LineItem>
    </LineItems>
    </PurchaseOrder>
    1 row selected.
    Elapsed: 00:00:01.03
    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    open mdrake-lap 2100
    user XDBTEST XDBTEST
    cd /home/XDBTEST
    ls -l
    put "testcase.mdd" "testcase.mdd"
    ls -l
    get "testcase.mdd" "testcase.mdd.out"
    quit
    Connected to mdrake-lap.
    220 mdrake-lap FTP Server (Oracle XML DB/Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production)
    331 pass required for XDBTEST
    230 XDBTEST logged in
    250 CWD Command successful
    200 PORT Command successful
    150 ASCII Data Connection
    -rw-r--r-- 1 XDBTEST oracle 0 APR 09 05:34 testcase.xml
    drw-r--r-- 2 XDBTEST oracle 0 APR 09 05:34 xsd
    226 ASCII Transfer Complete
    ftp: 127 bytes received in 0.00Seconds 127000.00Kbytes/sec.
    200 PORT Command successful
    150 ASCII Data Connection
    226 ASCII Transfer Complete
    ftp: 4007 bytes sent in 0.01Seconds 400.70Kbytes/sec.
    200 PORT Command successful
    150 ASCII Data Connection
    -rw-r--r-- 1 XDBTEST oracle 0 APR 09 05:34 testcase.mdd
    -rw-r--r-- 1 XDBTEST oracle 0 APR 09 05:34 testcase.xml
    drw-r--r-- 2 XDBTEST oracle 0 APR 09 05:34 xsd
    226 ASCII Transfer Complete
    ftp: 195 bytes received in 0.01Seconds 19.50Kbytes/sec.
    200 PORT Command successful
    150 ASCII Data Connection
    226 ASCII Transfer Complete
    ftp: 3686 bytes received in 0.00Seconds 3686000.00Kbytes/sec.
    221 QUIT Goodbye.
    SQL*Plus: Release 10.1.0.2.0 - Production on Thu Apr 8 22:34:19 2004
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> spool testcase.log
    SQL> set trimspool on
    SQL> connect &1/&2
    Connected.
    SQL> --
    SQL> set timing on
    SQL> set long 10000
    SQL> set pages 10000
    SQL> set feedback on
    SQL> set lines 132
    SQL> --
    SQL> select object_value from PURCHASEORDER
    2 /
    OBJECT_VALUE
    <PurchaseOrder xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://localh
    /poSource/xsd/purchaseOrder.xsd">
    <Reference>AMCEWEN-20030209123335701PDT</Reference>
    <Actions>
    <Action>
    <User>KPARTNER</User>
    </Action>
    </Actions>
    <Reject/>
    <Requestor>Allan D. McEwen</Requestor>
    <User>AMCEWEN</User>
    <CostCenter>S30</CostCenter>
    <ShippingInstructions>
    <name>Allan D. McEwen</name>
    <address>Oracle Plaza
    Twin Dolphin Drive
    Redwood Shores
    CA
    94065
    USA</address>
    <telephone>650 506 7700</telephone>
    </ShippingInstructions>
    <SpecialInstructions>Counter to Counter</SpecialInstructions>
    <LineItems>
    <LineItem ItemNumber="1">
    <Description>Blood for Dracula</Description>
    <Part Id="715515009522" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="2">
    <Description>That Obscure Object of Desire</Description>
    <Part Id="37429162026" UnitPrice="29.95" Quantity="4"/>
    </LineItem>
    <LineItem ItemNumber="3">
    <Description>Carnival of Souls</Description>
    <Part Id="715515010221" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="4">
    <Description>The Rock</Description>
    <Part Id="786936150421" UnitPrice="49.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="5">
    <Description>How to Get Ahead in Advertising</Description>
    <Part Id="715515012324" UnitPrice="29.95" Quantity="3"/>
    </LineItem>
    <LineItem ItemNumber="6">
    <Description>Playtime</Description>
    <Part Id="37429155820" UnitPrice="29.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="7">
    <Description>Beastie Boys Video Anthology</Description>
    <Part Id="715515010924" UnitPrice="29.95" Quantity="3"/>
    </LineItem>
    <LineItem ItemNumber="8">
    <Description>Charade</Description>
    <Part Id="37429139424" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="9">
    <Description>That Obscure Object of Desire</Description>
    <Part Id="37429162026" UnitPrice="29.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="10">
    <Description>Withnail &amp; I</Description>
    <Part Id="715515012225" UnitPrice="29.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="11">
    <Description>Bob le Flambeur</Description>
    <Part Id="37429165928" UnitPrice="29.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="12">
    <Description>A Nous la Liberte</Description>
    <Part Id="37429147726" UnitPrice="29.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="13">
    <Description>Amarcord</Description>
    <Part Id="37429121825" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="14">
    <Description>Peeping Tom</Description>
    <Part Id="37429142929" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="15">
    <Description>That Obscure Object of Desire</Description>
    <Part Id="37429162026" UnitPrice="29.95" Quantity="3"/>
    </LineItem>
    <LineItem ItemNumber="16">
    <Description>Blood for Dracula</Description>
    <Part Id="715515009522" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="17">
    <Description>Orpheus</Description>
    <Part Id="37429141427" UnitPrice="0" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="18">
    <Description>General Idi Amin Dada</Description>
    <Part Id="37429166529" UnitPrice="29.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="19">
    <Description>A Nous la Liberte</Description>
    <Part Id="37429147726" UnitPrice="29.95" Quantity="4"/>
    </LineItem>
    <LineItem ItemNumber="20">
    <Description>Big Deal on Madonna Street</Description>
    <Part Id="37429155424" UnitPrice="29.95" Quantity="3"/>
    </LineItem>
    <LineItem ItemNumber="21">
    <Description>All That Heaven Allows</Description>
    <Part Id="715515011426" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="22">
    <Description>Sullivan&apos;s Travels</Description>
    <Part Id="715515012126" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="23">
    <Description>Diary of a Chambermaid</Description>
    <Part Id="37429158128" UnitPrice="29.95" Quantity="1"/>
    </LineItem>
    </LineItems>
    </PurchaseOrder>
    <PurchaseOrder xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://localh
    /poSource/xsd/purchaseOrder.xsd">
    <Reference>AWALSH-20030909123337483PDT</Reference>
    <Actions>
    <Action>
    <User>KPARTNER</User>
    </Action>
    </Actions>
    <Reject/>
    <Requestor>Alana G. Walsh</Requestor>
    <User>AWALSH</User>
    <CostCenter>S30</CostCenter>
    <ShippingInstructions>
    <name>Alana G. Walsh</name>
    <address>1200 East Forty Seventh Avenue
    New York
    NY
    10024
    USA</address>
    <telephone>212 555 1212</telephone>
    </ShippingInstructions>
    <SpecialInstructions>Hand Carry</SpecialInstructions>
    <LineItems>
    <LineItem ItemNumber="1">
    <Description>Diary of a Chambermaid</Description>
    <Part Id="37429158128" UnitPrice="29.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="2">
    <Description>Cries and Whispers</Description>
    <Part Id="37429156322" UnitPrice="29.95" Quantity="4"/>
    </LineItem>
    <LineItem ItemNumber="3">
    <Description>Chasing Amy</Description>
    <Part Id="717951002372" UnitPrice="39.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="4">
    <Description>Vagabond</Description>
    <Part Id="37429148921" UnitPrice="29.95" Quantity="4"/>
    </LineItem>
    <LineItem ItemNumber="5">
    <Description>Closely Watched Trains</Description>
    <Part Id="37429161524" UnitPrice="29.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="6">
    <Description>Le million</Description>
    <Part Id="37429147627" UnitPrice="29.95" Quantity="3"/>
    </LineItem>
    <LineItem ItemNumber="7">
    <Description>Bob le Flambeur</Description>
    <Part Id="37429165928" UnitPrice="29.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="8">
    <Description>Salo</Description>
    <Part Id="715515009225" UnitPrice="29.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="9">
    <Description>My Man Godfrey</Description>
    <Part Id="715515011921" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="10">
    <Description>My Man Godfrey</Description>
    <Part Id="715515011921" UnitPrice="39.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="11">
    <Description>The Bank Dick</Description>
    <Part Id="715515010627" UnitPrice="29.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="12">
    <Description>Armageddon</Description>
    <Part Id="715515010023" UnitPrice="49.99" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="13">
    <Description>The 400 Blows</Description>
    <Part Id="37429122228" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="14">
    <Description>Traffic</Description>
    <Part Id="696306038924" UnitPrice="39.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="15">
    <Description>Billy Liar</Description>
    <Part Id="37429159224" UnitPrice="39.95" Quantity="2"/>
    </LineItem>
    <LineItem ItemNumber="16">
    <Description>Billy Liar</Description>
    <Part Id="37429159224" UnitPrice="39.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="17">
    <Description>The Hidden Fortress</Description>
    <Part Id="37429135129" UnitPrice="29.95" Quantity="1"/>
    </LineItem>
    <LineItem ItemNumber="18">
    <Description>Samurai 2: Duel at Ichijoji Temple</Description>
    <Part Id="37429125526" UnitPrice="29.95" Quantity="3"/>
    </LineItem>
    <LineItem ItemNumber="19">
    <Description>Blood of a Poet</Description>
    <Part Id="37429147429" UnitPrice="0" Quantity="4"/>
    </LineItem>
    </LineItems>
    </PurchaseOrder>
    2 rows selected.
    Elapsed: 00:00:01.01
    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL*Plus: Release 10.1.0.2.0 - Production on Thu Apr 8 22:34:20 2004
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> spool removeMimeType.log
    SQL> set trimspool on
    SQL> connect sys/&1 as sysdba
    Connected.
    SQL> --
    SQL> set timing on
    SQL> set long 10000
    SQL> set pages 10000
    SQL> set feedback on
    SQL> set lines 132
    SQL> --
    SQL> column EXTENSION format A10
    SQL> column MAPPING format A32
    SQL> --
    SQL> select extractValue(value(MAPPING),'/mime-mapping/extension','xmlns="http://xmlns.oracle.com/xdb/xdbconfig.x
    2 extractValue(value(MAPPING),'/mime-mapping/mime-type','xmlns="http://xmlns.oracle.com/xdb/xdbconfig.x
    3 from table(xmlsequence(extract(xdburitype('/xdbconfig.xml').getXML(),'/xdbconfig/sysconfig/protocolconfig/
    ppings/mime-mappings/mime-mapping'))) MAPPING
    4 /
    EXTENSION MAPPING
    au audio/basic
    avi video/x-msvideo
    bin application/octet-stream
    bmp image/bmp
    doc application/msword
    eml message/rfc822
    gif image/gif
    htm text/html
    html text/html
    jpe image/jpeg
    jpeg image/jpeg
    jpg image/jpeg
    jsp text/html
    mid audio/mid
    mov video/quicktime
    movie video/x-sgi-movie
    mp3 audio/mpeg
    mpe video/mpg
    mpeg video/mpg
    mpg video/mpg
    msa application/x-msaccess
    msw application/x-msworks-wp
    pcx application/x-pc-paintbrush
    pdf application/pdf
    ppt application/vnd.ms-powerpoint
    ps application/postscript
    qt video/quicktime
    ra audio/x-realaudio
    ram audio/x-realaudio
    rm audio/x-realaudio
    rtf application/rtf
    rv video/x-realvideo
    sgml text/sgml
    tif image/tiff
    tiff image/tiff
    txt text/plain
    url text/plain
    vrml x-world/x-vrml
    wav audio/wav
    wpd application/wordperfect5.1
    xls application/vnd.ms-excel
    xml text/xml
    xsd text/xml
    xsl text/xml
    zip application/x-zip-compressed
    mdd text/xml
    46 rows selected.
    Elapsed: 00:00:00.25
    SQL> alter session Set events='19027 trace name context forever,level 4'
    2 /
    Session altered.
    Elapsed: 00:00:00.01
    SQL> call dbms_xdb.cfg_update
    2 (
    3 deletexml
    4 (
    5 dbms_xdb.cfg_get(),
    6 '/xdbconfig/sysconfig/protocolconfig/common/extension-mappings/mime-mappings/mime-mapping[extension
    7 )
    8 )
    9 /
    Call completed.
    Elapsed: 00:00:00.23
    SQL> call dbms_xdb.cfg_update
    2 (
    3 deletexml
    4 (
    5 dbms_xdb.cfg_get(),
    6 '/xdbconfig/sysconfig/protocolconfig/common/extension-mappings/xml-extensions/extension[text()="mdd
    7 )
    8 )
    9 /
    Call completed.
    Elapsed: 00:00:00.06
    SQL> commit
    2 /
    Commit complete.
    Elapsed: 00:00:00.01
    SQL> select extractValue(value(MAPPING),'/mime-mapping/extension','xmlns="http://xmlns.oracle.com/xdb/xdbconfig.x
    2 extractValue(value(MAPPING),'/mime-mapping/mime-type','xmlns="http://xmlns.oracle.com/xdb/xdbconfig.x
    3 from table(xmlsequence(extract(xdburitype('/xdbconfig.xml').getXML(),'/xdbconfig/sysconfig/protocolconfig/
    ppings/mime-mappings/mime-mapping'))) MAPPING
    4 /
    EXTENSION MAPPING
    au audio/basic
    avi video/x-msvideo
    bin application/octet-stream
    bmp image/bmp
    doc application/msword
    eml message/rfc822
    gif image/gif
    htm text/html
    html text/html
    jpe image/jpeg
    jpeg image/jpeg
    jpg image/jpeg
    jsp text/html
    mid audio/mid
    mov video/quicktime
    movie video/x-sgi-movie
    mp3 audio/mpeg
    mpe video/mpg
    mpeg video/mpg
    mpg video/mpg
    msa application/x-msaccess
    msw application/x-msworks-wp
    pcx application/x-pc-paintbrush
    pdf application/pdf
    ppt application/vnd.ms-powerpoint
    ps application/postscript
    qt video/quicktime
    ra audio/x-realaudio
    ram audio/x-realaudio
    rm audio/x-realaudio
    rtf application/rtf
    rv video/x-realvideo
    sgml text/sgml
    tif image/tiff
    tiff image/tiff
    txt text/plain
    url text/plain
    vrml x-world/x-vrml
    wav audio/wav
    wpd application/wordperfect5.1
    xls application/vnd.ms-excel
    xml text/xml
    xsd text/xml
    xsl text/xml
    zip application/x-zip-compressed
    45 rows selected.
    Elapsed: 00:00:00.24
    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    $

  • Text datasource

    Hi,
    We use a specific infoObject based on 0COSTCENTER.
    It is equal to  the concatenation of the 4 first  COSTCENTER characters and activity type.
    How  can i make please to use the costcenter text to load this specific object text.
    thanks

    Hi Pontoise,
    I hope you have created Z Object which is template of 0COSTCENTER.
    1) First Create a Infosource ZCOSTCEN (flexible update of Master Data) and Now Make Transfer Rule with 0COSTCENTER_TEXT DS.
    Add objects
    0LANGU
    0CO_AREA
    0COSTCENTER
    0DATETO
    0DATEFROM
    0TXTSH
    0TXTMD
    2) Now, in RSA1(infoprovider panel) Add your ZIO and 0COSTCENTER. Now Make a Update rule for Both 0COSTCENTER and ZIO(in Update Rule Choose 0COSTCENTER).
    3) Now, in Update Rule....update  0TXTSH and 0TXTMD.by reading first 4 cost Center Character(COMM_STRUCTURE-TXTMD+(4) and read master data table for 0activty (0TXTMD)) and update as per your logic.
    I have question...How you have linked your Activity Type and Cost Center??
    Regards,
    San!

  • Problem with costcenter after loading

    Hi Experts,
    i can't find my costcenter in master data table /BI0/PCOSTCENTER after their loading. When i go to maintain the master data through the button maintain i can see the costcenter there. But i can't see it in the table /BI0/PCOSTCENTER. In order to create the costcenter in the table /BI0/PCOSTCENTER i have to go to the table for maintaining the costcenter master data. I have to select the costcenter and go to change it. I don' change it clicking ok and then i have to save the master data and then i can see it in the table /BI0/PCOSTCENTER. When the user call  the costcenter hierarchy they see for example something like that:
    #/Text of costcenter. The key is #. Does anyone have an idea what the problem is?
    Thank you in advance for your help.
    Best Regards,
    Ali

    Hi Ali:
       Did you activate the Master Data for the 0COSTCENTER InfoObject after loading the new data?
    If not, try this:
    1. Activate Master Data.
    - Right click on 0COSTCENTER InfoObject and select the "Activate master data" option.
    2. Execute Change Run.
    - Click on the "Tools" menu and select the "Apply Hierarchy/Attribute Change..." option, click on the "InfoObject" button, select the 0COSTCENTER InfoObject if available, click the "save" button. Click on the "Execute" button.
    Regards,
    Francisco Milán.
    Edited by: Francisco Milan on Sep 10, 2010 12:20 PM

  • Master data and text

    hi ,
    I have a Info Object (IO) called AA.
    This AA has a Compounding Character CostCenter and Controlling Area.
    I have created my own extractors in the R/3 side seperately for Attribute and Text.
    When i pull in the Attr and Text extractor :
    they both form 2 diff rows / records in the MAster data Table.
    And i am hoping to get the attr and the descript in the same line.(that s the normal way -rigth ??)
    Is it Due to Compounding ??
    If so In the Transfer Structure for Text,
    I have linked Costcenter , AA and AA's description.
    Thanks,
    GG

    Hi GG,
    When creating a compoundig infoobject at the database level system with create a table with Compounding primary keys. IN this example we have COSTCENTER, CONTROLLING AREA AND AA as a Compunding primary Key. So we need to see that the Text and Attributes loaded  with same keys (ie COSTCENTER, CONTROLLING AREA AND AA) otherwise will be shown as two diff records.
    Ex: Attr
    COSTC     CA    AA         attr
    1000000 1000   10001       Attr1
    Text
    AA      Text
    10001    text1
    will be shown as diff records because these two have diff primary keys.
    Let me know if you need more info.
    Regards,
    Varma

  • STS LINK EXTENSION E-MAIL TEXT

    HI,
        I'm Trying to reduce the model's maintenance making few input-ready queries.
        In this way I saw the possibility of invoke the query passing parameters
        through the URL for instance costcenter, etc. When I tested directly pasting
        into the internet explorer works great, I put into the STS frame
        the complete URL extension without problems, however when I saw the e-amil
        generated the underline that corresponds to the link not cover all the string
        so, when I execute the link I get an error message.
        I tested without outlook express sending an e-mail
        to my yahoo account and the link is truncated at the same place but not
        the string.
        It is possible to extend the field length of the function that complete the URL to get the complete link .
    Example:
    <u>http://a2000bp1.corp.aa2000.com.ar:50100/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?TEMPLATE=ZEZE200_0&BI_COMMAND_1-BI_COMMAND_TYPE=SET_VARIABLES_STATE&BI_COMMAND_1-VAR</u>
    part of the URL that not is underlined:
    IABLE_VARIANT=EZE200
    I'm triying to call the query with the variant EZE200.
    TIA

    Hi,
       After a Debbugging session I have found the reason of the truncated link,
      in the function module SBCOMS_SR_FROM_DOCUMENT_CREATE
      DATA: l_objcont LIKE soli OCCURS 10.
      the structure soli has a field named 'file' and has 255 char of length,
      so the URL is bigger than that.
      Previuos of that when the body text is created there is an split to all the
      lines who are bigger than 255 char.

  • Text options

    Hi all,
    i had a question regarding when writing something with the text option in photoshop, you then have the option of making it smooth, strong, sharp, crisp.
    What do these options do to the text? i cant really notice the difference, is there a recommended option for print or web that i should be using?

    Depends on a number of factors:
    how you want the type to look
    resolution
    file format (eg: gif or jpeg)
    Font attributes: weight, serif thickness, webfont
    so the answer would be very long. But thismakes an important differecne for low resoltuon digital graphics, and not so much for print.
    None - Applies no anti-aliasing
    Sharp - Type appears at its sharpest
    Crisp - Type appears somewhat sharp
    Strong - Type appears heavier
    Smooth - Type appears smoother

  • How Open And Print Proc C Genrated Text File Based Report ON Browser

    Dear Sir
    I have my old 6i forms from which i runs some Pro*c programmers with the help of HOST() command ,and then that generates a normal text file as a resultant report like file name "kha10"
    which i can easily open with any text client ,,,
    now what i want is that, to open this file on browser like web Report on my forms 10g like report builder 10g
    can anyone help me as it will be a gr8 help otherwise i would have to develop approx 100 reports.....
    any solution or any technique plzz help me

    bro my work is almost done apart from this virtual directory , how to make a virtual directory so that is dosent comes under
    http://........../form/
    i mean where to put my
    <virtual-directory virtual-path="/procrepo" real-path="c:\" />
    as my original file looks like bellow
    <?xml version="1.0"?>
    <!DOCTYPE orion-web-app PUBLIC "-//ORACLE//DTD OC4J Web Application 9.04//EN" "http://xmlns.oracle.com/ias/dtds/orion-web-9_04.dtd">
    <orion-web-app
         deployment-version="10.1.2.0.2"
         jsp-cache-directory="./persistence"
         temporary-directory="./temp"
         servlet-webdir="/servlet/"
    >
    <context-param-mapping name="configFileName">D:\DevSuiteHome_1/forms/server/formsweb.cfg</context-param-mapping>
         <virtual-directory virtual-path="/html" real-path="D:\DevSuiteHome_1/tools/web/html" />
         <virtual-directory virtual-path="/java" real-path="D:\DevSuiteHome_1/forms/java" />
         <virtual-directory virtual-path="/webutil" real-path="D:\DevSuiteHome_1/forms/webutil" />
         <virtual-directory virtual-path="/jinitiator" real-path="D:\DevSuiteHome_1/jinit" />
         <session-tracking cookies="disabled" />
    <!-- Uncomment this element to control web application class loader behavior.
    <web-app-class-loader search-local-classes-first="true" include-war-manifest-class-path="true" />
    -->
    <security-role-mapping name="administrators">
    </security-role-mapping>
    </orion-web-app>
    plzzzzzzzzzzz help

  • Automatic PO creation of free text PR

    Hi!
    We have all our PRs in free text since we are not yet using material master. One of our purchase organization will only order from one vendor and they will enter that vendor and price in the PR. Is it possible to create a PO automatically from that PR without a material or source list?
    Sincerely
    Anders

    Hi
    Thank you very much. Is it possible to restrict the automatic creation to a certain purchase organization?
    If I understand you right:
    1) Create PR with item category D Service
    2) Activate automatic PO creation in ML91
    That will create POs for all PRs created as a service?
    Sincerely
    Anders

  • IF Condition in RTF Help text

    Hi,
    I have RTF template which contains the field to display the column name. Below are my help text.
    COLUMN1 is my XML tag and displaying AQUA color in my excel output.
    <?COLUMN1?><xsl:attribute xdofo:ctx="block" name="background-color">Aqua</xsl:attribute>From above scenario, i need to add one more condition if there is no value in my XML tag then don't display the field in my excel output. For example. I have COLUMN1 and COLUMN2 XML Tag. Only COLUMN1 contains the value but COLUMN2 not. In my excel output the COLUMN2 value should not display.
    Thanks

    Please see if (How to make condition using XML tags to check NULL values in XML Publisher templates? [ID 414022.1]) helps.
    Also, see XML Publisher Guide which can be accessed via http://www.oracle.com/technetwork/documentation/applications-167706.html
    Thanks,
    Hussein

  • Text value is not getting displayed in Query designer !!

    Dear experts..,
    i have created a new query in query designer using my info provider and then selected one field in default value and then trying to restrict that particular field while selecting the restriction in query designer am getting the exact text value but after generating the report instead of text value , key value is getting displayed....so how can i get text instead of key value??
    please help me friends....
    i have posted in OSS mesage also...i got a reply like...even i didnt understand his reply too...what he is trying to say?
    whether can i get text display or not???
    can any one help me in this regard???
    SAP Reply----
    Hello kumar,
    After another analysis I have to inform you about general concept of
    "compounded characteristics".
    A compounded characteristic bounds two characteristics. The technical
    name is generated by both technical names of the two characteristics
    combined by two underlines "__".
    An individual text is only available for one single combination of both
    characteristics.
    Example:
    =======
    Compounded characteristic "Famous family name" is a combination of
    characteristic "COUNTRY" & "ETHNIC". Technical name: COUNTRY__ETHNIC
    Values for Country: USA, Australia
    Values for Ethnic: Asian, Latino
    Possible value combinations with individual text:
    USA & Asian; text: "Ling"
    USA & Latino; text: "Sanchez"
    Australia & Asian; text: "Chu"
    Australia & Latino; text: "Garcia"
    (Keep in mind the individual text only valid for the specific
    combination.)
    In analogy to the issue that you reported, you want to restrict this
    compounded characteristic. In the window where you select the restrictedvalue (called Selector) you'll see on the left hand side all available
    combinations of the characters with an individual text.
    You select family name "Chu" and drag'n'drop it to the right side.
    Actually you can only restrict the right compounded characteristic. In
    our example you would restrict on characteristic "ETHNIC" with value
    "Asian". (When you switch on technical names this comes more clear). Thetext "Chu" is displayed in the context of Selector because you selected
    value combination Australia & Asian. But in the end it's just a
    placeholder(!) for any combination of characteristic "ETHNIC" and value
    #Asian#; in our example it could be USA & Asian "Ling" or Australia &
    Asian "Chu").
    By leaving the Selector the individual text is gone because now the
    context is lost between the two characteristics. You have just a
    restriction on characteristic "ETHNIC" with value "Asian". An individualtext can't be displayed because the compounded characteristic is not
    specified for this restriction.
    You're right, it is confusing when "loosing" the text of a restriction.
    But accoring to the concepts of the compounded characteristics it
    is a correct behavior.

    Hi anandkumar,
    I belive this issue can be resolved by changing the  Query proprties for the perticular field.
    Kindly check the Field proerties in query designer and ensure that Text is enabled ather than Key.
    __Field property check up:__Go to query designer->click onn the field-> Right hand side in properties click on display tab-> select Text in drop down menu of Display as tab.
    FURTHER CHECK UP: check the master data avaiulability for the perticular info object, if masterdata is not available, do the text data for txt data availability in report level.
    Hope this helps you!!
    Best Regards,
    Maruthi

  • Which is best app to convert voice memos to text?

    There must be a way to import iPhone 5s voice memos, some 20 minutes long into editable text. Recommendations would be appreciated.

    SORRY! WHAT I MEANT TO ASK WAS "I WANT TO EXPORT  YOUTUBE & FACEBOOK VIDEOS TO ITUNES. WHAT IS THE BEST APP. TO USE TO CONVERT THESE VIDEOS INTO A FORMAT THAT IS ACCEPTABLE TO ITUNES. WHAT IS THE BEST FORMAT TO USE. THANK YOU

  • Receiving null and [Receiving text] SMS

    Hi,
    Strange things on some SMS: I receive one correctly but a the end there is the text "[Receiving text]"
    Then I receive a second SMS only containing null
    Why is that ?
    Thanks.

    You coded:
    if (line == null)
    eof = true;
    else
    do something else;
    // then, regardless of the above,
    st1 = new StringTokenizer(line,","); // line is still null here
    So there's the problem.

Maybe you are looking for