Field Required in T.code PB10

Dear experts!
Now, I'm getting some issues about T.code PB10.
- When I create applicant by t.code PB10. But the Date of Birth field doesn't be required. Really I want the field have to enter data. But I don't know how I will process it.
How do I have to do?
Best regards, Huy

Close!

Similar Messages

  • WBS Field Required in T-Code F-49

    Hi All
    Is it Possible to Appear WBS Fileld in the Line Item of T-Code F-49 .
    Manoj

    Hi,
    Noted items are not assigned to CO objects.
    Regards,
    Eli

  • Tax cod as a field required

    Hi all,
    I need to set the tax cod as a field required (mwskz) in the PO.
    Would anyone can help me how to do?  
    PS if possible step by step  rsrs
    Thanks

    Hi,
    Check the link [how to make Tax code Mandatory in Purchase Order (MM)|Re: how to make Tax code Mandatory in Purchase Order (MM)]
    Regards,

  • How to make a field required in OAFramework

    How to make a field required in OAFramework at runtime?? Please explain in detail if possible.
    Thanks
    Kumar

    Get the handle of the bean using the following Code
    <BeanType> bean = <BeanType>webBean.findIndexedChildRecursive("<Id of bean>");
    if(bean!=null && <condition>)
    bean.setRequired(true);
    }

  • Making fields required based on other field input

    I am creating a form in adobe acrobat pro that employees need to fill in to show the clients they have worked for in a week. The form has 10 lines for them to fill in the date, client name, address etc for 10 clients. I want to make the client name and address fields required only if the date has been filled in in the first column. I can't make every row required fields as they may not have 10 clients that they have worked for. I have a send button set up so that all required fields are completed before the form can be sent. Can someone help me with the script I would need. I have worked out how to make the fields required if a check box is ticked but can't find any scripting for fields to be required if text has been entered in a specific field.

    You can use the custom validation script of the date fields. Let's say you
    want to make Name1 and Address1 required if Date1 is not empty.
    Use this code to do it:
    this.getField("Name1").required = event.value!="";
    this.getField("Address1").required = event.value!="";

  • IC Webclient - making a field required

    On the BupaSearch View, I want to make some other fields required before you can successfully create an account.  Right now Country is the only one.  Country does not use the tag REQUIRED = "TRUE".  Even if I do used this tag, it really doesn't have any affect except to put an * or outline the box in red.  So I was trying to copy the logic that the field country uses, but I have no idea where this is done.  I've been searching and I need your help.  Does anyone know?
    Thanks.

    Hi Cathy,
    You can try to have a method R-Getter (required) as follows -
    METHOD get_r_brand .
      IF get_brand( attribute_path = '' ) IS INITIAL.
        rv_required = 'TRUE'.
      ELSE.
        rv_required = 'FALSE'.
      ENDIF.
    ENDMETHOD.
    And in the view:
            <crmic:label design   = "label"
                         required = "<%= ApplianceData->get_r_brand( ) %>"
                         for      = "//ApplianceData/Brand" />
    But this code will also add a star against the label and the star will go off only after some value is input to the field.
    See if it is still helpful.
    Regards,
    Abhishek !

  • How to: Make Shipping Condition field required in Tx. VT01N

    Hi everyone. I need to make the Shipping Condition field required in the transsaction VT01N Create Shipment.
    I don't know how to do this, can somebody help me with this issue???
    Thanks for your help!

    Hi Chemo,
    As far i undestand, you want to calculate freigth cost using transportation.
    To do this, you need to do some settings at that point to achieve that, please follow the link to configuration guide:
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LETRA/SDTRA.pdf
    On functional side (after configuration), you´ll need to create the shippment cost document on VI01 transaction, there you can see all the cost associated to Shipping.
    After that transfer it to MM using T-code VI02, its needed.
    I Hope this help you,
    Regards,
    RP

  • Making "Business Place" field Required in MIRO

    Dear fellow SAPers,
    Can anyone please tell me how to maintain the status of  "Business Place" field in MIRO as Required? The client wants to ensure that this field is populated everytime MIRO is done, irrespective of the user.
    Please Help,
    Thanks,
    Amit Bharti

    Hi,
    To make the business place field required for MIRO, you can write the validation as below:-
    Step 1:-
    Create a message ID via transaction code SE91 for message class /EACC/MSG/ACC_COMP.
    Step 2:-
    Go to transaction GGB0 and create the validation step at line item level in Financial Accounting as below:-
    Pre Requisits:-
          BKPF-TCODE = 'MIRO' AND BSEG-BLART = 'K'.
    Check:-
          BSEG-BUPLA = ' '.
    Message:-
         Message created in step 1 as error message.
    Step 3:-
    Please also check that this validation has active status (Status=1) at line item level for your company code in transaction OB28.
    Regards,
    Gaurav

  • Make a field required in Standard page

    Hi All,
    I have a requirement to make a field required based on some codition.So I cannot personalise with "Personalize Page".I am extending the standard page CO.My code is as below:
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    String orgType=pageContext.getParameter("customerType");
    if("ORGANIZATION".equals(orgType)) {
    OAMessageTextInputBean acccntDesc=(OAMessageTextInputBean) webBean.findChildRecursive("AcctDesc");
    acccntDesc.XXXXX }
    Which method has to be placed instead of XXXXX ,to make that field mandatory.
    Please help me.... its very urgent.
    Akshata

    Hi Akshata
    Try this
    "acccntDesc.setRequired("yes");"
    Regards,
    pavan

  • Making a Text Field Required if User Checks box

    Hi,
    I am currently using Adobe Designer 7.0, and am trying to make a text field required if a user clicks on a check box above the text field.
    I have the following code for the check box (on Change) but it doesn't appear to be working!! Any suggestions??
    Thanks!
    if (this.rawValue == 1 ){
    TextField7.value = "User Entered - Required";
    else {
    TextField7.value = "User Entered - Optional";

    Hi Krisitan,
    you are trying to change the value of the field instead of it's accessability.
    Try this:
    if (this.rawValue == 1 ){
    TextField7.mandatory = "error";
    else {
    TextField7.mandatory = "disabled";

  • BDC Recording - Make a field required

    Dear Experts,
    We are using a BDC recording to call MIRO and send it to an agent via workflow using a z-table.
    The customer wants the baseline date on this recording grey'ed out and the business area field required.
    The baseline date is on the "PAYMENT" tab of MIRO and Business Area on the "DEATILS" tab. 
    I have created a screen and transaction variant a year ago and assigned it to the t-code, but now with the BDC calling MIRO for the INVOICE Scanning project, these fields can be overwritten and left out.
    How can I do it via BDC?
    Transnet Freight Rail
    Edited by: Annelize Meyer on Mar 17, 2010 1:39 PM

    You could create a on-submit pl/sql validation on 'p2_estim_val'. The validation code will return a failure if the value of p2_estim_val is not specified if the value of p2_reason_to_scap_sell is non-null
    The validation code could be something as simple as
    if not :p2_reason_to_scap_sell is null and :p2_estim_val is null then
       return 'A value is required for p2_estim_val';
    end if;varad

  • Tables list and fields required

    Table names and fields required for the list out stock quantity by product code or Stock Group in reports

    Hi ,
    Table- MARD , search for the required stock(type/group/quantity).
    Hope this helps!

  • In which table Credit exposure field - OBLIG  (of T code FD32 ) stored

    Dear Friends,
    Colud you please tell In which table Credit exposure field - OBLIG  (of T code FD32 ) stored.
    Thanks in advance,
    pinky

    Dear Friend,
    Yes Khaled is correct. The amount is not stored anywhere but it is dynamically calculated as & when required. It is just like Customer / Vendor Ledger.
    Hope this helps.. .
    Thanks,
    Jignesh Mehta

  • Orders, deliv. and conRel fields in MD04 transaction code

    Hi All,
    I want to know the database tables and fields for Orders, deliveries and conrel fields in MD04 transaction code.
    In MD04 if you give material and plant as input details and say continue, we are getting the Stock requirement list. In that MRP elements : Orders, deliveries and conrel  and the quantity fields against to these elements ,, from where we are getting the data. Is there any function modules for the same?
    Kindly advice me.
    Thanks in advance.
    Regards
    Ramesh.

    Hi Ram Kumar,
    I'm not sure about the screen enhancements can be done for the transaction FBCJ as we don't have any screen exits.
    But we have only BAdI for FBCJ transaction called CJ_DOCUMENT - Change to External Document before Cash Journal Doc. Check.
    Workaround on the method CHANGE with the changing parameter C_ITCJ_SPLIT_POSTINGS.
    Enhance the structure ISCJ_POSTINGS to add your new fields and write the logic in the BAdI method to populate the values to these fields.
    Please give a try and let us know.
    Regards
    Gangadhar
    Message was edited by: Gangadhar Ragula

  • Forms Personalization - Making a field required

    Does anyone know how to use Forms Personalization to make a field required?

    I haven't been able to get this to work. I'm trying to change the Returns form in Receiving to force the user to enter a reason code when they do a return. When does the WHEN-VALIDATE-RECORD event occur? Is it when you press SAVE? I've set it up to give the user an error message when the reason_code field is null, but it's not working. It allows me to save with a null reason_code.
    Thanks for your help.

Maybe you are looking for