User and Pass command to record

Saving of user and pass gets a resounding F Grade.
To be brutally honest, if the programmers who wrote the code in question were working for me, they would now be fired.
I have little regard for such incompetence in this day and age. It has been out, this feature, for a long time both in Sea Monkey (a disaster in the making) and now in FireFox the same problems: fix it, provide for COMMAND AND Control cause this is a mess.
Please tell me how to make it work!!! Bill Neill.

Hi again,
1. BOLD code is important.
2. just copy paste
3. It will show a list from t001 table
   On double-clicking any row,
   it will give a message
   and display the rownumber, as well as the field
   which was clicked.
4.
REPORT abc.
TYPE-POOLS : slis.
Data
DATA : BEGIN OF itab OCCURS 0.
        INCLUDE STRUCTURE t001.
DATA : flag tyPE c,
       END OF itab.
DATA : alvfc TYPE slis_t_fieldcat_alv.
DATA : alvly TYPE slis_layout_alv.
Select Data
SELECT * FROM t001 INTO TABLE itab.
*------- Field Catalogue
CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
  EXPORTING
    i_program_name         = sy-repid
    i_internal_tabname     = 'ITAB'
    i_inclname             = sy-repid
  CHANGING
    ct_fieldcat            = alvfc
  EXCEPTIONS
    inconsistent_interface = 1
    program_error          = 2
    OTHERS                 = 3.
Display
alvly-box_fieldname = 'FLAG'.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
  EXPORTING
    it_fieldcat             = alvfc
    i_callback_program      = sy-repid "<-------Important
    i_callback_user_command = 'ITAB_USER_COMMAND' "<------ Important
    is_layout               = alvly
  TABLES
    t_outtab                = itab
  EXCEPTIONS
    program_error           = 1
    OTHERS                  = 2.
CALL BACK FORM
FORM itab_user_command USING whatcomm TYPE sy-ucomm whatrow TYPE
slis_selfield.
<b>
IMPORTANT.
  data : m(100) type c.
  m =  whatrow-tabindex.
  condense m.
  concatenate 'Row Number is ' m into m separated by space.
concatenate m ' : Field Clicked is ' whatrow-fieldname into m separated
  by space.
  message m type 'I'.</b>
ENDFORM. "ITAB_user_command
regards,
amit m.

