Logged in SubPortal Name

How can I pick logged in SubPortal Name? I need to show it in a view.

Thanks for the suggestion. Currently the Apps version is 11.5.10.2 only.
Can you please help me finding out how the same could be achieved?
Thanks,
Viral.

Similar Messages

  • How to get current logged-in user name in data access driver or in universe

    In universe, to get the current log in user is via @Variable('BOUSER').
    Right now, I need to be able to get the user name in the data access driver. I am writing a customized data access driver because we need to patch some where clause on the the query generated by the universe based on the logged-in user info. I only think of using end_sql parameter or adding an universe level filter to patch the @Variable('BOUSER') to the query, which would not work if user want to use customized query.
    Can anyone tell me how to get currentBO user name from connection server ? or how @Variable('BOUSER') is translated into the logged-in user name in the universe?

    I do not know your EJB Service. But you should pass the credentials of the current logged on portal user to your service. That's not by default I think.
    I had a similar problem with CAF developed webservices. I had to turn on permission checks in my web service and passed the credentials via logon ticket.
    Regards, Bernd

  • How to get logged in user name from windows service c#

    i use the below code to get logged in user name.
    private string GetLoggedInUser()
    string userName = "";
    if (System.Security.Principal.WindowsIdentity.GetCurrent() != null)
    userName = System.Security.Principal.WindowsIdentity.GetCurrent().Name;
    return userName;
    just do not understand why it is not giving a logged in user name rather it is return data in this format
    NT AUTHORITY\SYSTEM but i want to get user name.
    i try to run my service as Local Service and local system account but in every case i am getting this string
    NT AUTHORITY\SYSTEM instead of logged in user name.
    so please guide me what to change in code. thanks

    System is the account the service is running under.
    There can be none or many interactive users be logged in. What if none or multiple are logged in? Which one are you referring to then?
    Armin

  • Get logged in users name for email notification

    Hi all,
    I am using LC Update 1 with email notifications. In the notification email I would like to write:
    Hi "logged in users name"
    You have got a task in your to do-list...
    The thing is that I can not get the id of the user because the email is sent before he/she completes any step in the process. So I guess I need to look up the user in the same way as the notification-function makes the lookup... How is this done?
    Can you help me here?
    Sincerely
    Kim

    You can use a parameter for the user ID:
    http://livedocs.adobe.com/livecycle/8.2/wb_help/001330.html
    scott

  • How to get/capture log-on user name on PC (work station)

    Hi,
    Colud anyone give me how to get/capture log-on user name on my PC (work station)?
    I need to get the infomation by using a function module.
    Kind regards,
    Hisao

    Hi,
    TH_USER_INFO shows me terminal ID, IP address and other information. howerver it does't show me log-on user name of OS.
    Kind regards,
    Hisao

  • OAM logs backend table name to retrieve log files

    Hi All,
    What's OAM(Oracle Applications Manager) logs backend table name to retrieve log files?
    We are using:
    DB:11.1.0.7.0
    Oracle Apps:12.1.1
    OS:Red hat linux 4 86x64
    Thanks for your time!
    Regards,

    Hi,
    You can find the list of tables in (Note: 332103.1 - Purge Debug Log And System Alerts Performance Issues).
    Thanks,
    Hussein

  • File Based logging: Control file name based on calling service

    In the file logging, I need to change the "Prefix" and "Suffix" that I can type in, from page "FILE Transport Configuration" while creating
    business service with transfort: File. I need to be able to supply these values for the file name from proxy service activity.
    I am creating as logging proxy service which will be called from all the other proxy services. I am planning to use logging to File System based on
    BS for achieving this. I need to be able to create a new file with name that corresponds to the calling service. How can I achieve this?
    Also this service should be able to turn logging on or off based on the calling service. I should be able to turn off the logging completely or
    turn off the logging only for few services.
    What is the best way to achieve this?

    HI
    That means your file name would be decided at run time . so u can use adapter specific mesage attributes in ur communication channel
    please refer tto the same here
    /people/william.li/blog/2006/04/18/dynamic-configuration-of-some-communication-channel-parameters-using-message-mapping
    Dynamic File Name Part 1
    /people/jayakrishnan.nair/blog/2005/06/20/dynamic-file-name-using-xi-30-sp12-part--i
    Dynamic File Name Part 2
    /people/jayakrishnan.nair/blog/2005/06/28/dynamic-file-namexslt-mapping-with-java-enhancement-using-xi-30-sp12-part-ii

  • Logging correct user name when creating users

    I wrote a function that creates users through a portlet in version 3.0.9.8.4 It works fine except for logging who created the user. The schema where the functions and procedures are used gets updated in the wwsec_person$.created_by_dbuser field. The created_by field comes up as 'PUBLIC'. How can this field be updated through an API. The add_portal_user procedure has a p_db_user parameter, but that doesn't appear to work; whatever I put in that field doesn't show up anywhere.
    How can I pass the user_name who's creating the user in my function so it updates the wwsec_person$.created_by field? Or please tell me if it can't be done; then what does the add_portal_user.p_db_user param do anyway?
    Thanks,
    Rick

    Hi,
    Every portal user is mapped to a DB schema. Many portal users can be mapped to one DB schema. The p_db_user is the name of the DB schema. The portal user has the DB privileges of the p_db_user or DB schema. The created_by is automatically taken to be the DB schema of the portal user logging in.
    Thanks,
    Sharmila

  • Capture href onclick and log the file name to the database table

    I need somehelp with JSP, JavaScript and Java. When a link to a .wav file is clicked, it need to play the file by calling playSound(); function of Windows Media Player, and then capture the name of the file and call a java function to send the information to mySQL database where it will be logged in the file name will be recorded in a table. I am having rough time for being able to call the java function from the jsp function. I am aware that the jsp variable, in this case the file name that was clicked, can not be called in Java but I do not know any other way to do it.
    Please Help....
    I have made a few changes to the code now. Here is my latest code. I still need some help with onClick event. It does not work as intended.
              <a href="WaMu_Recording/<%out.println(strFileName);%>
                   onclick="<%
                             mymes.logFilePlayed(strUser, strPassword2, strFileName);
                        %>;
                             playsound('<%out.print(strFileName);%>');">
                        <%
                             out.print(strFileName);
                        %>
              </a>
    The program appears to be executing the first part of the onClick, mymes.logfilePlayed(strUser, strPassword2, strFileName) as soon as the page is loaded because I can see the all of the records added to the database even before any of the href is clicked.
    onclick should execute calling of the functions logFilePlayed and playsound when the click event occurs.
    Edited by: uncleshah on May 21, 2008 5:26 AM

    Here is how it was solved:
    1) A hidden text box was created for each of the href using the following html script:
         <input type='hidden' name='<%out.print(fileViewed);%>' style="display:" value="" id='<%out.print(intNumber);%>' />
    the name was like an array. So the fields were named: fileViewed1, fileView2, fileView3.... and so on.
    2) Here is the onClick event for the href field:
    onclick="playFile(
              '<%out.print(intNumber);%>',
              '<%out.print(strFileName);%>',
              '<%out.print(fileViewed);%>'
    3) Here is the playFile function:
    <SCRIPT language="JavaScript">
         function playFile(fileNumber, strFileName, fileViewed)
              var desc =document.DisplayFiles.elements[fileViewed];
              desc.value = strFileName;
              playsound('strFileName');
    </SCRIPT>
    Note that fileNumber param is not used.
    4) Upon submit of this form. A new page was opened and here is the code for the new form.
    boolean moreFiles = true;
    String fileName;
    String somethingBack = "";
    myMessage mm = new myMessage();
    int i = 1;
    String strPara ="fileViewed" + i;
    while(moreFiles)
         fileName = request.getParameter(strPara);
         if (fileName != null) {
              if (!(fileName).equals(""))
    // this function on the server side create a record for each file played.
                   somethingBack = mm.logFilePlayed(userSess, password, fileName);
                   ++i;
                   strPara = "fileViewed" + i;
         } else {
              moreFiles = false;
              mm = null;
         } //if else
    } //while          
    This is about 10 days of work in a very short note. I hope that someone will benefit from this work.

  • Agent Logs under agent names shows no information in CSD

    I have 1 supervisor and that supervisor needs to see the agent logs under each individual agent name but for some reason there is nothing being reported there. If an agent takes a call or makes a call, inbound or outbound will appear under the agent name with data but logs just will not show anything. Is there a setting somewhere i'm missing?          

    You may have already checked this and apologize if you did, but have you verified that the supervisor is configured to see the columns under the Logs?
    In Supervisor, go to View - Preferences.  In the window that appears, go to Team - Agent - Logs and click on "Configure" on the right side, in the "Columns" field.  Make sure that the columns have a check mark next to them.
    If that is ok, have you tried running Supervisor from a different machine to see if that works?

  • When i go on a site we use daily it now wont let us log in user names ok not the password

    when we try and log in on our site it will accept user name not the password normally does ok

    Hi Wayne!
    I assume you get an error message about wrong password on the site every time you try to log in?
    There can be several possible reasons for this problem, here are some links to KB articles that may prove helpful in solving your issue:
    [[Cannot log in to websites]] I think is the most likely guide to help you solve this problem.
    [[Username and password not remembered]] is another possible problem cruncher.
    Please try following these guides to identify the problem and get it solved.
    Service information: You might also want to test your plugins via the [http://www.mozilla.com/en-US/plugincheck/ Mozilla Plugin Check page] to stay on the safe side - things like Adobe Reader, Apple QuickTime, Sun Java and Adobe Flash plugins are essential to keep updated for both security and stability reasons. If the website uses a 3rd party technology like Javascript or Flash for login, updated plugins may be required and thus may also solve the problem.
    Please let us know how above works out, and if we can be of further assistance. Detailed feedback is appreciated and helps us to help you better, plus enables us to better help more users with similar problems.

  • Sender file Error - Detailed log on file name

    Hi,
    With sender File configuration the file name is given as pattern and for some reason i get the error "Conversion of file content to XML failed at position 0". I understand that as per FCC definition I have only 5 fields as my input strucure but the file has more than that...now the question is i want to find out which file (out of 100s) is having this issue as the name of the file is not logged in Comm monitoring. any help/insight on this please?

    Hi.
    Have you had chance to check this  parameter  "additionalLastFields"? . According documentation
    http://help.sap.com/saphelp_nw04/helpdata/en/bc/bb79d6061007419a081e58cbeaaf28/frameset.htm
    If the inbound structure has more fields than specified in the configuration then the XML outbound structure is created as follows:
    ○       ignore
    Outbound structure only contains the fields in the inbound structure
    ○       error
    Conversion is terminated due to the incomplete inbound structure. An error message is displayed.
    Regards

  • Alerting or logging from AnyConnect NAM

    We are planning to use Cisco AnyConnect Network Access Manager as a 802.1x supplicant for our wired network as we ran into issues with  Microsoft
    native supplicant. There are certain advantages in using inbuilt supplicant on Windows as one can get desired information from event log about the dot1x events and use them to alert in case of failures. I however don't see a similar logging available in Cisco AnyConnect NAM. We can of course use DART bundle, but we would like to have a detailed dynamic logs from the client to build automation to alert NOC on any dot1x failure in the network.
    Thanks,
    Vijay

    You should use "live authentication" logs from ISE. You can also configure to switch to send the switch logs to ISE, that way when you click the details of ISE "live authentication" you will see in the same screen both the ISE logs and the switch logs.
    If you want alerts, you can go to "Operations > Alarms > Rules" and set alarms. You can configure ISE to send the alarms by email or by using syslog.
    Please rate if this helps

  • Can't log off user name

    I never had any trouble. I'm on a G5, OSX, I have two user names, each with separate passwords. I try to log out of user name under apple pull-down and NOTHING...also I tried shift apple Q and NOTHING. Any suggestions? Thanks so much!
    alix

    Save your open documents in other applications, and then use the Activity Monitor in the /Applications/Utilities/ folder to force quit the loginwindow process.
    (23343)

  • Logger.exiting() method doesn't log class/method names

    I'm trying to setup logging in a ResourceAdapter running in
    Appserver 8. For some reason, when the Logger.exiting() method
    is called, the class and method names are not logged.
    Any ideas why this is happening ?
    Thanks, Alan
         private static final String _CLASSNAME = "MyResourceAdapter";
         private static final String _PACKAGE = "com.wombat.myRA";
         protected static Logger mLogger = null;
         private void Initialise () {
              mLogger = Logger.getLogger(_PACKAGE);
              try {
                   mLogger.setLevel(Level.FINEST);
              } catch(Exception e ) {
                   e.printStackTrace();
              mLogger.exiting(_CLASSNAME,"Initialise","OK");
              mLogger.exiting(_CLASSNAME,"Initialise");
         }The log output looks like this :
    [#|2004-11-11T13:59:10.351+0000|FINER|sun-appserver-pe8.1|com.wombat.myRA|_ThreadID=10;|RETURN {0}|#]
    [#|2004-11-11T13:59:10.351+0000|FINER|sun-appserver-pe8.1|com.wombat.myRA|_ThreadID=10;|RETURN|#]

    Following up after further investigation.
    It's not just .exiting() that is failing to log the class/method names.
    All methods on Logger fail to log the supplied class/method names.
    Even manually creating a LogRecord and explicitly calling setSourceClassName()
    and setSourceMethodName() fails to log the names.
    Presumably this is because the supplied names are being ignored.
    Anyone have any idea why this would happen?/
    Thanks, Alan
    PS. All this refers to java.util.logging.Logger

Maybe you are looking for

  • Photoshop CS5 and Windows 8.1 Screen brightness problem????

    I just recently updated to Windows 8.1, and now every time I open up Photoshop, my screen automatically lightens, lightening up my work/picture as well. It's annoying as hell. I want the picture to look normal, the way it is supposed to look. When I

  • How to remap individual keys in Windows 7

    Hi all Received my new W510 yesterday and still discovering I bought it in the US but live in the UK, so have changed the regional settings to UK.  Now, however (and as expected) some keys don't match up, e.g. the " and @ is switched etc. How do I ch

  • Receivable Invoices through XML gateway

    Our Customer is not a Oracle Applications User and we were thinking of using XML Gateway to send Receivable Invoices to their Accounts Payable System(ADP Accounts Payable Solution (formerly DO2 Open Invoice)) . What are the set ups they require to do

  • Seeburger help required.

    Hi All, In AS2 Sender Channel for Module Key BIC  we provide  Parameter name as  destDelimiter  and provide value for example  ~*.# \n I am not able to understand  destDelimiter concept. Can anybody explain me with example and also provide blog for t

  • BT Infinity Option 4 FTTP/FTTH - Where is the spee...

    Recently I had FTTP/FTTH installed at my house and I have BT Infinity Option 4 300mbps. So far the connection hasn't even gone over 90mbps (normally runs between 50mbps and 80mbps) and I have now already paid my first bill and not even got half of th