Field description / label become a plus (+) sign in maintenance dialog

Hi expert,
I've create a maintenance view & use it in a maintenance dialog screen. All fields shows ok except one field , the label show a '+' sign only, why huhh ?
Did anyone face this problem before ? Please help. Thanks
Janice

In the Generate Table Maintenance Dialog screen, go to Environment->Modification->Maintenance Screens via the menubar. Then go to the screen layout by clicking the Layout button.
Now double click on the column name where you have the '+' sign and type over your required label. Save and activate. Now run this via SM30 you should see the correct label.
Hope this helps.
Cheers,
Sougata.

Similar Messages

  • Removing the little plus sign in a fillable document

    Hi everyone,
    I hope someone can help me resolve this issue.  In a fillable document where texts are entered, there is always a little plus sign in the field/space where a little plus sign (field expander?) appears.  When printing it out, it does not look too good.  What's the way to remove this little plus sign? Thanks so much in advance for reading and taking the time to reply to my question.
    Kai

    Make the field size large(?).
    Or, Font Size to automatic (or smaller)?
    Be well...
    Message was edited by: CtDave

  • Plus signs displaying in calculated field

    I have created a form with a table that has a row that calculates automatically. I then created another form that I copied and pasted the table into. In the second form, when my users display or print the form with Adobe 7.0 Standard, the calculating field now displays a plus sign when nothing is entered to calculate. How do I make the plus sign disappear?

    Actually, that was my first instinct as well, but it is not the issue. No matter how large I make the fields, no matter where I put them (IE not touching any other fields) - the plus signs still display. The really frustrating thing is that they won't display for me, just for other users. I have Adobe 7.0 Pro and we have just updated our users with Adobe 7.0 Standard. The plus signs do not display for me, but they do for the other users. To make the problem even less consistent, I had the exact same table in another form and in that form the users have used that table without any issues. I merely copied and pasted the table into the new form. I can't see any settings that have been changed. Any ideas?? Even a work around would be great.
    Thanks,
    Rebecca

  • When output SSRS report to Excel, Plus sign was moved to the far left pane in Excel. How to fix it?

    Hi there:
       I've created a SSRS report and looks good inside Report Manager, See below . plus "+" is in the right place and
    if I click it, it will expand. 
    However, when I output results into excel, it becomes this, notice those plus sign "+" have been shifted to the far left and they are
    not line up with each month either... Is there any way to fix in the excel so that users could see exactly what they see in the Report Manger? 
     Thanks
    --Currently using Reporting Service 2000; Visual Studio .NET 2003; Visual Source Safe SSIS 2008 SSAS 2008, SVN --

    Hi cat_ca,
    Microsoft Excel has limitations with how it manages hidden and displayed report items when they are exported. When we export a report to Microsoft Excel format, groups, rows, and columns that contain report items that can be toggled are rendered as Excel
    outlines. Excel creates outlines that expand and collapse rows and columns across the entire row or column which can cause the collapse of report items that are not intended to be collapsed. This is by design. For more information about this, please see Show
    and Hide section in the link below:
    http://msdn.microsoft.com/en-IN/library/dd255234.aspx#ReportItemsExcel
    The following similar thread is for your reference:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/06303610-5f6b-4c90-80a6-628552a3d36c/ssrs-2008-table-with-line-grouping-excel-export-problem-with-toggle-item?forum=sqlreportingservices
    Thank you for your understanding.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Plus sign after entering information in PDF Form

    Good morning!
    I have a PDF form that I made. I'm relatively new at this. Actually this is my first form and my boss is now wanting me to turn more of our forms into fillable PDF's. Which is fine. It was easy to figure out but now I am running into a problem where a plus sign is poping up after entering information. She wants me to fix it but seeing as I am playing around making these it's a bit above my head. Do you know how to get rid of these plus signs? Do you know why this is happening? It only seems to be doing it in these fields as well.
    Thanks for the help! It's greatly appreciated.

    The "+" is used to indicate an text overflow condition or there is more formatted text than can be displayed. One gets rid of this by either making the font size smaller or the size of the text field larger.
    Acrobat does not have a dynamic field type or a field that reflows to match the entered text. LiveCycle has this type of form and PDF format but mobile devices cannot yet process LiveCycle created forms.

  • ALV with dynamic columns and description labels in header titles

    Hi everybody,
    I have to implement an ALV whose columns are not defined until runtime. Is it possible to do that in some simple way? Is it necessary to use objects to define this kind of ALV's?
    And another one query, is it possible to add description labels to column headers so that when the user points with the cursor in them he/she gets a little explanation about the detail of the column (for example, description name of the product hierarchy when pointing to the column named with one of the existing hierarchies, i.e 010102102)
    Thanks in advance,

    for your first question check this
    Just check this sample from one of the SAP site
    ABAP Code Sample for Dynamic Table for ALV with Cell Coloring
    Applies To:
    ABAP / ALV Grid
    Article Summary
    ABAP Code Sample that uses dynamic programming techniques to build a dynamic internal table for display in an ALV Grid with Cell Coloring.
    Code Sample
    REPORT zcdf_dynamic_table.
    * Dynamic ALV Grid with Cell Coloring.
    * Build a field catalog dynamically and provide the ability to color
    * the cells.
    * To test, copy this code to any program name and create screen 100
    * as described in the comments. After the screen is displayed, hit
    * enter to exit the screen.
    * Tested in 4.6C and 6.20
    * Charles Folwell - [email protected] - Feb 2, 2005
    DATA:
    r_dyn_table TYPE REF TO data,
    r_wa_dyn_table TYPE REF TO data,
    r_dock_ctnr TYPE REF TO cl_gui_docking_container,
    r_alv_grid TYPE REF TO cl_gui_alv_grid,
    t_fieldcat1 TYPE lvc_t_fcat, "with cell color
    t_fieldcat2 TYPE lvc_t_fcat, "without cell color
    wa_fieldcat LIKE LINE OF t_fieldcat1,
    wa_cellcolors TYPE LINE OF lvc_t_scol,
    wa_is_layout TYPE lvc_s_layo.
    FIELD-SYMBOLS:
    <t_dyn_table> TYPE STANDARD TABLE,
    <wa_dyn_table> TYPE ANY,
    <t_cellcolors> TYPE lvc_t_scol,
    <w_field> TYPE ANY.
    START-OF-SELECTION.
    * Build field catalog based on your criteria.
    wa_fieldcat-fieldname = 'FIELD1'.
    wa_fieldcat-inttype = 'C'.
    wa_fieldcat-outputlen = '10'.
    wa_fieldcat-coltext = 'My Field 1'.
    wa_fieldcat-seltext = wa_fieldcat-coltext.
    APPEND wa_fieldcat TO t_fieldcat1.
    wa_fieldcat-fieldname = 'FIELD2'.
    wa_fieldcat-inttype = 'C'.
    wa_fieldcat-outputlen = '10'.
    wa_fieldcat-coltext = 'My Field 2'.
    wa_fieldcat-seltext = wa_fieldcat-coltext.
    APPEND wa_fieldcat TO t_fieldcat1.
    * Before adding cell color table, save fieldcatalog to pass
    * to ALV call. The ALV call needs a fieldcatalog without
    * the internal table for cell coloring.
    t_fieldcat2[] = t_fieldcat1[].
    * Add cell color table.
    * CALENDAR_TYPE is a structure in the dictionary with a
    * field called COLTAB of type LVC_T_SCOL. You can use
    * any structure and field that has the type LVC_T_SCOL.
    wa_fieldcat-fieldname = 'T_CELLCOLORS'.
    wa_fieldcat-ref_field = 'COLTAB'.
    wa_fieldcat-ref_table = 'CALENDAR_TYPE'.
    APPEND wa_fieldcat TO t_fieldcat1.
    * Create dynamic table including the internal table
    * for cell coloring.
    CALL METHOD cl_alv_table_create=>create_dynamic_table
    EXPORTING
    it_fieldcatalog = t_fieldcat1
    IMPORTING
    ep_table = r_dyn_table
    EXCEPTIONS
    generate_subpool_dir_full = 1
    OTHERS = 2.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    * Get access to new table using field symbol.
    ASSIGN r_dyn_table->* TO <t_dyn_table>.
    * Create work area for new table.
    CREATE DATA r_wa_dyn_table LIKE LINE OF <t_dyn_table>.
    * Get access to new work area using field symbol.
    ASSIGN r_wa_dyn_table->* TO <wa_dyn_table>.
    * Get data into table from somewhere. Field names are
    * known at this point because field catalog is already
    * built. Read field names from the field catalog or use
    * COMPONENT <number> in a DO loop to access the fields. A
    * simpler hard coded approach is used here.
    ASSIGN COMPONENT 'FIELD1' OF STRUCTURE <wa_dyn_table> TO <w_field>.
    <w_field> = 'ABC'.
    ASSIGN COMPONENT 'FIELD2' OF STRUCTURE <wa_dyn_table> TO <w_field>.
    <w_field> = 'XYZ'.
    APPEND <wa_dyn_table> TO <t_dyn_table>.
    ASSIGN COMPONENT 'FIELD1' OF STRUCTURE <wa_dyn_table> TO <w_field>.
    <w_field> = 'TUV'.
    ASSIGN COMPONENT 'FIELD2' OF STRUCTURE <wa_dyn_table> TO <w_field>.
    <w_field> = 'DEF'.
    APPEND <wa_dyn_table> TO <t_dyn_table>.
    * Color cells based on your criteria. In this example, a test on
    * FIELD2 is used to decide on color.
    LOOP AT <t_dyn_table> INTO <wa_dyn_table>.
    ASSIGN COMPONENT 'FIELD2' OF STRUCTURE <wa_dyn_table> TO <w_field>.
    * Get access to internal table used to color cells.
    ASSIGN COMPONENT 'T_CELLCOLORS'
    OF STRUCTURE <wa_dyn_table> TO <t_cellcolors>.
    CLEAR wa_cellcolors.
    wa_cellcolors-fname = 'FIELD2'.
    IF <w_field> = 'DEF'.
    wa_cellcolors-color-col = '7'.
    ELSE.
    wa_cellcolors-color-col = '5'.
    ENDIF.
    APPEND wa_cellcolors TO <t_cellcolors>.
    MODIFY <t_dyn_table> FROM <wa_dyn_table>.
    ENDLOOP.
    * Display screen. Define screen 100 as empty, with next screen
    * set to 0 and flow logic of:
    * PROCESS BEFORE OUTPUT.
    * MODULE initialization.
    * PROCESS AFTER INPUT.
    CALL SCREEN 100.
    * MODULE initialization OUTPUT
    MODULE initialization OUTPUT.
    * Set up for ALV display.
    IF r_dock_ctnr IS INITIAL.
    CREATE OBJECT r_dock_ctnr
    EXPORTING
    side = cl_gui_docking_container=>dock_at_left
    ratio = '90'.
    CREATE OBJECT r_alv_grid
    EXPORTING i_parent = r_dock_ctnr.
    * Set ALV controls for cell coloring table.
    wa_is_layout-ctab_fname = 'T_CELLCOLORS'.
    * Display.
    CALL METHOD r_alv_grid->set_table_for_first_display
    EXPORTING
    is_layout = wa_is_layout
    CHANGING
    it_outtab = <t_dyn_table>
    it_fieldcatalog = t_fieldcat2.
    ELSE. "grid already prepared
    * Refresh display.
    CALL METHOD r_alv_grid->refresh_table_display
    EXPORTING
    i_soft_refresh = ' '
    EXCEPTIONS
    finished = 1
    OTHERS = 2.
    ENDIF.
    ENDMODULE. " initialization OUTPUT

  • UserTable.txt and UserVariables.txt fields descriptions

    Hello,
    I would like to get UserTable.txt and UserVariables.txt fields descriptions. These two files come in the package.cab obtained from an ACS SE 1113 running V4.2. These files, which uses a CSV format, do not include a heading row with field descriptions, nor i found this information in the ACS documentation.
    The reason for that is that we get a daily copy of package.cab, and from it we would like to write an application to generate a formatted daily report for every user with several fields including those:
    Name
    MaxSession
    MaxSess2
    Profile
    Aging policy
    Description
    So far i was able to discover the columns for Name and MaxSessions. But not the other fields, which are probably also included in the UserTable and Uservariables text files.
    Kind regards.

    Dear Albert
    Why not take a look at aaa-reports! enterprise? We can automatically import the cab file and pull out the data you're after.. plus more besides.
    www.extraxi.com

  • Plus sign disappears

    Hi all
    when i execute below command
    set serveroutput on
    declare
    n number;
    r number;
    rev number:=0;
    begin
    n:=&enter_the_number;
    while n >0
    loop
    r:=mod(n,10);
    rev:=(rev*10) + r;
    n:=n-r;
    n:=n/10;
    end loop;
    dbms_output.put_line('reverse of number is');
    dbms_output.put_line(rev/10);
    end;
    i get the error
    old 6: n:=&enter_the_number;
    new 6: n:=12345;
    rev:=(rev*10) r;
    ERROR at line 10:
    ORA-06550: line 10, column 19:
    PLS-00103: Encountered the symbol "R" when expecting one of the following:
    * & = - + ; < / > at in is mod not rem <an exponent (**)>
    <> or != or ~= >= <= <> and or like between overlaps || year
    DAY_
    The symbol "*" was substituted for "R" to continue.
    Problem is
    i have given plus sign in rev:=(rev*10)+r
    why plus sign disappears and why am getting error
    am very new to PL/SQl
    Kindly help me with this
    Regards

    815513 wrote:
    i have given plus sign in rev:=(rev*10)+rwhy plus sign disappears and why am getting error
    am very new to PL/SQl Not eaxctly sure what you mean. You run the above code. It prompts you:
    Enter value for enter_the_number:And you type + and hit ENTER, right? Then line:
    n:=&enter_the_number;becomes:
    n:=+; and is syntactically invalid. Plus must be followd by a number:
    SQL> set serveroutput on
    SQL> declare
      2  n number;
      3  r number;
      4  rev number:=0;
      5  begin
      6  n:=&enter_the_number;
      7  while n >0
      8  loop
      9  r:=mod(n,10);
    10  rev:=(rev*10) + r;
    11  n:=n-r;
    12  n:=n/10;
    13  end loop;
    14  dbms_output.put_line('reverse of number is');
    15  dbms_output.put_line(rev/10);
    16  end;
    17  /
    Enter value for enter_the_number: +0
    old   6: n:=&enter_the_number;
    new   6: n:=+0;
    reverse of number is
    0
    PL/SQL procedure successfully completed.
    SQL> Keep in mind, you code does not reverse numbers correctly:
    SQL> set serveroutput on
    SQL> declare
      2  n number;
      3  r number;
      4  rev number:=0;
      5  begin
      6  n:=&enter_the_number;
      7  while n >0
      8  loop
      9  r:=mod(n,10);
    10  rev:=(rev*10) + r;
    11  n:=n-r;
    12  n:=n/10;
    13  end loop;
    14  dbms_output.put_line('reverse of number is');
    15  dbms_output.put_line(rev/10);
    16  end;
    17  /
    Enter value for enter_the_number: 12345
    old   6: n:=&enter_the_number;
    new   6: n:=12345;
    reverse of number is
    5432.1
    PL/SQL procedure successfully completed.
    SQL> SY.

  • Plus sign or insert record button on toolbar

    Hi there,
    What trigger fires when insert record button or plus sign from toolbar is clicked?
    Thanks

    Thanks for answering my question.
    Now I created a KEY-CREREC trigger with code
    1. I have a procedure that enables some fields and go_item('block.item1')
    2. create_record;
    There are 2 undesirable things that are occuring
    1. user queries records, clicks on plus sign, the cursor does not go to the 1st field in the block even though i say go_item(block.item1)
    2. to exit without saving the record, i have to click on remove record and then exit. is there a way of exiting out of the form without clciking on remove record button
    Thanks a lot

  • I want to change my description label from HONOR STUDENT. How?

    I want to change my description label  from HONOR STUDENT. How?  Also, why are there extraneous characters like commas, in my 'handle' field as you read through forum entries?
    I see a lot of complaints about unsolved issues, but most people know you're mostly on your own in these forums. Could you at least, please, allow account deletion, and fix the two items above? GH

    Ok, I get it. I guess you rate users, and labels change as they appear to be contributing to the forums.
    If you have the resources to put in that feature, could you at least allow deletion of accounts?

  • Plus sign instead of data in form

    I have begun using the Form feature in Adobe 8.0. I have made my forms using the Livecycle designer. I have received back completed forms via email and then I have entered the data in the actual form itself by hitting "import data." When doing so I've noticed that there are some responses that show a little bit of the answer but then there is this plus sign (+) and when I click on it, it allows me to see the rest of the response(by scrolling over).
    My problem is when I print off the form, it still has this plus sign on there and it doesn't show the complete answer. The only way to see the entire response is if you scroll over on the form on the computer. I was wondering how you get it to show the entire response and get rid of the plus sign???
    Any help would be appreciated.

    Can you provide some XML data and your code for the form fields? It would be easier to help if you provide the information.
    Thanks!

  • Show field description?

    Is it possible to show the field description while users are creating workbooks. I thought there would be an option for 'tool tips' or hover-over help which may show the field description.

    Hi
    All versions of Discoverer do this by default.
    In Desktop, the description appears underneath the Available items pane.
    In Plus the description appears below the buttons New | Edit | Show | Delete. If you look closely there is an oblong shaped area below these buttons and above the main Back | Next | Finish buttons. This is where the description, or context sensitive help as I like to call it, will be displayed.
    If you have not added any descriptions, in Desktop the area displays nothing whereas in Plus it will at least say "No description available".
    I hope this helps
    Best wishes
    Michael Armstrong-Smith
    URL: http://learndiscoverer.com
    Blog: http://learndiscoverer.blogspot.com

  • What happened to the little tab with the Plus sign to create an empty tab?

    I recently upgraded from v3.6 through several versions to v8.01 of Firefox. There used to be a small tab with a plus sign at the end of the tab bar that allowed me to create a new empty tab. It seems to have disappeared somewhere beyond v4.0
    What happened to it and how do I get it back? Yes I know I can turn on the toolbar button for a new tab, but having it at the end of the tab bar is more natural to use.

    You can find the New Tab button showing as a '+' on the Tab bar.<br />
    You can open the Customize window and drag the New Tab button that shows as a plus sign (+) from the Tab bar on another toolbar and it will become a regular toolbar button like the New Tab button that you have in Firefox 3 versions.<br />
    If you can't find the New Tab button then click the "Restore Default Set" button in the Customize window.<br />
    If you want the New Tab button at the far right end of the Tab bar then place a flexible space to the left of it.<br />
    *http://kb.mozillazine.org/Toolbar_customization
    *https://support.mozilla.com/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • "Region" field's label of Rental object address to "State"

    Hi Experts,
    I want to change  "Region" field's label of Rental object address to "State". Is there any way to get this done with out going by data element level.
    If it could be achieved by BDT, please guide the steps.
    Thanks in advance.
    Regards,
    CM

    Hi,
    Goto CMOD, Goto "Goto" in menu \ Text enhancements \ keywords \ change, enter the data element "REGIO", write your description.
    But this is not at all advisable bcz it reflects in all the screens of SAP wherever this field exist.
    As address fields almost uses by all modules, dont do any changes and try to convince the business.
    rgds,
    Srini

  • I updated my ipod 4 to ios5 and now my plus sign on the contacts and calendar are gone and i cant add events or new people what do i do??

    i updated my ipod4 to ios5 and now my plus sign on the contacts and calendar are gone!!
    and now i cant add events or new people directly to my ipod..
    how can i fix this??

    Try looking at the similar posts on the right side of this page under the heading "More Like This". The ones with the green checkmark were solved.