Similar Messages

  • Post user and pass to SOAP Header message in ABAP Proxy

    Hi Folks!
    I'm trying to post user and pass to SOAP Header on an ABAP proxy. I've already read the thread [Consume web service in ABAP proxy with SOAP header|Re: Consume web service in ABAP proxy with SOAP header; and I see that is possible to manipulate SOAP Header but I cannot understand how I work with function module SDIXML_XML_TO_DOM.
    Do I need pass to parameter xml a complete SOAP Envelope? If it is right how can I get the complete xml message to pass to this parameter? I think I don't need the build the xml strucuture as I did on WebAS 6.40, isn't it?
    Thanks in advanced.

    Hi Rafael,
    I would be interested in the solution... could you please post it into forum.
    Thanks and best regards
    Stefan Bosshard

  • How to recover the administrator user and pass

    hello,
    I instaled ORACLEXE few days ago, and accord to the instructions I've been using HR user.
    but now I'd like to login as administrator because i'd like to create a new user. problem is I don't remember the administrato's user and pass.
    what should I do ?
    thanks in advance. Andrea.

    hello everyone.
    thanks for you replies.
    I'm on windowns.
    Problem is that I even don´t remember the name of my "user" administrator. I don´t know if it's "system" or "sysdba" or "administrator" or "root" ... :(
    I´m a student, I don´t know nothing about admin databases.
    in generally when I install something I use to write and keep the user I used to install but this time I forgot.
    - I tried Aman... clue, problem is that I have to connect to the database as SYSDBA to perform it.
    - I didn´t understand Mastalerz clue.
    any more clue, or I'll have to unistall my db ? :(

  • SMB on Server 10.5.6: Vista user needs to enter user and pass after restart

    Hello,
    We have a Vista user running in XP mode connected to SMB on OS X Server 10.5.6. After every log out or restart windows ask the user to enter the user and password. We have checked the remember user and password box but the windows can't remember the user and pass...
    What could we do?

    Is your server bound to AD, and your PC clients as well (probably) ?
    First, stop SMB.
    Then, backup /etc/smb.conf
    Then edit it (use nano or vi or emacs via the Terminal. If you must use the GUI then use TextWrangler.
    Make sure the file permissions are preserved.
    under the [global] section of /etc/smb.conf, make the following modifications (add the entry if it's not there):
    security = ads
    windbind separator = +
    ; auth methods = guest opendirectory
    ie: comment out "auth methods" via the ";"
    Start smb and compare. Anytime you make a change in the GUI tools, verify your edits are preserved.

  • Ask again user and pass, when download query on excel on BW3x

    Dear,
            When try download query at excel, ask me again user and pass, can you help me about that.
    best regards
    OArenas

    Good day,
    This sounds like you are not using an anonymous user or alias users ..??
    When you download into Excel, the cookie for the MIME handler is not held. This means that the system needs to verify the userid/password again. Check out the SAP Notes 516884 and 487456 - there are some other SAP Notes referenced in these that may also be helpful if you still have a problem.
    Regards,
    Karen

  • SharePoint: Workflow to retrieve all users and Create list item record for each user

    Hi all,
    My share point site have two Lists as Holidays and MyCalender.
    Actually Holiday is simple non-Calender list with field as Holiday Date, Reason. MyCalender List Calender type list with Person Look-up column and user can see his own record. User of Manager group will declare holiday. This Holiday should get reflected
    on each user 's MyCalender List.[One listitem as holiday date and reason for each user] so everyone can view that record.
    I have requirement as Manager will create one Holiday record and then run single workflow so for all users present in SharePoint Site, one MyCalender List Item record should get created. Is it possible to do using Workflow?? Please help as I didn't get any
    solution for this.. Thanks in advance!

    You don't need one workflow per user when a filtered view can do this for you.  If the manager's list is the parent calendar, I'm assuming that he'll be at least using the person look-up column.
    Whether this feeds through the MyCalendar or stays where it is, you can use the [Me] parameter within the filter on a new view.  This will then return the assigned holiday filtering against the account that is logged in.
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Connecting to Oracle db with correct user and pass

    OK, Hi, I'm New with java script and here's what I have:
    1- A user login.
    - Once he's authentified he can travel trought the pages.
    2- Each user has special responsabilities
    - So when we execte as request ton the oracle db we connect using a certain db user (and password)
    Now what I need to know is:
    How do poeple usually take that user (and password)
    without hard-coding it in the connection string...
    I know this question may seem weird.. and incomplete, but the only reason is because i'm new with this language and I'm missing some information I have read many tutorials and PDF's but I hope some body can just give me an idea about this.
    Powel [;)]

    Hi,
    I think the easiest way is like this:
    in firstJsp.jsp
    <form action="secondJsp.jsp">
    <input
    type="text"
    name="userName"
    />
    <input
    type="password"
    name="userPassword"
    />
    </form>
    in secondJsp.jsp:
    User name <%=request.getParameter("userName")%>
    User password <%=request.getParameter("userPassword")%>
    I mean, in secondJsp.jsp you will allready have name and password as request parameters.
    But it's not the good and smart way of doing it. If you have to create just few pages then OK, but it doesn't seems so (i think nobody uses ORACLE for small applications).
    You should look at Struts framework. That brilliant thing to create such applications.
    Hope it helps.
    good luck

  • When i change the hard drive does the admin user and pass change ?????

    when i change the hard drive does the adminstrator  user and password change ?????

    bin_bella wrote:
    when i change the hard drive does the adminstrator  user and password change ?????
    Yes, if you do a fresh install of the operating system, it's like a brand new machine.
    No, if you restore from a backup like a bootable clone or TimeMachine drive.
    Most commonly used backup methods

  • Router user and pass

    How do I find this out?
    I think I must of changed it as it is not admin.
    Wrong section prob.

    Ive heard of reseting it.
    But does this just change pass and user to defualt or does it do other stuff?

  • My Iphone will not sync with my itunes after I had to change my user and pass on my pc.  How can I fix this problem?

    I had to reset my username and password on my computer because I must have hit a wrong key when changing password.  Anyway I made a new admin user on my pc and now my iphone will not sync all the way with my itunes.  I flashes a message on the screen saying "you do not have the proper privileges" and stops the sync.  All of my contacts are gone and all of my google calander is wiped clean.  I just want my Iphone to sync now so that I can add contacts again.  What can I do?  Thank you for your time.
    rfondrick

    bogdan0,
    Tried that but did not work.  Thank you for the reply.  However, I did find the correct thing to do though so wanted to share.
    Since on my computer I had to create a new admin account,  I had to go into the shortcut properties of Itunes.  Then hit Compatibility Tab.  Had to check Run as Admin.  
    After hitting Change settings for all users it worked just fine.

  • ACS 5 and IOS command issued records

    on ACS Ver5.2.0.26.11, where can i find the records of IOS command issued from a router?
    thanks,
    Han

    Well, it depends.
    If you're sending accounting messages for commands from your router, it would either be in the report with Radius Accounting or TACACS+ Accounting.
    If you're performing command authorization it would be in the report for TACACS+ Authorization.
    If you provide a 'show run | inc aaa' it should be enough detail to determine what report you need to look at.

  • Macs are asking for user and pass for network printers.

    I have a network of 70 Macs. Some are 10.4 but most are 10.5. In the last week some of the Macs have asked for the admin username and password to print to a network printer that they have been printing to for the last year. Any ideas?
    Note - they only ask once then they can print. This has happened in the past. Is there some policy that makes you re-enter the admin info for security? The password did not change.
    Thanks in advance.

    No idea how many this is happening to, but it sounds like the Keychain is not being read correctly after a login, or have any user passwords been changed?
    Mac OS X 10.4: Keychain Access asks for keychain "login" after changing login password...
    http://support.apple.com/kb/HT1631
    Open Keychain Access in Utilities, use Keychain First Aid under the Keychain Menu item, then either check the Password under that item, change it, or delete it and start over.
    Resetting your keychain in Mac OS X...
    If Keychain First Aid finds an issue that it cannot repair, or if you do not know your keychain password, you may need to reset your keychain.
    http://support.apple.com/kb/TS1544

  • How come I can't connect to my website control panel or website email from the iPad? I keep inserting user and pass and it keeps deleting them without connecting. I tried this on both my websites.

    I haven't managed to go to my website's administration panel since I bought my iPad. Neither of my websites nor the website's email. Otherwise it works fine. Is there something wrong with the sttings? The only thing I can think of is Java and it's on.

    crisbostina wrote:
    The only thing I can think of is Java and it's on.
    That's not possible as iOS doesn't support Java. If your websites require Java to login, you're not going to be able to do it from the iPad.

  • Email Settings Authentication Failed - User and Pass are correct

    Starting late last week I noticed I wasn't getting any tickets, even when I was submitting them. Today I checked my email settings and although they hadn't been changed an unknown error occurred. Figuring a bad address I changed the email server address from server.domain.org to the URL we use to connect phones and access our web mail system. After hitting submit I get a message saying it's an invalid username or password. I've double checked the username and password and I am able to login to our Exchange server (from my computer and the Spiceworks server) using it. I've tried various combinations of the username [domain]\username, [email protected], and [email protected] All fail authentication. I also, for laughs, changed the password on the account. Still fails.Is there something I'm missing? I am using the latest...
    This topic first appeared in the Spiceworks Community

    I'm sorry to learn you are having trouble adding your corporate account, jwh8123. We definitely want to make sure that the information you are using is correct. What is the domain of your email address? For privacy reasons please do not provide your entire email address on this public forum.
    Thanks,
    MichelleH_VZW
    Follow us on Twitter @VZWSupport

  • Hi my ipad is block w old user and pass and dont let me sinc w my other device

    hello

    It's called an "activation lock."  It's an anti-theft mechanism.  It makes the iPad/iPod/iPhone worthless to a thief.  Having said that, there are issues faced by legitimate owners.  In those instances, Apple will remove the lock if AND ONLY IF the owner provides a government photo ID and incontrovertible proof (i.e., proof that will hold up in court) that he/she is the owner.  This proof must be trackable back to the original owner.
    If an Apple Store is convenient, make an appointment with the resident "Genius."  Otherwise, you must ship the device to Apple.  To make arrangements, call 800-275-2273 in the U.S.A. and I think Canada.

Maybe you are looking for