Deactivate Delete icon  - MFBF T.code

Dear Friends,
   we are using MFBF T.code  for backflushing.
in this transaction it will pick the child items by exploding the BOM.
but my problem in this transaction, their is option called delete icon , using this the users can delete the child items and making availablity for parent item.
please help how to block this action ? because of this we are facing problem in financial and inventory diffrence.
if their any options to deactivate that delete icon?
Thanks & Regards
Suresh Babu.S
WIN - IS.

Dear Suresh babu,
This you can control using Authorization control of certain objects.
The same can be addressed to your project BASIS consultant,so that he can do this.
Or else,dont allow them to use the button Post with correction,generally the
authority will be given to core users or only very few members.
Check & revert.
Regards
Mangal

Similar Messages

  • Need to disable delete icon in over view screen (table maintainance)

    In the overview screen (transaction se 54 -> generated object -> overview screen) in table maintainance i need to disable the delete icon.
    Anyone can please help me in it.

    Hi,
    check the program name for the transaction and create a screen exit for the same.
    Also u can go for copying the code in customer namespace and then add ur own functionality to dactivate or remove the delete function.
    Pls reward points for the answer.
    Regards,
    Ameet

  • Disable delete icon in the Materials requirement form

    hi
    can anyone tell me how to disable the delete icon in the materials requirements form, using form personalization...
    reply
    thanks & regards
    anandc

    Hi Kuldip,
    if you're trying to hide the Save Button in the Adobe toolbar, then you can place the following code in the wdDoModifyView method to hide the whole toolbar.
    // Get interactibe form handler.
            IWDPDFDocumentInteractiveFormHandler iFormHandler = WDPDFDocumentFactory.getDocumentHandler(wdThis.wdGetAPI(), "<name of your form>");
    //     Get appearance setter. 
          IWDPDFDocumentAppearance appearance = iFormHandler.getDocumentContext().getAppearance();
         // Hide menu bar.
         appearance.hideMenuBar(true); 
         // Hide tool bars.
         appearance.hideToolBars(true);
    hope this helps,
    harman

  • Disable delete icon in attachment table row in OAF

    Hi,
    I want to disable the Delete Icon in the attachments table in OAF Standard page. If the value in Title of that attachment row is "Requisition" the Delete Icon of that row should be disabled.
    It the Title is anything else then the Delete Icon should be enabled. Please let me know how to achieve this.
    Basically, if the Title is "Requisition", users should not be able to delete that attachment.
    Thanks,
    Srikanth

    Hi,
    check the program name for the transaction and create a screen exit for the same.
    Also u can go for copying the code in customer namespace and then add ur own functionality to dactivate or remove the delete function.
    Pls reward points for the answer.
    Regards,
    Ameet

  • Delete the rows button code nto working.

    Hi,
    I developed one advanced table in one custom page and i added delete icon to that one. If i click on delete, records are deleting from application but not deleting from Database table.. I used following code for deleting records..Pls suggest.
    Controller
    boolean isAuthorisedDelete = pageContext.getParameter
    ("DeleteAuthorisedToYes") != null ||
    pageContext.getParameter("DeleteAuthorisedToNo") != null;
    if (pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM)
    .equals("deleteauthorisedrow"))
    System.out.println("In XXIosCO.processFormRequest(), "+
    "deleteauthorisedrow event fired");
    deleteauthorisedrow(pageContext,am);
    if (pageContext.getParameter("DeleteAuthorisedToYes") != null) {
    String rowRef = pageContext.getParameter("rowRef");
    String rowRef=pageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
    System.out.println("In XXWorkOrderAMImpl.delete1"+
    ".rowRef:"+rowRef);
    am.invokeMethod("deleteauthorisedrow",
    new Serializable[] { rowRef});
    private void deleteauthorisedrow(OAPageContext pageContext,
    OAApplicationModule am) {
    String rowRef = pageContext.getParameter(EVENT_SOURCE_ROW_REFERENCE);
    System.out.println("In XXWorkOrderAMImpl.delete2"+
    ".rowRef:"+rowRef);
    String warningMessage = "";
    Object addNewRecord = am.invokeMethod
    ("getAuthorisedRecordStatusByRowRef", new Serializable[] { rowRef });
    if (addNewRecord != null && addNewRecord.toString().equals("Y")) {
    warningMessage = "Do you want to clear the record?";
    } else {
    warningMessage = "Do you want to delete the record?";
    OAException message =
    new OAException(warningMessage, OAException.WARNING);
    OADialogPage dialog =
    new OADialogPage(OAException.WARNING, message, null, "", "");
    dialog.setOkButtonItemName("DeleteAuthorisedToYes");
    dialog.setNoButtonItemName("DeleteAuthorisedToNo");
    dialog.setOkButtonToPost(true);
    dialog.setNoButtonToPost(true);
    dialog.setPostToCallingPage(true);
    dialog.setOkButtonLabel("Yes");
    dialog.setNoButtonLabel("No");
    Hashtable deleteParam = new Hashtable(1);
    deleteParam.put("rowRef", rowRef);
    deleteParam.put("WipEntityId", pageContext.getParameter("WipEntityId"));
    dialog.setFormParameters(deleteParam);
    pageContext.redirectToDialogPage(dialog);
    AM
    public void deleteauthorisedrow(String rowRef)
    XXIosAuthorisedVORowImpl rowToDelete =
    (XXIosAuthorisedVORowImpl)findRowByRef(rowRef);
    if(rowToDelete != null)
    System.out.println("In XXWorkOrderAMImpl.deleteauthorisedrow()"+
    ".rowRef:"+rowRef);
    boolean isAddRowRecord =
    rowToDelete.getaddNewRecord()!= null &&
    rowToDelete.getaddNewRecord().equals("Y");
    rowToDelete.remove();
    if(!isAddRowRecord)
    getOADBTransaction().commit();
    public String getAuthorisedRecordStatusByRowRef(String rowRef)
    String recordStatus = null;
    XXIosAuthorisedVORowImpl row =
    (XXIosAuthorisedVORowImpl)findRowByRef(rowRef);
    if(row != null)
    recordStatus = row.getaddNewRecord();
    return recordStatus;
    Thanks in Advance,
    Hanimi.

    Hanimi
    If you are not able to get EVENT_SOURCE_ROW_REFERENCE, what you can do is add parameters to fireAction of delete Image. In the parameter take the parameter for the VO attribute that uniquely identifies a row.While adding the parameter, you can give it any name and value as ${oa.VOName.VOAttributeName}.
    Thanks
    --Anil
    http://oracleanil.blogspot.com

  • Need to deactivate delete option in SP02

    Hi All,
    Please help me with the steps how we can deactivate delete option in SP02 T-Code.
    I have tried at object level & Screen varient but no result.
    Regards,
    Venu

    Hi,
    run a trace. and check what object it  is chcking and then deactivate the object and check.
    Hope it helps.
    sanketh.

  • Disable Delete icon in Material Requirements from

    hi
    can anyone tell me how to disable the "Delete" icon and the "Delete option" in the "Edit menu" in the Material requirements form in WIP.
    is it possible through form personalization??
    is yes, please tell me the method...
    reply
    thanks
    anandc

    Hi,
    check the program name for the transaction and create a screen exit for the same.
    Also u can go for copying the code in customer namespace and then add ur own functionality to dactivate or remove the delete function.
    Pls reward points for the answer.
    Regards,
    Ameet

  • How do I delete icons of old applications in the menu bar?

    How do I delete icons of old applications in the menu bar? I've tried holding down all three keys, control, option and command as well as every combination of them in twos and three and then clicking on the menu bar icon I want to remove and I only get the option to use the software, not to delete it.

    Hold command and drag them off the Menu Bar, drag them at least a couple of inches. (or 50mm)

  • How can i delete a video in photos of ipad 2? there is no delete icon!

    How can i delete a video in photos of ipad 2? there is no delete icon!

    They are deleted in the same way as photos, which are deleted by : only photos/videos taken with the iPad, copied onto it via the camera connection kit, or saved from emails/wesites etc can be deleted directly on the iPad - either via the trashcan icon in the top right corner if viewing the photo/video in full screen, or via the icon of the box with the arrow coming out of it in thumbnail view. Photos/videos that were synced from your computer are deleted by removing them from where they were synced from and then re-syncing.

  • Can't delete icons or drag icons off to the Recycle Bin.

    We have one user who logs in to her laptop on our network - Server 2012 domain.  She has domain user permissions but when she drags icons to the recycle bin for deleting she gets prompted for a user name & password.  Does the user need permissions
    to her C:\Users\useraaccount\desktop folder to delete icons? 

    Sounds like there is a folder permission issue. From the C:\Users\useraccount destination make sure she has all of the appropriate permissions and is the owner of the folder. If her files and are backed up, I would also try recreating her profile on the
    laptop (Only if the other step does not work).
    Don't forget to mark the post that solved your issue as &quot;Answered.&quot; By marking the Answer you are enabling users with similar issues to find what helped you. Lewis Renwick - IT Professional

  • Disable the Dynamic Selection Icon from T.Code FBL1N

    Hi,
    I want to disable the Dynamic Selection Icon from T.Code FBL1N...
    Please Note that i found a link where some code is given for this problem.
    Remove the dynamic selection screen.......
    Please tell me where i paste that code....after initialization or where....
    Thanks...
    Edited by: Prince Kumar on May 16, 2009 8:59 AM

    Hi,
    1) COPY the program RFITEMAP and create a ZRFITEMAP
    2) and added this code in the INITILIZATION event. You can search ZRFITEMAP with INITIALIZATION and add below code there.
      INTIALIZATION.
      DATA: t_exclude TYPE STANDARD TABLE OF sypfkey.
      APPEND 'DYNS' TO t_exclude.
      "DYNS is the dynamic selection screen function code.
      CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
        EXPORTING
          p_status        = sy-pfkey
        TABLES
          p_exclude       = t_exclude
    Regards
    Shital

  • Adding Delete Icon in Report with Notification msg

    Hi Friends,
    I want to display Delete icon in every row of report.So i followed the below link and i implemented.But i want to display the Confirmation Notification to the user
    *(eg.Are You sure want to delete this record?)* Before deleting the particular row in Report.How i can achieve this?
    please help me...
    http://apps2fusion.com/at/64-kr/391-oracle-apex-person-details-tutorial-02-delete-functionality

    Hi!
    I think that what you need is something like this: http://apex.oracle.com/pls/otn/f?p=39830:32 (go to Refresh 2 example).
    You can download the application to see how it is implemented but, regarding your particular question, to display a confirmation notification to the user you just have to add a Confirm action in the dynamic action that is fired when you click your delete icon.
    Regards,
    Sergio

  • The delete icon at the bottom of the email page has disappeared

    The delete icon at the bottom of the email page has disappeared.  How can I find it?

    Restart iPhone: Hold down the Sleep/Wake button and the home button together until the apple logo appears (ignore the ON/OFF slider) then let both buttons go and wait for phone to restart (no data will be lost).

  • TableControls, icons and fuction codes

    Hi everybody and thanks in advance.
    I have a problem with my table control.
    I have a table control with five fields, one of them is colled note, and is a char of 4 characters.
    I assigned to this field an icon with this code:
        move '@0J@' to tab_s9035-nota.
    My problem is I want to assign a function code as 'NOTE' for instance, because I want to get in the PAI the code when the user do click on the icon.
    But instead of that, I obtain a message like this: 'choose a valid function'.
    Can anybody help me?
    Thank you for your time.

    Thank you for your answer, Sreenivasulu.
    But I have just created my table control and I have a manual about this control.
    Maybe I am not saying what I want to ask.
    My problem is when the user do click on the icon, no event is fired because the icon has not a function code assigned. I can not assign this function code in design mode, with the screen painter. I would like to find out wich is the trick I have to use to assign the function code to the icon in order to fired the even PAI when the user do click on the button.
    Thank you for your time.
    > Hai David
    >
    > Go through the following Documents
    >
    > 1) Screen tables
    > A table can be created in transaction. These tables,
    > when designed on the screen are called as SCREEN
    > TABLES.
    >
    > These are of two types.
    > Table Controls and Step loops
    >
    > These tables are treated as Loops.
    >
    >
    > 2)Features of Table Controls
    >
    > Data is displayed in the form of table.
    > Table control gives user the feeling of an actual
    > table.
    > You can scroll through the table vertically as well
    > as horizontally.
    > You can select rows and columns.
    > You can resize the with of columns.
    > You can have separator lines between rows and
    > columns.
    > Automatic resizing of the table when the user resizes
    > the window.
    > You can update information in the table control and
    > it can be updated in the database table by writing
    > code for it.
    >
    > 3)Steps for creating table control
    >
    > Declaration of table control in module pool program.
    >
    > Designing of table controls on the screen.
    > Passing data to table control in flow logic.
    >
    > 4)Declaration of TC in MPP
    >
    > syntax:
    >
    > controls <name of table control> type tableview using
    > screen <‘screen no.’>.
    >      
    > 5)Designing Table control on screen
    >
    > Click on Table in Control bar and place it on the
    > screen. You can adjust the length and width of the
    > Table Control.
    > Name the table control.(same name as given in data
    > declaration).
    > From dictionary object OR from program fields select
    > the fields and place them in the table control
    >
    > 6)Passing data to table control
    >
    > Usually transfer of data from program to screen is
    > automatic.
    > In case of TC, you need to explicitly transfer the
    > data to table control.
    > ABAP/4 provides Loop statement, which is associated
    > with flow logic to transfer the data.
    >
    > 7)Passing of data contd.
    > PBO.
    > Loop at <name of internal table> with control <name
    > of table control> cursor <scroll variable>.
    > module…….
    > Endloop.
    > PAI.
    > Loop at < name of internal table>.Endloop.
    >
    > 8)Scroll variables
    >
    > Top_line : the row of table where the screen display
    > starts.
    >
    > Current_line : the row currently being processed
    > inside a loop.
    >
    > 9)Transfer of data from prg to TC.
    > With ‘Loop at …’ statement, the first row is placed
    > in the header of internal table.
    >
    > If any module is specified between Loop and End loop,
    > it will be executed. In this module, generally we
    > will be assigning this internal table fields to table
    > control screen fields.
    >
    > The row in internal table is transferred to the TC as
    > stated in the ‘Loop at…..’ statement.
    >
    > The system encounters the ‘Endloop’ statement and
    > control is passed back to the next line of internal
    > table.
    >
    > In the same way all the records of the internal table
    > are passed to the TC.
    >
    >
    > Thanks & regards
    > Sreenivasulu P

  • Where is the DELETE icon for my e/mail site?

    We have searched for the DELETE Icon (X) for my "new
    Thunderbird" e/mail account....CAN NOT FIND IT !!!

    Your above posted system details show outdated plugin(s) with known security and stability risks.
    * Shockwave Flash 10.0 r45
    * Java Plug-in 1.5.0_06 for Netscape Navigator (DLL Helper)
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    You can also update to the latest Firefox 3.6.9 version.<br />
    See "Help > Check for Updates"

Maybe you are looking for

  • How to hide or mask the url in APEX Hosted environment

    Please anyone help me... Regards Pavan

  • Cannot publish to Breeze

    Hi all - I was hoping that one of you could lend me some expertise. I am trying to publish a Captivate (ver 1.1) quiz to a Breeze server - it consists of regular question slides and interactive slides. I can preview the file okay. But when I try and

  • R1213 Load Balance using F5 load balancers on Sun/Linux

    Hi, We got below requirement to perform upgrade and applications Load Balance 1. Web and Courion services using F5 Load Balancers after R1213 Upgrade. Any Idea bout Courion services and how we can perform Load Balance for its services on Apps R1213 T

  • My Macbook Air 11" Won't Turn On!

    I didnt use this macbook for one month. Today, when I press the power button, it cannot turn on. The display is black and dont hear any sound. I pluged the charger. The charge light is green (which shows the battery full). But I don't believe a lapto

  • New firmware 21.0.025 issue for Nokia 5800

    I have upgraded my firmware to software version v21.0.025 . For 2 days there was no problem but on 3rd day i cannot see 4 shortcuts on homescreen even the phone settings are correct. If i set homescreen shortcuts as Contact bar..its working perfectly