UserId for DB in psappsrv.cfg

Hi,
psappsrv.cfg
can we use people for user id :
;=========================================================================
; Database Signon settings
;=========================================================================
DBName=MYDB
DBType=ORACLE
UserId=people
UserPswd=password
What is the default UserId ?
Thank you.

Usually you use the schema owner username and password. That's wrong. The userid in the[i] psappsrv.cfg is not a database user. It is an application user. And this has nothing to do with database side and any synonyms.
Basically, and to make short, Peoplesoft, on the startup of the apps is connecting to the database within the connectid (user people), check the availability and application roles for the userid you set (in PSOPRDEFN - there is no database users into that one table), then check the owner of Peoplesoft objects in PSDBOWNER for the dbname you set in the apps config file, and connect with that user by taking the password in PSACCESSPRFL for that particular owner.
However, the userid might be the owner of the Peoplesoft objects when you connect to DMS tools, we are speaking about bootstrap mode connection. But that has nothing to do with the userid in the apps config file.
Nicolas.

Similar Messages

  • Make IT0105 accept same SAP userID for multiple PERNR

    hi,
    How do i make IT0105 accpet multiple SAP UserId for multiple PERNR for a single PERSON ID. this has to be done for a Concurrent Employee landscape.
    All PERNRs of a single PERSON ID should have same userid in 0105. How do i copy uname for all PERNR.
    ags.

    Hi,
    This is a standard control.
    System checks the value MAIL SAPSY in table T77S0 and for that specific subtype of 0105 does not allow multiple entries.
    Changing the value in T77S0 - as indicated in its help - would harm your system and is not recommended.
    Regards,
    Dilek

  • SSO userid for a partner application

    Hi,
    We have one application deployed on WebLogic Application Server this is registred as Partner application over SSO server.
    On application side we have installed Oracle HTTP Server as webserver and configured mod_osso.
    Now when user attempt to access any secured page SSO askes for the authentication. And on successful login user landed back to application page configured while creating Partner application.
    After login we need userid of user who logged in on sso server. I have tried following and getting null.
    Remote User: <%=request.getRemoteUser() %>,
         Proxy-Remote-User: <%=request.getHeader("Proxy-Remote-User") %>
         Osso-User-Dn: <%=request.getHeader("Osso-User-Dn") %>
         Osso-User-Guid: <%=request.getHeader("Osso-User-Guid") %>
         Osso-Subscriber: <%=request.getHeader("Osso-Subscriber") %>
         Osso-Subscriber-Dn: <%=request.getHeader("Osso-Subscriber-Dn") %>
         Osso-Subscriber-Guid: <%=request.getHeader("Osso-Subscriber-Guid") %>
         Accept-Language: <%=request.getHeader("Accept-Language") %>
    output:
    Remote User: null,
    Proxy-Remote-User: null
    Osso-User-Dn: null
    Osso-User-Guid: null
    Osso-Subscriber: null
    Osso-Subscriber-Dn: null
    Osso-Subscriber-Guid: null
    Accept-Language: en-us,en;q=0.5
    Is any one there knows, what exactly i should do?
    Thanks & Regards,
    Kevin Chheda

    So the user has successfully authenticated and can access protected areas of the application?
    Have you tried using Http headers to see values/attribute names?
    Can you try this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <body>
    <%@ page import = "java.util.*" %>
    <h1>Headers received:</h1>
    Remote user header is: <% out.println(request.getRemoteUser()); %>
    <p>
    <table>
    <%
    Enumeration headerNames = request.getHeaderNames();
    while(headerNames.hasMoreElements()) {
    String headerName = (String)headerNames.nextElement();
    out.println("<tr><td>" + headerName);
    out.println(" <td>" + request.getHeader(headerName));
    %>
    </table>
    </body></html>

  • How to get Win NT userid for setting VPD application context?

    We are planning to implement row-level security using VPD. For that to happen, we need to capture the Windows NT userid since all the applications connect through a generic Oracle userid which will not help us.
    Has anyone done this before? Your responses are appreciated.
    Thanks.

    SELECT osuser
    FROM v$session
    WHERE audsid = (SELECT USERENV ('sessionid') FROM dual)

  • Generic UserID for a Subject Area for 10 users with individual my folders

    Hi Experts,
    I have a requirement to create a generic user for a subject area so that all the 10 users of that particular subject area should able login with the same username and if they create any reports it should be saved to their individual my folders, which means all the users should have their individual folders even though they login with one generic userid. Can anyone help me in this. Actually is this possible?
    Thanks in advance.
    Edited by: user12559013 on Feb 28, 2013 4:23 AM
    Edited by: user12559013 on Feb 28, 2013 6:10 AM

    Think about it...
    >
    all the users should have their individual folders even though they login with one generic userid
    >
    ...log on with one userid...for all intents and purposes they are THAT user.
    Not possible.

  • Unable to resolve UserID for Henryk Uluszczak.  User will not be synchroniz

    Can you tell me what's that error. What is the reason for this.
    System ver webtools 6 SP01

    Hi Lucasz,
    You have selected email address to be used as the userid in the synch manager and this contact has none.
    Either that or no value found in web tools userid UDF
    What is the B1 Contact Synch set to on the Settings page of the Synch manager?

  • Can we change the UserID for a document without logging off using DIAPI

    Is it possible to change userid in a document using DI API?
    The senario is that I have logged in with a user for which there is no authorization to add or update BP Master.
    But in a special case I want him to change a particular field.
    So how can i do this.
    If yes, can somebody help me on how we can do this...

    Sorry I don't really have time for a full sample so the basic idea is:
    DI_company1 -> This is your logon with the user who is not authorised. When they trigger the scenario where they need to update the field they are not authorised for (and I can't give you a sample for that, it is completely up to your scenario) do the following
    DI_Company2 = new SAPbobsCOM.Company
    //Here supply it with all the usual connection information to your DB but
    //with a user who *IS* authorised
    DI_Company2.Connect()
    SAPbobsCOM.Documents oDocument = DI_Company2.GetBusinessObject(oOrders);
    oDocument.GetByKey(keyOfDocumentToUpdate)
    oDocument.MyFieldToUpdate = "Value to Update with"
    oDocument.Update()
    DI_Company2.Disconnect()
    The basic idea is that you are connecting a second time with your addon, with a new company object, using a user who is authorised & then disconnecting when finished. Your original connection (DI_Company1) is still connected and valid.
    Code is a horrible mix between VB and C# syntax because I don't have an editor to hand
    Good luck!

  • Necessary Roles/authorizations required to Userid for workflow assignment.

    Hi all,
    Am working on a Custom workflow assignment.
    This is the first time, customer is working on workflows in this system.
    Henceforth, we need to do basic setup/configuration, before starting actual work.
    I want to know, what all Roles/authorizations are required for my userid throughout the assignment.
    Currently, we have got,
    EXX_BC_SAP_ALL_RESTRICTED :: All authorization without basis
    SAP_BC_BMT_WFM_ADMIN::Administrator for Business Workflow
    SAP_BC_BMT_WFM_DEVELOPER::Developer for Business Workflow
    SAP_SWFMOD_ADMIN::Workflow Modeler Administrator
    Are these sufficient or do we need any other roles?
    With above authorizations, i am unable to access below mentioned t-codes,
    SWNCONFIG                     Extended notifications for business workflow
    SWU3                             Automatic Workflow Customizing
    SWWCOND_INSERT     Schedule background job for work item deadline monitoring
    SWWCLEAR_INSERT     Schedule background job for clearing tasks
    Pls let me know the role, i need to get for above t-codes.
    Kindly go thru your SU01 t-code & let me know what all roles are used in your workflow system.
    cheers.
    santosh.

    Hi,
    I recommend you to have roles related to SWLD tcode (SAP menu Workflow). The basis must know what are the exact names.
    These are some roles:
    SAP_BC_BMT_WFM_ADMIN                    --> Administrator for Business Workflow
    SAP_BC_BMT_WFM_CONTROLLER         --> Process Controller for Business Workflow
    SAP_BC_BMT_WFM_DEVELOPER                --> Developer for Business Workflow
    SAP_BC_BMT_WFM_GP_ADMIN                --> Role for Guided Procedure Business Workflow Administrators
    SAP_BC_BMT_WFM_GP_SERVICE_USER -->Service User for Guided Procedures Business Workflow API
    SAP_BC_BMT_WFM_PROCESS              --> Business Workflow Implementation Team
    SAP_BC_BMT_WFM_UWL_ADMIN              --> UWL: Administrator for Workflow Functionality
    SAP_BC_BMT_WFM_UWL_END_USER         --> UWL: End User for Workflow Functionality
    SAP_SWFMOD_ADMIN                              --> Workflow Modeler Administrator
    SAP_SWFMOD_TRANSPORT                         --> Access to transport manager
    SAP_SWFMOD_USER                              --> Workflow Modeler Administrator
    SAP_WF_ADMINISTRATION                         --> Business Workflow: Work for administrator
    SAP_WF_CONTROLLER                              --> Business Workflow:Work for process controller
    SAP_WF_EVERYONE                              --> Business Workflow: Work for Everyone
    SAP_WF_IMPLEMENTATION                         --> Business Workflow: Work for Implementation Team
    Regards,

  • Authid= RWUser for excel reports. Authid=userid for pdf reports

    I have the following 2 questions:
    1) I get the following error when I try to run a jsp report (for excel output), when I pass authid (that is the actual userid who is running the report)
    javax.servlet.jsp.JspException: REP-50171: Authentication failed
    2)When I run a pdf report, I go through the rwservlet. In that case if I pass the authid as parameter, the correct value is passed. However, when I run an excel report, From the UI (jsp), the report (jsp) is invoked without going through the rwservlet (the way we invoke rdf's). In that case the auth id that is passed to the report is not the actual user id but RWUser. Where am I going wrong that the authid is not the actual userid but RWUser in case of excel (jsp) reports?
    This is how I invoke jsp:
    http://servername:port/reports/prj/prjreports/repname.jsp?....

    Questions rephrase:
    1. Is the output is same for HTML and Excel options ?
    2. Why the output is viewable with HTML option and not with Excel option ?
    Customer has XML Publisher Version 5.0.1 and in the process of applying 5.6.1
    Thanks,
    V

  • Audit- No userID for modify security task(?)

    BPC 5.1 SP3
    We have auditing on, and it seems to be working. However, any time an admin modifies a user's profile, the audit report shows the activity but there's no UserID or MachineID for the record. I checked the audit table AuditActivityHdr... and there's no data stored in those fields for any "Modify User" task.
    Is this by design? How would we know who modified a user's profile?

    If you enabled the audit to register all the activities regarding administration module then normally it should be registered. If it doesn't register this admin activity means it is a bug and you have to report this one.
    Regards
    Sorin Radulescu

  • Question on service userid - for RFC call

    Hi
       In XI 3.0 SP18 , we are making a RFC call from XI mapping runtime - to XI's ABAP stack - RFC function module . In the RFC receiver communication channel , I tried using service user XIISUSER , XIAPPLUSER for this RFC call - I got short dumps on XI ABAP stack mentioning that these two service users do not have authorization to make RFC calls -
    Does anybody out there know what service user on XI has RFC call authorization that can used to make RFC calls onto XI ABAP stack from its mapping runtime ?
    Correct answers will be rewarded rightaway. Thanks for your time in advance.

    Hi,
    u have to make entry in sld...
    Hi,,
    2 Introduction
    Configuring IDoc adapter in Exchange Infrastructure 3.0 requires some configuration on the SAP
    systems, for both XI and the backend system where the IDoc message is to be sent. These steps, although
    simple, are many times missed or mis-configured, causing the delivery of messages to fail.
    Since IDoc adapter uses the ABAP stack, instead of J2EE, the configuration requirements are mainly in
    ABAP.
    Setting up IDoc adapters requires the XI integration server to be able to communicate with the backend
    SAP system, and also to make sure that the Logical System Name used when posting IDoc exists on the
    backend SAP system.
    3 The Step By Step Solution
    The basic steps for the IDoc configuration are outline below:
    1. Configure SM59 on XI to communicate to SAP backend system.
    2. Configure port on XI for IDoc communication.
    3. Create or verify the Logical System Name on the SAP backend system.
    4. Create or verify business system in XI’s System Landscape Directory.
    5. Verify the Logical System Name of the business system.
    6. Verify or add the Logical System Name for the sender business system.
    7. Create/configure the Communication Channel for the IDoc receiver adapter
    3.1 Configure SM59 on XI to communicate to SAP backend system.
    1. Using transaction SM59, create an RFC destination with Connection Type = “3”.
    In this example, the RFC destination name is “NDVCLNT510”.
    2. Enter the logon information:
    3. Test the connection by clicking on “Testing connection” and “Remote logon”.
    Both must be successful.
    3.2 Configure port on XI for IDoc communication.
    4. Go to transaction IDX1 on XI, and create a port. In this example, the Port name is “SAPNDV”.
    • &#61472;The Port name must be in the form of “SAPxxx”, where xxx is the system ID of the backend SAP
    system.
    • The Client must be the client number of the backend SAP system.
    • Select the RFC Destination which was created in the previous step.
    3.3 Create or verify the Logical System Name on the SAP backend system.
    5. Enter transaction SALE on the SAP backend system.
    6. Create or verify the Logical System Name. In our example, NDVCLNT510 is verified.
    3.4 Create or verify business system in XI’s System Landscape Directory.
    The business system name for the SAP backend system must contain a valid Logical System Name. This Logical System Name is the one verified or created in the previous step.
    7. In the System Landscape Directory, select the SAP backend business system. If one does not exist, then create the business system. Verify the Logical System Name.
    3.5 Verify the Logical System Name of the business system.
    8. In the Integration Directory, doubleclick on the business system (in our example, it is NDVCLNT510).
    Navigate the menu:
    Service • Adapter Specific Identifiers.
    If information is empty or incorrect, then it will have to be synchronized with the content of the System Landscape Directory. Follow the steps below for synchronization.
    9. (Optional) Synchronization of the business system in Integration Directory to the business system in System
    Landscape Directory.
    • &#61472;Double-click on the business system in the Integration Directory.
    • &#61472;Switch to Edit mode.
    • &#61472;Select menu: Service • Adapter-Specific Identifiers
    10. (Optional) Within the dialog box, click on the button as indicated below to resynchronize.
    11. (Optional) If the expected data from the System Landscape Directory is not updated, then the SLD cache may need to be cleared first.
    3.7 Create/configure the Communication Channel for the IDoc receiver adapter.
    15. In the Integration Directory, create an IDoc receiver communication channel.
    • &#61472;The RFC Destination is from step 3.1.
    • &#61472;The Port is from step 3.2.
    NOTE:
    There is no need to create an IDoc sender Communication Channel for XI. Instead, the backend SAP system must be configure to send the IDoc to XI.
    4 Appendix
    Transaction: IDX2
    There are a couple of situation where IDX2 can be useful on the XI system.
    1. When we want to test connection between the XI and SAP backend system.
    2. When an IDoc has changed, and the meta data stored in XI needs to be update. When an IDoc is sent from the SAP backend system to XI, XI will first check to see if the meta data for the IDoc is already in its persistent cache. If not, then XI will use the configuration in IDX1 to retrieve the IDoc meta data from the backend system. If the
    meta is already in cache, then it will NOT do so. Therefore, when an IDoc has changed, it is necessary to manually update the new meta data on XI, or delete it from the cache, so that the latest version can be retrieved. IDX2 is used for this purpose.
    Go to transaction IDX2 and click on “Create”.
    Enter the IDoc Type and the Source Port as defined in step #2. Click “Continue”.If successful, the following will show up. If error occurs, then the IDX1 configurations will need to be re-checked.
    Reward points if find useful.

  • Extract BI UserID for reporting

    Hi Gurus,
    What table/infoobject  in BI contains the UserID information? I need this to display in s report. Please help.
    Thanks
    Anita

    hi Anita,
    you can try infoobject 0TCTUSERNM.
    user info is stored in tables USR*
    check also table USER_ADDR, USER_ADDRP, USER_ADDRS,
    and view V_ADDR_USR; 
    hope this helps.

  • Where does Firefox save UserID for Verizon Mail?

    I use Verizon Mail with Firefox. The User ID
    for verizon mail is one's email address. However,
    if you mistakenly type something else other than
    the correct User ID in the box, the computer
    dutifully remembers it along with the correct
    one! Where does Firefox save these User IDs
    for Verizon Mail so that I can kill the incorrect
    ones?

    Almost. You have to highlite the offending entry
    and then HOLD down the Shift Key and then
    hit the Delete Key. I found this answer that
    works by searching on the web which led me
    back to this site. The original posted question
    was stated somewhat differently than mine.
    Thanks,
    SgrB2

  • Set custom database userid for report schedules

    Hi,
    I am writing a c# program to reschedule reports deployed to CRS 2008. I am able to reschedule reports, but not able to use custom database username/password. All my schedules still use the original database settings from the report even after setting the property "UseOriginalDataSource" to false. Below is the code snippet I am using. Am I missing something here?
                   ReportLogons rptLogons = report.ReportLogons;
                        for (int j = 1; j <= report.ReportLogons.Count; j++)
                            ReportLogon rptLogon = rptLogons[j];
                            rptLogon.UseOriginalDataSource = false;
                            rptLogon.CustomUserName = "sykampillila";
                            rptLogon.CustomPassword = "facets";
                            rptLogon.CustomDatabaseName = infoObj.ProcessingInfo.Properties["SI_LOGON_INFO"].Properties["SI_LOGON1"].Properties["SI_DB"].ToString().Trim();
    Thanks
    Ajith

    Did you check the new instance using Query Builder?
    Sincerely,
    Ted Ueda

  • Userid for ICM admin

    Hi
    When i click on ICM in sap mmc it is asking for a username and password
    I have tried icmadmin and icmadm, but did not work.
    Pls let me know of what user id has to be used for the same

    Hello,
    logon your server with <sid>adm
    go to sap executable directory
    cd C:\usr\sap\<SID>\SYS\exe\uc\NTI386
    create user / password with tis command:
    icmon -a
    try to access icm module on sap mmc with this user/password
    best regards

Maybe you are looking for

  • Need help on -- Size of object

    how do i get the size of the object ? Thanks in Advance

  • How to setup iMessage correctly to avoid double replys

    Hi there. I have just installed Mountain Lion on my macbook air. I also have an iPhone. I now have connected my account with iMessage on the macbook. I am using the same account on my iPhone. So far so good. I then start a chat in iMessage from my ma

  • How do I wireless on my older mac mini

    I recently purchased an older Mac Mini and it does not have wireless, is there anything I can buy to make it wifi compatible? I can use ethernet to connect to my internet service, I want to be able to use wireless keyboard and mouse.

  • Movement type 311- get value against a material

    Hi All, I can get a report of stock value and qty against a material from MCBE report. But for movement type 311,I am getting only the stock qunatity but not value. Will there be associated value for this movement type. Is there any other way where I

  • Multiple document roots on one instance of weblogic server..

    Hi, Is it possible to configure multiple document roots for one weblogic server? Here is my situation... We have a sun box which is having 4 IP addresses. We would like to have a document root for each IP address, but we want to run a SINGLE weblogic