About user dependencies.

hi,
     actually i wannna know about user dependencies . i know that there are two ways to use user dependencies ..........can u elobarate in details about user dependencies in xi..
with examples..in both the ways...
thanks in advances.
jp.

Hi JP,
Check this file on Defining Usage Dependencies:
http://help.sap.com/saphelp_nw04s/helpdata/en/43/e95ac0a0302d56e10000000a422035/frameset.htm
Also check Michal's Blog:
<a href="/people/michal.krawczyk2/blog/2005/08/26/xi-are-you-independentfrom-your-dependencies: Are you Independent...from your dependencies?</a>
Reward if helpful. *
Regards,
Subhasha

Similar Messages

  • How to get more information about users in oracle 11g

    Hi All,
    I need to know more infor about users in oracle 11g.
    1.How to check when user last time login to database.
    2.If user account is lock why it is locked? if it is locked by trying to loing with wrong password how to check how many times he attempted with wrong password...and other reasons also
    3.Wheni was trying to select user expire date it is showing empty value...can we check expire date through querys or we need to check profile?
    4.How to check when he was reset his password last time.
    Please correct me if am wrong. thanks
    Regards

    1.How to check when user last time login to database.AUDIT
    2.If user account is lock why it is locked? if it is locked by trying to loing with wrong password how to check how many times he attempted with wrong password...and other reasons alsoCheck Profile For this user and attr.
    3.Wheni was trying to select user expire date it is showing empty value...can we check expire date through querys or we need to check profile?
    SQL> select EXPIRY_DATE from dba_users ;
    EXPIRY_DA
    24-SEP-11
    24-SEP-11
    24-SEP-11
    24-SEP-11
    24-SEP-11
    24-SEP-11
    24-SEP-11
    23-MAY-13
    24-SEP-11
    24-SEP-11
    24-SEP-11 check
    expiry_date in dba_users is null
    4.How to check when he was reset his password last time.SELECT PTIME FROM SYS.USER$;

  • Where can I get more information about User exits?

    Where can I get more information about user exits,their related Tables and the source code of an User exit?
    Thanks

    would you please give the Internet addresses of these places?
    Mostly I want to get the source of some user exits in Oracle Application.
    If you know how and where can I get these sources,I'll appriciate if you let me know.
    Regards

  • Questions about user-defined functions

    Hello all,
    I've got some questions about user-defined function in a message mapping:
    1) How can I get the current date/time in format yyyy-mm-dd hh:mm:ss ? What is the java code for this?
    2) I want to use the StreamTransformation constant TIME_SENT, only this is not in the right time-zone.
    It is GMT and it should be CET (1 hour difference). How can I convert this in Java?
    Can somebody help me with this?
    Thanks in advance.
    Kind regards,
    Marco van Iersel

    Hi Marco,
    If the date format is fixed as you have mentioned,please use this:
                                    String test = "2009-03-27 23:15:30";
              String test1 = test.substring(11,13);
              if(!test1.equals("23"))
              int a = Integer.parseInt(test1);
              int b = a+1;
              System.out.println("b"+b);
              String c = Integer.toString(b);
                                    test = test.substring(0,10)+" " + c + test.substring(13,19);
                                    return test;
              if(test1.equals("23"))
              test = test.substring(0,10)+ " 00" + test.substring(13,19);
              return test;
                                    else return "";
    Kindly let me know if this works.
    Thanks.
    Regards.
    Shweta

  • Know about user activity

    Hello,
    We have the need of knowing the following data about users:
    1.- How many time is the user conected every day.
    2.- Which days do users  connect.
    We have tried with the audit, sm19, but the information we need is not there.
    I know with STAT/STAD transaction we can seethese data, but it will be a lot of daily work and we cannot aim that time.
    Do you know any other way to do it? Something like some tables to extract the data and make a report?
    Thanks and best regards,
    Alfonso.

    Hi Alfonso,
    You can query table USR02 which contains informations about user, last logon date (TRDAT) and last logon time (LTIME), but the duration is not stored.  
    Also, report RSUSR200 can record the users logon date and time.
    Br,
    Javier

  • A question about users assigned roles extraction

    Dear all,
    I have a question about users assigned roles list extraction. I need the list of the users who have already been created along with their assigned roles. According to what I found on Google, there is a table named AGR_USERS which provides the roles assigned to each user. Yet, this table provides only the SAP ID of each user along with the assigned roles. What I need more is to have also the first name and second name of each user.
    So, do you know any table providing at least the following information:
    1) First name of each user
    2) Second name of each user
    3) SAP ID of each user
    4) All assigned roles to each user.
    NOTE: I really need to have first name and second name in separate columns
    Thanks in advance,
    Dariyoosh

    >
    Shekar.J wrote:
    > Agr_users for the user ID and role assignments
    > USR02 to check the validity of the User ID
    > and USER_ADDR for the first name and last name
    >
    > You can create a Table join of the above 3 tables to retrieve the data you require
    Thanks to you and others for your attention to my problem
    I don't know anything about ABAP programming, is there any transaction allowing to create this join? As it seems to me the column "UNAME" in the table "AGR_USERS" and the column "BNAME" in the table "USER_ADDR", both refer to the SAP ID of the user. As a result the condition of the join would be "WHERE (UNAME = BNAME)", is there  any transaction/programme allowing to create this join?
    Thanks in advance,
    Dariyoosh

  • Want to know about User exit in detail

    Hi ALL,
    I M NEW TO sap ABAP. I WANT TO KNOW ABOUT USER EXIT IN DETAIL. PLS DO THE NEEDFUL . If there are eny document regarding this pls mail to this id [email protected]
    thanks and regards
    Nandha

    Hi Nanda,
    Welcome to SDN,
    Userxits allow us to add our own functionality to SAP standard program
    without modifying it . These are implemented in the form of subroutines and hence are also known as FORM EXITs. The userexits are generally collected in includes and attached to the standard program by the SAP.
    User exits are used when the flow for a particular transaction has to take some other route other then the normal flow. this can be the case when you have to attach some additional functionality lik u need a customised screen, or new functionality (using a functional module). based on these things user exits can be classified as screen exits, function module exits, field exits( not used anymore). hope this gives some help on userexits.
    The naming standard of function modules for functionmodule exits is:
    EXIT_<program name><3 digit suffix>
    The call to a functionmodule exit is implemented as:
    CALL CUSTOMER.-FUNCTION <3 digit suffix>
    To find a Exit.
    Goto Transaction -- Find The Package
    SMOD >f4>Use the Package here to Find the Exits In the Package.
    Else if you Want to search by Application Area wise ,
    There is one more tab to find the Exits in the Respective Application Area.
    Implementing the Exit-- CMOD Create ProjectsAssgn your Component .
    Now Run ur Transaction to Check if it Triggers.
    Thats it..
    For More information on Exits, check these links
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sap-img.com/ab038.htm
    http://www.planetsap.com/userexit_main_page.htm
    http://www.sap-basis-abap.com/sapab013.htm
    http://sap.ittoolbox.com/documents/popular-q-and-a/user-exits-for-the-transaction-code-migo-3283
    These links will help you to learn more on user exits.
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/frameset.htm
    http://www.planetsap.com/userexit_main_page.htm
    http://www.allsaplinks.com/user_exit.html
    www.sap-img.com/abap/what-is-user-exits.htm
    Also please check these threads for more details about user exits.
    Re: Screen exit
    user exit and customer exit
    user exit
    1. Document on UserExits in FI/CO
    http://www.ficoexpertonline.com/downloads/User%20ExitsWPedit.doc
    2. Finding User Exits...
    http://sap.ionelburlacu.ro/abap/sap2/Other_Useful_Tips.html#Finding_User_Exits
    3. List of all User Exits...
    http://www.planetsap.com/userexit_main_page.htm

  • Urgent. Need to know about user exits.

    Hello Everyone,
    I am new to this forum. I need to know about user exits.
    My next project requires me to implement user exits, screen exits, etc.
    I am a rookie to this topic.
    Can anyone help me as to how to start with his topic.
    Any sort of help is appreciated.
    Cheers,
    Neelam.

    Hi Neelam,
    Welcome to sdn.
    This is a very frequently asked topic.
    Please use teh search forum option for this type of queries.
    http://help.sap.com/saphelp_47x200/helpdata/en/c8/19763443b111d1896f0000e8322d00/frameset.htm
    Regards,
    Ravi

  • About user sapsys

    Dear expert,
      I read some message about user sapsys. However, i still could not understand the concept or running mechanism.
    please give me a clear explanation. where can i find this user ? why was there such user sapsys in sm50?.
      thank you very much.

    HI,
    Sapsys is used for internal purpose in SAP server and is not harmful. But if it increases it can be logged off as well. But in many cases sapsys is used for OS jobs, CCMS monitoring hence it may impact if not handled carefully
    SAPSYS is a group. It's used for DEV - QA - PRD to share files (especially /usr/sap/trans), for <SID>adm and ora<SID> to talk to each other and share files also.
    SAPSYS is a user group name in sap os .SAPSYS is an internal communication user, which access the tables from the dictionary and give access to the users.
    Check in SM21 and ST02,
    Thanks
    Ramakrishna.

  • What is being done about users inability to use their Apple ID at iTunes Store. I do not have another Apple ID, I do not want to change my password and I want my phone to work as it should.

    What is being done about users inability to use their Apple ID at iTunes Store. I do not have another Apple ID, I do not want to change my password and I want my phone to work as it should.

    You can try signing out and signing back in. You can also go into Settings > Safari and Clear all Cookies. You can even try logging into the iTunes Store on a computer and downloading a free app or something.
    If none of those work, then you will have to wait for the issue to be resolved on Apple's end.

  • HT5246 What about users with Java installed?

    What about users who have Java installed? Do they not need to run this program? Why?

    The flashback malware removal tool is included in the latest security update. If you've downloaded all your updates, it's been installed and if you got no message you had no malware.

  • Question about user accounts

    Setting up new mini with 10.6 installed. This is my second Mac, current system is eMac with 10.3. All files/media I want to save are backed up on ext. HD.
    This time I want to set up an Administrator Acct. and another User Acct. (without Admin. access) for routine use. Did not know enough to do that the first time.
    But, I want access to all the old files without ownership/privileges problems.
    As I understand it, I can make the user acct. names the same as the names on my acct. on the old system and there should not be any problem? I have a reason for wanting to not do this, but certainly can and probably will, if that will work.
    To help me understand all this, is the "short name" the real account name/identifier? In other words, can I make the user name anything I want as long as the "short name" is the same?

    The info you have given has thrown me for a loop. As I stated in my reply to Scott I am really having trouble understanding this whole account/file ownership issue, although I thought I had it figured out and was seeking verification.
    Regarding your info about copying files from an external drive, how/why does "ignore ownership on this drive" work?
    "ignore ownership" makes all files on the external read+write by any user so there are no issues with permissions.
    Did a lot of research on several Mac help sites before posting here. A common problem seems to be someone wanting/needing to change account name(s) on a system they will continue to use. Common advice given is:
    Create new account.
    Copy/transfer files to new account.
    Remove/delete old account.
    How/why does that work without file ownership/permissions being a problem?
    most files have read permissions by everybody when created so copying them from one account to another is not a problem. please read up on the basic permissions structure
    http://www.perlfect.com/articles/chmod.shtml
    I understand that the real UID is a numeric code. How does the system arrive at that code?
    the very first user account created on any mac has UID 501 by default. the next one 502 and so on.
    It seems to me if I use the same, exact, account name(s), file ownership would not be an issue.
    that's completely wrong. same account name doesn't help in any way at all. same user ID is what's checked.
    for example when you create a file on an external drive and then move that drive to another computer if you access it from an account with the same user ID by a different user name it will show you as the owner.

  • Question about Users and/or ICE

    I am new to BC and already frustrated.
    I have a site created in DW. I want my client to be able to edit some of the general text and edit—add and subtract—the images inside a photo gallery (from a BC module). On of my team has added ICE code to certain items that we want them to be able to change but do not know if—or how—ICE can be applied to images in the photo gallery module.
    So I can use ICE for my client but, after watching and reading several tutorials about how great ICE is, I have not found the answer to the simple question: how does my client access this process? I have also tried to create a limited User for the client but even there I have no clear answer on how to limit the client's access, or for that matter target only the text and photo gallery.
    I am hoping that some kind soul out there will take pity and explain—step-by-step—the best way to accomplish what seemed when I started this process to be a pretty straight forward request. I have gone to several tutorial sites and even found what may be the only book written on BC and after the fact discovered that these materials are already obsolete. Please, help. The account people are breathing down my neck to get this done.
    Thank you in advance for your help.
    Kevin

    useradd --help
    -g, --gid GROUP name or ID of the primary group of the new account
    -N, --no-user-group do not create a group with the same name as the user
    You may set these options.
    useradd -m -g users -G audio,lp,optical,storage,video,wheel,power -N -s /bin/bash thomas

  • Question about user creation.

    So I've created using the Wiki article https://wiki.archlinux.org/index.php/Users_and_groups here.
    I've created a user and gave it a password and added to the wheel, and it works fine. I can login and it starts X and everything, however there is no file structure within the home/username directory. I always see on Arch Wiki and other ones about editing X rc files and what not, and they're referring to ~/.xinitrc or something similar.
    However my X files are located in the root place still. Is this something I should be taking into consideration and changing? I don't want to get further down the road and then have something be setup wrong. As of right now the only folders in my user folder are Desktop and Downloads, and I created those. I'm just wondering if there is something I'm supposed to do to transfer my X server and Window Manager stuff from the root positions to the user level. If running these from a root point is an okay thing to do I'm fine with that, I'm just under the impression I'm not supposed to do that.

    jasonwryan wrote:Don't run X as root. Follow the xinitrc wiki article and move all the files you need to run X as your user to their ~.
    Alright. Thanks for the link, should I follow that as a general rule of thumb(Although I can't see myself really installing anything else as root in the future)? Right now my Display Manager and Window Manager as both installed under root as well, and a couple other things I believe.

  • Weird! modifiction about users.

    It is so weird!
    I am a java developer, using novell ldap api, here is the situation:
    there is a user "cn=foo,o=someorg", password is "123456".
    1. get a connectionPool:
    Code:
    PoolManager poolManager = new PoolManager("192.168.0.1", 389, 10, 5, null);
    2. bind a user:
    Code:
    LDAPConnection lc = poolManager.getBoundConnection("cn=foo,o=someorg", "123456".getBytes());
    3. do some search action:
    Code:
    try {
    LDAPSearchResults searchResults = lc1.search("o=someorg",
    LDAPConnection.SCOPE_SUB, "cn=*", new String[] {
    "objectclass", "cn" }, false);
    System.out.println(searchResults);
    LDAPEntry entry = null;
    while(searchResults.hasMore())
    entry = searchResults.next();
    System.out.println(entry);
    //lc1.disconnect();
    } catch (LDAPException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    poolManager.makeConnectionAvailable(lc1);
    console print LDAPEntry
    4. delete this user:
    lc.delete("cn=foo,o=someorg");
    5. add the same user with the same password:
    Code:
    LDAPAttributeSet attributeSet = new LDAPAttributeSet();
    attributeSet.add(new LDAPAttribute("objectclass", new String(
    "inetOrgPerson")));
    attributeSet.add(new LDAPAttribute("cn", new String("foo")));
    attributeSet.add(new LDAPAttribute("sn", new String("foo")));
    attributeSet.add(new LDAPAttribute("userpassword", "123456"));
    LDAPEntry newEntry = new LDAPEntry("cn=foo,o=someorg", attributeSet);
    lc.add(newEntry);
    6: repeat step 2 and 3.
    got a exception:
    Code:
    LDAPException: Other (80) Other
    LDAPException: Server Message: NDS error: transport failure (-625)
    LDAPException: Matched DN:
    at com.novell.ldap.LDAPResponse.getResultException(Un known Source)
    at com.novell.ldap.LDAPResponse.chkResultCode(Unknown Source)
    at com.novell.ldap.LDAPSearchResults.next(Unknown Source)
    at net.risesoft.platform.TestLdap.main(TestLdap.java: 61)
    nds trance:
    Code:
    08:00:00 B48 LDAP: Failed to duplicate context 0x59270041 in DuplicateNDSContext, err = transport failure (-625)
    08:00:00 B48 LDAP: Failed to duplicate context 0x59270041 in DuplicateConnContext, err = transport failure (-625)
    08:00:00 B48 LDAP: nds_back_search: DuplicateConnContext for search failed, err = transport failure (-625)
    ps: when i create the same user with different password, it goes
    right.
    weird! is'nt it ?
    kings36503
    kings36503's Profile: http://forums.novell.com/member.php?userid=19894
    View this thread: http://forums.novell.com/showthread.php?t=372433

    Do you have some kind of pause between the delete and then add of the
    user object?
    The description of the error is that there is something wrong on your
    LAN or with the communication between the servers. Perhaps you're trying
    to delete and then recreate the same user before the servers can
    finalize the "destruction" of the object and sync that information.
    Just a wild guess from my part though, but I've seen some strange error
    when trying to do something faster than the server wants to do it.
    About the new password then it succeeds, perhpas the generation of new
    keypairs gives the server the extra time it needs to get in sync?
    Somthing also says to me that 625 sometimes occurs when the servers are
    temporary busy. I think I've seen it when I've ordered dsrepair to
    report time sync status.
    Hope this gives you something to go on, a bit late reply perhaps.
    Regards
    Anders
    >>> On 2009-05-12 at 05:46,
    kings36503<[email protected]> wrote:
    > It is so weird!
    > I am a java developer, using novell ldap api, here is the situation:
    > there is a user "cn=foo,o=someorg", password is "123456".
    > 1. get a connectionPool:
    >
    > Code:
    > --------------------
    > PoolManager poolManager = new PoolManager("192.168.0.1", 389, 10,
    5,
    > null);
    > --------------------
    >
    > 2. bind a user:
    >
    > Code:
    > --------------------
    > LDAPConnection lc =
    poolManager.getBoundConnection("cn=foo,o=someorg",
    > "123456".getBytes());
    > --------------------
    >
    > 3. do some search action:
    >
    >
    > Code:
    > --------------------
    > try {
    > LDAPSearchResults searchResults = lc1.search("o=someorg",
    > LDAPConnection.SCOPE_SUB, "cn=*", new String[] {
    > "objectclass", "cn" }, false);
    > System.out.println(searchResults);
    > LDAPEntry entry = null;
    > while(searchResults.hasMore())
    > {
    > entry = searchResults.next();
    > System.out.println(entry);
    > //lc1.disconnect();
    > }
    > } catch (LDAPException e) {
    > // TODO Auto-generated catch block
    > e.printStackTrace();
    > }
    > poolManager.makeConnectionAvailable(lc1);
    > --------------------
    >
    > console print LDAPEntry
    >
    > 4. delete this user:
    >
    > lc.delete("cn=foo,o=someorg");
    >
    > 5. add the same user with the same password:
    >
    >
    > Code:
    > --------------------
    > LDAPAttributeSet attributeSet = new LDAPAttributeSet();
    > attributeSet.add(new LDAPAttribute("objectclass", new String(
    > "inetOrgPerson")));
    > attributeSet.add(new LDAPAttribute("cn", new String("foo")));
    > attributeSet.add(new LDAPAttribute("sn", new String("foo")));
    > attributeSet.add(new LDAPAttribute("userpassword", "123456"));
    > LDAPEntry newEntry = new LDAPEntry("cn=foo,o=someorg",
    attributeSet);
    > lc.add(newEntry);
    > --------------------
    >
    > 6: repeat step 2 and 3.
    > got a exception:
    >
    > Code:
    > --------------------
    > LDAPException: Other (80) Other
    > LDAPException: Server Message: NDS error: transport failure (-625)
    > LDAPException: Matched DN:
    > at com.novell.ldap.LDAPResponse.getResultException(Un known Source)
    > at com.novell.ldap.LDAPResponse.chkResultCode(Unknown Source)
    > at com.novell.ldap.LDAPSearchResults.next(Unknown Source)
    > at net.risesoft.platform.TestLdap.main(TestLdap.java: 61)
    > --------------------
    >
    > nds trance:
    >
    > Code:
    > --------------------
    > 08:00:00 B48 LDAP: Failed to duplicate context 0x59270041 in
    > DuplicateNDSContext, err = transport failure (-625)
    > 08:00:00 B48 LDAP: Failed to duplicate context 0x59270041 in
    > DuplicateConnContext, err = transport failure (-625)
    > 08:00:00 B48 LDAP: nds_back_search: DuplicateConnContext for search
    > failed, err = transport failure (-625)
    > --------------------
    >
    >
    > ps: when i create the same user with different password, it goes
    > right.
    > weird! is'nt it ?

Maybe you are looking for

  • Remote Control and RDP sessions

    Is anyone else experiencing the following using ZEN 11 SP1 with Windows 7 SP1... A user is accessing their machine via RDP and needs assistance so we attempt to use zenworks remote control to connect to their desktop, but all we see is the ctrl-alt-d

  • How do I stop Calendar from making up things....?

    Hello. This is the situation. I try to write posts in my Calendar (OS X 10.10), but when I enter a place, Calendar automatically changes that to what's in its mind – which is NOT what I intended. For example: I enter the number of a conference room a

  • File read or delete error in oracle jca adapter is not being caught in java

    Hi, I am using oracle JCA file adapter to read and process file and that jca is being used in OSB. This is working fine. But if the file is not in proper format or file is alredy opened,jca is throwing error on console and control is not going to OSB

  • Heading for Report appearing more than once

    Hi All, I am running a report, the report contain more than 1 lakhs records, how can I avoid the heading of the report to repeat, because as of now heading information is repeating for 50 records. Please advice how to proceed on this issue. Thanks, M

  • Updated to ITunes 10.6.3 and now the program will not open.

    Using WIndows 7 on this particular machine (don't hate - two other Macs and two IPhones in the house too).