BOB 6.5 - Infoview - Post Login Corp Doc Categories - Add external link

Hi,
I have been given a requirement to investigate if a URL to open another browser window (link is to an external site) can be placed at the end of the corporate documents categories displayed after initial login. Anyone any ideas how / where to do this?
Should i have any security concerns about how this is implemented?
Thanks in advance
Roy

Hi,
I have been given a requirement to investigate if a URL to open another browser window (link is to an external site) can be placed at the end of the corporate documents categories displayed after initial login. Anyone any ideas how / where to do this?
Should i have any security concerns about how this is implemented?
Thanks in advance
Roy

Similar Messages

  • Username availability in post-login application processes

    Hi there,
    I have a problem with a post-login application procedure that sets session variables. Some of the variables are based on the username of the user that is logging in. I'm using the function htmldb_custom_auth.get_username to return the username. However, it always reports 'nobody' as the username.
    Is there a way to get the username of the logged-in user in a post-login application procedure?
    Robert

    By "post-login application procedure," I mean an application process whose "Process Point" property is set to "On New Session: After Authentication".That firing point means once per session at the point during the rendering of the requested page after the step where the user identity (if any) has been determined. If the first page requested is a public page (which might be the login page specified by your authentication scheme) then the user identity has not yet been established and will be null, 'nobody', 'APEX_PUBLIC_USER', 'ANONYMOUS', or perhaps some other public user name, depending on "how your application works".
    You should put code like I think you have in this process into the authentication scheme's Post-Authentication Process. This block will be executed after the login API has processed the login request and after a session has been created and registered with the authenticated username.
    I'm not sure what you're asking about how my application works.I was looking for a technical description of what you intend to happen in the scenario, e.g., User starts browser -> user requests URL like f?p=100:1, -> user sees login page which is page number 101 in application 100 and is specified as the Session Not Valid Page in the application's authentication scheme -> user enters username and password and presses Login button -> On New Session process should fire after login page is submitted and capture authentication username -> etc.
    Scott

  • Posting Keys and Doc. Type

    Hi experts.
    I have created a new process in SD and when I post the account document the customer account has a credit, but should be debit.
    I realized that there is in FI Posting Keys and Doc. Type, both FI objects and Document Type is used in Billing Type configuration.
    But I don´t know where I link document type with Posting Keys, and I don´t know if this link exists.
    If the link doesn´t exist, How Can I configure if the process will be a credit or a debit ?
    Thanks a lot for any help.
    Renato

    Hello, like document types, posting keys are defined at client level. For the Enjoy document entry functions you can check Incoming Invoices/Credit Memos - Enjoy --> Define Posting Key for Incoming Invoices/Credit Memos. Then check the G/L item in incoming invoice if  :                       
    Debit                40 
    Credit               50 
    Hope it helps
    Kind regards
    Marcela

  • Posting a billing doc with a past date

    Hi Friends,
    I have a requirement to post a billing doc to accoutnts with a past date i.e  posting date < system date .
    Is that possible ?
    Regards
    Mahesh.

    Hi Mahesh,
    Posting date in billing document gets copied from the actual goods issue date in the deluvery document.
    Ideally your goods issue and billing should be done in the same posting period.
    If you are aware of all these and still wants to change then during creation of billing doc, you can goto billing header data and input your date(billing date).
    Regards
    Karan

  • Error in posting the park doc

    SAP EXperts,
                             I created 1 AUC account, and parked one expenses for that AUC thru cash transaction, my doc type is AA.While posting the park doc i am getting the following error
    "Formatting error in the field COBL-PRCTR"
    How to resolve this issue
    Thanks & Regards
    Appan

    Hi,
    First go to transaction FBV0 and change the expense line item for account aasignment in field Profit Center.
    Hope you have PCA active in your system.
    Since your expense line item will have an account assignment to PCA.
    Please check and post again, if still the problem exists.
    Thanks,
    Srinu

  • [CS4] Post login problem

    Hi everybody,
    I’m facing a problem I can’t solve as I’m not an expert with php : I have created a site of which first page is a login. On the second page I would like to retrieve informations from a database based on the logged on user ID. Here is the problem : I don’t know how I can insert the user ID on the SQL request (on page 2). I’ve tried to put as Run-Time value of my Recordset template $_GET[‘MM_Username’] but it does not work. Creating a session value into the bindings panel allows me to display the correct ID value (therefore MM_Username) on the HTML page but still I can’t do anything with it into my SQL request… I’m lost !
    Thanks in advance for your help/advices
    Best regards

    Sure ! Here it is (code was generated using the server behaviors panel “Log InUser”)
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    ?>
    <?php
    // *** Validate request to login to this site.
    if (!isset($_SESSION)) {
      session_start();
    $loginFormAction = $_SERVER['PHP_SELF'];
    if (isset($_GET['accesscheck'])) {
      $_SESSION['PrevUrl'] = $_GET['accesscheck'];
    if (isset($_POST['Identifiant'])) {
      $loginUsername=$_POST['Identifiant'];
      $password=$_POST['Password'];
      $MM_fldUserAuthorization = "niveau";
      $MM_redirectLoginSuccess = "Menu.php";
      $MM_redirectLoginFailed = "erreur.htm";
      $MM_redirecttoReferrer = false;
      mysql_select_db($database_Main, $Main);
      $LoginRS__query=sprintf("SELECT identifiant, passe, niveau FROM repertoire WHERE identifiant=%s AND passe=%s",
      GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
      $LoginRS = mysql_query($LoginRS__query, $Main) or die(mysql_error());
      $loginFoundUser = mysql_num_rows($LoginRS);
      if ($loginFoundUser) {
        $loginStrGroup  = mysql_result($LoginRS,0,'niveau');
        //declare two session variables and assign them
        $_SESSION['MM_Username'] = $loginUsername;
        $_SESSION['MM_UserGroup'] = $loginStrGroup;            
        if (isset($_SESSION['PrevUrl']) && false) {
          $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];             
        header("Location: " . $MM_redirectLoginSuccess );
      else {
        header("Location: ". $MM_redirectLoginFailed );
    ?>
    De : MurraySummers [email protected]
    Envoyé : vendredi 8 mars 2013 18:20
    À : Berurier75
    Objet : Post login problem
    Re: Post login problem
    created by MurraySummers <http://forums.adobe.com/people/MurraySummers>  in Dreamweaver - View the full discussion <http://forums.adobe.com/message/5132803#5132803

  • Documents manually posted within dep.doc.number range

    Hi All,
    I am running the AFAB and this error message is displayed.
    "Documents manually posted within dep.doc.number range"
    I am using the document type AF with the external number range
    AF     2008     1120000000     1129999999
    Do you have any idea what is happening?
    Thanks in advance,
    Miguel.

    Hi,
    I experience the same thing and I'm using ver 4.6C. I've tried to insert the additional number range in FBN1 but I have to remove the extenal number indicator first before I can enter the number.
    But when I want to run the depreciation, I've got another error i.e. please create number range as external number. So i believe there is no effect.
    When I check in TABA, the number range still maintain the same.
    Please help coz my user need to view their asset balance urgently.

  • Unable to make RMI-based JMX connection with post login stored admin creden

    Hello,
    I've installed a stand-alone OC4J on a couple of servers with Red Hat Enterprise Linux Server release 5.1 (Tikanga).
    At one server I am not bale to start the OC4J properly.This server has two network adresses.
    2008-09-08 14:33:12,670 [EMUI_14_32_57_/console/postLogon] WARN app.PostLogonPageHandler testStoredCredentials.490 - unable to make RMI-based JMX connection with post login stored admin credentials
    java.net.ConnectException: Connection refused
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
    What could be the reason of this error? And how can I solve the problem?
    Thanks in advance,
    Regards Leon

    I don't know for sure, but perhaps the password encryption method uses something from the server to generate a key/seed for the encryption?
    Try and manually reset the credentials to see if it helps
    1. Edit the j2ee/home/config/system-jazn-data.xml file.
    2. Find the oc4jadmin user entry and modify the credentials tag to look like the following
                   <user>
                        <name>oc4jadmin</name>
                        <display-name>OC4J Administrator</display-name>
                        <guid>B23216B0102E11DDBF9DE5D93DCAFE54</guid>
                        <description>OC4J Administrator</description>
                        <credentials>!welcome1</credentials>
                   </user>3. Restart the container and see if you can then login using oc4jadmin/welcome1.
    No guarantees, but its worth a shot.
    -steve-

  • Initermittent Connection Timeout at Post-Login when connect to AlwaysOn Availability Group listener

    Hi,
    I'm using SQL 2014 AlwaysOn Availability Group and my ASP .Net application is connected to the database thru the availability group listener (tcp:[myHAGroup],14330).
    Things work most of the time, but recently I started to see the following Connection Timeout exception in Event Log. It looks like under heavy traffic the application can't connect to the availability group listener.
    Timestamp: 8/17/2014 10:07:28 AM
    Message: System.Data.EntityException: The underlying provider failed on Open. ---> System.Data.SqlClient.SqlException: Connection Timeout Expired. The timeout period elapsed during the post-login phase. The connection could have timed out while waiting for server to complete the login process and respond; Or it could have timed out while attempting to create multiple active connections. The duration spent while attempting to connect to this server was - [Pre-Login] initialization=2; handshake=0; [Login] initialization=0; authentication=0; [Post-Login] complete=15008; ---> System.ComponentModel.Win32Exception: The wait operation timed out
    --- End of inner exception stack trace ---
    I've checked SQL Profiler and don't see any memory or CPU peak at that time. Looks like somethings happened during the Post-Login stage, but I couldn't figure out what or why....
    I'm using 2 SQL servers (1 primary, 1 secondary): SQL 2014 ENT, 8GB RAM, 8 core 2.67 Xeon X5650.
    Application: ASP .Net, framework 4.0.
    All servers are VMWare virtualization servers, running on 1 virtual switch, so internal traffic should not be a problem.
    Comments/ideas are appreciated.
    Eric.

    Hi Eric Nguyen,
    According to your description and error message, we need to verify if there are some queries/transaction lock your database via SQL trace. If yes,
     you have to find out which queries are blocking and rewrite them/run them at other time to avoid blocking other processes.
    In addition, you can use performance monitor to track connection pool connections. If you set default connection limit and timeout limit with a small number, the error of “wait operation timed out” will occur. Meanwhile, you also need to monitor disk usage
    on SQL Server , and set the auto increment size of your transaction log and database with a fixed size instead of a percentage of the current files due to avoid transaction timeout. For more information, see:
    http://stackoverflow.com/questions/7743725/how-to-troubleshoot-intermittent-sql-timeout-errors
    There is an similar issue about connection failed from webservers to SQL Server AlwaysOn Listener, you can review it.
    http://stackoverflow.com/questions/23416492/connection-timeouts-when-using-multisubnetfailover-true
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • What is causing this "The timeout period elapsed during the post-login phase."?

    This is happening on a shared environment running DataCenter.  We are doing a bulk merge of about 100 plus records.  It is failing in different spots but always the same error.  Sql has no error logs, and we are not seeing locks. 
    We need some hints as to what this error message really means.  
    System.Data.SqlClient.SqlException: Connection Timeout Expired.  The timeout period elapsed during the post-login phase. 
    The connection could have timed out while waiting for server to complete the login process and respond; Or it could have timed
    out while attempting to create multiple active connections.  The duration spent while attempting to connect
    to this server was - [Pre-Login] initialization=1; handshake=1; [Login] initialization=0; authentication=0;
    [Post-Login] complete=14000;  ---> System.ComponentModel.Win32Exception: The wait operation timed out

    Well, at first hand, it looks like a "time-out", obviously.
    I would check the system's resources, if it's extremely busy at that time at first. Especially CPU.. and general Login statistics
    Andreas Wolter | Microsoft Certified Master SQL Server
    Blog: www.insidesql.org/blogs/andreaswolter
    Web: www.andreas-wolter.com

  • Hide login div post login

    Hi guys,
    Could anyone help me please... I want to hide login and show a new default template post login on all pages.
    https://easyfreight03.worldsecuresystems.com/Home
    u: JoshuaKarlyl
    p: adobeforum
    Please help!
    thanks

    Module to use here is {module_isloggedin} this will return a 1 or 0. If you put that as part of a class in your body attribute in your templates then anything under that you can show or hide with CSS depending on if a person is logged in or not.
    Thtat is the easiest way to implement this.

  • Anyconnect Pre Login / Post Login Message

    Hi Experts 
    Could you please guide me where we configured Pre Login / Post Login Messages on ASDM.
    i would appreciate your earlier response.
    Thanks
    Naga

    Ah OK, the bit I was talking about is for the AnyConnect client-based SSL (or IPsec IKEv2) VPN.
    For Clientless SSL VPN (i.e via the web portal), you can customize the Logon page via Configuration > Remote Access VPN > Clientless SSL VPN Access > Portal > Customization.  There you can edit the Default customization of create a new one for specificed groups.
    What Cisco calls the Logon Page is what users use pre-login. You can change the title bar, the logon form itself and optionally add an Informational panel on that initial page via the customization dialog. You can similarly change the portal page (what logged in users see) and the logout page.

  • Documents number is cleared automatically with clearing doc. ALE-extern

    Hi Mr./Mis.
    I'm  from China, I found that when I posted one invoice and planned to clear it manually, but I failed to do this due to it was cleared automatically with clearing doc. ALE-extern, could you advise the reason and the solution, thank you in advance.

    I have that behaviour in a system where IDOC FIDCC1 is generated to be sent to other system

  • I am trying to save a doc. to a external hard drive and it wont allow me. I says its read only, any ideas on how to correct it?

    I am trying to save a doc. to a external hard drive and it wont allow me. I says its read only, any ideas on how to correct it?

    Save it on the internal HD then copy it from this safe location to the external device.
    iWork applications can't apply their save process on devices which aren't formatted as HFS+.
    But it may also be that for some reason, an external device formatted as HFS+ is set to Read Only.
    If it's this case, you will have to change de setting before moving the file on it.
    Yvan KOENIG (VALLAURIS, France) vendredi 20 mai 2011 11:01:05
    Please :
    Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Add a link, called (Mark all Posts in Category as Read) in DROID area.

    In other areas, there is a way to Mark all Posts in Category as Read, please add a link to do it in the DROID area.
    http://forums.verizon.com/t5/DROID/ct-p/DROID
    Thanks.

    KaLin wrote:
    We have submitted it as an issue and have gotten word back that it will take a core change in the software.  They are now working on this, but it will probably take a software upgrade to fix it.
    Looks like the change went through. No more confirm pages.
    Thanks for all the hard work taking care of us forum users!
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

Maybe you are looking for