SAPSCRIPT form - Text is not porperly displayed

hi all,
in my SAPSCRIPT form, I am getting a text from PERFORM stmt. in the PERFORM , the text is coming correct, but in the form , it is showing only half of the text.
the code
FORM get_text TABLES ts_intab STRUCTURE itcsy
                     ts_outtab STRUCTURE itcsy.
DATA: l_haul_text(500) TYPE c,  
           l_haul_long(250) TYPE c.
l_haul_long = l_haul_text+0(250).
    LOOP AT ts_outtab.
      CASE ts_outtab-name.
        WHEN 'L_HAUL_LONG'.
          ts_outtab-value = l_haul_long.
          MODIFY ts_outtab.
      ENDCASE.
    ENDLOOP.
Then in the form, just display
/:  PERFORM GET_TEXT IN PROGRAM
/:   USING &VBDKL-VBELN&
/:   CHANGING &L_HAUL_LONG&
/:  ENDPERFORM
&L_HAUL_LONG&
while debugging, the text is correct till TS_OUTTAB but when it comes to the form L_HAUL_LONG, it is truncated.......what should i do..
Kindly help.
THnaks

answered

Similar Messages

  • Session Timeout Alert text is not getting displayed on web ui.

    Hello,
    In "Session Timeout Alert" pop up we are facing one issue. The pop up is getting displayed as per the value in rdisp/plugin_auto_logout parameter i.e. 1800. But the text is not getting displayed.
    I have implemented the SAP Note 1877120 also. Any inputs to resolve this issue.
    Thanks.

    Hi Sigrid,
    When we do pre activities related to OTR, need to save it in standard name space only ? could you guide me pls.
    in the below we have Alias and package are standard.
    1.) There are 4 texts which needs to be configured via SOTR_EDIT to get the translation according your languages implemented in your CRM.
    a.) Start doing it by opening transaction SOTR_EDIT.
    b.) Change to the language you would like to use.
    c.) As ALIAS enter first CRM_IC_CMP_FRAME/SESSION_PING_TITLE. Click on Create and confirm the following dialogues.
    d.) Enter CRM_IC_CMP_FRAME as package and the object type as WAPP.
    e.) Finally enter the translation according your language from the english version (length of text: 25):
    "Session Timeout Alert !"
    f.) Save you changes
    Repeat the steps a.) to f.) with the following aliases and options:
    Jimmi

  • Sold-to-party Text data not getting displayed; Urgent

    I am current using a BI content 0CRM_COMP which contains sold-to-party, i have loaded this ODS, but when i view the data in bex i could only see the Key value and not the Text, even though i change the display mode to Key and Text both the columns displays only the Key value. is it because the master data is not loaded, i have also tried to load the Business Partner master data attributes and text till no use. Please help
    Note: These business partners are created in CRM and are nor from R/3

    Hi,
    Just check whether for this infoobject has master data and text option ticked or not in infoobject.
    If text option in there then search for the data scource0CRM_SOLDTO_TEXT or something like that which contain text for this particular infoobject and then laod the text for the same.
    Just got to the modelling tab -> infoprovider-> Application component in which you infoobject is present-> right click insert object as dat target-> give the name of your object this will give you data target one for master data one for text->activate data source and replicate in BW if not presen in BW-> make infosource on the text data source->make update rules for the text target and load.
    Or as Anil said sold to party is reference to customer load text into the custome with the same method iot will work fine.
    Hope it helps
    Thanks

  • Header Vendor text is not getting displayed for PO in BBP_PD transaction.

    Hi Experts,
    We are upgrading   SRM 3.0 to SRM 7.0 .In the upgraded  sys the Header Text 'HTXT' is not getting displayed for the Purchase order created in BBP_PD. For the SCs  the Header text field is populated correctly.
    Inputs on this will be very helpful.
    Regards,
    Ravi.K

    Ravi,
    Check in IMG if the text schema is used in configuring PO transaction type. Define Transaction Types is the setting.
    SG

  • In which table the lines of the SAPScript form text elements are found?

    Hello,
    I want to write a report analyzing the lines contained in the text elements of an SAPScript form. From which table can I select the data? Regards.
    Lars.

    Sorry.. forgot to mention the FM name.
    You can use FM 'READ_TEXT'.
    pass 'ST' for ID.
    and 'TEXT' for OBJECT
    and pass the name of text element to NAME u will get the
    text element.

  • Adobe form - Text field not getting saved.

    Hi All,
    We created an application in which user will enter the data and submit it . The details entered in the screen will be saved in the Ztable.
    Our problem is when the user enters the data in the TextField UI of the adobe form it is not getting saved in the table. In development its working fine.
    In production for few users it is getting saved and for few users it is not getting saved.
    We are not able to find out the root cause of the problem.
    Any help will be appreciated
    Best Wishes
    Idhaya R

    Hi Idhaya,
    As you said it is working for few users,
    Then you need to check Adobe reader installed for users who are having problem.
    Hope it helps.
    Regards,
    Arun

  • Adobe Interactive Form text field not editable

    Hello,
    I created an Adobe Form using transaction SFP and placed a textfield on the body page.
    I then created a Web Dynpro application using SE80, placed Interactive Form container on the view. I also checked the flag 'Enabled' and provided the templateSource as my Adobe Form name.
    When I test the WD application, the text field is not editable.
    Can you please advise what needs to be done?
    Thanks
    Sagar

    Hi...
    Place the following code in domodifyview
    data:
        lr_interactive_form type ref to cl_wd_interactive_form,
        lr_method_handler   type ref to if_wd_iactive_form_method_hndl.
      check first_time = abap_true.
      lr_interactive_form ?= view->get_element( 'INTERACTIVE_FORM' ).
      lr_method_handler ?= lr_interactive_form->_method_handler.
      lr_method_handler->set_legacy_editing_enabled( abap_true ).
    Thanks
    Gopal.

  • Text is not being displayed in sync on a label when looping through a list -- how to fix?

    I have a list of states (50 states).  I loop through this list (in a winform app -- VS2012) and want to display the current state ID that is being processed in the loop in the text property of a label.  I precede the label.Text = StateID line with
    Application.DoEvents() but I am also (in Debug mode) writing the same text to the console.  The console displays correctly, but there appears to be a lag in the label.Text property
    List<string> StateList = new List<string> { "al", "ak", "az","ar","ca","co","ct","de","fl","ga",...};
    foreach (string stateID in StateList)
        Application.DoEvents();
        lblStateID.Text = "State is " + stateID;  //--there is a lag here
    I vaguely recollect something about a NotifyPropertyChanged event.  I know this is common in WPF, but is there something similar in winform?  Or is there a way to make the desired text to be displayed in the label.Text property in synchronization
    with the loop?
    Rich P

    Thank you.  This is way simpler than implementing the INotifyPropertyChanged Interface.  Although, here is an article on the INotifyPropertyChanged Interface and event
    http://msdn.microsoft.com/en-us/library/system.componentmodel.inotifypropertychanged(v=vs.110).aspx
    Rich P

  • My form data is not being displayed when signing in to different websites such as Facebook.

    I have tried clearing the history and form data, and I have tried deleting the specific sites that I've been having problems with and still has not fixed the problem.

    Oops here is the jpg - not sure whey so small.

  • Master data: Text is not getting displayed

    Hi Experts,
    There is one Infoobject 0EMPLOYEE..It is the master data.I am loading the attributes and texts for the same..I am loading this object thru Direct Update.When I go in the Maintain Masterdata...there I am not able to see the text..I have selected Medium Description..But text is there in the T table..
    Please help me out as what can be the problem..
    Thanks,
    Shalaka.

    Hi Shalaka,
    You need to activate that particular master firstly, inorder to make the changes reflect in the maintain master data.
    and as you are saying the text text is visible in Report,so it  might
    be a problem of refreshing as well.
    Regards,
    Umesh.

  • Selection tet -description not getting displayed

    Hi,
    In abap program, the text for the selection text is not getting displayed. For ex. for field p_matnr which is nothing but mara-matnr, the text name Material number is not getting displayed and instead it shows p_matnr on the selection screen. I have activated the dictionary check box on the selection texts still it is not working. The strange part is the same Selection text 'P_MATNR' displays the text correctly in another report but on this report even if i uncheck and check the dictionary check box it does not display. Has soneone faced this before?
    Thanks,
    Prem

    Hi.,
    Try this.,
    SELECTION-SCREEN BEGIN OF BLOCK 1 WITH FRAME TITLE TEXT-001.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(20) c1 .
    PARAMETERS : P_MATNR LIKE MARA-MATNR.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK 1.
    INITIALIZATION.
    c1 = 'Material Number:'.
    hope this helps u.,
    Thanks & Regards,
    Kiran

  • Don't know what's happen in SAPScript Form

    I have a question about the SAPscript form of delivery note
    i got the item line show in the doc should be like this
    000515   Farm & Country - Cow & Sheep                        1700003333     444PC
    But I don't know why the description become showing the form code of it..like this
    000515 Farm & Country - Cow &,,&VBDPL-BSTKD&,,&VBDPL-VBELN_VAUF&,,&QTY&&VBDPL-VRKME&
               Sheep
    the form code that i write is shown as below.
    &OLD_MATERIAL&,,<b>&ITEM_DESC1+0(31)&</b>,,&VBDPL-BSTKD&,,&VBDPL-VBELN_VAUF&
    actually i don't know which combination of the letter will make this kind of problem.
    can anyone know this?
    Thx for help

    Jellicent wrote:It tells you: you are missing libfltk.so, hence you are missing the appropriate package.
    Use your favourite search engine and search for for information on what package it is.
    I found what you are looking for by searching on duckduckgo for "libfltk Arch Linux".
    Thanks, i searched google and i installed fltk package. Then i try to start them in termial, there are some problem:
    $ hdspconf
    HDSPConf 1.4 - Copyright (C) 2003 Thomas Charbonnel <[email protected]>
    This program comes WITH ABSOLUTELY NO WARRANTY
    HDSPConf is free software, see the file copying for details
    Looking for HDSP cards :
    Card 0 : HDA Intel at 0xfdff8000 irq 43
    No Hammerfall DSP card found.
    $ hdspmixer
    HDSPMixer 1.11 - Copyright (C) 2003 Thomas Charbonnel <[email protected]>
    This program comes with ABSOLUTELY NO WARRANTY
    HDSPMixer is free software, see the file COPYING for details
    Looking for RME cards:
    Card 0: HDA Intel at 0xfdff8000 irq 43
    No RME cards found.
    Thankyou, i will continue search google for my problem

  • PO item text does not display in form at first. Only after saving PO

    Hi Guys,
    We're facing a peculiar situation. We print line item texts of a PO in the smartform. However what we noticed was that as soon as the PO is created and we choose to print the po, the item texts do not appear. When we checked in tables STXH and STXL theese texts were not even registered in the tables. All this time the PO is saved.
    Then we went back into the PO in ME22n, made a slight change somewhere and saved the PO. Now these texts appear in the tables STXH/STXL and also in the print out. What could the reason be?
    Regards,

    Hi
    You should check your PO customizing, probably the text is set to be loaded in modification only
    Max

  • About include text in sapscript form printing

    hi experts:
        I am learning about form printing,the control command-include,for example:INCLUDE ZTEST OBJECT TEXT ID ST.
    the question is:how to ceate the text?
       thanks

    Hi,
    Standard text are used to include a Fixed Note or Rules or regulation document in SAPSCRIPT.
    You can include this text any where in your SAPSCRIPT, just by using include text.
    It is created in SO10 transaction, Where you can create the standard text. Object Name --> Starting with Z, Text ID --> ST, Language --> EN
    Just enter the text you want to display inside the editor and save it.
    Then go to sapscript editor --> in Menu Include --> Text --> Standard.
    It wil get included.
    Hope this may be useful..
    Regards,
    Prashant

  • Data is not getting displayed in my form

    hi,
    i have declared variable to hold amount in that as v_amt type konv-kwert in my program and in form interface in import parameters i gave it the same as v_amt type konv-kwert..............and in text i gave the variable v_amt.............
    but it is not getting displayed................

    Hi!
    on the application toolbar on the top a icon is there for Field list on/off.
    click on it.
    below left hand side field names will be displayed.
    now from the import parameter drag that parameter and drop it in the text boc where you are to display it.
    try this way.....it can work.....sometimes there is problem when u don't drag and drop the fields from the list box in the text nodes.
    Regards.

Maybe you are looking for