Phantom text in SD Module

During sales order create, with reference to a quote, the text from the quote sometimes gets saved with XXXXXXXXXX as a document number.  It does not get copied into the order referencing the quote.  When subsequent documents get created, with or without referencing, they pick up the phantom text.  This is happening one or two times a day. We are deleting the phantom text using function module DELETE_TEXT.
Text objects: VBBK & VBBP
Text names: XXXXXXXXXX & XXXXXXXXXX000010, 20, 30, etc.

Hello Jim,
do you have any dumps in update task (SM13)?
Did you implement any SD user exits?
The 10 Xs are the the temporary number that is used in VA01 before you press save. VA01 then allocates a new document number and replaces the Xs in all internal data fields and tables with this number.
From my feeling, sometimes the texts are saved to database before the new number is assigned.
Make sure that no COMMIT WORK is used in any VA01 user exit, because this may trigger premature update of texts.
Regards,
Juergen

Similar Messages

  • Text elements in module pool

    Hi,
    How can we print Descriptions and other text as text lable in module pool????
    Thx,
    Shashi.

    Hi,
    IF you want text for box heading in moodule pool...
    than just double click on that box and write for lable in text part of attribute window.
    <REMOVED BY MODERATOR>
    Gaurav J.
    Edited by: Alvaro Tejada Galindo on Aug 15, 2008 3:46 PM

  • How to add text in print module in LR4?

    want to add text twice in print module, seems only option is identity plate and it cant be duplicated, any suggestions?

    yea i hear ya, but like i made a custom photo strip and another one right next to it so there are two vertical photo strips that after being printed will be cut down the middle.  i want to have text (or identity tag) at the bottom of each photo strip (again, will be printing two on one page).  Best thing i have come up with so far is dinking around with text in word (duplicate text so it would show up twice) but its kinda an issue with spacing and everything.  Sucks you cant just add a box anywhere on there and input what you want (unless there is a way and just cant figure it out).  Again, in "custom package"

  • Adding text in Print module

    LR3.2 on Win7 64-bit
    I wanted to add two lines of text under a photo placed in a template that starts with no text. I followed steps for this exact task in Kelby's book on LR3 (p.340) and it *seemed* LR3 was acting differently than demonstrated/described there. Perhaps something anticipated during development did not make it to the RTM versions...
    I turned on Identity Plate with a checkbox in the Page module but found I could not add anything on a second line. I had controls for size, font, and color. Size changes chosen in the drop down made no difference to the previewed text size, but I could resize the text box using handles. I could not force the cursor any further into the line in the characters box than those characters seen in the window offered in the control, therefore everything had to be typed into a choice of very small font size  -  to be resized later.
    So I never got that second line.
    Is there a better way to do this without going over to Photoshop?
    jonathan7007

    Thanks, Sean. This isn't the only place I've seen a difference and I wonder if anyone has ever seen a list of those differences. I wasted some time trying this again and again. Kelby usually points out the divergent UI elements. I bet he didn't know.
    No combination (that made any sense) created a second line in my Win7 version, and the inability to format the whole string by cursor highlighting control was a real problem. Looks like the graphic identity plate is the only way to go.
    I will ask a separate question/discussion about the other difference I want to investigate.
    jonathan7007

  • Adding border text in Print Module

    I'd like to see the text annotation enhanced in the Print Module to be able to locate text along any border edge, using any system font. This would enable to add creative text to fine art prints.

    Macro Details wrote:
    This can easely acomplished with a script.
    Could you please elaborate a bit?
    Fiddling with the .lrtemplate print template file, I only managed to set a font size outside LR-proposed values (variable metadataFontSize), but couldn't find a way to change the font or placement.

  • Text in Print module - changing the font?

    Does anyone know how to change the in the Photo info in the print module? I'm using this to make PDF contact sheets which is perfect for sending to clients but I'd love to be able to use a different type face but it doesn't seem to be possible?

    Font substitution can alter the space occupied by the text which, in turn, can cause it to run longer or can affect things like how it breaks depending on assigned keep options.

  • Text box in module pool

    How to create more than 10 lines in a single trext box...Anyone help me with the code

    You can add an text button on the screen and call the following function module when the user clicks on the button.
    data: i_objtxt like solisti1 occurs 10 with header line.
    call function 'TERM_CONTROL_EDIT'
             exporting
                  titel          = text-ttl
                  langu          = sy-langu
             tables
                  textlines      = i_objtxt
             exceptions
                  user_cancelled = 1
                  others         = 2.

  • How to display  LONG TEXT STRING in Module Pool Screen ?

    Hi Experts,
    I want to display long text string, on screen designed through module pool(SE51). I tried to display through input/output field , but it displays it in SINGLE LINE and i have to scroll all through to view all string.
    I want to display it in rectangular format . It doesnt allow me to set HEIGHT of component.
    Please provide solution.
    Thanks in advance.
    Regards
    Deepak

    This is the program where u can get the WA_THEAD from other program like report and trying to display and modifying that text. U can do instead of WA_THEAD u can generate here itself and use also
    *& Module pool       ZMP_LTEXT                                         *
    PROGRAM  ZMP_LTEXT                               .
    TABLES: STXL.
    *&      Module  STATUS_9000  OUTPUT
    MODULE STATUS_9000 OUTPUT.
    CONSTANTS:line_length type i value 132.
    DATA:g_editor type ref to cl_gui_textedit,
         g_editor_container type ref to cl_gui_custom_container,
         CONT1 type scrfname value 'CONT1',
         g_repid like sy-repid,
         g_ok_code like sy-ucomm,
         g_mytable(132) type c occurs 0,
         g_mycontainer(30) type c ,
         v_result(256) type c,
         g_head like thead,
         it_line type table of tline with header line,
         wa_stxl type stxl.
    DATA : BEGIN OF IT_THEAD1,
           ICON TYPE ICON-ID.
           INCLUDE STRUCTURE STXL.
    DATA : END OF IT_THEAD1.
    DATA : IT_THEAD LIKE TABLE OF IT_THEAD1,
           WA_THEAD LIKE LINE OF IT_THEAD.
    IMPORT WA_THEAD FROM MEMORY ID 'ABCD'.
    select SINGLE * from STXL into wa_stxl
                     where tdname = '00006000156500000002'.
    SELECT SINGLE * from STXL into wa_stxl
                      where tdname = WA_THEAD-TDNAME
                      AND TDID = WA_THEAD-TDID
                      AND TDOBJECT = WA_THEAD-TDOBJECT
                      AND TDSPRAS = WA_THEAD-TDSPRAS.
    IF SY-SUBRC NE 0.
    MESSAGE 'NO RECORD EXIST' TYPE 'E'.
    ENDIF.
    MOVE-CORRESPONDING WA_STXL TO G_HEAD.
    SET PF-STATUS 'STATUS'.
    SET TITLEBAR '001'.
      if g_editor is initial.
         CREATE OBJECT G_EDITOR_CONTAINER
           EXPORTING
            PARENT                      =
             CONTAINER_NAME              = CONT1
            STYLE                       =
            LIFETIME                    = lifetime_default
            REPID                       =
            DYNNR                       =
            NO_AUTODEF_PROGID_DYNNR     =
           EXCEPTIONS
            CNTL_ERROR                  = 1
            CNTL_SYSTEM_ERROR           = 2
            CREATE_ERROR                = 3
            LIFETIME_ERROR              = 4
            LIFETIME_DYNPRO_DYNPRO_LINK = 5
             others                      = 6.
         IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
         CREATE OBJECT G_EDITOR
           EXPORTING
            MAX_NUMBER_CHARS       =
            STYLE                  = 0
       WORDWRAP_MODE          = cl_gui_textedit=>wordwrap_at_fixed_position
    for to fix number of characters in row to 132 characers
             WORDWRAP_POSITION      = line_length
             WORDWRAP_TO_LINEBREAK_MODE = cl_gui_textedit=>true
    for the word to break to next line if it don’t fit in line
            FILEDROP_MODE          = DROPFILE_EVENT_OFF
             PARENT                 = G_EDITOR_CONTAINER
            LIFETIME               =
            NAME                   =
           EXCEPTIONS
            ERROR_CNTL_CREATE      = 1
            ERROR_CNTL_INIT        = 2
            ERROR_CNTL_LINK        = 3
            ERROR_DP_CREATE        = 4
            GUI_TYPE_NOT_SUPPORTED = 5
             others                 = 6  .
         IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
      REFRESH g_mytable.
         MOVE: WA_THEAD-TDNAME TO STXL-TDNAME,
               WA_THEAD-TDID TO STXL-TDID,
               WA_THEAD-TDOBJECT TO STXL-TDOBJECT,
               WA_THEAD-TDSPRAS TO STXL-TDSPRAS.
        CALL FUNCTION 'READ_TEXT'
        EXPORTING
        CLIENT                        = SY-MANDT
          ID                            = wa_stxl-tdid
          LANGUAGE                      = wa_stxl-tdspras
          NAME                          = wa_stxl-tdname
          OBJECT                        = wa_stxl-tdobject
        ARCHIVE_HANDLE                = 0
        LOCAL_CAT                     = ' '
      IMPORTING
        HEADER                        =
        TABLES
          LINES                         = it_line
      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.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    LOOP AT IT_LINE INTO V_RESULT.
       APPEND V_RESULT TO G_MYTABLE.
    ENDLOOP.
    CALL METHOD G_EDITOR->SET_TEXT_AS_R3TABLE
       EXPORTING
         TABLE           = G_MYTABLE
       EXCEPTIONS
         ERROR_DP        = 1
         ERROR_DP_CREATE = 2
         others          = 3.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
       endif.
    ENDMODULE.                 " STATUS_9000  OUTPUT
    *&      Module  USER_COMMAND_9000  INPUT
    MODULE USER_COMMAND_9000 INPUT.
    CASE SY-UCOMM.
    REFRESH G_MYTABLE[].
    REFRESH IT_LINE[].
    CLEAR V_RESULT.
      WHEN 'SAVE'.
         CALL METHOD G_EDITOR->GET_TEXT_AS_R3TABLE
          EXPORTING
            ONLY_WHEN_MODIFIED     = FALSE
            IMPORTING
              TABLE                  = G_MYTABLE
            IS_MODIFIED            =
          EXCEPTIONS
            ERROR_DP               = 1
            ERROR_CNTL_CALL_METHOD = 2
            ERROR_DP_CREATE        = 3
            POTENTIAL_DATA_LOSS    = 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.
    LOOP AT G_MYTABLE INTO V_RESULT.
       APPEND V_RESULT TO IT_LINE.
    ENDLOOP.
    CLEAR V_RESULT.
        CALL FUNCTION 'SAVE_TEXT'
          EXPORTING
            CLIENT                = SY-MANDT
            HEADER                = G_HEAD
            INSERT                = ' '
            SAVEMODE_DIRECT       = 'X'
          OWNER_SPECIFIED       = ' '
          LOCAL_CAT             = ' '
        IMPORTING
          FUNCTION              =
          NEWHEADER             =
          TABLES
            LINES                 = IT_LINE
        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.
    REFRESH G_MYTABLE[].
    REFRESH IT_LINE[].
    CLEAR V_RESULT.
    WHEN 'BACK' OR 'CANCEL' OR 'EXIT'.
    LEAVE TO SCREEN '0'.
    *CALL SCREEN '0'.
    WHEN OTHERS.
    ENDCASE.
    *G_OK_CODE = SY-UCOMM.
    *CLEAR SY-UCOMM.
    ENDMODULE.                 " USER_COMMAND_9000  INPUT

  • How to bold/color text message in Module pool Programming ?

    Hi All ,
    I need to bold /color a message in module pool . this message will come when certain conditions satisfied , currently this text message is displaying through variable . I Refereed program DD_STYLE_TABLE , but still not getting desired output . .Is there any other way to achieve the same ?
    Could you please help me ?
    Thanks in advance !!!!
    Regards ,
    Mayank K

    Hi Mayank,
    You can give a try this.
    Within the screen you are calling give keyword
    Leave to list processing
    and then you can give whatever colors which are there in SAP
    For making the text bold you can set Format intensified on or off depending on your requirement.
    For more details you can refer to programs
    program1 : demo_leave_to_list_processing
    program2: demo_call_screen_from_list
    Regards,
    Sandeep Katoch

  • How to change Page Text in Book Module?

    I am in the process of creating a 158 page photo book to be printed by Blub.  I have created many other Blurb books using their BookSmart software.  This is my first attempt using the Lightroom Book Module.
    My problem is I would like the change the default Page Text field on each page without having to manually change each page.  There doesn't seem to be a way to do a mass change.  There is a "Select All Text Fields" command under the Edit tab, but that selects all of the text fields, both Page and Photo text fields, which doesn't help.
    Any suggestions would be appreciated, include telling me there is no automated way to do it and I just need to "suck it up" and manually change all 158 pages with the same exact text.
    Thanks in advance,
    Rick

    Dear Detlev,
    Thanks a lot for your valuable answer.  I have found the text for the "User Authentication Failed" , done the changes and depoyed the Jar file . This is working.
    But the same when i try to do for  "Authentication failed. Password locked" this message comes when i do multiple failed login. I need to change the text , i found  the text in the u2022sap.comtcjesecurityimpl.jar file, i made the changes in the JAR file ,replaced with the server jar file and restared.
    But the changes did'nt get reflected. Can you please suggest if i am chaning in the correct JAR file?. I am working in NWDS7.3
    Can you please help me on this. Appreciate your help .
    -Regards,
    Alok

  • Problem when Saving Texts using Function Module CREATE_TEXT

    Hi All,
    I am using Function Module CREATE_TEXT to save text in transaction XK02.
    But the first character of few lines disappears in one of (Ruled) editor while that character appears in a new line in another editor.
    In debug mode, I found that value of TDFORMAT is '=' in the  line in which first character disappears.
    while in rest its value is '*'.
    I tried hardcoding the value  FFORMAT in function module CREATE_TEXT with '*'. Please suggest me solution to this.
    Regards,
    Nibha

    HI.
    Refer this link.
    http://www. ****************/Tutorials/ABAP/MaterialLongText/info.htm
    Regards.
    Jay

  • Where has the text in my module gone?

    I have a project that has been working fine since I inherited it months ago, which uses the Flex3.0.0.477 sdk.
    Previously, the modules that it loads were not being optimized for the parent application. I changed that setting with no noticiable repercussions a month ago.
    Yesterday, the text suddently began disappearing from modules. When I test in debug mode, the text reappears (because the modules are not optimized when testing), but as soon as I clean the project and grab the optimized modules, the text disappears.
    I understand that there's some issue with the embedded fonts (that are declared in a global css file in the assets folder), but I am stumped how to fix it and even more why it suddenly started happening.
    Also, returning to a previous git commit, from a month ago or more, does not seem to change the behavior, suggesting that it has nothing to do with any recent changes I've made but is being caused by something within flash builder or the flash player.
    Any suggestions welcome!

    There were a confluence of issues/bugs crashing together to cause the issues. I'll try to sort them out here.
    1) The primary bug was being caused by a static variable in one of my subclasses that I was typing with the name of the application. The only noticeable effect of the error was that the fonts no longer loaded, though I'm not sure why. I fixed this issue by removing the type declaration on the variable and leaving it blank. I'm setting that variable in the main application, which simply references itself (ie Subclass.app = this). Other suggestions on how to do that within a class whose static methods are called without instantiation would be appreciated (meaning, I need to reference the parent app from within a static method in that subclass).
    2) Returning to a previous git commit for the project was unreliable because of an apparent flash builder bug that required me to open and close flash builder 2x to get it to correctly complile the application. Before switching to a previous commit, I would close flash builder. Upon reverting the codebase and re-opening flash builder, the application would still not compile correctly. However, if I closed and reopend flash builder a 2nd time, the application would work. I'm guessing that it has to do with how flash builder (or eclipse) save settings when exiting the program, so that I had to exit the correct code base after reverting to a previous version and then reopen to get the correct settings.
    I hope this helps someone in the future. Too many hours spent on something that should have been straightforward.

  • Calling text iwith function module

    Hi,
    Please help me to call the TEXT in the program from function module
    Thanks in Advance
    John

    Hi,
    I have to display text( text of 60 characters ) in the output using a function module.
    I should  not use ch(60) type c.
    Call from a functiom module which can create the text and display it in the output list.
    Thanks in Advance
    John

  • Printing two lines of text in Print Module

    Is it possible to print two, or more lines of text, say on a contact sheet, such as filename and caption. If so, how?

    Lightroom automatically wraps text under the thumbnail in contact sheets. The Text Template Editor does not allow you to enter line breaks. So, if your Filename is long enough to fill the first line, the caption will start with the second. If not, you can tweak the template somehow so that it looks the way you want.

  • Phantom text in Bar Area

    I'm having a strange occurence of some text showing up in
    the "Bar Area" of my schedule. The text happens to be a
    Youtube web address that someone sent in an email. It only
    shows up on the KHT header...................I've tried
    everything I know to get rid of it. I looked in 'Activity
    Codes', 'Format Bars', I've tried selecting the text .....
    it won't select. This is making me crazy! I've changed
    filters, reorganized. I'm just about ready to buy a gun.
    If you have ANY ideas, please pass them on to me. Oh,
    bytheway, yes, it does print
    <br
    />Thanks,
    Exsot
    Below
    is a screen shot showing the text:
    <img
    src="http://img.photobucket.com/albums/v236/exsot/Ebay%20Items/P3_view.jpg"
    border="0" />

    Hello,
    Your question would be
    answered best by our Support Team. Please contact
    Support at the following link:
    http://www.primavera.com/customer/support.asp <br
    />
    Have a great day,
    Saryn

Maybe you are looking for

  • Is it Possible to install ODDC 32 bit on Windows Server 2008 R2(64bit)?

    Hi All, Is it Support to Install ODDC 32 bit on Windows Server 2008 R2(64 bit). I am Posting this bcoz I did not found any ODDC related Blogs. Please help on this Thanks, Raj

  • SAP Support for Pay Service?

    A friend would like me to find out on this site for him: ”Is there any service on this site or anywhere, that he can get support, even if it costs some money?” Basically he has a new BW job and he fears he may encounter a problem and would like to de

  • Export and import the internal table

    Hi, Could you explain the total internal table data how we export and import please give me example. Thanks, Hari

  • Me21n =   subtotal 3

    hi expert , i am abaper  , there is problem in P.O in me23n " From which tcode or screen the below value come KZWI3 = Subtotal 3 from pricing procedure for condition " this is EKPO-KZWI3 which is Subtotal 3  come in ekpo table if this value is there

  • Program to re-structure table cobra

    Hi experts, i have discovered that sometimes the sales order has no entry in table COBRA (settlement profile). I was thinking.. does anybody know if there is some program that re-structure it. Because when ia go into the sales order i can see the dat