I/O Error for TEXT  VBBP ----- TD607 Error

Hi Gurus,
We have activated the BADI CFOP_DET_PREP    in the Delivery Program.
When I am going to VL02N and trying to update the Partner Functions in the Delivery Document then the system is giving the error as shown below
i was unable to find the reason for this error.......
PERFORMANCE ASSISTANT
I/O error for text VBBP 0080000005000010 ZTX6 EN
Message no. TD607
Diagnosis
You want to read a text from the database, delete it, or save it to the database.
System Response
An error occurred when the database was accessed.
Procedure
Try repeating the procedure. If the error recurs, contact your system administrator.
The above one is the error that it was showing me.
Can anyone please tell me the reason for the Error and also the possible solution in this situation.
Thanks in Advance,
Rakesh Tummala.
Edited by: Rakesh Tummala on Sep 24, 2010 2:34 PM

Normally, if SAP is unable to update or read any text at either header (Table STXH) level or item (PSTXH) level, it will throw this error.
So you have to check these tables and find out the root cause of which text is creating problem.
thanks
G. Lakshmipathi

Similar Messages

  • /O error for text VBBK

    Hi Friends,
    I am facing a problem when scheduling the order creation program in the background. I receive an error ' I/O error for text VBBK 0410143215 ZOPR EN" and the whole process ends with an exception. The texts are been inserted in the table STXH for the Text id ZOPR.
    we have some very huge records in the table STXH and hence inserting / saving the records we get the I/O Error for Text VBBK.  We are using Oracle 9.2.0.9.
    Can you pls give me some suggestion interms of tuing the program or in terms of the tuning the table STXH.
    Thanks in Advance.
    Venky.

    Hi Friends,
    Pls see the attahed code.
        CALL FUNCTION 'SAVE_TEXT'
             EXPORTING
                client       = v_client
                   header       = thead
                INSERT       = ' '
                     savemode_direct = 'X'
             IMPORTING
                  function      = txtfunction
                  newheader     = thead
             TABLES
                  lines         = tlines
             EXCEPTIONS
                  id            = 1
                  language      = 2
                  name          = 3
                  object        = 5.
        IF sy-subrc EQ 0.
          CALL FUNCTION 'COMMIT_TEXT'
           EXPORTING
             object                = 'VBBK'
             name                  = ret_ord_no
             id                    = 'ZOPR'
                  LANGUAGE              = 'EN'
             savemode_direct       = 'X'.
          COMMIT WORK.
        ENDIF.
    Thanks,
    Venky.

  • I/O error for text VBBK

    Hi Friends,
    I am facing a problem when scheduling the order creation program in the background.   I receive an error ' I/O error for text VBBK 0410143215 ZOPR EN" and the whole process ends with an exception.  The texts are been inserted in the table STXH for the Text id ZOPR.
    Can you pls give me some suggestion interms of tuing the program or in terms of the tuning the table STXH.
    Thanks an Advacnce.
    Venky.

    Hi Friends,
    Pls see the attahed code.
        CALL FUNCTION 'SAVE_TEXT'
             EXPORTING
                client       = v_client
                   header       = thead
                INSERT       = ' '
                     savemode_direct = 'X'
             IMPORTING
                  function      = txtfunction
                  newheader     = thead
             TABLES
                  lines         = tlines
             EXCEPTIONS
                  id            = 1
                  language      = 2
                  name          = 3
                  object        = 5.
        IF sy-subrc EQ 0.
          CALL FUNCTION 'COMMIT_TEXT'
           EXPORTING
             object                = 'VBBK'
             name                  = ret_ord_no
             id                    = 'ZOPR'
                  LANGUAGE              = 'EN'
             savemode_direct       = 'X'.
          COMMIT WORK.
        ENDIF.
    Thanks,
    Venky.

  • I/O error for text EKPO 450000090500001 F01 EN - error while adding text

    HI All,
    I am creating text for PO item through user exit.
    If it contains any text already..it need to add the new text to the next line.
    for this i am reading the existing data and appending taht data to internal table , appending new data to this internal table along with old data.
    i am getting the error as " I/O error for text EKPO 450000090500001 F01 EN'.
    please check my code and provide me the suggtions to avoid this error.
    IF sy-tcode = 'ME21N' OR sy-tcode = 'ME22N' .
      DATA : v_thead       LIKE thead,
             v_tline       LIKE tline,
             t_it_tline    LIKE tline OCCURS 0,
             t_it_tline_r  LIKE tline OCCURS 0,
             wa_tline_r    TYPE tline,
             v_auart       TYPE auart,
             v_kdmat       TYPE kdmat.
      DATA: cc LIKE sy-index.
      DATA: t_object LIKE STANDARD TABLE OF stxdrobj.
      DATA: t_name LIKE STANDARD TABLE OF stxdrname.
      DATA: t_id LIKE STANDARD TABLE OF  stxdrid.
      DATA: t_language LIKE STANDARD TABLE OF stxdrlang.
      CLEAR : v_auart,
              v_kdmat,
              v_tline,
              v_thead.
      REFRESH t_it_tline.
      MOVE : 'F01'         TO v_thead-tdid,
             'EKPO'        TO v_thead-tdobject,
             sy-langu      TO v_thead-tdspras.
      LOOP AT xekpo.
        CLEAR v_tline.
        REFRESH t_it_tline.
        READ TABLE xekkn WITH KEY ebelp = xekpo-ebelp.
        IF sy-subrc = 0.
          SELECT SINGLE auart FROM vbak INTO v_auart WHERE
                                      vbeln = xekkn-vbeln.
          IF v_auart = 'ZYCA'.
            SELECT SINGLE kdmat FROM vbap INTO v_kdmat
                                  WHERE vbeln = xekkn-vbeln
                                    AND  posnr = xekkn-vbelp
                                    AND  matnr = xekpo-matnr.
            CONCATENATE 'Customer Part No:' v_kdmat INTO v_tline-tdline.
            v_thead-tdname+0(10) = i_ekko-ebeln.
            v_thead-tdname+10(5) = xekpo-ebelp.
    *If any text already exits.
            CALL FUNCTION 'READ_TEXT'
                 EXPORTING
                      id                      = v_thead-tdid
                      language                = sy-langu
                      name                    = v_thead-tdname
                      object                  = v_thead-tdobject
                 TABLES
                      lines                   = t_it_tline_r
                 EXCEPTIONS
                      id                      = 1
                      language                = 2
                      name                    = 3
                      not_found               = 4
                      object                  = 5
                      reference_check         = 6
                      wrong_access_to_archive = 7
                      OTHERS                  = 8.
            IF sy-subrc = 0.
              LOOP AT t_it_tline_r INTO wa_tline_r.
                IF NOT wa_tline_r-tdline CS v_tline-tdline  AND
                       wa_tline_r-tdline NE space.
                  APPEND wa_tline_r TO t_it_tline.
                ENDIF.
              ENDLOOP.
    *          CALL FUNCTION 'DELETE_TEXT'
    *               EXPORTING
    *                    id        = v_thead-tdid
    *                    language  = sy-langu
    *                    name      = v_thead-tdname
    *                    object    = v_thead-tdobject
    *               EXCEPTIONS
    *                    not_found = 0
    *                    OTHERS    = 0.
    *          IF sy-subrc NE 0.
    *          ENDIF.
            ENDIF.
    *----- Now append the customer material part number to existing text.
            v_tline-tdformat = '*'.
            APPEND v_tline TO t_it_tline.
            CALL FUNCTION 'SAVE_TEXT'
                 EXPORTING
                      header   = v_thead
                 TABLES
                      lines    = t_it_tline
                 EXCEPTIONS
                      id       = 1
                      language = 2
                      name     = 3
                      object   = 4
                      OTHERS   = 5.
            IF sy-subrc <> 0.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ENDIF.
            CALL FUNCTION 'COMMIT_TEXT'
                 EXPORTING
                      object          = 'EKPO'
                      name            = '*'
                      id              = 'F01'
                      language        = sy-langu
                      savemode_direct = 'X'
                 IMPORTING
                      commit_count    = cc
                 TABLES
                      t_object        = t_object
                      t_name          = t_name
                      t_id            = t_id
                      t_language      = t_language.
            IF sy-subrc EQ 0.
    *          MESSAGE s000(zm01) WITH text-m01.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDIF.
    Edited by: Thomas Zloch on Oct 19, 2010 2:31 PM * please use  tags!

    Hi,
    dont pass sy-langu to language parameter tdspras. Check the document 4500000905 and item 00001 item text language .
    I am sure it is not EN as your login language.
    I hope you know how to check the item text  tdid , tdname, tdobject and tdspras.
    Thanks,
    subash

  • Why can I no longer specify my preferred font for text which has a link attached to it?

    I use TBird to send old school, professional looking business letters with logo image header and footers. Recently, I am unable to apply my preferred font to the website link part of my footer. This seems to have become an issue after one of the more recent upgrades of TBird. Its frustrating as I feel good graphic design requires uniformity in font style/type and size. This seems no longer possible. Now when I attach a hyperlink to my website address it changes my preferred font to something that looks like Arial and locks both font and size. It looks crappy.

    ''Kits47 [[#answer-701080|said]]''
    <blockquote>
    The only way I know its 12 pt. is that I copy into Word and check the font size there.
    </blockquote>
    Huge error number one, and probably cause of your problem in the first place.
    <blockquote>
    I would really like to see TBird use point size for fonts.
    </blockquote>
    Thunderbird uses HTML, HTML is expressed in pixels.
    <blockquote>
    In terms of not having Papyrus on you Linux box, I suppose that's you're choice.
    </blockquote>
    Licensing actually, not choice. The font is licensed and distributed by Microsoft. See http://www.microsoft.com/typography/fonts/font.aspx?FMID=1113 for a list of products your recipient can install to get the font.
    <blockquote>
    In my outgoing email subject line I always specify that my reply is best viewed in HTML, full screen.
    </blockquote>
    HTML is the default for almost all mail so that does appear to be overkill. Full screen. Personally I would be just as likely to not read mail that required full screen. Mail gets about half a screen here.
    <blockquote>
    Most systems will automatically substitute fonts for ones not on that system, at least in Apple and PC systems. </blockquote>
    Papurus actually has a higher chance of being present on a Mac system than a windows one as Apple have distributed it with OSX since 2003.
    <blockquote>
    Anyway all of that is a little off topic. I wanted help with why TBird intermittently messes with font size and style when I cut and pasting email responses to people.
    </blockquote>
    As I said at the beginning. Do not use word. Word first converts to RTF then to HTML (All done internally) The resulting HTML is extremely complex and to put it bluntly pastes as a whole page from which Thunderbird must extract only the relevant parts. (inside the body tag) The end result is the program ends up confused about what goes where.
    <blockquote>
    And, if there is some reason why sometimes, again I stress sometimes, it will not let me use the font of my choice for text that has a hyperlink attached to it.
    </blockquote>
    If your pasting from Word the most obvious thing will be that the hyperlinked text will have it's own font tags another reason I suggest you use the program your in.
    * If you want it on paper use a word processor. It is what they are designed for
    * If you want it in email use the email program to actually write your mail.
    * If you want to guarantee the look on delivery send PDF attachments.

  • Text ID  for text object MATERIAL does not exist - MM01

    Hi All,
    I am getting below error message when trying to save Material Master in MM01.
    Text ID  for text object MATERIAL does not exist
    Message no. TD603
    Diagnosis
    You want to edit a text. However, the text ID (text type) of the specified text object does not exist.
    Procedure
    You can display a list of valid text IDs (text types) using F4=Possible entries. You can select the required text ID from this list with F2 or a double click.
    The valid text objects are listed in table TTXOB. The valid text IDs (text types) for an object are specified in table TTXID.
    I have searched the forums but couldn't get relevant message.
    Please assist.
    Thanks,
    Raj

    Hi Jurgen,
    This is the complete message i am getting.
    Text ID for text object MATERIAL does not exist
    Message no. TD603
    Diagnosis
    You want to edit a text. However, the text ID (text type) of the specified text object does not exist.
    Procedure
    You can display a list of valid text IDs (text types) using F4=Possible entries. You can select the required text ID from this list with F2 or a double click.
    The valid text objects are listed in table TTXOB. The valid text IDs (text types) for an object are specified in table TTXID.
    If I enter MM02 and without changing anything if i save still i get this error message.
    Thanks & Regards,
    Raj

  • Text ID for text object BUT000 does not exist

    Hi Experts.
    I am doing data migration using LSMW with IDoc. I have this error message "Text ID for text object BUT000 does not exist" when processing the IDoc.
    Can anyone tell me what is this error about and how could i fix it. A step by step guide would be nice. Really need advice urgently.
    I'll definitely rewards points.
    Regards,
    Julianna

    for this u need to maintain the text object and its related text id using the TC: SM31 in rel. view of  ur tcode( like MM01, Va01 etc).
    first get the view names(1 for text object and 2 for text id) from fun. people.
    then go to sm31 with 1 view, create BUT000 .
    then go to sm31 with 2 view, maintain text id for the text object:BUT000.

  • Search for text and font

    I have an 800 page pdf document to index and so far I have a script that will search for a list of keywords. But the text has large sections of code in a different font, and I think we would like to generate an index of just code examples. Is there a way to search for text of a given font in applescript? Something like
    set theSel to find text theText
    if the font of theSel is "Times"
    write to file, etc.

    Please do send a page, I might be able to spot where the font problem is coming from - but no guarantee Address is in my profile.
    You asked about the script formatter. red_menace of this forum wrote the script I use. To use it, you copy the script that you want to format to the clipboard and run the formatter. This then places the marked-up text in the clipboard so that you can paste it into the forum page.
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #FFDDFF;
    overflow: auto;">
    script formatter - formats the clipboard text for forum posting
    last reviewed January 19, 2009   red_menace[at]mac[dot]com
    Input: text read from the clipboard
    Output: formatted text copied to the clipboard
    set AppleScript's text item delimiters to " "
    -- some constants and switches
    property TextColor : "#000000" -- black  (see http://www.w3schools.com/tags/ref&#95;colornames.asp)
    property BackgroundColor : "#FFDDFF" -- a light plum/purple
    property BorderColor : "#000000" -- black
    property TheWidth : "width: 720px; " -- a width attribute  (deprecated in HTML 4.01)
    property UseWidth : true -- use the width attribute?
    property LineCount : 25 -- the number of lines before including the height attribute
    property TheHeight : "height: " & ((LineCount * 13.6) as integer) & "px; " -- a maximum height for the <pre> box
    property Emphasize : false -- emphasise (bold) the script text?
    property UseURL : false -- include a Script Editor message link?
    property AltURL : false -- use an alternate URL encoding?
    property ToolTips : {¬
    "this text can be pasted into the Script Editor", ¬
    "this text can be pasted into an Automator 'Run AppleScript' action", ¬
    "this text can be pasted into an Automator 'Run Shell Script' action", ¬
    "this text can be pasted into a HTML editor", ¬
    "this text can be pasted into a text editor", ¬
    "- none -"}
    property TooltipDefault : {item 1 of ToolTips} -- keep track of the last tooltip used
    property TempFile : "Script_Formatter_TempFile" -- a temporary work file
    try
    -- write the clipboard to the temporary file
    set TheClipboard to (the clipboard) as text
    if TheClipboard is in {"", space, tab, return} then return -- clipboard is (basically) empty
    set MyOpenFile to open for access ("/tmp/" & TempFile & ".txt" as POSIX file) with write permission
    set eof of MyOpenFile to 0 -- empty any previous temp file
    write TheClipboard to MyOpenFile
    close access MyOpenFile
    if UseURL then
    -- encode URL  (see http://developer.apple.com/documentation/Darwin/Reference/Manpages/man1/pydoc.1. html)
    do shell script "/usr/bin/python -c 'import sys, urllib; print urllib.quote(sys.argv[1])' " & quoted form of TheClipboard
    -- add a link wrapper
    set URLtext to "applescript://com.apple.scripteditor?action=new&script=" & the result
    if AltURL then -- use an alternate URL encoding
    set URLtext to "Click here to [url=" & URLtext & "]open this script in the Script Editor[/url]:<br />"
    else -- use HTML anchor tag
    set URLtext to "Click here to <a href=\"" & URLtext & "\">open this script in the Script Editor</a>:<br />"
    end if
    set PromptText to ((count URLtext) as text) & " URL and "
    else
    set {URLtext, PromptText} to {"", ""}
    end if -- UseURL
    -- convert to HTML  (see http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/textutil .1.html)
    do shell script "cd /tmp/; /usr/bin/textutil -convert html -excludedelements '(html, head, title, body, p, span, font)' -encoding US-ASCII " & TempFile & ".txt"
    -- fix up some formatting and add a pre wrapper  (see http://www.w3schools.com/tags/default.asp)
    set HTMLtext to rest of paragraphs of (read ("/tmp/" & TempFile & ".html" as POSIX file))
    if (count HTMLtext) is less than LineCount then -- skip the height attribute
    set Height to ""
    else
    set Height to TheHeight
    end if
    set HTMLtext to FixCharacters from (HTMLtext as text) -- additional character encodings
    if UseWidth then
    set Width to TheWidth
    else
    set Width to ""
    end if
    if Emphasize then set HTMLtext to "<strong>" & HTMLtext & "</strong>"
    set HTMLtext to "<pre style=\"
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid " & BorderColor & ";
    " & Width & Height & "
    color: " & TextColor & ";
    background-color: " & BackgroundColor & ";
    overflow: auto;\"
    title=\"\">
    " & HTMLtext & "</pre>
    -- assemble everything on the clipboard
    set TheResult to choose from list ToolTips ¬
    with title "Script Formatted" with prompt PromptText & ((count HTMLtext) as text) & " HTML characters will be placed on the clipboard (plus the following ToolTip):" default items TooltipDefault OK button name "OK" cancel button name "Cancel" with empty selection allowed without multiple selections allowed
    if TheResult is false then -- cancel button
    error number -128
    else -- add the selected title attribute (tooltip), if any
    set TooltipDefault to TheResult as text
    set Here to (offset of " title=" in HTMLtext) - 1
    set There to (offset of ">" in HTMLtext) - 1
    if TheResult is in {{}, "- none -"} then -- no tooltip
    set the clipboard to URLtext & (text 1 thru (Here - 1) of HTMLtext) & (text (There + 1) thru -1 of HTMLtext)
    else
    set the clipboard to URLtext & (text 1 thru (Here + 9) of HTMLtext) & TheResult & (text There thru -1 of HTMLtext)
    end if
    end if -- TheResult is false
    on error ErrorMessage number ErrorNumber
    log space & (ErrorNumber as text) & ":" & tab & ErrorMessage
    try
    close access MyOpenFile
    end try
    if (ErrorNumber is -128) or (ErrorNumber is -1711) then -- nothing (user cancelled)
    else
    activate me
    display alert "Error " & (ErrorNumber as text) message ErrorMessage as warning buttons {"OK"} default button "OK"
    end if
    end try
    to FixCharacters from TheText
    fixes (converts) formatting characters used in some message forums  (see http://www.asciitable.com/)
    parameters - TheText [text]: the text to fix
    returns [text]: the fixed text
    -- this list of lists contains the characters to encode - item 1 is the character, item 2 is the HTML encoding
    set TheCharacters to {¬
    {"!", "&#33;"}, ¬
    {"*", "&#42;"}, ¬
    {"+", "&#43;"}, ¬
    {"-", "&#45;"}, ¬
    {"[", "&#91;"}, ¬
    {"\\", "&#92;"}, ¬
    {"]", "&#93;"}, ¬
    {"^", "&#94;"}, ¬
    {"_", "&#95;"}, ¬
    {"~", "&#126;"}}
    set TempTID to AppleScript's text item delimiters
    repeat with SomeCharacter in TheCharacters
    if item 1 of SomeCharacter is in TheText then -- replace
    set AppleScript's text item delimiters to item 1 of SomeCharacter
    set the ItemList to text items of TheText
    set AppleScript's text item delimiters to item 2 of SomeCharacter
    set TheText to the ItemList as text
    end if
    end repeat
    set AppleScript's text item delimiters to TempTID
    return TheText
    end FixCharacters
    </pre>

  • No value found for text variable ZZCALQTR in "&ZZCALQTR&"

    Hi,
    I m currently working on cell definition and facing some problems.
    Considerthis
                    Structure1
                    Current Cal Quarter   Last Cal Quarter
    Row1
    Row2
    Total
    For Current Cal Quarter and Last Cal Quarter i have text variable &ZZCALQTR& and inside i have restricted 0CALQUARTER.
    ANd i have used
    different offset for )CalQuarter in individual cell definition.
    So, it is giving me this error
    No value found for text variable ZZCALQTR in "&ZZCALQTR&".
    what should i do...any solution
    regards,
    Sandeep Khatri

    Hi San,
    i think u r exeuting the Query without providing any value in selection screen.then it displays the error message which u mentioned...just enter some value in selectionand try it..
    hope this helps
    regards

  • No value found for Text Variable

    Hi All,
    I have 2 different variable created on 0VERSION. One for user entry and second one is text variable with replacement path as "text".
    I have 3 different columns in the report.
    One is Restricted KF, based on user entry variable. Heading of this column has to be Result (&ZVERTXT&), where ZVERTXT is my text varaible.
    Now, in second column I m using formula to calculate percentage. Heading of this column is &ZVERTXT& (%).
    Now, in third column i m again using formula using the same KF as in first column. But this time, in the heading this text variable thorws "no value found error"
    can anybody help me out in this issue.. ??

    Hi,
    This is the proble to get value for text variables with Replacement path ,in case system is getting 2 reference values .So it get confusion and says that <i>No value found for Text Variable </i> .
    So as a work around :
    Instead of a text variable with automatic substitution(replace ment path) from another characteristic value, you can also create a text variable that is filled by a customer exit.In the code you  assign the Text value by looking into TEXT table with the value you got from User entry variable( which is used in first Restricted KF).
    With rgds,
    Anil Kumar Sharma .P

  • Datatypes in MySQL: getInt for integer, what for text?

    As question. We use getInt to retrieve integer types in an MySQL database and getString for varchar types and so forth.What should i use for the text datatype? There is no getText. getString too?
    Second question, I have a table which needs to store paragraphs of text in a row. What should i use? Text or blob? Any special precautions i need to take when using blob? Any special steps to take or is it just like the others?
    Lastly, I also have the following error, i googled it up already, but mainly the results says something about missing jar files.To be honest i dont get them at all. Can anyone please explain it to me? Thanks.
    javax.servlet.ServletException: Wrapper cannot find servlet class Maintenance.Support.AddProdLog or a class it depends on
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         java.lang.Thread.run(Thread.java:619)Thanks.

    The various getters on resultset relate to the form that the data is to be used in the program, rather than the form it's stored on the database. getString is fine for text.
    The choice between clobs and text is often moot, it depends on how big the entries are likely to get, CLOBs are more complicated to use, they are stored separately from the database record and are optimised for quite large blocks. I wouldn't go to CLOBs if I expected the paragraphs to be less than about 2K characters.

  • Missing text determination procedure RIH for text object CGPL_TEXT

    Hi experts,
    creating a new single item in RPM we get following error message:
    "Text determination procedure RIH for text object CGPL_TEXT does not
    exist." And it does not exist our CRM customizing
    (Customer Relationship Management -> Basic Functions -> Text Management).
    We cannot define the missing procedure via customizing because it is not in our namespace.
    Any ideas where to find the right patch / program or other suggestions?
    Thanks & Regards
    Christoph

    It is not So10 cause you see the parameters for SO10 are
    Text Name, Text ID and Language,
    but I am keying in Text object, <b>TextDetermProc</b>.,Text ID.
    Pls reply fast this is urgent.

  • Fld selectn for mvmt type 601 / acct 2000 differs for Text (002)

    Dear Experts
    While creating delivery i am getting the error "Fld selectn for mvmt type 601 / acct 2000 differs for Text (002)"for standard delivery and Fld selectn for mvmt type 633 / acct 2000 differs for Text (002) for consigment issue delivery
    kindly help me to understand and solve the error.
    Thanks and Regards
    M.Dheerendar Jain

    Hi Mr. JP
    I followed the thread of Mr.G.Laxmipathi but this solution is not clear, he told check in "OMJJ" whether it is optional or required, but he didn't mention what we need keep either required or optional and also in FS00 whether we need to put any number in field status group or not or whether we have to check automatic posting or not.
    Kindly give your input on this
    Thanks and Regards
    M.Dheerendar Jain

  • Repousse not avaible for Text layers?

    Hello,
           I love the 3d effects with the 3D panel and Adobe Repousse. However everytime I select a text layer and then go to 3d, repousse, create object, I get and error that says "Repousse for Text layers is not supported at this time."
    But I have seen it done it tutorials and on the About Photoshop CS5 extended, it says It can be done...
    So how can one, I, user Adobe repousse with Text Layers in my Adobe Photoshop CS5 extended trial?
                                                                                    That is after I get Photshop insatlled properly and working-- here is that discussion
    Thanks for all your help and Regards,
                                                        Team 1504.

    You need to have a video card that supports OpenGL Drawing in Photoshop and have it enabled from Edit->Preferences->Performance

  • My iphone 4s voice dictation for text messages is not consistently working. Sometimes it works, other times after the dictation it just gives me a blank space. Anyone else having this problem?

    My iphone 4s voice dictiation for text messages is not consistently working. I've had the phone since Thanksgiving and it always worked perfectly, but the last few weeks it's been hit or miss. Sometimes it works, sometimes it doesn't. Anyone else having this problem? I tried the hard reset but that hasn't fixed it.

    I have the same problem since updating to IOS 8.3. Any app to which I want to send a new link via IMessage does not allow me to select a contact to send the IMessage to. Using a pre-existing thread does not have same problem.

Maybe you are looking for