SRM-HIDING SOME FIELDS

HAI ALL,
I AM USING BBP_CUF_BADI_2 for hiding fields but still its displaying pls give solutions:
following code i written as
IF wa_et_fields-fieldname = 'ZECO_REJ' or wa_et_fields-fieldname = 'ZTC_REJ'.
              IF is_header-process_type = 'Z3EB'.
            wa_et_fields-xdisplay = '  '.
            wa_et_fields-xinput = '  '.
         endif.
to hide the check box zeco_rej

Hi Laxmi,
To display or hide customisied fields in SRM we will be using method 'MODIFY_SCREEN' of  badi 'BBP_CUF_BADI_2'.
Refer to note 672960 - "User-defined fields 2" For more detailed instructions.
Also see the below link
Re: Assing the agent for 1st confirmation approval
Reward points for helpful answer.
Regards,
Andy
Message was edited by:
        Andy V

Similar Messages

  • Hiding some fields from ALV report

    Hi All,
    I want to know if there is way to hide certain fields in ALV for some users only and not for others?
    If I use the option NO_OUT = 'X'  it will not be displayed in the list but the user can see the in the Layout option fields but if use NO_OUT = 'X' and TECH = 'X' the field will not be in the list and in the layout also but other users will miss that field.
    If I create user specific variant, but once the user is in the report he can change the layout so certain fields cannot be hidden.
    So, is there any way to hide some fields for certain users and not for others without hard coding user ids in program and restricting the fields from display??
    Thanks in Advance.
    Sonali.

    Thank You Vijay for the reply.
    I knew that Authorization object was the final solution but before using it I wanted to find out if there was a way in the ALV report to restrict certain fields.
    Sonali.

  • Hiding some fields in default selection screen in hr abap

    Hi Experts,
      I am new to hr abap.I have created default selection screen by using LDB .in that i wants to display only the personnel number field.
    could any help me how to hide further selections,sort order and search helps at top of screen.
    thanks in advace,
    mohan

    use
    at slection-screen output.
    loop at screen.
    if screen-name = 'PNPBUKRS'. (example)
    screen-active = '0'.
    endif.
    modify screen.
    endloop.
    ==========================
    u can do it as group wise also.
    loop at screen.
    if screen-group1 = 'group name'.  (could be group1,2,3,4)
    screen-active = '0'.
    endif.
    modify screen.
    endloop.
    ====================
    Hi,
    Can u tell me which LDB and report category u are using so that i will send u the code as per the req.
    If the above code suits to ur req. pls reward the points.
    Regards
    eswar

  • Hiding some fields in the Business Group Info

    Hi All
    I want to hide the Minimum Working Age and Maximum Working Age from the Business Group Info while defining a new business group.
    I tried form personalizations but not able to find the text item related to this neither I am able to find any attributes related to these items.
    I tried to check the attributes of the DFF Additional Organization Information without any success.
    What are fields assoicated with these items and how can i hide these items?
    Thanks in advance for any help.
    Regards
    Rahman

    You are not supposed to unfreeze and modify any of the segments here. You just need to get the column names where minimum and maximum working hours are stored. Get the column names from here and then go to the Organization screen. Here create a personalization and user these column names to hide the data by setting up their property 'CONCEAL_DATA' to be true.

  • Hiding some fields in default selection screen in hr abap created by pernr

    Hi experts,
    I have created default selection screen,in that in the Period option I wants display only 'Today'.
    And in the selection criteria i wants to display personnel number,companycode,personnelsubarea,employee status and instead of payroll area i wants to display 'Org unit'.please tell me step by step procedure,that could be greate helpfull.
    Thanks in advance,
    mohan

    hi mohan,
    try this
       **Local constants
       CONSTANTS:
              c_0                   VALUE  '0'  ,
              c_089     TYPE char3  VALUE  '089',
              c_091     TYPE char3  VALUE  '091',
              c_095     TYPE char3  VALUE  '095',
              c_097     TYPE char3  VALUE  '097'.
                     At Selection Screen
    at selection-screen output.
    LOOP AT screen.
          IF
               screen-group4 = c_089 OR
               screen-group4 = c_091 OR
               screen-group4 = c_095 OR
               screen-group4 = c_097  .
          screen-active = c_0.
          MODIFY SCREEN.
         ENDIF.
      ENDLOOP.

  • Hiding the some fields in print PDF adobe form

    Hi all
    Im working on travel expense form in webdynpro ABAP.I have a requirement of hiding some field in the  adobe form.Can anyone tell me how to proceed ?
    Thanks and Regards
    Reeha

    Hi Reeha,
    In case you need to use any script you may prefer formCalc script, which is very easy to use. You can use any script out of the two as per your understanding and comfort level.
    If you require more technical information about FormCalc, refer to the Adobe XML Forms Architecture (XFA) Specification, version 2.4, available from:
    [http://partners.adobe.com/public/developer/xml/index_arch.html.]
    and
    [http://help.adobe.com/en_US/livecycle/es/FormCalc.pdf]
    Hope this helps you
    Regards,
    Gaurav Bhardwaj

  • Preassign some fields in case of limt items.

    Hi All ,
    Requirement :
    If it is a case of Limit item , I have to Preassign some fields in SRM .
    Subsequent documents to "Confirmation and Invoice"   AND
    Assignment to " Known" .
    Can somebdy guide me on this ?
    Regards ,
    Ambar Patil.

    Thanks for the reply Virendra .
    You said : Class and Method of the field.
    Does each field on the SRM screen have a Class and Method ? I have just started with SRM ... so asking you these bsic questions .
    Can you give me some guidance / reference where I can start exploring on this front ?
    Thanks in advance ,
    Ambar

  • When i hide some fields from the Editform using javascript, what will happen to the fields that hve been hidden

    I am working on an EnterpriseWiki site collection, and when users edit the page properties as follow:-
    then will get all the fields inside the EnterpriseWiki content type as follow:-
    now i want to hide all the fields except the ; Title & Name, so i edit the EditForm and i add the following script:-
    <script>
    $('#formTbl tr').filter(function ()
    return !$(".ms-standardheader", this).text().match(/Name|Title/i);
    }).remove();
    </script>
    so currently when users edit the wiki page properties they can only edit the Name & Title, because the script hide the other fields.
    My question is what will happen to the other values such as the page content, assign to , etc that have been hidden.. I test this and seems that when editing the name and title the other values will not get effected which is what i need, but not sure how
    did SharePoint handle this, i was afraid that hiding the other columns will set their values as null or empty if the user save the editform with only the title and name inside it ? can anyone adivce on this ?

    Hi John,
    From your description, my understanding is that you are worried about the values of some fields
     will been saved as empty if you hide them in EditForm.
    If you hide some fields in EditForm, it means that you could not edit them. These fields’ values will not be changed after editing Title field or Name field. When you click Save button, they will be still the values before changing the Title field or Name
    field.
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]
    i found this very critical issue with hiding the fields from the edit form, now i wrote the following script inside the edit form , to hide all the fields except the Name
    <script>
    $(document).ready(function(){
    $('#formTbl tr').filter(function () {
    return !$(".ms-standardheader", this).text().match(/Name/i); }).hide();
    $('#ctl00_ctl40_g_6c7d849e_da6b_4138_be9f_b99bde542065_ctl00_ctl02_ctl00_ctl04_c‌ ​tl00_WebPartMaintenancePageLink').hide(); });
    </script>"
    . and now if I submit the editform (which only contain the Name) all the html tables inside the wiki page content will be removed.

  • Multiprovider  is not capturing some fields data

    Hi Friends,
                   I got a proble when iam working on multiprovider,where i have taken two cubes into that multiprovider,now the problem is when i execute a report on muliprovider some fields are not populating with data.
    {{cube are :billing cube(data sources:2lis_11_vaitm&2lis_13_vditm)
                  account receivable item data(0fi_ar_4)}}
                           As this is RRI sender query having both cubes information,when i execute report when ever report captures first cube report the second cube data is not capturing vice versa.
    Thanks and Regards
    Gunasekhar

    Could be a problem on identification (setting on multiprovider).
    Try to execute on transaction RSRT your query
    execute + debug
    on debug option set "Multiprovider explain"
    and report the log in this post.

  • Conditionally Hiding Summary Fields

    <p>Hello.</p><p>I am trying to recreate a report originally written in Foxfire to Crystal Reports. The data is coming from two linked tables, a "header" table and a "details" table. For each account from the "header" table, there may be one or more "detail" lines. I want to include a summary subtotal for each of three detail fields which represent monetary values, but only in those cases where an account has more than one detail line. The data is grouped by account number.</p><p>Account number and name are displayed in a group header, and only the corresponding detail data is in the Detail section of the report.</p><p>It seems like I saw this explained somewhere, but I cannot remember where at the moment. Any assistance is appreciated.</p>

    <p>So you want to keep the Group Header (GH) and the Details (D), but suppress the Group Footer (GF) if the count of details records is 1...</p><p>Open the section expert (right click on the grey sections to the left of the canvas) - make sure you have the GF highlighted.</p><p>There is an option named "Suppress" - to the right of that is a formula box [X+2].  Click on that and use a conditional formula for the suppresion.</p><p>Formula:</p><p>if Count({Customer.Customer ID}, {Customer.Customer Name}) = 1 </p><p>then false else true </p><p> </p><p>Note: you will need to replace {Customer.Customer ID} for some field in your details section and {Customer.Customer Name} in the formula with appropriate fields from your report. </p>

  • Hiding Screen fields in a Report selection screen

    Hi Experts,
    I have a requirement to hide/disable  screen fields in a report selection screen when the user clicks on some radio buttons .
    Here is the scenario,
    1) There are 4 radio buttons four radiobuttons in one group on the selection screen:--  
    Block no:1
    PARAMETER: r_not  TYPE c RADIOBUTTON GROUP a1 DEFAULT 'X'.
    PARAMETER: r_prgs TYPE c RADIOBUTTON GROUP a1.
    PARAMETER: r_remv TYPE c RADIOBUTTON GROUP a1.
    PARAMETER: r_noresp TYPE c RADIOBUTTON GROUP a1.
    2) Based on the user clicking/selecting the radio buttons no.2,3 nad 4 i need to hide some fields in the other selection block
    in the selection screen.The parameters are as follows:
    Block no:2( These fields need to be hidden/disabled)
    PARAMETER: r_occ(3) TYPE c OBLIGATORY DEFAULT '1'.
    PARAMETER: r_and TYPE c RADIOBUTTON GROUP g1.
    PARAMETER: r_or  TYPE c RADIOBUTTON GROUP g1.
    PARAMETER: r_days(3) TYPE c OBLIGATORY DEFAULT '1'.
    Thanks

    Contd.....
    AT SELECTION-SCREEN.
      CASE SSCRFIELDS-UCOMM.   
          "When Customer button is clicked set flag 1
        WHEN 'FC01'.
          L_FLAG = '1'.
          "When Sales Order button is clicked set flag 2
        WHEN 'FC02'. "Sales order
          L_FLAG = '2'.
          "When Execute button is clicked set flag 4
        WHEN OTHERS.
          L_FLAG = '4'.
      ENDCASE.
    AT SELECTION-SCREEN OUTPUT.
    CASE L_FLAG.
        WHEN '1'.  "When Customer button is clicked
          LOOP AT SCREEN.
            "Set the Production and Customer Block as inactive
            IF  SCREEN-GROUP1 = 'BL1' OR SCREEN-GROUP1 = 'BL3'.
              SCREEN-ACTIVE = '0'.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        WHEN '2'. "When Sales Order button is clicked
          LOOP AT SCREEN.
            "Set the Production and Customer Block as inactive
            IF  SCREEN-GROUP1 = 'BL1' OR SCREEN-GROUP1 = 'BL2'.
              SCREEN-ACTIVE = '0'.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        WHEN '3'.   "When Refresh button is clicked
          LOOP AT SCREEN.
            "Set the all Blocks as active
           IF  SCREEN-GROUP1 = 'BL2' OR SCREEN-GROUP1 = 'BL3' OR SCREEN-GROUP1 = 'BL1'.
              SCREEN-ACTIVE = '1'.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        WHEN OTHERS."When Execute button is clicked
          "Set the Sales order and Customer Block as inactive
          LOOP AT SCREEN.
            IF  SCREEN-GROUP1 = 'BL2' OR SCREEN-GROUP1 = 'BL3'.
              SCREEN-ACTIVE = '0'.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
      ENDCASE.
    ENDFORM.      

  • Background job on change of some field!!

    HI
    i have to trigger a background job on change of some field value (status field chages it's values from w to U).
    so how to go about the same..
    how to call a background job once some fields changes!!
    regards
    Gunjan

    1. You can use JOB FM's to invoke the job.
    2. You can call the FM ( Background execution program ) in background.
    CALL FUNTION .... IN BACKGROUND.
    Regds
    Manohar

  • How can i transfer some fields from one table to another using a trigger

    hi,
    i have two tables;sales and accounts.i want in my accounts form to enter salesid which is then validated and if it exists in the sales table, some fields are copied to the accounts table automatically.how do i go about this.thanx

    hi,
    the code u gave me is not running.let me explain in
    detail.i have two tables;sales and accounts in my
    database (oracle 9i).each have a corresponding form
    in the developer window.these tables are linked using
    saleid.this id is entered and saved in the
    database.when the person is paying in the cash
    office,the saleid on an invoice form is entered on
    the accounts form.it is supposed to search the sales
    table and if the ids match,some records are extracted
    from the sales table to the accounts form instead of
    the accounts clerk entering the details all over
    again.these details will be used to generate a
    receipt an then the record on the accounts form is
    saved to the database.the contents of the two tables
    are:
    sales(saleid(pk),startno,endno,quantity,amount,saledat
    e)
    accounts(receiptno(pk),saleid,startno,endno,quantity,a
    mount).
    please advice and thanks very muchWhat does it mean "not running" ?
    Sure, it is running.
    Did you tested my example ?
    And it does exactly what you need.
    You didn't provided table structures and insert statements,
    that's why i showed you the method on 2 emp- tables.
    But it is exactly, what do you need.
    Change my emp_1 on your sales,
    and my emp_2 on your accounts,
    and compare the results.
    If you cannot directly copy and paste
    and say to your teacher / chief "My homework / task is ready"
    it doesn't mean, that the solution didn't provided ...

  • Make the output of the BI report rtf file some fields non editable

    Hello All,
    I want to make some fields in the output of the BI report as editable and some non editable. Any output format is fine (PDF, RTF or HTML) Please let me know if anyone knows how to do it.
    Thanks in advance..
    Anu

    You can add RTF to active allowed output type list (provided that your reporting system supports it) by going to CustomerReportExtensions.xml file and adding the following node right after ParameterTypes node:
    <ActiveReportOutputTypes configChildKey="key">
    <ActiveReportOutputType key="RTF" value="RTF" extension=".rtf"/>
    </ActiveReportOutputTypes>

  • Help: what meaning of some fields in INSTALL [for install] fields ?

    Hi all,
    I don't understand some fields in Data field of INSTALL [for install] command.
    There is section *"A.1.1.4.2.1 -     Toolkit Applet Specific Parameters "* of specification +3GPP TS 23.048 V5.9.0+
    *Presence         Length          Name*
    Mandatory         1                  Length of Access Domain field
    Mandatory         1-p          Access Domain (see A.1.1.4.2.3)
    Mandatory         1                  Priority level of the Toolkit applet instance (see A.1.1.4.2.4)
    Mandatory         1                  Maximum number of timers allowed for this applet instance
    Mandatory         1                  Maximum text length for a menu entry
    Mandatory         1                  Maximum number of menu entries allowed for this applet instance
    Conditional                /     Position of the first menu entry ('00' means last position)
    Conditional               |          Identifier of the first menu entry ('00' means don't care)
    Conditional
                               |     ….
    Conditional               |          Position of the last menu entry ('00' means last position)
    Conditional                \     Identifier of the last menu entry ('00' means don't care)
    Optional         1                  Maximum number of channels for this applet instance
    Optional         1                  Length of Minimum Security Level field
    Conditional     0-q          Minimum Security Level (MSL) (see A.1.1.4.2.5)and more description like this:
    The position of the new menu entries is an absolute position among the existing ones.
    A part of the item identifier shall be under the control of the card system and the other
    part under the control of the card issuer. Item identifiers are split in two ranges:
    -     [1,127] under control of the card issuer;
    -     [128,255] under the control of the  toolkit framework.
    If the requested item identifier is already allocated, or in the range [128,255], then the
    card shall reject the install command. If the requested item identifier is '00', the card shall
    take the first free value in the range [128,255].These pair fields *"Position of the first menu entry ('00' means last position)"* and
    *"Identifier of the first menu entry ('00' means don't care)"*.
    What purpose do these fields describe? Let give some example for me!
    Thanks,
    HoaND
    Edited by: hoaibaotre on Oct 27, 2011 10:21 AM

    You give us no clue about what you used to record/playback scripts

Maybe you are looking for

  • Mobile Sales - Error while Saving Sales Order

    Hi, When I try to create and save a sales order in the Mobile Sales, the error message UI_CONT_STATUSBAR_ICON_TT is displayed, blocking the saving process and the new order is not saved. I tried to debug the SAP Mobile Application Studio(Visual Basic

  • Photoshop CS5.1 Crashes Upon Opening: "Photoshop has encountered a problem with the display driver-"

    Every time I try to open photoshop I get a window that pops up and says: "Photoshop has encountered a problem with the display driver, and has temporarily disabled GPU enhancements.  Check the video card manufacturer's website for the latest software

  • Motion wont open some projects

    I am wondering if anyone can help me out with this problem I'm having. I have been working on a project in motion now for the past two weeks. I am putting together two commercials. One 1 minute and one 15 second. The last couple of days the 1 minute

  • SSO with different ECC and UME user

    Hi everyone! I'm in MII 12.1.10 and trying to configure MII for SSO logon on ECC through JCO connector. My problem is i have different user in ECC and UME. SSO was configured successfully when user are equals ECC have a user mapping for users from AD

  • Will the TOC structure get affected if output file structure is changed?

    I have used FlashHelp to generate output for a project hence the output folder has a structure, now while deploying on the server if I make changes in the output file/folder structure will this affect the "table of contents" or any other feature. Als