Chinese Vendor Texts displayed as ############

Hello Guru's
I have a requirement to hold the text of some of our Vendors in Chinese (ZH) language.
In the ECC system certain Vendors are only set up in Chinese Language. When I look in the RSA3 extractor (0VENDOR_TEXT)the Text is displayed as;
上海高信化玻仪器有限公司.
However, when I bring this into BI the following is displayed is displayed in the PSA, & 0VENDOR;
one # represents one Chinese character. I presume # is used as this is the Error Indicator which is used on the RFC connection. We have the ZH language installed in BI as I can see Materials which have been entered in Chinese.
As all of our systems are Unicode I was expecting the text to be displayed correctly, some in English, and some in Chinese
Does anyone have any experience with this?
Thanks in advance,
Regards Roger..

Hi,
I got the same issue several years ago. Can you check your RFC settings to ECC, and make sure the language there is ZH?
Please update us whether it works. Thank you.
Regards,
Frank
Another tip: If you load Chinese characters from CSV file, there's a character setting. Please select user-dependent and input 8400 for simplified Chinese.
Edited by: Frank Lee on Jul 8, 2009 10:24 PM

Similar Messages

  • Internal note \ Vendor text in shopping cart not getting correctly saved.

    Hi SRM  folks,
    We are at SRM 4.0 with extended classic.
    We are facing issue with shopping cart ( BBPSC01 ) for  vendor text \ internal note in  " Documents and Attachments Tab" in item detail screen as below :
    Suppose we  enter below three lines in internal note \ Vendor text  as:
    XXX
    AAA
    CCC
    They will appear as below :
    XXX
    AAA
    AAA
    CCC
    CCC
    Line items are getting duplicated.  Please let me know  how this can  be resolved or if any SAP note available ?
    Moderator message - Please do not offer points or rewards
    Thanks in Advance,
    Sachin
    Edited by: Rob Burbank on Jul 30, 2010 9:39 AM

    Here is solution :
    kindly apply the following notes:
    1253076 No Vendor Text Exists Incorrectly Displayed
    1289174 Vendor text/Internal Note is not deleted
    1313904 Extra Line Breaks are added in Approval Notes
    After this please republish all of the Templates with the Report
    w3_publish_services.
    Afterwards the Template Cache has to be invalidated with the
    transaction sitspmon -> Tab "Template and Mime Cache" -> Button
    "Systemwide".
    If you use Proxy Server, you have to empty the cache there as well.
    Furthermore the Temporary Internet Data of the Browse has to be deleted.
    Retest the scenario and see if the behavior still persists.
    Those note  solved the issue

  • Chinese Characters not display when PDF for marketing doc

    Hi All,
    I have typed in some Chinese Characters into a Print Layout Document.
    I am able to print these documents with the Chinese characters. But I am not able to display these Chinese Characters when I click on PDF.
    Please advise.
    Rdgs
    Jessie

    Hi Gordon,
    I have applied the various asian language service pack for the Adobe Reader.
    However, i am still not able to see the Chinese Characters in the PDF document when click on the PDF at SAP B1's Toolbar.
    Step 1 : Update a PLD with Chinese Characters (as text or from database field). Eg. AR Invoice.
    Step 2 : Set the PLD as Default Layout.
    Step 3 : At AR Invoice, call out an existing Invoice, click on Preview. Chinese Character is able to be previewed and printed.
    Convert to PLD.
    Step 4 : At AR Invoice, call out an existing Invoice, click on PDF button at the Toolbar. Preview the PDF document. No Chinese Characters are displayed.
    Is it due to Localisation? Localisation = Singapore
    Please advise.
    Regards
    Jessie

  • Chinese characters are displayed as blank box on the TextField in Taiwan Android 4.4.2/AIR4.0

    Chinese characters are displayed as blank box on the TextField in Taiwan Android 4.4.2/AIR4.0, such as Nexus7, HTC One,  but in mainland China Nexus7(Android 4.4.2/AIR4.0) showed normal
    AIR SDK is 4.0.0.1628.
    Hope it can be fixed as soon as possible.
    Here is test code:
    package
              import flash.display.Sprite;
              import flash.display.StageAlign;
              import flash.display.StageScaleMode;
              import flash.text.Font;
              import flash.text.TextField;
              import flash.text.TextFieldAutoSize;
              import flash.text.TextFormat;
              public class TestFont extends Sprite
                        public function TestFont()
                                  stage.scaleMode = StageScaleMode.NO_SCALE;
                                  stage.align = StageAlign.TOP_LEFT;
                                  var sprite:Sprite = new Sprite();
                                  var value1:String = "简体中文测试";
                                  var value2:String = "繁體中文測試";
                                  var txt11:TextField = createTextField(null, "11 "+value1);
                                  txt11.x = 10;
                                  txt11.y = 10;
                                  sprite.addChild(txt11);
                                  var txt12:TextField = createTextField(null, "12 "+value2);
                                  txt12.x = txt11.x + txt11.width;
                                  txt12.y = txt11.y;
                                  sprite.addChild(txt12);
                                  var txt21:TextField = createTextField("STHeitiTC-Medium","21 "+value1);
                                  txt21.x = 10;
                                  txt21.y = txt11.y + txt11.height;
                                  sprite.addChild(txt21);
                                  var txt22:TextField = createTextField("MSYH","22 "+value2);
                                  txt22.x = txt21.x + txt21.width;
                                  txt22.y = txt21.y;
                                  sprite.addChild(txt22);
                                  var lastY:int = txt22.y + txt22.height;
                                  var fonts:Array = Font.enumerateFonts(true);
                                  var index:int = 0;
                                  for each (var font1:Font in fonts)
                                            index++;
                                            var txtF:TextField = createTextField(font1.fontName, index + "/" + fonts.length + " " + font1.fontName + " "+value1 +" " + value2);
                                            txtF.x = 10;
                                            txtF.y = lastY;
                                            sprite.addChild(txtF);
                                            lastY += txtF.height;
                                  addChild(sprite);
                        public function createTextField(font:String, value:String):TextField{
                                  var txt:TextField = new TextField();
                                  txt.autoSize = TextFieldAutoSize.LEFT;
                                  var format:TextFormat = new TextFormat();
                                  if(font != null){
                                            format.font = font;
                                            txt.defaultTextFormat = format;
                                            txt.setTextFormat(format);
                                  txt.text = value;
                                  var dformat:TextFormat = txt.defaultTextFormat;
                                  if(dformat != null){
                                            txt.text = value + " |" + dformat.font;
                                  if(font != null){
                                            txt.setTextFormat(format);
                                  return txt;

    I am in mainland China, my Nexus7 can display chinese characters, but my friend in Taiwan, his android4.4.2 display chinese characters as blank.
    I don't understand the reason.
    By the way, TextFormat.font don't work, whatever I set any fonts, display are the same.
    My screenshots:
    Taiwan's screenshots:

  • Supress vendor text in Shopping cart

    Hello,
    We want to supress the Vendor Text Box in the item details of the shopping cart.
    How can one accomplish this?
    Thanks,
    Aart

    Hi,
    If you need to hide the field,you can use badi BBP_UI_CONTROL_BADI .
    You can also Modify the corresponding HTML template in the ITS service BBPSC01 in SE80 for the reqd field.But the ITS chnages will be oevrwritten in case of upgrade.
    You can also try using screen variants.For details,refer the foll thread:
    Re: To make the field for Display only on the Shopping Cart Portal
    BR,
    Disha.
    Do reward points for useful answers.

  • Can anyone help me solve the problem of text displaying very rough on my new ASUS PA279Q display monitor running off my MacBook Pro?

    This is regarding a brand new ASUS PA 279Q, 2560 x 1440 IPS monitor. I'm connected via mini display port (into thunderbolt port on MacBook Pro) to display port on ASUS monitor; using cable ASUS included with the monitor. Mid 2012 MacBook Pro…full specs at bottom of this post.
    I have resolution set at 2560 x 1440 which is the native resolution according to the ASUS spec. I tried the other resolutions available in my System Preferences and text displayed rough with those settings too. I've tried adjusting contrast, brightness and sharpness via the ASUS control panel and didn't solve the problem. Also tried calibrating via Mac's system preferences/display and that did not improve text display either. All the text on this monitor (no matter what software I launch, Finder, InDesign, Illustrator, MS Word, Excel, VMWare Windows XP, Windows versions of Word, Excel, Acrobat, etc, all are consistently rendering text the same way ---  ROUGH and with "HALOS" around each letter.
    All point sizes of text and at various scales, display very rough on the screen. (My comparison is the retina display of my MBP and a Thunderbolt…so those two displays are my expectations.) I'm using the same MBP for both a Thunderbolt display (at work) and this ASUS at my home office.
    On the ASUS it's not as noticeable when the text is on white backgrounds, but I'm a graphic designer and compose images with text all day everyday. Not to mention the specs on this ASUS PA279Q indicate it's built for the professional so I would expect better text rendering. I haven't even addressed color calibration and balance yet, because that won't matter to me if the text won't display any better than it is now.
    I was so hopeful after researching all the specs on this monitor it would be a viable alternative to the glossy display of the Thunderbolt display. (Which, I do love the Thunderbolt display for it's clarity and how it displays crisp, clean text at all sizes. (This ASUS actually displays text decently if I increase the text so each letter is about 4" high. Which is pointless for practical purposes -- that'd be like doing page layout through a microscope!)
    I kept holding off on getting a monitor for the home office thinking the Thunderbolt would be updated soon. I'd be sick if I dropped a grand on piece of 2011 technology only to learn a few days later an updated Thunderbolt display hit the market! Not to mention, I'm praying Apple comes out with a less reflective Thunderbolt display. The glare and reflection is the main reason I looked elsewhere for a large monitor; hence my asking for help. Hoping the ASUS text display issue can be worked out. My expectation is for it to display like the MBP retina and Thunderbolt display text. That possible?
    Alternatively, I guess I could do the Apple Refurb Thunderbolt at $799. And see if there's a decent aftermarket anti-glare I could stick on it?
    Thanks for reading my post. Hope someone can help; offer any suggestions? Words or wisdom?
    Has anyone else had similar issues and figured out a resolution? Help!
    MacBook Pro
    Retina, Mid 2012, 2.3 Ghz Intel i7
    8GB 1600 MHz DDR3
    OS X 10.8.5
    NVIDIA GeForce GT 650M 1024 MB
    ASUS PA279Q

    I uninstalled those two items. It still runs slow on start-up and when opening safari, firefox, iphoto, itunes, etc. It's not snappy like it used to be. Any other ideas? Thanks.

  • Vendor text doesn't transfer from SRM PO to R/3

    Good evening,
    We are new in SRM SCE, we have a problem with the vendor text. In SRM appears this information and the PO is e-mailed correctly but when we review the PO in R/3 this information doesn't fill in. We don't know if the problem is in SRM or in R/3.
    In BBP_PD the information, vendor text, is contained under TDID with the ITXT code. What can we review? We have take a look to some BADI (IF_EX_BBP_ECS_PO_OUT_BADI~BBP_B46B_PO_OUTBOUND) in SRM but it comes with the data blocked and we can't change their contain, concretely CS_BAPI_POITEM_EXT.
    Thanks in advance,
    Francisco

    Which scenario are you using in SRM?
    Do you have a requisition created prior to the PO on the R3 side?  If so, check and see if the text is there.  Then, check the configuration on the R3 side to make sure the text on the requisition is adopted to the PO.  Since the shopping cart is line item level, it will appear on the line item on the PO.
    Monique Stephens

  • Vendor text in the infospoke .

    HI
    I have created Infospoke (3.5)  with DB table  .ODS is feeding data to the Info spoke .There is one info object (ovendor) which i am reading from master data in  the ods ,but  in the info spoke i need  vendor key and text  when i run the Db table .Is it  feasible to have vendor text fetched at runtime by using Badi  if so please give me sample code  where i can bring Text information.
    Please reply me imm
    -PN

    Hi Sri,
    Thanks for your input, but I can locate the fix method.
    Following is the some pic for the configuratino:
    1. Access sequence for text determination:
    1) Text procedure:
    http://p11.freep.cn/p.aspx?u=v20_p11_p_0809261114357864_0.jpg
    2) Text ID's in Textprocedure
    http://i3.6.cn/cvbnm/c2/32/f4/fef7620ec71c89b9b71233a643151152.jpg
    3)Access Sequence for Text ID's
    http://i3.6.cn/cvbnm/42/c8/0e/6ea2bce637e4ef51dccf102a67e99b91.jpg
    And I am not sure how to find the access sequence for delivery - pick slip, Is it realted to the output type for the pick slip?
    If possible, could you explain how the text link to the output type?
    Cheer,
    Rick

  • Vendor Text

    Hi,
    We need the vendor texts tobe pulled into PO header text. So I configure as follows: SPRO->IMG->Materials Management->PO->Texts for PO->Define copying rules for Header Texts. In header text linkages -> added the source object -"Vendor Master"  to the source text "Header Text". The issue is:
    I dont find the option PO header Text in vendor master(XK02) -menu-> extras -> text. I can see only the options for accounting text and PO memo but not PO header text that I added in the config.
    Please assist.
    Thank you.

    Hi Sharan,
    Vendor master has three types of texts - text object LFA1 on the general level, text object LFB1 on the comp. code level and the text object LFM1 on the purchasing org. level. To see the text types of the object LFM1 you shall go to the purchasing view of the vendor master and then choose in the menu "Extras -> Texts". If you do the same on the general level of the vendor master (e.g. the view "control") or on the comp. code level (e.g. the view "accounting info"), the system will only show the text types of the corresponding object types LFA1 or LFB1.
    BR
    Raf

  • Vendor text font needs to be changes to appear in PO header.

    Hi ,
    I am trying to fit some vendor text (P. org level) from vendor master in PO header area.
    The PO header area is restricted and i dont want to change my PO form.
    So, i can currently fit only 3 - 4 lines of text while i need to fit 6 lines of text.
    There must be a way to make the font smaller, but only the vendor master PO text format should get changed, no other default fonts.
    Please suggest.
    Thanks,
    Ritika

    Hi Lakshman,
    Thanks for your reply. I have been looking into it since i posted the question but looks like the font is fine, any smaller and noone will be able to read. And we dont want to touch the PO form too as it will change everything globally which we do not want. That will be the last resort.
    Regards,
    Ritika

  • Posting Period text display

    Hi Gurus,
    I have a report where i have my GL account hierarchy on my rows and my key figure in column. i have posting period on top of my key figure and my client wants to display the report as
    jan, feb, mar etc till dec. the problem is when i run it through posting period it shows me 1, 2, 3 ...12 instead of text.
    my key figure is populating value based on user exit and i cannot use other time fields like fiscal year/period. i cannot create 12 restricted key figures as my key figure is getting value from exit variable.
    how do i change the text display for 1,2,3 .....12 to jan, feb, mar....dec. is there any sap exit text variable?
    please help
    thanks
    surya

    i cannot create 12 restricted key figures as my key figure is getting value from exit variable.
    why cannot u create restricted key figures ?
    i didnot understand this....
    second question - are u maintaining texts of 0FISCPER3
    if yes then enter RSD1
    enter 0FISCPER3
    edit it
    go to business explorer tab
    over there display as text only and not key
    this way it iwll display just text
    if u rnot maintaitng texts for it
    u have refer above solutions as mentioned by xperts so that u can load texts for 0FISCPER3
    then follow the busines explorer tab changes i suggested...
    if u can create restricted key figure ur problem will solve  easily..

  • Text limit in PO - Vendor text

    Hi ALL,
    Is there are limit in vendor texts? My user has entered a large text in the Po -vendor text.
    While ordering the PO it gave a dump error. I suspect long text could be the reason.
    I am using SRM 4.0 - Ex classic scenario.
    Could you please help me to resolve the issue?
    Thanks.
    Dump details
    Runtime Error          DATA_LENGTH_NEGATIVE
    Except.                CX_SY_RANGE_OUT_OF_BOUNDS
    Short text: Invalid partial field access: Negative length
    What happened?
        Error in ABAP application program.
        The current ABAP program "/1BCDWB/SAPLSF00000001" had to be terminated because
         one of the
        statements could not be executed.
        This is probably due to an error in the ABAP program.
    Error analysis
        An exception occurred. This exception is dealt with in more detail below
        . The exception, which is assigned to the class 'CX_SY_RANGE_OUT_OF_BOUNDS',
         was neither
        caught nor passed along using a RAISING clause, in the procedure "%GLOBAL_INIT"
         "(FORM)"
        Since the caller of the procedure could not have expected this exception
         to occur, the running program was terminated.
        The reason for the exception is:
        The system tried to access field "LV1" with length
        "-10" in the current program "/1BCDWB/SAPLSF00000001".
        Partial field access is not allowed with negative length specifications.
    How to correct the error
        Please use a positive length specification when trying to access a
        field "LV1".
        If the error occurred in one of your own programs or in an SAP program
        that you modified, try to correct it yourself.
        You may able to find an interim solution to the problem
        in the SAP note system. If you have access to the note system yourself,
        use the following search criteria:
        "DATA_LENGTH_NEGATIVE" CX_SY_RANGE_OUT_OF_BOUNDSC
        "/1BCDWB/SAPLSF00000001" or "/1BCDWB/LSF00000001F01"
        "%GLOBAL_INIT"
    Information on where terminated
        The termination occurred in the ABAP program "/1BCDWB/SAPLSF00000001" in
         "%GLOBAL_INIT".
        The main program was "SAPLBBP_PO_UI_ITS ".
        The termination occurred in line 1420 of the source code of the (Include)
         program "/1BCDWB/LSF00000001F01"
        of the source code of program "/1BCDWB/LSF00000001F01" (when calling the editor
         14200).
        Processing was terminated because the exception "CX_SY_RANGE_OUT_OF_BOUNDS"
         occurred in the
        procedure "%GLOBAL_INIT" "(FORM)" but was not handled locally, not declared in
         the
        RAISING clause of the procedure.
        The procedure is in the program "/1BCDWB/SAPLSF00000001 ". Its source code
         starts in line 621
        of the (Include) program "/1BCDWB/LSF00000001F01 ".
    Line  SourceCde
    1390                    WA_LONGTEXT-TDID TO WA_ITEMTAB-TDID,
    1391                    'EN' TO WA_ITEMTAB-TDSPRAS,
    1392                    LV2 TO WA_ITEMTAB-TDLINE.
    1393              APPEND WA_ITEMTAB TO LT_ITEMTAB.
    1394              CLEAR WA_ITEMTAB.
    1395              CLEAR: LV2, WA_ITEMTAB.
    1396 * If LV_REMAINING is GT 110 then tranfer 110 char from LV1 to LV2 and append to int table
    1397              IF LV_REMAINING > 110.                                                        "
    1398                MOVE LV1+LV_ADDLEN(110) TO LV2.
    1399                MOVE: WA_LONGTEXT-GUID TO WA_ITEMTAB-GUID,
    1400                    WA_LONGTEXT-TDID TO WA_ITEMTAB-TDID,
    1401                    'EN' TO WA_ITEMTAB-TDSPRAS,
    1402                    LV2 TO WA_ITEMTAB-TDLINE.
    1403                APPEND WA_ITEMTAB TO LT_ITEMTAB.
    1404                CLEAR WA_ITEMTAB.
    1405                CLEAR: LV2, WA_TAB.
    1406 * Now move whatever is left in LV1 to LV2
    1407                LV_LEFTOVER = LV_ADDLEN + 110.
    1408                LV_REMOVE = LEN1 - LV_LEFTOVER.
    1409                MOVE LV1+LV_LEFTOVER(LV_REMOVE) TO LV2.
    1410              ELSE.                                                                         "
    1411                MOVE LV1+LV_ADDLEN(LV_REMAINING) TO LV2.
    1412              ENDIF.                                                                        "
    1413              LV_FLAG = 'X'.
    1414              EXIT.
    1415            ENDIF.                                                                          "
    1416            LV_COUNTER = LV_COUNTER - 1.
    1417          ENDDO.
    1418 * In case of no space in between characters
    1419          IF LV_FLAG NE 'X'.                                                                "
    >>>>>            CONCATENATE LV2 LV1+0(LEN3) INTO LV2.
    1421 *           MOVE: WA_LONGTEXT-GUID TO LT_ITEMTAB-GUID,
    1422 *                 WA_LONGTEXT-TDID TO LT_ITEMTAB-TDID,
    1423 *                 'EN' TO LT_ITEMTAB-TDSPRAS,
    1424 *                 LV2 TO LT_ITEMTAB-TDLINE.
    1425 *             APPEND LT_ITEMTAB.
    1426            MOVE: WA_LONGTEXT-GUID TO WA_ITEMTAB-GUID,
    1427                    WA_LONGTEXT-TDID TO WA_ITEMTAB-TDID,
    1428                    'EN' TO WA_ITEMTAB-TDSPRAS,
    1429                    LV2 TO WA_ITEMTAB-TDLINE.
    1430              APPEND WA_ITEMTAB TO LT_ITEMTAB.
    1431              CLEAR WA_ITEMTAB.
    1432            CLEAR: LV2, WA_TAB.
    1433            LEN4 = LEN3 + 1.
    1434            MOVE LV1+LEN4(LEN1) TO LV2.
    1435            CLEAR: LEN4, LEN3, LEN1.
    1436          ENDIF.                                                                            "
    1437        ELSEIF LEN1 = 0.                                                                    "
    1438 *         MOVE: WA_LONGTEXT-GUID TO LT_ITEMTAB-GUID,
    1439 *               WA_LONGTEXT-TDID TO LT_ITEMTAB-TDID,

    Hi ALL,
    Is there are limit in vendor texts? My user has entered a large text in the Po -vendor text.
    While ordering the PO it gave a dump error. I suspect long text could be the reason.
    I am using SRM 4.0 - Ex classic scenario.
    Could you please help me to resolve the issue?
    Thanks.
    Dump details
    Runtime Error          DATA_LENGTH_NEGATIVE
    Except.                CX_SY_RANGE_OUT_OF_BOUNDS
    Short text: Invalid partial field access: Negative length
    What happened?
        Error in ABAP application program.
        The current ABAP program "/1BCDWB/SAPLSF00000001" had to be terminated because
         one of the
        statements could not be executed.
        This is probably due to an error in the ABAP program.
    Error analysis
        An exception occurred. This exception is dealt with in more detail below
        . The exception, which is assigned to the class 'CX_SY_RANGE_OUT_OF_BOUNDS',
         was neither
        caught nor passed along using a RAISING clause, in the procedure "%GLOBAL_INIT"
         "(FORM)"
        Since the caller of the procedure could not have expected this exception
         to occur, the running program was terminated.
        The reason for the exception is:
        The system tried to access field "LV1" with length
        "-10" in the current program "/1BCDWB/SAPLSF00000001".
        Partial field access is not allowed with negative length specifications.
    How to correct the error
        Please use a positive length specification when trying to access a
        field "LV1".
        If the error occurred in one of your own programs or in an SAP program
        that you modified, try to correct it yourself.
        You may able to find an interim solution to the problem
        in the SAP note system. If you have access to the note system yourself,
        use the following search criteria:
        "DATA_LENGTH_NEGATIVE" CX_SY_RANGE_OUT_OF_BOUNDSC
        "/1BCDWB/SAPLSF00000001" or "/1BCDWB/LSF00000001F01"
        "%GLOBAL_INIT"
    Information on where terminated
        The termination occurred in the ABAP program "/1BCDWB/SAPLSF00000001" in
         "%GLOBAL_INIT".
        The main program was "SAPLBBP_PO_UI_ITS ".
        The termination occurred in line 1420 of the source code of the (Include)
         program "/1BCDWB/LSF00000001F01"
        of the source code of program "/1BCDWB/LSF00000001F01" (when calling the editor
         14200).
        Processing was terminated because the exception "CX_SY_RANGE_OUT_OF_BOUNDS"
         occurred in the
        procedure "%GLOBAL_INIT" "(FORM)" but was not handled locally, not declared in
         the
        RAISING clause of the procedure.
        The procedure is in the program "/1BCDWB/SAPLSF00000001 ". Its source code
         starts in line 621
        of the (Include) program "/1BCDWB/LSF00000001F01 ".
    Line  SourceCde
    1390                    WA_LONGTEXT-TDID TO WA_ITEMTAB-TDID,
    1391                    'EN' TO WA_ITEMTAB-TDSPRAS,
    1392                    LV2 TO WA_ITEMTAB-TDLINE.
    1393              APPEND WA_ITEMTAB TO LT_ITEMTAB.
    1394              CLEAR WA_ITEMTAB.
    1395              CLEAR: LV2, WA_ITEMTAB.
    1396 * If LV_REMAINING is GT 110 then tranfer 110 char from LV1 to LV2 and append to int table
    1397              IF LV_REMAINING > 110.                                                        "
    1398                MOVE LV1+LV_ADDLEN(110) TO LV2.
    1399                MOVE: WA_LONGTEXT-GUID TO WA_ITEMTAB-GUID,
    1400                    WA_LONGTEXT-TDID TO WA_ITEMTAB-TDID,
    1401                    'EN' TO WA_ITEMTAB-TDSPRAS,
    1402                    LV2 TO WA_ITEMTAB-TDLINE.
    1403                APPEND WA_ITEMTAB TO LT_ITEMTAB.
    1404                CLEAR WA_ITEMTAB.
    1405                CLEAR: LV2, WA_TAB.
    1406 * Now move whatever is left in LV1 to LV2
    1407                LV_LEFTOVER = LV_ADDLEN + 110.
    1408                LV_REMOVE = LEN1 - LV_LEFTOVER.
    1409                MOVE LV1+LV_LEFTOVER(LV_REMOVE) TO LV2.
    1410              ELSE.                                                                         "
    1411                MOVE LV1+LV_ADDLEN(LV_REMAINING) TO LV2.
    1412              ENDIF.                                                                        "
    1413              LV_FLAG = 'X'.
    1414              EXIT.
    1415            ENDIF.                                                                          "
    1416            LV_COUNTER = LV_COUNTER - 1.
    1417          ENDDO.
    1418 * In case of no space in between characters
    1419          IF LV_FLAG NE 'X'.                                                                "
    >>>>>            CONCATENATE LV2 LV1+0(LEN3) INTO LV2.
    1421 *           MOVE: WA_LONGTEXT-GUID TO LT_ITEMTAB-GUID,
    1422 *                 WA_LONGTEXT-TDID TO LT_ITEMTAB-TDID,
    1423 *                 'EN' TO LT_ITEMTAB-TDSPRAS,
    1424 *                 LV2 TO LT_ITEMTAB-TDLINE.
    1425 *             APPEND LT_ITEMTAB.
    1426            MOVE: WA_LONGTEXT-GUID TO WA_ITEMTAB-GUID,
    1427                    WA_LONGTEXT-TDID TO WA_ITEMTAB-TDID,
    1428                    'EN' TO WA_ITEMTAB-TDSPRAS,
    1429                    LV2 TO WA_ITEMTAB-TDLINE.
    1430              APPEND WA_ITEMTAB TO LT_ITEMTAB.
    1431              CLEAR WA_ITEMTAB.
    1432            CLEAR: LV2, WA_TAB.
    1433            LEN4 = LEN3 + 1.
    1434            MOVE LV1+LEN4(LEN1) TO LV2.
    1435            CLEAR: LEN4, LEN3, LEN1.
    1436          ENDIF.                                                                            "
    1437        ELSEIF LEN1 = 0.                                                                    "
    1438 *         MOVE: WA_LONGTEXT-GUID TO LT_ITEMTAB-GUID,
    1439 *               WA_LONGTEXT-TDID TO LT_ITEMTAB-TDID,

  • Ipod car audio text display

    With hope someone has an answer! I have just brought a new car Mazda 6 along with updating my ipod to the 80gb model. My wish was to take my entire cd collection (quite extensive) to my car and never to use CD's or the delemma of which cd to take. Mazda offered as an accessory an ipod connector. The price tag was considerable however more than worth it in my mind. But how disappointing. I have no text display either on my ipod nor the cars sound system (Bose premimum). This would all be fine if I had stuck to my nano as it's limit of 1000 songs I had to make a decision on. With the 80gb and my entire collection impossible - no idea of the song title, artist etc and no way of chosing what I wish to hear. Not really interested in making playlists as there goes the element of suprise, back to limiting my selection and what the heck I could just as easy (if not more) grab some cds and take to the car. Surely there is a solution to the problem. I presume the reason why I don't get a display on my ipod (other than the Mazda logo) when I connect it is for driving safety reasons but still with hope someone out there can provide me with a solution.
    Anticipated hope
    'Em

    Does it mean that once its fully charged the battery stops operating that the ipod powers up using the d.c. power source?
    No. There is still a slight battery usage when plugged in.
    Do you think it will affect the charging cycle or even the battery life of the ipod by keeping it plugged into the car audio unit using the cd ib-100?
    Yes, but probably not drastically.
    You should drain & charge the iPod fully once a month.

  • How to influence the text display of key figures in the interarctive DP

    Hello all,
    Does anyone know if there is a possibility (BADI, etc.) to change the text display of key figures (not characteristics!) in a planning book/data view?
    I know that you can define a free text in the data view but still, this is only one fixed text and it cannot be changed.
    Reason for the request: We would like to use the same key figure (and hence, indicate 2 different texts) for two different purposes (in different selections) without having to create a new data view.
    Kind regards,
    Klemens

    if you dont want a new data view and might even go to the extent of creating a user exit for this ... here is an idea
    - just create auxillary KF ( or use spare Temp KF depending on what you want to do with the data in the view) for each of these KF with the text
    lets say you have KF1 and KF2 - create KF1A and KF2A
    Make sure KF1A = KF1 and KF2a = KF2
    Now depending on user you can display KF 1 and KF2 or KF1a and KF2a depending on the user by using macros USER() and ROW_VISIBLE(0)

  • How to edit the text displayed in KM Upload link?

    Hi All,
            I want to edit the text displayed in KM Upload link ie "You can upload a file to the repository from your computer. Click "Show Properties" to assign another name or to change the settings".
    I tried searching for the resource bundle from which the above text is displayed but couldnt find it.
    Can anyone help?
    Thanks in advance.
    Regards,
    Pooja.

    Hi Pooja
    You can find the text in <b>ResourceEditControl**.properties</b> file, which is available under   <i>com.sap.km.cm.ui\lib\km.appl.ui.edit_api\com\sapportals\wcm\control\edit</i>..
    The text is represented by the key <b>txtUploadControl</b>..
    Regards,
    Sandip

Maybe you are looking for