Indo object text length

hello every one.
can some one please explain me ..
how to display text of an object  in bex query nif its length is longer than 60 characters...
thank u
charan

Hi,
As per my knowledge unfortunately, there is no possibility to change the length to more
than 60. This is because all interfaces are based on 60 characters,
and the storage on the database is 60. Please refer to the notes:
545923 FAQ: Technical limits/customer namespace/p
540868 Technical limits for characteristics
But still you can check out the below links which should be helpful for your requiremment.
Long texts in SAP BW: Modeling
Thanks,
Venkat

Similar Messages

  • Object - Text Frame Options

    Why do my Object, text frame options, inset spacing settings change when I close and open my document.I set my inset spacing to 0.125 an all and when I close the document and open it later it is all set back to 0.  Any suggestions?  My defalut settings are 0.125

    I did this.  I open in design but no doc's set inset to .125 and  then open a doc and it is set to 0.125.  I use it and save it when I open it again it is set at 0.  But the pages I created previously are set to 0.125.  Could it be something else in a default somewhere?

  • Is there a way to change the master text length in FCP? The default length is 10 seconds, which is too long. I can easily adjust the length but I don't want to do it each time, and I don't want to adjust one and then have to copy and paste this length.

    Is there a way to change the master text length in FCP? The default length is 10 seconds, which is too long. I can easily adjust the length but I don't want to do it each time, and I don't want to adjust a text clip and then have to copy and paste this each time. Ideally, there should be something in User Preferences but there is not. Thanks.

    Maybe some one else can pipe up with a solution, but this would literally take 2 seconds to do for a new project.  And you can create a "template project" that includes this "text" clip.  Save this project and then to a get info and check "stationary pad."  When you double click on this file, fcp will open with a copy of this project and you just need to do a save as. 
    I've been working with computer editing systems for longer than i can remember and at a certain point you just have to adapt your workflow to the limitations of the software.  

  • Issue with row/column text lengths in report painter

    Hi Gurus,
    I have created a report painter report with formatting of the row/column length text as medium, but for one FS item/GL Account the report when executed still picks up only the short text length. I am not sure how this can be resolved.
    Any ideas is appreciated.
    Regards
    Satish

    Applied OSS Note 360096 and it worked. Thanks for all your help.

  • Why doesn't "include/object/text from file" work?

    I want to include (link) text from other Word documents to a  main  Word document and I use "include/object/text from file" (Word function)
    It works fine when I do so in "H:", but doing exactly the same in the Sharepoint environement result in "nothing" (nothing happens)
    It DOES work if I link from a document saved in Sharepoint to a "H:" - document, but that is of no use since I need all the documents to be stored in Sharepoint.
    Guess it has to do with the set up och Sharepoint.
    Greatful for any tips!

    Hi,
    Did you mean insert a object in the documents?
    Did you open the file with the local application or office web application?
    In the office web application, it doesn’t have the function to insert a object in the browser.
    I had tested with some word files in the library, open the word files with the local application, then insert file using the insert object function.
    It worked without any issue.
    What’s more, I had tested with Office 2010 and Office 2013, they all worked.
    Did the issue occur in other libraries? You can create a new library to check whether it works.
    You can also download a copy for the issued file, then open it in the local machine to check whether it works in the local machine.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to handle the source text length exceed more than target text length size in Message mapping  PI 7.31

    I have a File to IDOC Message Mapping Scenario:
    Source Field                         Targefield
    Communiication Address-(Email ID)                                    E1EDK2 - TDLINE
    Source Field length: 1/80                                                                               target Field length: Char\70
    Mapping Condition:
    Note: TDFORMAT =  ‘=’ (Long Line), may need to create 2 TDLINE fields depending on length of text
    So give the Solution for handling text Length exceed than target field lenght Using TDLNE and TDFORMAT......
    Guide me  and give Suggestions to achive this.

    Hi ,
    Below is the generic sol for your problem .Graphical mappings wont workout for your problem while using sub string .
    Input -->Input string
    Length -->length of TDLINE
    MESSAGE_V1,V2,V3,V4....depends on how many TDLINES you expect .Here I have taken 4 .
    public void SplitbyLength(String[] Input, String[] Length, ResultList MESSAGE_V1, ResultList MESSAGE_V2, ResultList MESSAGE_V3, ResultList MESSAGE_V4, Container container) throws StreamTransformationException{
    int lengthVal = Integer.parseInt(Length[0]);
    int InpLenVal ;
    for(int i=0;i<Input.length;i++)
    InpLenVal  =Input[i].length() ;
    if (InpLenVal<=lengthVal)
    MESSAGE_V1.addValue(Input[i].substring(0));
    MESSAGE_V2.addValue(ResultList.SUPPRESS);  
    MESSAGE_V3.addValue(ResultList.SUPPRESS);  
    MESSAGE_V4.addValue(ResultList.SUPPRESS);  
    else if ((InpLenVal>lengthVal) && (InpLenVal <= (lengthVal*2)))
    MESSAGE_V1.addValue(Input[i].substring(0,lengthVal));
    MESSAGE_V2.addValue(Input[i].substring(lengthVal,InpLenVal));
    MESSAGE_V3.addValue(ResultList.SUPPRESS);  
    MESSAGE_V4.addValue(ResultList.SUPPRESS);  
    else if ((InpLenVal>(lengthVal*2)) && (InpLenVal <= (lengthVal*3)))
    MESSAGE_V1.addValue(Input[i].substring(0,lengthVal));
    MESSAGE_V2.addValue(Input[i].substring(lengthVal,(lengthVal*2)));
    MESSAGE_V3.addValue(Input[i].substring((lengthVal*2),InpLenVal));
    MESSAGE_V4.addValue(ResultList.SUPPRESS);  
    else if (Input[i].length()>(lengthVal*3)  && (InpLenVal <= (lengthVal*4)))
    MESSAGE_V1.addValue(Input[i].substring(0,lengthVal));
    MESSAGE_V2.addValue(Input[i].substring(lengthVal,(lengthVal*2)));
    MESSAGE_V3.addValue(Input[i].substring((lengthVal*2),(lengthVal*3)));
    MESSAGE_V4.addValue(Input[i].substring((lengthVal*3),InpLenVal));
    else if (Input[i].length()>(lengthVal*4) )
    MESSAGE_V1.addValue(Input[i].substring(0,lengthVal));
    MESSAGE_V2.addValue(Input[i].substring(lengthVal,(lengthVal*2)));
    MESSAGE_V3.addValue(Input[i].substring((lengthVal*2),(lengthVal*3)));
    MESSAGE_V4.addValue(Input[i].substring((lengthVal*3),(lengthVal*4)));
    Regards
    Venkat

  • How to Change behavior of standard text object&text ID (SE75)?

    Hello there!!
    I'm struggling with this:
    For standard text object C_SHES_ACH & ID 0001 (EHS: IHS Safety Measures) wichs is used as a description for safety measures (CBIH82/CBIH02..) need that when the user create or edit the text, already appears a "Fill in the blanks"  form.
    For example, in CBIH82, editing an accident log, I go to Safety measures Button, then create a safety meassure, and when i click for long text description something like this should appear:
    TEXT 1 (1st Title)
    user line
    user line
    user line
    user line
    (free amount of user lines)
    TEXT 2 (2nd Title)
    user line
    user line
    user line
    user line
    (free amount of user lines)
    Thanks a lot for your feedback!
    Rgds!!

    Hii,
    I am unable to understand exactly wat you want.
    But for free amount of lines : Keep that text under LOOP. Right click on template or window and create a loop and under that loop keep the text ,you can get many lines. or the given below point plzz follow.
    1,Use SO10 Tcode to write standard text in Smartform.
    2.For long text
    method1
    Create TEXT node- general attributes change text type to include text
    then you can input text name/text object/text id/language
    method2
    create PROGRAM LINE node - use FM READ_TEXT to read it to a internal table
    then use LOOP or TABLE node to display it
    For TEXT module(For foreign language)
    Tr-code:smartforms -- choose Text module(not choose form)--create a text module object
    then enter smartform Create TEXT node- general attributes change text type to text module
    input the text module name which created by above
    3.
    1. take function module name of the smartform.
    2. goto se37 and type that fm name.
    3. goto attributes tab
    4. double click on either program or include .
    5. There u can find all the subroutines used inside smartform.
    6. search for "perform %move using %textkey-name".
    4.Standard Texts are created in SO10 Tcode and stored in STXH table with OBject ,ID and NAME parameters. We can use Read_Text FM to read the text.
    check the tables STXH & STXL.
    5.
    How to CAll Standard Text in Smart Forms
    In SFs you can insert the standard tests using the TEXT node. Create a TEXT NODE. Then in the GENERAL ATTRIBUTES of this TEXT node select INCLUDE TEXT in the TYPE option. Then you have to enter the text name, object , ID and language in the provided fields. Then if you dont want any error if there is no text in the corresponding text then CHECK the check box "No errors if no text available.

  • Assigned Object text not displayed in Multi-Level Notification Lists (QM19)

    Hello Everyone !
    Today, i would like to share an issue I am facing in regards to Assigned objects in QM notifications.
    We are using Assigned objects functionality available in Enterprise Extension PLM, Enhancement Package 4 (EA-PLM 604), to link inspection lots to notification items. Assigned object type Inspection lot is provided in standard by SAP.
    All necessary configuration has been done and inspection lots are correctly linked. When we run Multi-level notification list (QM19) to display the details of notifications in a tree view with assigned objects, all information is coming except object text. In this case inspection lot text. The field is available in the structure but comes blank despite being filled in the lot.
    I would like to know if anyone has encountered such issue and how did you solve it.
    System info:
    EHP7 for SAP ERP 6.0
    Thank you.
    Ayoub.

    Hello Everyone !,
    After checking, looks like this is a missing code in standard SAP implementation for Assigned objects.
    This will be solved by small ABAP code.
    Thank you
    Ayoub.

  • How to perform Text length more than 4000 bytes

    I want to read each row from txt file
    and used utl_file pacage to concat contents into a variable,
    the variable datatype is varchar2(4000), so text length can't more than 4000 bytes,
    but I wish get full text from txt file, How can I do?

    Thans! Detlev.
    I have a code :
    PROCEDURE read_file( path in varchar2, filename in varchar2, msg in out varchar2) AS
    data_line varchar2(4000);
    ifile utl_file.file_type;
    BEGIN
    ifile := utl_file.fopen(path,filename,'R');
    LOOP
    utl_file.get_line( ifile, data_line);
    msg := msg | | rtrim(data_line);
    END LOOP;
    utl_file.fclose(ifile);
    EXCEPTION
    WHEN no_data_found THEN
    utl_file.fclose(ifile);
    END;
    My question is
    1. The msg length can't more than 4000
    2. I use utl_raw.cast_to_raw function, that can't cast varchar2 to raw if varchar2 length more than 2048
    3. If I want to change the data type varchar2 to raw,
    the utl_raw.concat function can't use Loop ....end loop clause,
    So that only use utl_raw.concat(ra1, ra2,ra3,ra4,ra5, ... ra12)
    I want to concat all line to a raw datatype from text file , How can I do?

  • Reg:(uncaught Exception :width/offset argument cannot be negative or exceed the text length)

    hi all,
        I just completed my application and import the COD File in Blackberry simulator 8300 . In my mobile after login click on button it throws error and exit the application.
    It throws "uncaught Exception:width/offset argument cannot be negative or exceed the text length"
    Kindly give suggestion

    Hello,
    You should ask in the
    Lightswitch forum.
    If this WAS in the Lightswitch forum, I suppose you should ask in Microsoft's ASP.Net forums:
    http://forums.asp.net/
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog:http://unlockpowershell.wordpress.com
    My Book:Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Layer static objects/text on top of interactive elements

    is it possible to layer static objects/text on top of interactive elements (including scrollable slideshows or MSO) in INDD CC for DPS/Content Viewer?  The static objects (on their own layer) disappear when viewed on tablet in Content Viewer

    Thank you so much!
    Taylor Guilmette | Senior Graphic Designer
    CBRE/Grossman Retail Advisors
    33 Arch Street, 28th Floor | Boston, MA 02110
    T +1 617 912 7052 | F +1 617 912 6867
    [email protected]<mailto:[email protected]> | www.cbre.com/taylor.guilmette<http://www.cbre.com/taylor.guilmette>
    Follow CBRE/Grossman Retail Advisors: @CBREGRA<https://twitter.com/CBREGRA>

  • Maximum Allowed Text Length for JTable Column

    Can you please help me with a JTable Doubt
    How do I set the Maximum Allowed Text Length for a Particular Column of a JTable?

    Thanks a lot mate. I used the following
         class MaximumLengthFilter extends DocumentFilter {
                   public void replace(DocumentFilter.FilterBypass fb, int offset, int length,
                             String text, AttributeSet attr) throws BadLocationException {
                        if ((fb.getDocument().getLength() + length) < 10)
                             fb.replace(offset, length, text, attr);
                        else
                             Toolkit.getDefaultToolkit().beep();
              }

  • Business Objects Text Analytics - Summarizer Software Library

    We have crawled a website with Summarizer services. But we are not able to view the summary from Annotation Manager. Only the XML file is generated. We have looked into the below resources to get a solution but unable to find an answer.
    1.      Business Objects Text Analysis: Text Services Platform Useru2019s Guide u2013 Business Objects Summarizer Concepts and Configuration Guide
    2.      Of the trainings that we have purchased, there is no training on Summarizer. Does one exist which we can purchase?
    3.      We have googled out and could not find an answer.
    4.      We have tried to modify the summarizeru2019s configuration files as well. But these files control only what output you see and not how you see it.
    Any pointers to resolve this issue would be really helpful.

    You can use Metadata Viewer (MDV) to the view the summary of each document. To access it, you can do the following:
    1) Make sure that Processing Manager (PM) is up and running (as MDV resides on the same server).
    2) For the collection and crawler configuration, make sure that the Directory AR Adapter is used and set to store into the default directory.
    3) Enter http://localhost:7474/metavwr in the IE address bar. (Replace the server name and port with the one you run PM.) The username and password are the same as PM.
    4) Once the MDV page is up, click on the collection name, then the document id that you want to view the summary.

  • Legend text length 30

    I am trying to set my legend names to a string longer then 29 charters but can not.  If I try to set it to a string larger then 29 I get a Runtime error that the attribute value passed is not a valid value but do not get the error if the string is 29 charters or less.  I have set the ATTR_LEGEND_AUTO_SIZE to 1 and manualy set the legend to a larger size but my text length max still is on 29.  Is there a way to set the Max Text length in the legend to something larger?

    TokarzJ wrote:
    I am trying to set my legend names to a string longer then 29 charters but can not.  If I try to set it to a string larger then 29 I get a Runtime error that the attribute value passed is not a valid value but do not get the error if the string is 29 charters or less.  I have set the ATTR_LEGEND_AUTO_SIZE to 1 and manualy set the legend to a larger size but my text length max still is on 29.  Is there a way to set the Max Text length in the legend to something larger?
    Doesn't that property determine how many names are listed in the legend? 
    I can get more than that when I tried a chart in LV 8.6.
    Plase post an example that demonstrates this issue.
    Just trying to help,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • FM to fix text length

    Hi....
    I've got a problem in Smartform where in if the firs column fields lenght(character type) is less it printing the second column in the space and the order of column entry is shuffling.....
    My text length is 30 character long i've fixed it like &itab-text(30)& in text element........but when the text character is less that 20 chars i'm having the shuffling problem and the second column get fixed up the space and the order gets misplace.....i'm using tab stop for giving space between two columns and its fixed for every columns......i tried this my concatenating space when the text lenght is less than 20 chars....but still the same problem........and tried every thing now i just wonder do we have any FM to fix the lenght of text to achieve the result.......
    Points wud be surely awarded.....Thxxxxxxxxxxxxx

    hi,
    may be this  function module will helpful for u for fomating the text.
    CALL FUNCTION 'FORMAT_TEXTLINES'
    EXPORTING
    cursor_column = 1
    cursor_line = 1
    endline = 99999
    formatwidth = 45
    linewidth = 45
    startline = 1
    language = sy-langu
    *IMPORTING
    *NEW_CURSOR_COLUMN =
    *NEW_CURSOR_LINE =
    TABLES
    lines = g_tline
    EXCEPTIONS
    BOUND_ERROR = 1
    OTHERS = 2
    IF sy-subrc eq 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

Maybe you are looking for

  • Need help with writing a query with dynamic FROM clause

    Hi Folks, I need help with an query that should generate the "FROM" clause dynamically. My main query is as follows select DT_SKEY, count(*) from *???* where DT_SKEY between 20110601 and 20110719 group by DT_SKEY having count(*) = 0 order by 1; The "

  • Regular Expressions for textfield syntax checking while typing?

    Hi all, my application has a textfield for entering customer numbers. The customer numbers have a certain syntax which I want to have checked while the user types. According to our company's style guide, the textfield's background color has to be - R

  • Adding Third-Party Classes

    Hello, I have a bunch of third party classes that I wish to use as javac complies... Where do I place these files and what format do they have to be in (i.e. a folder or a jar file)? Thank you!

  • MS Excel Tab Naming Convention Issue

    Issue Description :    Summary excel file was confirming the source of workbook before opening the file.(Message : Excel found untraceable content in - Lex-1(Lex-Total) Summary report. Do you want to recover contents of workbook? If you trust the sou

  • OIM 10g: Delete Response Code

    Hello, Is there a way to delete the response code defined in the task of a PD? A direct delete says - The response is used by one or more tasks. I've tried deleting the codes from the xml after exporting the PD and importing it back. Doesn't help. An