How to change labels in maintenance view

Hi,
i have created a maintenance view on a table.
i attached this view to a transaction.
when i run that transaction the table is appearing for display of values
and new entries. but i want to change labels of the appearing view.
is there any way?
please suggest me.
raju

Hi,
to handle GuiXT central in SAP: use transaction SHD0. There is also an online help for further information.
in SHD0 transaction variants are defined: alternative tcodes, where normally fields are hidden and default values are assigned.
Enter standard tcode in field TCODE, enter z-tcode in field TCVARIANT and create just something for playing...
In upper part you will find flag GiuXT-Script and in upper part is 'i'-button for help in using this transaction (this blue-i-help-button is also in starting screen, docu is implemented like SPRO-docu).
Approach with SHD0 ensures transportation of scripts and automated download to local Guis - so some help to handle bigger installations.
Regards,
Omkar.

Similar Messages

  • How to change label in charts in CRM 2013

    I want to change x-axis and y-axis label in chart. Please guide me how to change label in chart.

    http://mscrmninja.tumblr.com/post/15553130574/changing-chart-axis-titles-in-crm-2011
    My blog: www.crmanswers.net -
    Rockstar 365 Profile

  • How to change label in pagination scheme?

    How to change label in pagination scheme? I need to translate "Next" and "Previous" into my native language.
    Regards,
    Kostya

    Hi Kostya,
    see http://download-west.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28550/global.htm#CHDJFHBD and Translation and NLS in APEX
    Hope that helps
    Patrick
    Check out my APEX-blog: http://inside-apex.blogspot.com

  • How to regenerate a table maintenance view for a table.

    A  new customer defined field(y_status) was added to the table(ykxrdarea). But the field is not reflected in the view maintenance.busiess adviced me to regenerate the table view maintenance.
    Can any one help me how to regenerate the table view maintenance.

    Go to transaction SE11.Enter the table name and choose utilities from the menu and click on table maintenence generator.You will get the table maintenance dialog.Choose generated objects from the menu and click on change.You will get the change generation elements screen.Enter the reason for regeneration.In your case it is new field/sec.table in structure.hit enter and the table maintenance will be regenerated.If you go back and see the maintenance view now you should see your field.
    cheers
    Nishanth

  • How to extract data from maintenance view

    Hi experts,
    How can I select the data from maintenance view. As you know select query doesn't work on the maintenance view. And View name will be known at run time only.
    Thanks
    Yogesh Gupta

    > Let me tell you that I am a SAP certified ABAP consultant having experience of 4.5 years.
    I suspect that we will be hearing more comments about that.
    > Whatever question I asked can't be replied with the basic training (if yes please tell me even one).
    Debugging a macro?
    Another one => FM or BAPI to create the Activity Group in 4.0B No answer is possible? You have to be joking!
    And in How to get email ID fo a SAP user you obviously didn't even try Graham's answer!
    > I closed some of the answered questions since I didn't get the answers for them for a long time and SDN site doesn't allow to keep more than 10 questions open.
    The "comment field" is not mandatory. You don't need to flood the forum with your questions again.
    > I do respect your  concerns but I have no intention to abuse this site as it has been very helpful for me.
    That is the most important part. Thank you. But you seem to be unaware of the "search" functionality.
    If you can imagine that you are not the first person to ask a certain question, then you can be sure that someone else already has and you can find the answers on your own. If you still have doubts, then ask a specific question providing the details.
    Based on your other questions, you are on release 4.0B. Is that still correct?
    Cheers and thanks for responding,
    Julius
    Edited by: Julius Bussche on Jan 23, 2009 12:06 AM

  • How to change sorting in column view in Maverick

    I understand how to change the view and then "arrange by".  In my columns, they list from oldest to newest.  I don't see how to reverse that.  I want newest on top.  Also, how do I set the column width to what I want and save for all?  I can adjust the column width, but it defautlts back to the narrow setting shortly after.

    Excuse me my English. It is not my problem.
    I need to ensure this thing:
    When user click on any head of column in output table (table view) it must not call any event. All data must stay on same rows.
    Example. A have table:
    Col1        Col2
    B           20
    A           30
    T           10
    D           60
    If I click on first head of column data will be sorted:
    Col1        Col2
    A           30
    B           20
    D           60
    T           10
    But if hierachy or structure are in first column rows cannot be changed.

  • How to change Labels in runtime ?

    Hello,
    Is it possible to change the labels in a view dynamically at runtime, based on some conditions?
    Regards
    Ajay

    Hi Sam,
    Yes, one way is to use multiple view configuration loaded based on the configuration. Can be done at DO_CONFIG_DETERMINATION method of IMPL class.
    Regards,
    Harish P M

  • How to change label color in LabelGraphics script?

    I am using ID CS4 and running the LabelGraphics script to label several images in a large document. When I run thre script, the box with the file name is transparent with black type. I would like the box to be white with black type. Is there any way to edit the script that will enable this? It would be great if there was an "object style" in addition to the "paragraph style" in the run script pop-up window. Anyone?

    Hi hylet,
    Here's how to change the LabelGraphics.jsx script itself to add an object style option:
    1. Look for the line:
    var myStyleNames = myGetParagraphStyleNames();
    And add this line before or after it:
    var myObjectStyleNames = app.documents.item(0).objectStyles.everyItem().name;
    2. Look for the lines:
    //Style to apply
    with(dialogRows.add()){
         with(dialogColumns.add()){
              staticTexts.add({staticLabel:"Label Style", minWidth:myLabelWidth});
         with(dialogColumns.add()){
              var myLabelStyleDropdown = dropdowns.add({stringList:myStyleNames, selectedIndex:0});
    And add the following lines after them:
    //Object style to apply to the text frame
    with(dialogRows.add()){
         with(dialogColumns.add()){
              staticTexts.add({staticLabel:"Label Object Style", minWidth:myLabelWidth});
         with(dialogColumns.add()){
              var myObjectStyleDropdown = dropdowns.add({stringList:myObjectStyleNames, selectedIndex:0});
    3. Look for the line:
    var myLabelStyle = myStyleNames[myLabelStyleDropdown.selectedIndex];
    And add this line before or after it:
    var myObjectStyleName = myObjectStyleNames[myObjectStyleDropdown.selectedIndex];
    4. Look for the line:
    myAddLabels(myLabelType, myLabelHeight, myLabelOffset, myLabelStyle);
    And change it to:
    myAddLabels(myLabelType, myLabelHeight, myLabelOffset, myLabelStyle, myObjectStyleName);
    5. Look for the line:
    function myAddLabels(myLabelType, myLabelHeight, myLabelOffset, myLabelStyleName){
    And change it to:
    function myAddLabels(myLabelType, myLabelHeight, myLabelOffset, myLabelStyleName, myObjectStyleName){
    6. Look for the line:
    myAddLabel(myDocument, myGraphics[myCounter], myLabelType, myLabelHeight, myLabelOffset, myLabelStyle);
    And change it to:
    myAddLabel(myDocument, myGraphics[myCounter], myLabelType, myLabelHeight, myLabelOffset, myLabelStyle, myObjectStyleName);
    7. Look for the line:
    function myAddLabel(myDocument, myGraphic, myLabelType, myLabelHeight, myLabelOffset, myLabelStyle){
    And change it to:
    function myAddLabel(myDocument, myGraphic, myLabelType, myLabelHeight, myLabelOffset, myLabelStyle, myObjectStyleName){
    8. Look for the line:
    var myTextFrame = myFrame.parent.textFrames.add(myLabelLayer, undefined, undefined,{geometricBounds:[myY1, myX1, myY2, myX2], contents:myLabel});
    And add the following line after it:
    myTextFrame.applyObjectStyle(app.documents.item(0).objectStyles.item(myObjectStyleName), true);
    9. (Optional) Look for the line:
    myTextFrame.textFramePreferences.firstBaselineOffset = FirstBaseline.leadingOffset;
    And delete it or put "//" in front of it--this will let the object style take care of setting the first baseline offset method.
    After you make these changes, the script adds the object style dropdown to the dialog:
    Thanks,
    Ole

  • How to change Labels of Fields in the search help shown as F0001 F0002 etc

    Dear All,
    For one of my fields of screen I have been calling a search help configured using F4IF_INT_TABLE_VALUE_REQUEST.
    In this function I am returning the field in dynfields. Let me know please how to change the Labels of Field Names being shown in the search help as F0001, F0002 etc....
    Regards,
    Alok.

    Hi Alok,
    You can change the Field Label by going to the Data Element and changing the Field Label .
    Hope this helps
    Regards
    Sunil

  • How to change Labels of Fields being shown in the search help as F0001 etc.

    Dear All,
    For one of my fields of screen I have been calling a search help configured using F4IF_INT_TABLE_VALUE_REQUEST.
    In this function I am returning the field in dynfields. Let me know please how to change the Labels of Field Names being shown in the search help as F0001, F0002 etc....
    Regards,
    Alok.

    Hi Alok,
    You can change the Field Label by going to the Data Element and changing the Field Label .
    Hope this helps
    Regards
    Sunil

  • How to change password in Discoverer Viewer web edition

    hi,
    Can anyone please advise how to change Discoverer viewer password. I found in Metalink that latest editions are capable of changing passwords, but found no document on how to implement and use it.
    Pls. help
    -SBan

    Hi Sban,
    Will this work for you?
    To change the password for a connection:
    1. Display the Discoverer Viewer connections page (for more information, see "How to display the Discoverer Viewer connections page" - http://docs.huihoo.com/oracle/docs/B14099_19/bi.1012/b13987/vstart.htm#CHDHCCED) .
    2. Select the Update icon next to the connection for which you want to change the password.
    3. Click Change Database Password.
    4. In the Password field, enter the current database password for the current username.
    5. In the New Password field, enter a new database password for the current username.
    6. In the Verify Password field, re-enter the new database password for the current username.
    7. Click Finish.
    The Connect to OracleBI Discoverer page is displayed. You can now use the connection to start Discoverer Viewer.
    Good Luck,
    Daan Bakboord

  • How to change the Discussion board view to facebook posting type view

    hi friends..
    i want to change the discussion board view to facebook posting type.Where multiple discussions and comments on single page as well as all the comments should be in a threaded view and also i want to find a new discussion
    link in same page.
    can any one help me...

    Hi,
    As I understand, you would like to improve discussion board to display all posts on a single page with comments.
    There is no OOB option to customize discussion board. However, there are workarounds:
    You could create a site with Blog site template, and it could meet your requirement. More information about Blog site:
    http://office.microsoft.com/en-in/sharepoint-foundation-help/create-a-blog-HA010378201.aspx
    You could use Note Board web part instead, and customize it to allow reply:
    http://social.technet.microsoft.com/Forums/en-US/f7e466ee-ab53-47c5-9dd9-232e295bca6f/sharepoint-2010-note-board-web-part?forum=sharepointgeneralprevious
    You could customize Discussion Board directly using Content Query Web Part and XSL:
    http://sharepointsolutions.com/sharepoint-help/blog/2013/04/custom-discussion-board-rollup-using-content-query-web-part-and-xsl/
    Regards,
    Rebecca Tu
    TechNet Community Support

  • How to validate enries in Maintenance Views with the help of Events?

    Hello,
    I have a Maint. View. I would like to apply a validation for a specific field of the table. And if there is an entry which is not proper, than I'd need an error message to be issue, and the fields should be open for correction.
    I know this should be managed by Events. I tried many of them, but there was allways some different kind of issuses. E.g. When I used Event 21, the problem was that:  table "total" was not updated with the values I entered, when the Event triggered. More over, when I ussed a simple error message, that appeared on the screen, but when I hit Enter, I got an infinite LOOP, cause Event 21 was again triggered.
    When I tried Event 01, the total table was already updated. But with the program went back to the sceen from where I called the maintenance of the table. And Issues the error message there. When I hit Enter it took me back to maintenance screen. But this is not very nice.
    A bunch of hints would make me very happy, or a good example, which is priceless!
    Thanks and regards,
    Gyula

    Hi priyaranjan,
    Check the data in debug mode whether the record_tab is getting filled or not. If it is not filled use FM 'F4UT_RESULTS_MAP' to fill the data.
    Refer the link F4UT_RESULTS_MAP Standard Search Help Exit for Filling Hit List - Function - ABAP - SAP to know how to use FM.
    Once You get result from FM in to record_tab then sort the table as per your requirement.
    Regards,
    Ravikiran.K

  • How to change label font

    i am in the final stages of making an iphone app in xcode. i am now working on changing the font of each of the labels in my app. i have gone to interface builder and selected each label. then, in the inspector, i changed the font to the one i wanted. however, the change doesn't show in either interface builder nor when i run it. the font i picked only shows when i double tap the label in interface builder and highlight all of the text.
    if anyone knows why this could be happening and how to fix it, i would be ever so greatful.
    thanks in advance!

    Try to change the label font style programmatically using the statement
    "myLabel.font = [UIFont fontWithName:@"Zapfino" size: 14.0];"
    may it works......

  • How to change the position of Views in IC webclient

    Dear all,
    Our requirement is to change the Views locations in IC Webclient Interface. like we want to see morefields view (BuAgmoreFieldViewset) in the place of Product Veiw in Identify accout work area.
    In the same way in Interaction record we want to replace follow-up activity view has to be replaced with Interaction record partners view.
    Kindly suggest me what sort of development is required for this requirement. How can we configure this in SAP?
    Your valuable suggestions will be highly appreciated.
    Best regards,
    R. Sravanthi
    Edited by: Sravanthi_Revella on Apr 19, 2009 2:46 PM
    Edited by: Sravanthi_Revella on Apr 19, 2009 2:47 PM

    There is no easy way or direct configuration to handle this . You need a complete knowledge of  all concepts in IC WebClient Cookbook , essentially  View , Viewset and how to make modification in standard viewset . Once that is done you will have to Handle the Navigation using the Navigation Link concept .   Apart from that you will need BSP/ Object Oriented ABAP to handle the Object Node Instantiation either in the Inbound Plug etc so that your View Context Node and Attributes are populated to be display .

Maybe you are looking for