Maybe you are looking for

  • I Want to upgrade my macbook to 10.8 and higher but it wont upgrade past 10.5.8. Is there something I need to do?

    I want to upgrade my macbook white to the current software, however it says that it is up to date even though I only have 10.5.8.... Someone please help me figure out what I need to do to get the current software..

  • Use XPI_Inspector for HTTP_AAE receiver

    Hi Experts, Current scenario: - I've created a synchronous Proxy to HTTP_AAE scenario which uses the Google Distance Matrix API Problem: - The response mapping gives the following error: "Values missing in queue context." Question: - I'm wondering if

  • Server ---IP address//redirection..Pls

    I am new to this Please help me i am using JSPs i wanna a redirect my clients request to a secure payment gateway (Bank here after) ,But while doing so the Bank needs the invoked IP is from the server(constant) but always I try this Bank gets the cli

  • Installed third party applications not showing Application folder?

    Hi, i've installed third party application outside from AppStore. i chosen "Anywhere" option on Gate keeper. however its not proper installation process hence how can i install? if i install third party application which is get .DMG file from some on

  • Change from PC to MAC Licence?

    Hi there, My PC has just died and I have Creative Suite 4 (CS4) for PC loaded on it, which I am very happy with. I really am not in a position to purchase a MAC version of this software, so would like to either change over to a MAC licence, or simply