Remove Mantory Field

Hi All,
I want to Remove Mantory Field in Employee Master Screen in Absence information Details tab i.e. from Date and to date is it Possible to remove SAP Mantory fields.
Regards,
yusuff

Dear yusuff,
You will not be able to remove the mandatory field like "from Date and to dat" in employee masterdata form. But if you do not want to enter the values in those mandatory field then you can create a small addon through SDK so that when ever you will open the employee master data form, the addon will automatically load some values in those mandatory fields.
Regards,
Rakesh Pati
SAP Business One Forum Team.

Similar Messages

  • Pages 5.2 How do I remove the fields in the header and footer?

    I need to add objects and footers that are longer than the field dividers allow in the header and footer of my document. How do I remove the field divisions?

    You can't remove the dividers in Pages 5.
    They don't exist in Pages '09.
    On the Mac you can simply keep typing and the text crosses the dividers.
    A quick test on my iPod touch suggests the same on iOS.
    Peter

  • Remove text field from Array via for loop

    Hi,
    i have a problem to remove text fields added via for loop.
    That im doing is, via for loop im dynamically creating menu with 10 buttons.
    Each button contain, dynamically created, background (shape) and text field.
    And everything is fine.
    But when im try to remove text fields then i got this error:
    - Im using button to remove text fields - lang_btn.addEventListener(MouseEvent.CLICK, clickHandler);
    ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
              at flash.display::DisplayObjectContainer/removeChild()
              at Loading_Img_fla::MainTimeline/xmlLoaded()
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at flash.net::URLLoader/onComplete()
    In the script bellow marked with red is what should remove text fields from an Array, instead giving me error.
    Here is my script
    // Create for loop
    for (var i:int = 0; i < 10; i++)
              for each (xml in listItems)
                        if (i == xml.attribute("Id"))
                                  // Add MovieClip to stage to hold the data
                                  addChild(lmHolder);
                                  lmHolder.x = 0;
                                  lmHolder.y = 0;
                                  // Create new MovieClip to hold buttons
                                  lmButtonsMCArray[i] = new MovieClip();
                                  lmButtonsMCArray[i].buttonMode = true;
                                  lmButtonsMCArray[i].mouseChildren = false;
                                  lmButtonsMCArray[i].x = 20;
                                  lmButtonsMCArray[i].y = 20 + btCount * buttonSpace;
                                  // Add each button MovieClip to lmHolder MovieClip
                                  lmHolder.addChild(lmButtonsMCArray[i]);
                                  // Create Background to buttons
                                  lmButtonsArray[i] = new Shape();
                                  lmButtonsArray[i].graphics.beginFill(lmBgColor0, 1);
                                  lmButtonsArray[i].graphics.drawRect(0, 0, 230, 85);
                                  lmButtonsArray[i].x = 0;
                                  lmButtonsArray[i].y = 0;
                                  // <<-- Add Background shape to the buttons MovieClips
                                  lmButtonsMCArray[i].addChild(lmButtonsArray[i]);
                                  // Create a new array to preserve data from XML List
                                  lmNameArrayEG = new Array();
                                  lmNameArrayUS = new Array();
                                  // Create local variable to hold
                                  var lmTxtFieldContentUS:String;
                                  var lmTxtFieldContentEG:String;
                                  var lmTxtContent:String;
                                  // If clicked button is EG then make array with Arabic text
                                  // If clicked button is US then make array with English text
                                  if (footer.lang_btn.langState == "EG")
                                            for each (var leftMenuName:XML in egLanguageList)
                                                      lmNameArrayEG.push(leftMenuName);
                                            lmTxtFieldContentEG = lmNameArrayEG[i];
                                            lmTxtContent = lmTxtFieldContentEG;
                                  else
                                            for each (var leftMenuNameUS:XML in usLanguageList)
                                                      lmNameArrayUS.push(leftMenuNameUS);
                                            lmTxtFieldContentUS = lmNameArrayUS[i];
                                            lmTxtContent = lmTxtFieldContentUS;
                                  // Setup new text field each time script is executed
                                  lmTxtFieldsArray[i] = new TextField();
                                  lmTxtFieldsArray[i].width = 110;
                                  lmTxtFieldsArray[i].border = false;
                                  lmTxtFieldsArray[i].wordWrap = true;
                                  lmTxtFieldsArray[i].multiline = true;
                                  lmTxtFieldsArray[i].selectable = false;
                                  lmTxtFieldsArray[i].embedFonts = true;
                                  lmTxtFieldsArray[i].antiAliasType = AntiAliasType.ADVANCED;
                                  lmTxtFieldsArray[i].autoSize = TextFieldAutoSize.CENTER;
                                  lmTxtFieldsArray[i].text = lmTxtContent.toUpperCase();
                                  lmTxtFieldsArray[i].x = 10;
                                  lmTxtFieldsArray[i].name = "lmTxtFieldName" + i;
                                  // <<-- Add Text fields to the Movie Clip
                                  lmButtonsMCArray[i].addChild(lmTxtFieldsArray[i]);
                                  // If clicked button is EG then set Arabic text format, and make array with Arabic text fields
                                  // If clicked button is US then set English text format, and make array with Egnlish text fields
                                  if (footer.lang_btn.langState == "EG")
                                            lmTxtFieldsArray[i].setTextFormat(txtFormat_lm_eg);
                                            // Make array from text fields;
                                            pushEgTFintoArray.push(lmTxtFieldsArray[i]);
                                  else
                                            lmTxtFieldsArray[i].setTextFormat(txtFormat_lm_us);
                                            // Make array from text fields;
                                            pushUsTFintoArray.push(lmTxtFieldsArray[i]);
                                  // If clicked button is EG then loop thrue the for loop and remove English text fields from array
                                  // If clicked button is EG then loop thrue the for loop and remove Arabic text fields from array
                                  if (footer.lang_btn.langState == "EG")
                                            for (var rNr_us:Number = 0; rNr_us < pushUsTFintoArray.length; rNr_us++)
                                                      //remove the text field array from the display
                                       removeChild(pushUsTFintoArray[rNr_us]);
                                            //clear the array
                                            pushUsTFintoArray = [];
                                  else
                                            for (var rNr_eg:Number = 0; rNr_eg < pushEgTFintoArray.length; rNr_eg++)
                                                      //remove the text field array from the display
                                       removeChild(pushEgTFintoArray[rNr_eg]);
                                            //clear the array
                                            pushEgTFintoArray = [];
              btCount++;

    it looks like those tf's are children of  lmButtonsMCArray[i], not the current scope.  use:
    if (footer.lang_btn.langState == "EG")
                                            for (var rNr_us:Number = 0; rNr_us < pushUsTFintoArray.length; rNr_us++)
                                                      //remove the text field array from the display
                                        lmButtonsMCArray[rNr_us].removeChild(pushUsTFintoArray[rNr_us]);
                                            //clear the array
                                            pushUsTFintoArray = [];
                                  else
                                            for (var rNr_eg:Number = 0; rNr_eg < pushEgTFintoArray.length; rNr_eg++)
                                                      //remove the text field array from the display
                                        lmButtonsMCArray[rNr_eg].removeChild(pushEgTFintoArray[rNr_eg]);
                                            //clear the array
                                            pushEgTFintoArray = [];

  • Cannot remove description field after adding to the Custom List

    Hello,
    Applies To: SharePoint 2013
    Problem: We created a Custom List and added a Description column from "Add from existing site columns" link. Now we need to remove it and it seems to have been sealed. We are not able to delete it.
    There is no remove/delete link/button when we click on the field. Moreover in the Content Type it only shows Required, Optional, Hidden.
    Requirement: Need to remove this field from the Custom List. Incidentally we added two of the description fields. We need to remove both of them without deleting the list itself.
    Thank you and
    Regards
    Tanzim Akhtar
    Tanzim Akhtar

    Hi Tanzim,
    Try the following code. I tested it and it should work for you.
    Add-PSSnapIn Microsoft.SharePoint.Powershell
    $web = Get-SPWeb "Web URL" 
    $list = $web.Lists["List Name"] 
    $field = $list.Fields["Description"] 
    $field.AllowDeletion = $true
    $field.Sealed = $false
    $field.Delete() 
    $list.Update() 
    Remove-PSSnapIn Microsoft.SharePoint.Powershell
    Narahari
    ******If a post answers/helps your question, please click "Mark
    As Answer" on that post and/or "Vote
    as Helpful*******

  • Remove unnecessary field in Web UI - not applied

    Hello, dear Experts!
    I'm trying to remove unnecessary fields from contact view page in Web UI.
    I performed the following steps:
    1. created new config role key ZTMP
    2. created new business role and binded it with my config role key
    3. bound business role in organizational structure
    4. copied <default> configuration in BSP Workbench for my new ZTMP role key (BP_CONT/ContactDetails view)
    5. removed unnecessary fields in my copied configuration and saved all
    But after this steps no changes affected in Web UI - fields not removed, it's looks like default config. Same result for BP_HEAD/AccountDetails.
    Technical data for contact page (when i press F2 in contact page):
    Role Key (Searched For) - ZTMP
    Role Key (Found) - ZTMP
    Comp.Usage (Searched For) - Overview
    Component Usage (Found) - <DEFAULT>
    Object Type (Searched For)  - <DEFAULT>
    Object Type (Found) - <DEFAULT>
    Maybe some "checkbox" blocks my config?

    hi,
    Procedure to change config is
    1) Create role config key.
    2) Assign it to your bussiness role.
    3) Open found config.
    4) Copy config and give your role config key. Do requried changes. Save it.
    5) Write required code in do_config_determination if your config is not called.
    Procedure that you are telling is correct and configuration found is ztmp, def, def. What is subobj type found? if it is default, again see configuration and compare with fields that you are getting on screen. May be you forgot to save because you have covered all the steps.
    Best regards
    Pankaj Kumar

  • Remove particular field and button from a screen when using pnp

    hi,
    i came to a request of remove a field and button from the displayed screen. i developed the report using logical database pnp. i need help.

    There are a couple of ways to accomplish this.
    1. Use a report category so that the only fields on the screen are those that you want.
    2. Do something like this:
          LOOP AT SCREEN.
        IF SCREEN-NAME = 'PNPTIMED' OR
           SCREEN-NAME = 'PNPBEGDA' OR
           SCREEN-NAME = 'PNPENDDA'.
          SCREEN-ACTIVE = '1'.
          SCREEN-INPUT = '0'.
          SCREEN-OUTPUT = '1'.
          SCREEN-INVISIBLE = '0'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.

  • Hr report category remove selection fields..

    hi again All,
    I am facing a problem again. I tried generating a new category for my report. Now again after creating the category i do not see how to add fields and remove selection fields. I need only company code in my selection criteria and nothing else.
    can neone help me?
    suresh and sarika, i m expecting lot of you..
    please help..
    Reena..

    Reena,
    Pl follow these steps..
    1.In the Program Attributes, click on the pushbutton 'HR Report Category'.Click on the 'Create' icon in the pop-up window that comes up.
    2. On the next screen click on the 'New entries ' pushbutton in the menu bar.
    3. In the next screen enter a anme for the report Category, say, 0COMPCODE.
    4.On the same screen, you have a Navigation tree to the left hand side, click on the Allowable selection Criteria Node
    5. On the next screen, click on the New Entriees pushbutton
    6. On the next screen enter 'PNPBUKRS'.
    7. You will be prompted to tie it to a Transaport Request. Attach it to the sam ereq that your Report is tied to.
    8. SAVE it & attach it to your Program.
    ~Suresh

  • EEWB - How to adjust generation? remove generated field or adjust size

    Hi
    I have used EEWB(Easy Enhancement Workbench) to add new fields to ORDERADM_H.
    After EEWB generation I would like to change the length of some fields, remove other fields, and retain some fields exactly as they are.
    I don't see any way to do this in EEWB. It simply allows me to re-edit the definition using the Wizard or regenerate.
    I am too nervous to adjust the Wizard definitions( what fields will be added to ORDERADM_H) and re-generate incase it adds a whole new list of fields AGAIN! EEWB allows SAP to generate the field names so there is no field 'name' link to existing generated fields.
    There is no documentation on EEWB as regards this and no SAP press books mention this scenario.
    Many thanks,
    Dave

    Just for everybodies interest I will post solution.
    In the end in EEWB I reditied my additional fields by restarting the wizard. I removed fields and adjusted data elements of others. At the end of the Wizard it successfully went and adjusted all related objects. Simple. No generation performed though. That was only performed once when I defined my extensions.

  • Remove custom field instead of default text field

    I need  migrate to SharePint 2013 from 2007.
    In SharePoint 2007 List include a custom field.
    Dont use the custom field again,
    I want remove custom field instead of default text field (remain metadata).
    How to do it ?
    Thanks

    Hi ,
    According to your description, my understanding is that you want to migrate SharePoint from 2007 to 2013 with managed metadata column. Is it right?
    If you need to migrate managed metadata columns, you also need to migrate the Managed Metadata Service application. however, when you use this method, only global terms are available but the local terms  are not available.
    So, if you used the local terms for the managed metadata column, I suggest you use a third party tool or manually re-create the column in the destination list.
    There are some articles about migrating managed columns, please take a look at:
    http://sharepointconnoisseur.blogspot.jp/2012/06/migrate-sharepoint-2010-content-with.html
    http://www.metalogix.com/help/Content%20Matrix%20Console/SharePoint%20Edition/002_HowTo/003_MigrationActions/011_CopyTaxonomy.htm
    http://www.quest.com/tv/All-Videos/1749994742001/Migrating-to-SharePoint-Managed-Metadata-Columns-with-Migration-Suite-for-SharePoint/Video/
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Remove Displayed Field in View

    Hi, 
    i used Project Web Access (PWA), yesterday i changed a list of field in a View (My Timesheet), using "Manage Views". Now i would like to remove some field, but when i select certain field, the Remove button remains disabled. How i can remove that
    fields? To solve the problem: Can i create a new view with same fields, and then rename the view with the name of "old view"?
    Thanks for any suggestions.
    Riccardo

    It might be indeed that a user created a timesheet using this field so it can't be removed from the view. You can't hide the field from the view but you could simply create a new view and dissociate the old view from all categories so no users could see
    it anymore.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Re : Removing mandt field of sales document in LV01N

    Hi
        I want to remove mandt field of sales document in delivery screen(vl01n).
    How to do this.
    Thanks
    Anto

    Dear Antony,
    To do so, You need to create a Screen Variant for T. Code: VL01N in T. Code: SHD0.
    Best Regards,
    Amit

  • Want the remove IPTC fields by export

    I have a lot of pictures that i will export with a preset.
    Because of privacy matters i must remove the IPTC-fields such as sublocation, city, state / province.
    Can get that done. To much pictures to remove these fields in Photoshop after the export one by one.....
    Naturally i want to keep this info in the field in my originals !
    Thanks !

    Hi John, I have installed the metadata wrangler but no luck....
    Maybe it has something to do with the fact that some of the pictures were originally imported with PhotoMechanic.
    Thanks for your answer !
    Piet Van de Eynde (the writer of excellent LR-books) came up with a answer that looks interesting, i will try that one ! but it is not for daily use on a speedy workflow...
    Save locations
    For photos captured within a defined proximity, you can create a saved location. For example, if you travel to Greece for a photo shoot for a client, you can create a saved location that encompasses the islands you visited.
    In the Map module, navigate to a location on the map and click the + button in the Saved Locations panel. The Saved Location panel is on the left side of the Lightroom window. 
    In the New Location dialog box, enter a name for the location and select a folder to save it in. 
    Radius
    Defines a radius, in feet, miles, meters, or kilometers, from the center of the visible map area.
    Private
    Removes all IPTC location metadata, including GPS coordinates, Sublocation, City, State/Province, Country, and ISO Country Code, when photos in the saved location are exported from Lightroom.
    Click Create.The location appears on the map marked by a white circle, with one pin in the center and another pin on the perimeter. 
    When working with saved locations, do any of the following: 
    Select or deselect a location in the Saved Locations panel to view it on the map.
    The Saved Locations panel in the Map module
    To add photos to the location, do one of the following:
    Drag one or more photos from the Filmstrip into the white circle in the map.
    Select one or more photos in the Filmstrip and select the check box next to the location name in the Saved Locations panel.
    To go to a location on the map, click the right-arrow button by the location name in Saved Locations panel.
    To edit a location, right-click (Windows) or Control-click (Mac OS) it in the Saved Locations panel and choose Location Options.Tip: You can also drag the pin at the top of the location circle in the map to adjust the radius. Drag the pin in the center of the circle to move the location on the map.
    To remove a location, select it in the Saved Locations panel and click the minus ( - ) button. Or, right-click (Windows) or Control-click (Mac OS) it in the Saved Locations panel or on the map and choose Delete.

  • Removing prewritten fields in new calendar events

    I mainly want to remove the ''location'' field in my calendar but it seems to be locked somehow. I need a way
    to remove or hide it. From what i have found all the web and designer allows me to do is change its description....

    Just soloved the problem. All i had to do was simply not remove the fields entierly but from the view that is used when a new event is to be created. This is done in SPD. Cheers.

  • How we remove some fields from SAP standard one's

    Hi,
    i am very new to SAP SD .if the client do not want some fields from standard one's how we can remove those fields.(example u take Standard sales order).

    HI, you cannot hice many fields in SAP, since they all need for something.
    try to explain this to your customer; furthermore many fields are filled form the master data so the users don't have do mind of them.
    Anyway you can alter the screens using the transaction variants: go to IMG
    Spro: SAPNetwaever->general settings->Field Display Characteristics->Configure Application Transaction Fields
    Reward if helpful
    Regards
    Roberto

  • Removing Description Field

    Hi,
    Does any one have an idea on how to remove Description field from the layout? I am creating a custom tab where i don't want description field.
    Nisman

    Nisman, at this time you can not remove the Description field.

Maybe you are looking for

  • Connecting to another Mac via ethernet

    I have been doing some importing and editing on a 13" Macbook Pro and want to transfer some Events and Projects to my MacPro via a direct ethernet connection between the 2 machines. I can see each of the connected computers in each of their Finder wi

  • ODI error in reverse engineering planning app

    I am getting this error while Reversing the plannign app in ODI. can anybody tell what might have happene and where to look upon. In Topology mgr and Designer all connectins working fine. This log is from Operator. I ma new to ODI btw. org.apache.bsf

  • External HDD in OS 9

    Hi all, I got a extenal drive that i want to use both on my windows machine and my mac that runs system 9. I was wondering what format OS 9 supports that also supports windows? Currently the drive is formatted NTFS, and with my tiger machine, it can

  • Issue with cmd.exe.

    Opening cmd.exe and clicking and/or moving the cursor deletes part of the screen. See picture. W10x86

  • Need a query for access tables

    Hi I need a query , help please: table1: id              description                  serial                     1                des1                           ser1 2                des2                           ser2 3                des3