Changes in ´Additional tab B´ must only visible to one client

Hello SAP Programmers,
When i create addtional custom fields on ´Additional tab B´, these custom fields must only visible to one client(i am logged in as client 400).
Is there any way please suggest me.
Thanks & Regards,
NarsiReddy Cheruku

Hi Narsireddy,
1. Specify
In PBO you make the below condition. Find the screen fieldsof the two fields you want to hide , otherwise make a fields into a group and try to use the below code in PBO.
  IF sy-mandt <> '400'.
    LOOP AT SCREEN.
      IF screen-name = 'X '.  
        screen-invisible = 1.
        screen-active     = 0.
        MODIFY SCREEN.
      ENDIF.
      IF screen-name = 'Y '.  
        screen-invisible = 1.
        screen-active     = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
  ENDIF.
Thanks & Regards,
S.Rajendranath Raparthi

Similar Messages

  • HT5624 Why do I have to change my password when I've only just done one to set up my Apple ipad?

    I've just set up my ipad account and am now being asked to change my password - why?  Seems nuts and no explanation given

    This is not normal. There may be an issue with your Account.
    Suggest you Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Business Rules Only Visible in One of the Two Planning Webs

    Hi all.
    I have this issue with a classic Planning application deployed to run with the calculation module to Business Rules in v11.1.2.1. I have also load balanced EAS/APS and Planning servers but when I log into Hyperion Planning in one of the server and I check the available BR I can see them but if I go into the other Planning web I cannot. This is logging straight into the Planning Webs using the different servers names. Inside EAS I have done the necessary location, provisioning and cluster to be able to appear in both Planning webs but still not working.
    Does anyone knows how to fix this problem?
    Many thanks
    J

    The solution was to create a BR cluster within EAS and add both server locations into it
    I hope it helps
    Regards,
    John

  • Additional tab b

    Hi SDNs
    Here my client faceing one issue related to additional tab b,the issue is when my client created repair order with service notification the additional data tab B comes without fields means the tab showing empty.
    When my client creates repiar order with out reference srvice notification the additional data tab B comes with all fields
    So please suggest . where is the problem

    Not required any answer

  • How can I view my messages in mail, I only can see incoming emails, but the the screen where the message must be visible is empty. Also attachements are nog visible. These messages are visible on my Iphone. thanks

    How can I view my messages in mail, I only can see incoming emails, but the the screen where the message must be visible is empty. Also attachements are nog visible. These messages are visible on my Iphone. thanks

    And attached is a screen grab showing selected e-mails in the Inbox...the white space below are e-mails too!

  • Firefox 4 is stuck in classic mode. I went to the Add-on's and tried to change it, its the same no matter what I do, the only thing that changes is the tabs. Help.

    I downloaded Firefox 4 because it looked great at school, it doesn't look the same I believe its stuck in classic mode. I went to the Add-on's and tried to change it, its the same no matter what I do, the only thing that changes is the tabs. Help.

    To get the new interface you need to hide the menu bar. To do that in the View menu select Toolbars, then click on the "Menu Bar" entry. If you had applied customizations to the menu bar whilst using Firefox 3.6, the new version would by default use the old interface.
    If you need access to the menus you can press either Alt or F10 to temporarily display them.

  • How to change the width and height of the visible part of the of the report

    I have define a report with paper size 'Letter', orientation 'landscape' and 30 columns. Dynamically I am changing width of columns and suppressing many columns of the report.
    Mostly using first 16-20 columns and others get suppressed.
    Now problem is that when navigating the report thru crystal viewer, a huge blank spaces getting display on right of the report. When we take jump to some part of report thru navigation tree, the whole report gets shifted to left and only blank part is visible and it is required to scroll left.
    Even printing is not working correctly.
    Is there any way to change the width and height of the visible part of the report in the viewer thru .net classes? Setting the width and height of the report in Load event handler doesn't help.  
    Example: CrystalReportViewer1.Width = 200; - is not helping.
    Is there any other solution?
    Please let me know.
    Thanks
    Mahesh Patel

    Hi Yogesh,
    Your suggestion 'reportDocument.PrintOptions.PaperSize=PaperSize.PaperLedger;' along with 'PaperOrientation' setting as follow works fine. I tried to switch between Landscape and Portrait depending on report width.
    reportDocument.PrintOptions.PaperOrientation = PaperOrientation.Landscape;
    But problem with crystal viewer remain as it is.
    While navigating report thru crystal viewer, when we take jump to some part of report thru navigation tree, the whole report gets shifted to left and it is required to scroll left.
    Thanks for your very good suggestion.
    Mahesh Patel

  • What are the steps needed to make the field in the DFF Additional Information for Agent only take numbers, commas & hyphens?

    Hello All,
    What are the steps needed to make the field in the DFF Additional Information for Agent only take numbers, commas & hyphens?
    Navigation
    Bob Sales manager<Ebiz form<service request tab<SR type<DFF<additional information for agents <cheque number
    The field Cheque number Character allowed (, -) in the DFF Additional Information for Agent should only take numbers
    Thanks & Regards
    Ayesha

    Thanks Sridar
    If we use Number we cannot separate the cheque numbers with , or -
    We need to enter numbers along with comma and '_' in cheque number field.
    Thanks & Regards
    Ayesha

  • Additional tab at header level  in ME21N through BADI ME_GUI_PO_CUST

    Hi,
    I want to have additional tab at header level  in ME21n through BADI ME_GUI_PO_CUST.  But after all effort I am not getting display of  tab.  Let me explain what i did till now
    1. Appended  table EKKO with field
    2. Create one function Group -under that
    A. Created one Include u2013Paste the code given
    DATA: call_subscreen   TYPE sy-dynnr,
          call_prog        TYPE sy-repid,
          call_view        TYPE REF TO cl_screen_view_mm,
          call_view_stack  TYPE REF TO cl_screen_view_mm OCCURS 0,
          global_framework TYPE REF TO cl_framework_mm,
          global_help_view TYPE REF TO cl_screen_view_mm,
          global_help_prog TYPE sy-repid.
    FORM SET_SUBSCREEN_AND_PROG *
    --> DYNNR *
    --> PROG *
    --> VIEW *
    --> TO *
    --> CL_SCREEN_VIEW_MM *
    FORM set_subscreen_and_prog USING dynnr TYPE sy-dynnr
    prog TYPE sy-repid
    view TYPE REF TO cl_screen_view_mm.
    call_subscreen = dynnr.
    call_prog = prog.
    call_view = view.
    ENDFORM. "set_subscreen_and_prog
    B. Created one screen  (9000)
    3. Implemented BADI ME_GUI_PO_CUST and paste the code.
    data: ls_subscribe like line of re_subscribers.
    CHECK im_application = 'PO'.
    CHECK im_element = 'HEADER'.
    CLEAR re_subscribers[].
    ls_subscribe-name = ' ZMMSCR1'.
    ls_subscribe-dynpro = '9000'.
    ls_subscribe-program = ' ZMMSCR1'.
    ls_subscribe-struct_name = 'EKKO'.
    ls_subscribe-label = text-001..
    ls_subscribe-position = 15.
    ls_subscribe-height = 7.
    append ls_subscribe to re_subscribers.
    Please help me what s going wrong .and what else I will do to get success.
    Edited by: Vishal A Vijaywargia on Jul 29, 2009 2:24 AM

    Hi Prosengit,
    I am not aure about u r BADI,
    BUt last week i have custom tab in the PO header data using this enahncement 'MM06E005'.
    IN thi senhancement u have thrre screen exits.In this enhancement
    SAPMM06E        0111 CUSTSCR1 SAPLXM06        0111 Subscreen: PO item
    u can add subscreen and u can add u r own fields here .
    and u can write u r code in 'EXIT_SAPMM06E_006'.
    if u want to change the title of the program.
    Go to program SAPLXM06 then go to text element give text symbol no as '111' and u can change the title of u r tab.
    I hope this solves u r problem.

  • Adding field in Additional Tab page in CRMD_order

    hi all,
            i want to add a field in the additional tab page in crmd_order Tcode,
    i did it by modifing the screen the strucutures are filled ex CRMT_SALES_BADI,
    CRMT_SALES_COM
    in the CRMC_MAP Tcode i have seen the field is added .
    wat are the further steps do i need to do to get saved and poped in the field value when reterive.
    regards

    As standard the field is set to 1 decimal place.
    You cannot change this value without modifying your system (not recommended)
    I think you can enter more decimal places in the confirmation documents e.g. IW41
    PeteA

  • Modify Sales order Item additional tab B

    I need to modify Sales order item additional tab B ...by removing the exisitng fields and should add some new fields ....which is ok. But does it have any impact becoz the same screen fields coulbe used in any of the other transaction .......i  just wanted to know if we remove the fields from sale orde item additional tab B and some new details will have some impact

    Hi,
    Before making any modifications check "Where-used". If it is in some other program other than the VA01/02/03, then better consult your lead before modifying.
    If you do not find, go ahead and make the changes confidently.
    Regards,
    Subramanian

  • Show additional tab in Cprojects

    Hi,
        I have created a custom Webdypro ABAP component to add a new tab in cProject Component(DPR_MAINFRAME).
        In my webdynpro component i have implemented the standard interface DPR_CUST_EXT_INTF.
        In view i have created a tab and inside the tab i have created some 5 input field and created a ztable to store the values  
        entered in the input fields on click of 'Save' button in the view.
        In SPRO I have made the below mentioned configuration to inculde my tab inside the View of DRP_MAINFRAME.
        Collobaration Projects->Global Enhancements to Projects Elements->Show Additional Tab page in cPRojects.
        Clicked on  'NewEntry' button to create a new entery
        Project Element Type : Project Definition
        Project Type:  blank
        Tab Active: Checked
        Tab Page Title: Custom Tab
        Webdynpro Component: ztabs
    After having done this when i execute the DPR_MAINFRAME Application i am able to view my tab inside the view of the standard application.
    When i enter details inside the input fields and when i click on Save the data is also getting saved in my ztable.
    When we execute the DRP_MAINFRAME Component we can find a Save button provided in the Standard component.
    My requirement is On click of the Standard SAve button the data entered in the input field must get inserted in the ztable.
    When i implemented the interface DPR_CUST_EXT_INTF , method ON_AFTER_SAVE got created in my component controller .
    I even tried placing my code in the method but data didn't get updated in the ztable.
    Regards,
    Bala Baskaran.S

    Hi,
    Can you guide me to add a new tab in the C projects, I tried creating a new wda component with DPR_CUST_EXT_INTF as implemented interface.
    The view in this component has a tabstrip having a single tab in it, Then i went to spro as mentioned:Collaboration Projects->Global Enhancements to Project Elements->Show Additional Tab Page in cProjects.
    I added a new entry here
    Project Elements: Project Definition
    Proj Type : Blank
    Tab Page Active: checked
    Tab Page title: Additional Tab
    Web Dynpro Component: zcomponent
    Still The tab is not displayed, Can you let me know if I am missing something?
    Regards,
    Shitanshu Sahai

  • Mail notification at value placed at approver field in Additional tab

    Hi SAP Gurus,
    in the business  based on the document (DIR ) we are creating there will be specific person responsible for approving the document.
    so we have created a characteristic values in additional tab field, having the list of names / values of approvers,
    so while creating the DIR the user will select the relevant approver who is suppose to approve the document, here the requirement is based on the characteristic field value in DIR,
    that particular person should get a Mail asking him to  approve the document.
    how to go about this, can standard work flow solve this requirement, or should we have to go for development in Workflow to meet this requirement, will the value at additional tab act as a triggering point for Mail generation to specific user? i have not worked with Work flow.
    please explain in detail the steps to meet this requirement.
    Points awaiting,
    Thanks and regards,
    Priya S

    Hi
    thanks for your inputs,
    The complete requirement is the client needs  to check the values in Characteristics  (the users) with there credentials, just like the funtionality provided in field USER in document Data Tab,
    and he will place the relevant Users (one or many) and the mail has to be triggred to each of the reviewers and the document approvers based on the value placed.
    (here not placing any values in Characteristics and only ging by Work FLow, it  will not give any record in the DIR who are the Approvers or reviewers of that particular Document, so it is required for reporting purpose also)
    so it is two requirement,
    1) search criteria in the values of Characteristics just like that is available in the field USER in document Data Tab (just exactly the same no compromise)
    2) Mails to the users placed in the Characteristics automatically to review, ( which could other wise be done through Document distribution)
    there is still more to share with you all in the class and classification requirements.
    need your help
    Thanks and regards
    Priya S

  • My iWeb webpage links are only visible on Mac OS

    So I made a pretty elaborate webpage using iWeb 09.
    I had images in the background with text over the top.
    The text I chose was not friendly across the spectrum so I learned that I could turn them into picture files by adjusting the shadow.
    Now I have absolutely no "real" text--All has been converted to picture files.
    Then I purchased Motion 5.  My little brain exploded when I schemed up the idea of exporting Motion projects as h.264 files and replacing the static images in iWeb with these awesome moving and repeating 5 second snipits.  Once importing them I just right-clicked and selected "send to back".  Then I could have all links and other stuff sitting on top of these moving quicktime movies.
    I put a h.264 file (sometimes multiple ones) on EVERY single page; there are over 30 or so.  Every time I went and checked online using Safari everything worked flawlessly.  I was super stoked.  Minor issues when using Firefox or Chrome but whatever.
    Then, finally, I went and checked this page on a PC for the first time since putting h.264 Quicktime files as the background on EVERY single one of my iWeb pages.
    The only thing you can see using ANY browser is the quicktime movie.  All text/links are buried under the quicktime file (i assume) and therefore you cannot navigate anywhere.
    I'm pretty sure there is no way around this but I thought I'd ask anyway.
    I think I have manipulated iWeb with these quicktime files in a way that it shouldn't have been done.  I just figured out it was a cool way to put motion in the background. I kinda feel like I'm just screwed when trying to get this page that I have spent SOOOOOO many hours tweaking up on a machine running windows.
    Any help?

    You could have discovered solutions in this topic :
    How to use a link in front of a QT movie?
    In addition to these solutions, here's another one I just made :
    http://www.wyodor.net/_Demo/Aptana/HTMLEgg.html
    This is the page with the movie :
    http://www.wyodor.net/_Demo/html5/HTMLEggLinkQTL.html
    When you display the movie in iWeb in a HTML Snippet, the link shows. But when it is displayed in Safari, the link is not visible. Only the text track area. But you can still click it. It displays correctly in all other browsers, even in MSIE 8 and Win XP.
    Perhaps I overlooked something when I created it or it is a Safari issue.
    I use QT Pro and TextEdit.
    The information how to do it, is freely available on the interwebs. I knew how to do it in the past, but to refresh my memory, I searched for it again. And it's still there.
    BTW, Applications do not make webpages, users do.
    And here's the link to the movie :
    HTMLEggqtl.mov
    Open it in QT Pro to see how it's done.

  • Safari closes down everytime i try to open additional tab.

    Everytime i try to open a additional tab in safari, the app shuts down and im back at my homescreen. I can only have one tab open. Ive tried to restart, and uppdate the ipad. Ive even reset to its factory settings. But the problem remains. Any solutions?

    If you restored as new without the backup, that should not still be happening. If you restored your backup, that could be the problem. Try this. Clear Safari, close it and reboot.
    Go to Settings>Safari>Clear Cookies and Data.
    Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the Safari app then swipe "up" on the app preview thumbnail to close it.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

Maybe you are looking for