Creating password fields which shows ****

Hi,
can anyone help me with creating a password field in which the entry looks like *******
thanks

Hi Manish.....
Try the following code.....
it helps you a lot.......
PARAMETERS :
USERNAME(10) TYPE C,
PASSWORD(10) TYPE C.
AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF SCREEN-NAME = 'PASSWORD'.
      SCREEN-INVISIBLE = '1'.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.
START-OF-SELECTION.
  WRITE: 'User name is  : ' , USERNAME,
        /'Password is   : ',  PASSWORD.
if u want any explanation see :
http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/dbab6235c111d1829f0000e829fbfe/frameset.htm
Reward points if useful.......
Suresh......

Similar Messages

  • Creating dynamic filter which shows next 30 days

    Hi,
    How to create dynamic filter which shows next 30 days?
    I've tried greater than or equal to TIMESTAMPADD(SQL_TSI_DAY, 30, CURRENT_DATE) but it doesn't work.

    Hi,
    I think it should be something like below (inclusive of current month)
    You may have to test this out
    (YEAR("Close Date".Date) >= YEAR(CURRENT_DATE) AND
    MONTH("Close Date".Date) >= MONTH(CURRENT_DATE)
    ) AND (YEAR("Close Date".Date) <= YEAR(TimestampAdd(SQL_TSI_MONTH,11, CURRENT_DATE)) AND MONTH("Close Date".Date) <= MONTH(TimestampAdd(SQL_TSI_MONTH,11, CURRENT_DATE)))
    Hope it helps
    -- Venky CRMIT

  • How to create password field in screen painter

    hi all,
        i am designing login screen. in that i hv to create one input-output field as a password field. i.e when i enter the characters it will display in <b>*(star) format.</b>
         also is there any way to do the same using <b>parameters</b> statement in report? give me the Way or coding.
    thanks in advance,
    regards,
    Vinod.

    HI GOPI
       I TRY TO ENCRYPT FORMULA IN PASSWORD PROTECT.BUT ITS NOT WORK .ITS SUCCESSFUL COMPILE & WHEN I PUT PASSWORD ITS SHOWING WHAT I GIVEN THERE. SO I THINK IN MY CODING PART THERE IS SOME ERROR.CAN U HELP ME PLEASE.
    I BRIEFLY DESCRIBE.........
    HERE FOR LOGIN PURPOSE I USE MODULE POOL PROGRAM & THERE I CREATE TWO FIELD ONE FOR (USER_NAME & PASSWORD).THERE SHOWING TWO ERROR (1ERROR ONE) EVEN IF YOU GIVE WRONG USER & PASSWORD THEN LOGIN SUCCESSFUL AND (2 SECOND ONE) IF YOU GIVE PASSWORD IN PASSWORD FIELD THAT   LOOK LIKE (****) MEANS ENCRYPT.
    I ALSO SEND MY CODING CAN YOU CHECK PLEASE.
    REPORT  ZLOGIN_PRO MESSAGE-ID ZBABUN.
    TABLES: ZTABLE_LOGIN.
    data: itab like table of ztable_login with header line,
                  OK TYPE SY-UCOMM.
                     CALL SCREEN 100.
    *&      Module  USER_COMMAND_0100  INPUT
          text
    MODULE USER_COMMAND_0100 INPUT.
    CASE OK.
    WHEN 'LOGIN'.
        SELECT * FROM ZTABLE_LOGIN INTO TABLE ITAB.
            SELECT * FROM ZTABLE_LOGIN INTO TABLE ITAB WHERE PASSWORD = ZTABLE_LOGIN-PASSWORD.
      SELECT USER_NAME FROM ZTABLE_LOGIN INTO ITAB-USER_NAME.
       SELECT PASSWORD FROM ZTABLE_LOGIN INTO ITAB-PASSWORD.
    LOOP AT ZTABLE_LOGIN.
      if itab-user_name ca itab-password.
           message i006.
    ELSEIF SCREEN-GROUP1 = 'ZTABLE_LOGIN-PASSWORD'.
    SCREEN-INVISIBLE = '1'.
    MODIFY ZTABLE_LOGIN.
    CONTINUE.
           call transaction 'SBWP'.
         else.
         message e020.
         CLEAR  : ZTABLE_LOGIN-USER_NAME,ZTABLE_LOGIN-PASSWORD.
       endif.
    END LOOP.
    WHEN 'LOGOUT'.
    MESSAGE I007.
    LEAVE PROGRAM.
    WHEN 'CREATE'.
      CALL TRANSACTION 'ZLOGIN_NEW_USER'.
    ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  IN
    note: FIELD NAME OF USER_NAME = ZTABLE_LOGIN-USER_NAME
                                        PASSWORD = ZTABLE_LOGIN-PASSWORD
    PLEASE REPLAY ME.
    .I AM WAIT FOR UR RESULT.
    THANKS
    LAXMIKANTA.

  • How to create a report which shows leave entitlement balances on a eff date

    Hi,
    customer would like to get a report, or sql statement, which shows employees net entitlements for an accrual plan. Because it is a calculated amount, I am not able to get my own quick paint or standard report.
    Who can help?
    ruud

    You can do this in 3 steps.
    1) First of all you'll need a package that wraps one of the Oracle-delivered PLSQL procedures into a SQL-callable function:
    create or replace package xx_pto_balance AS
    FUNCTION get_net_entitlement
    (p_assignment_id in number
    ,p_plan_id in number
    ,p_calculation_date in date) return number;
    end xx_pto_balance;
    create or replace package body xx_pto_balance AS
    FUNCTION get_net_entitlement
    (p_assignment_id in number
    ,p_plan_id in number
    ,p_calculation_date in date) return number IS
    l_net_entitlement number;
    l_last_accrual_date date;
    BEGIN
    hr_pto_views.get_pto_ytd_net_entitlement
    (p_assignment_id => p_assignment_id
    ,p_plan_id => p_plan_id
    ,p_calculation_date => p_calculation_date
    ,p_net_entitlement => l_net_entitlement
    ,p_last_accrual_date => l_last_accrual_date);
    RETURN l_net_entitlement;
    END get_net_entitlement;
    end xx_pto_balance;
    2) Next you'll need to initialize your apps session (if calling from SQL):
    exec fnd_global.apps_initialize(<user_id>, <responsibility_id>, <responsibility_application_id>, <security_group_id>);
    insert into fnd_sessions values (userenv('sessionid'), trunc(sysdate));
    3) Then you can you use a SQL statement like this one (noting the call to the above package function):
    SELECT papf.employee_number
    ,papf.full_name
    ,pap.accrual_plan_name
    ,xx_pto_balance.get_net_entitlement
    (paaf.assignment_id
    ,pap.accrual_plan_id
    ,trunc(sysdate)) net_entitlement
    FROM per_all_people_f papf
    ,per_all_assignments_f paaf
    ,pay_element_entries_f pee
    ,pay_accrual_plans pap
    WHERE papf.person_id = paaf.person_id
    AND nvl(papf.current_employee_flag, 'N') = 'Y'
    AND paaf.assignment_type = 'E'
    AND paaf.primary_flag = 'Y'
    AND paaf.assignment_id = pee.assignment_id
    AND pee.element_type_id = pap.accrual_plan_element_type_id
    AND trunc(sysdate) BETWEEN
    papf.effective_start_date AND papf.effective_end_date
    AND trunc(sysdate) BETWEEN
    paaf.effective_start_date AND paaf.effective_end_date
    AND trunc(sysdate) BETWEEN
    pee.effective_start_date AND pee.effective_end_date
    ORDER BY papf.full_name;
    This gets the net entitlement for all employees' accrual plans. You can of course tweak this as you like.
    Don't expect this to be fast! In fact, expect it to be painfully slow: because balances are calculated on-the-fly and run Fast Formula it takes a couple of seconds per person, depending on your Fast Formula code. To improve performance these are some things you can do:
    a) Put the above SQL into a materialized view and refresh it regularly (eg, daily)
    b) Build a Concurrent Program that populates a 'snapshot' table of balances and then report off that
    c) Use the Accrual Plan Payroll Balance architecture to store entitlements in payroll balances and then retrieve the payroll balances
    I hope that helps.

  • Creating Custom fields which are sales org dependent in Accounts Master

    Hello Experts,
    I want to create new custom fields in Accounts Master for sales and shipping.The component being used is BP_SALES.However when I try to create custom fields through AET, the new fields are added in the BUILHEADER context node.The problem with this is, its making the fields Sales Org independent.
    I want to add the fields which are sales org dependent( i.e. want to add the fields for the context nodes BUILSHIPPINGTERMS and BUILSALESARRANGEMENT).
    Please help me in this regards,
    Thanks and Regards,
    Rahim
    Edited by: Abdul Rahim on Dec 27, 2010 9:55 AM

    Hi Rahim,
    in general extension fields for Business Partner are only supported for the header fields (Table BUT000). Therefore the AET does not offer this.
    Table extension for BP sales data is supported by the AET beginning from CRM 7.0 eHP1. If you have this you can just create a 1:1 table enhancements and should be happy. If not I'm afraid that you would have to implement this manually.
    Using the Easy Enhancement Workbench (EEW) it would only be possible to create table extensions for the header and for relation ship but not for sales data.
    Regards Matthias

  • Password field to show certain fields

    Hi,
    I have some fields that are to be hidden from the user - then shown later for us to use  - so i added a password field, and (as a demo) another text feield to show sucess/failure text
    i tried this code
    if (this.rawValue = "correct")   //this is the password box
    {TextField39.rawValue = "show the rest"}
    else if (this.rawValue != "correct") TextField39.rawValue = "dont show the rest";
    but whatever is entered it is showing as correct - so something is pear shaped (again)
    anyone done this before?
    thanks

    thanks paul,
    some of that went over my head - I tried employing = and == before posting the query but the code still wont function - wondered if i was employing the wrong ! for not equal ?
    sorry im still a bit new to livecycles java -
    thanks

  • Created By and Created Date fields not showing up on Custom List form webpart

    Hi,
    I have added Custom Listform WebPart on "DispForm.aspx" of custom list. I need to display, out of box fields "Author" [Created By] and "Created" [Creation Date] on this custom list form webpart, I have added them on the webpart, following is the code behind of aspx page:
    <td width ="400px" valign= "top" class="ms-formbody">
    <xsl: value-of select = "@Author" disable-output-escaping = "yes"/>
    </td>
    However these fields are not showing/populating data on the form ?? Any inputs ???
    Regards

    Hi,
    I think that when you insert a custom list form web part you select “Item” content type, so custom list form is designed to display only the fields that are appropriate for that content type “Item”, but the item content type doesn’t contain the created and created by column, when you add the two columns, it will not find the field value. By default, the two columns will display at the foot of the list form using SharePoint:CreatedModifiedInfo.
    Hope it can help you.
    Xue-Mei Chang

  • How do i create a closing which shows on every outgoing email automatically, please ?

    procedural question: how do i create a closing line which automatically appears on every outgoing email? thanx!

    Nope, nothing happens...
    I don't know how Apple does it but it is definetly something on the CD itself when you burn it; I've tried it with Disk Burner, Disk Utillity and Toast, but I can't trigger it.
    Anyone who knows how I can pull it off ?

  • Just got a new IPOD Touch and it wont connect to our Wifi home network with a Belken N Router. Our router uses WEP 64 bit security, but had a "blank" password field, which the IPOD did not like. Changing to a 6 char numeric PW didnt help either.

    OS is whatever OS ships with current IPOD Touch
    I cannot understand why the APPLE engineers have designed this product so that it has SO MANY WIFI problems.  This is supposed to be an easy-to-use product.  We've had no problems connecting our new laptop, our ROKU box, etc, but it seems impossible to get the IPOD touch to work.  NOTHING LIKE SPENDING XMAS MORNING DOING APPLE TECH SUPPORT TROUBLESHOOTING TO LEAVE YOU IN THE CHRISTMAS SPIRIT!!!  Argh!
    In fact, the only way we have been able to get this expensive brand new IPOD to work on our home network is to DISABLE SECURITY in the router settings.  THIS IS ANYTHING BUT A GOOD IDEA.
    DON"T KNOW WHY BUT MANY OTHER USERS ARE REPORTING THE SAME KIND OF PROBLEM SO APPLE ENGINEERING NEEDS TO GET BUSY AND FIX THIS PROBLEM SO THAT NEW USERS CAN CONNECT TO THE INTERNET WITHOUT HAVING TO BE TRAINED ROUTER ENGINEERS TO DO IT!!!!
    Ok, sorry for the rant, but surely those of you who are experiencing this share my frustration.  This is not why I bought an APPLE product.
    IS THERE ANY POSSIBILITY THAT APPLE WILL NOT ALLOW A WIFI PASSWORD with more than one identical alphanumeric character?  Any ideas?  We also tried eliminating the 40 MHZ setting under Bandwidth settings in the router settings for our router, but it made no difference.  The router has the latest firmware, too.  Running out of ideas, and am ready to box this unit up and send it back!

    Thanks, Bob!  You are correct.  And, we learned this as we spoke with APPLE TECH SUPPORT by phone on Christmas day (800-APL-CARE).  One of their reps spent the time to help us troubleshoot this, but the boiled down conclusion is your answer, and to repeat for the benefit of others, here is what worked:
    1. With our Belkin router set to "out-of-the-box" WEP 64 bit security, we could not get wireless access of any kind.  Only with the Security Mode set to DISABLED, could we gain access.
    2. Changing the router's security mode setting to "WPA/WPA-2...." and entering a new min. 8 char passphrase, and then entering that same passphrase into the IPOD Touch, and restarting the router, did the trick!
    Based on this, and some info found in another posting, I can only conclude that the IPODs and IPHONES do not support WEP security mode in many generic routers used by thousands of consumers.  Hopefully, those same consumers can figure out how to change their wireless router setttings to WPA/WPA-2 security mode and ALSO get all their other wireless devices (PCs, laptops, WII boxes, ROKU boxes) all reconfigured to WPA mode, too.
    I THINK THE BOTTOM LINE HERE IS THAT THERE IS AN ISSUE THAT APPLE NEEDS TO ADDRESS WITH WEP COMPATIBILITY and it may also be the case that MOST CONSUMERS ARE USING WEP 64 BIT security on their home wireless routers?
    In any case, it's working now, so anyone who is having problems should try changing to WPA mode and post back here if it worked for them!

  • Need created by field in notification

    Hi,
    In notification i want to see a field like Created by (notification creater) for all notification types. 
    I dont want to see that info from action log, I need a field which shows the created by person name.  I want the filed like reported by field in notification.
    Is there any customization settings or any user exit to do.  Please suggest  me.
    Regards,
    Bhanu

    The following enhancement/user exit can be used to carry out the necessary changes to the screen
    QQMA0001
    User parameters
    User exit u2013 QQMA0001
    1. Create the project using the CMOD transaction and include the above enhancement in it.
    2. Create the append structure with the new field
    3. Go to the desired function group and create the sub screen with the new field. Write PBO and PAI of the sub screen if required. The field details should be as follow
    Name u2013 Created by
    Character length u2013 20 CHAR
    4. Use function exit in the inside the enhancement to link the PBO and PAI of the sub screen to the main programme
    5. Maintain the link between the standard screen of the SAP programme and the sub screen programme in CMOD transaction
    6. Activate the project
    Hope this helps
    Sarang

  • Asterisk format for password field.

    Hello every one.
    I have to create 'PASSWORD' field in screen painter but this field should be in encoded format
    shows with  '******' (asterisk).
    How can I create asterisk format for PASSWORD field in module pool?
    How can I show this type of field in runtime environment?
    The screen element for password is input/output field.
    Ex:- I have created username and password field in module pool screen programming (screen same as login screen of SAP) but I have to shown password field in encoded format menas with asterisk.
    Waiting for your opinion....
    Thanks
    Regards
    Anukul

    Hi,
    Make the pass word field as invisible in the screen painter.
    Thanks,
    Sri.

  • Password field missing

    Hello,
    i have a:
    - macbook pro 13 -inch late 2011
    - software  OS X 10.9.3
    PROBLEM:
    when a RESTART my device, I don't see the PASSWORD FIELD.
    I see the pointer, the "welcome message" below,
    the name of the admin (myself) above, the picture above.
    i see everything but the space in wich you write the passaword.
    i can write it without seeing it neither its field.

    Hi Vorstellung,
    If you are having issues with your password and/or the password field not showing up on the Login screen, you may want to try booting into Safe Boot mode and seeing if the issue persists:
    OS X: What is Safe Boot, Safe Mode?
    http://support.apple.com/kb/ht1564
    Regards,
    - Brenden

  • How to use SPMetal to get the item's original field which named 'Created'

    I want to read the field which named 'Created' by using SPMetal,I found the 'Item' class has the property named '_originalValues', it seems to get the infomation about the original values.
    Is there anyone who has solved this kind of problems?

    Hi,
    By default, the Created, CreatedBy, Modified and ModifiedBy fields are not created by SPMetal, so we will need to extend our base entity class for accessing these fields in our
    code.
    Here is a link will show how to achieve this with steps in detail:
    http://weblogs.asp.net/uruit/archive/2011/05/05/linq-to-sharepoint-working-with-created-createdby-modified-and-modifiedby.aspx
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to create a field in an OAF page which sums two fields in the same page.

    Hi,
    In the HRMS appraisal page, I have two fields in different regions.
    1. One field shows the total score of the competencies.
    2. Another field shows the total scores of the objectives.
    The problem with the appraisal total score is it returns only the rating level id. (It does not take decimal values)
    Hence I want to add the above two fields which is displayed in the same page and show as a new field in the top of the page as the final appraisal score.
    [Something similar to what is mentioned in the metalink document 1315431.1 ]
    We are in 11.5.10.2.
    I am new to OAF and have no idea as to how to achieve the above step. Can anyone guide me in doing it?
    regards

    Hi,
    Went through the steps to do a VO substitution.
    But normally in all the examples given the page will belong to the application where we are modifying.
    Eg. in this case the "about this page" shows /oracle/apps/fnd/wf/worklist/webui/NotifDetailsPG
    This is coming under fnd top where all the appraisal VOs and other pages comes under PER_TOP.
    Should I bring all the files from FND_TOP of the server to my PC where jdev is installed.
    I have already taken all the files under $PER_TOP to my PC.
    regards

  • Creation of drop down for a field which is created using otr

    Hi experts
    I have a requirement wherein i have to create a dropdown for a field which is added using otr (online text repository).
    When i did an F2 on the field on the UI i found that it had no context node and attribute and the view in the component workbench did not have a configuration also. The coding for that field is done in the htm page of that view using otr.
    For this field i need to create a dropdown (the dropdown values will be fixed). I thought it would be better to code in the method do_init_context.
    Request you to help me out with the code for this requirement as i do not have any idea with regard to otr.
    Thanks and regards
    Preeti Viswanath

    Hi Preeti,
    1.You need to maintain a page attribute(dd_list_type) which is of table type to the htm page of your view.
    2.Then in the set_models method of your view controller add the following code:
    * Put the data into the view attribute
      view->set_attribute(
            name   = 'dd_list_type'        
            value  = lt_list_type ).
    You can add OTR text list to the internal table lt_list_type.
    3.Then add the following code to .htm
    * ADDITIONAL CODING IN VIEW
    <% data:           lr_listl_type  type ref to data.
       field-symbols: <list_type>   type table.
       get reference of dd_list_type into lr_list_type.
       assign lr_list_type->* to <list_type>.
    %>
    <htmlb:dropdownListBox id="ListType"
                           table = "<%= <list_type> %>"
                           selection = "<%=controller->gv_model_id %>"
                           nameOfKeyColumn = "KEY"
                           nameOfValueColumn = "VALUE"
                           />
    Regards
    Leon

Maybe you are looking for

  • Why so much space used

    Hello All, Being a newbe this may have been answered but I will ask any way. My Daughter received a ned iPod Touch for Christmas so I got the iPod Gen 5 Video..... hand me down. I have around 2,500 songs on my iTunes and just did a Sync to the 30GB u

  • Help in writing update

    Please help me in writing this update statement UPDATE fro set ckey = (SELECT ckey FROM dcn WHERE EXISTS (select 1 from dro, fro where dro.rok = fro.rok and dcn.gcn = dro.gcn This returns ERROR at line 2: ORA-01427: single-row subquery returns more t

  • Multiple Keyboard Shortcut Assignments?

    Is it possible in Premiere CS6 to create multiple keyboard assignments for one action?   For example, Premiere has the UP ARROW key set to jump to the next cut on the timeline by default.  I like this assignment, but also want the same action to happ

  • Detect monitor size question

    Hi: Not sure if this will be a problem, but probably it will. If two monitor sizes differ by a lot...say a 21 inch vs a 17 inch; And I have a whole bunch of Swing components, most of them have preferred sizes. The components were first implemented on

  • How do with connect  to informix database?

    how do with connect to informix database?I think use own sminformix.jar with java studio creator