Set_User: Where to call?

Experts,
I have built a custom authentication schema. I have a table of usernames/pw in the database. I am using Page 101 to login.
I am able to login to the application, and get a session id. Now I want to set the APP_USER.
Is set_user(<username>) supposed to be called from the Page Sentry? That is the only place I can get it working. Is what I am supposed to do, or is there a better place to set APP_USER?
Thanks!
Dan

I have built a custom authentication schema
We call them schemes, fwiw.
If the only custom aspect of the scheme is the authentication function (your function that does the un/pw lookup), then you can and should just use the built-in page sentry. Leaving that field empty achieves this and APP_USER is set using the value passed to the login API from your login form.
Scott

Similar Messages

  • I lost my iphone, and know where it is through icloud, how do i get my phone back? i already sent lost phone, and where to call and he or she does not want to call. what I do I lost it yesturday?

    I lost iphone yeturday, and know where it is using icloud, how do  I get it back?  I already sent a lost phone to my phone an I said to call me at a number i can be reached at.  He or she dose not want to call. What am I to do?

    Hard to know, but reporting it to the police is usually a required step from your insurance carrier if you plan on filing a claim.  Here's Apple's support article on what to do: http://support.apple.com/kb/HT5668.

  • How can you tell where a call is actually coming from not just where the phone was activated?

    me and my wife check our account and we are wondering how we can find out where our son is calling from it only puts the town where we originally signed up with Verizon,help please!!!!

    If this is a Microsoft based phone AND you have location awareness turned on AND they have this phone tied to a Microsoft account AND you have access to all of the account information, then there is a Microsoft web site that will show you the current location of the phone.  Otherwise MrGecko is pretty much dead on.  You would have to have an app on the phone, or pay Verizon more money to give you the location.

  • Where to call the BOR objects in the wokr flow builder

    where do we call  the BOR objects in the workflow builder
    suppose we need to trigger the even bus7015 or some thing like that in the workflow to find if the manger is terminated or not
    where do we call a bor object in work flow.

    <img src="https://weblogs.sdn.sap.com/weblogs/images/37984/ChangeWF.JPG">
    Second icon from the right...looks like a silver hat with a red brim.

  • Names of CSQ where the call dequeued

    hi,
    i have a scenario where there are 2 CSQs, if a call is queued for CSQ1 and was not answered by CSQ1's agent, it will be dequeued from CSQ1 then routed to and queued for CSQ2 ... my question .. is it possible to add any get contact/reporting info step in my script so that when the call is handeled by CSQ2's agent as per the scenario just described so that this call to be represented on CAD desktop with the names of CSQs the call was routed to before getting answered by the CSQ2's agent .... in other words, CSQ2's agent when answering the call will see on his CAD desktop that the call was queued on CSQ1 then dequeued from CSQ1 and routed to CSQ2 so it got answered by this agent. what do u guys think ...is that doable?
    if not, is there a way to get this info (names of CSQs dequeued from and CSQs queued for) on Historical Reporting since as far as i know, i can only get total number of calls dequeued on CSQ on "Contact Service Queue Activity Report (by CSQ) and (by interval)
    thx

    Hi,
    With the Agent Detail Report you can see, for every call that an agent receive, if those calls were queued in another CSQ. So in the column "cal routed CSQ" you can see the name of the CSQ that handle the call, but also in the column "other CSQs" you can see the name of the other CSQs to which the call was queued. Of course this is for every handle call, if you want to see also the abandon calls you can use the  Abandoned Call Detail Activity Report, in the column "Call Routed CSQ" shows the names of up to the first 5 CSQs to which the call was queued.
    Gabriel.

  • Where to call to report service outages?

    Its been several hours now, where I have not had 4G, 3G, or 1x data at home, where I have had it at full 'bars'  for years.. (4G for a week or so).   I have reset the phone, and no improvement.  Where do I call to report the system outage?
    This reminds me of the "other" service provider who lost the whole city of Lincoln Nebraska for the better part of a day.. I hope that this is not the case here!   

    Call customer service from an alternate phone. 1-800-922-0204

  • How do I find out where a call was placed from?

     A friend borrowed one of our cell phones, and it appears the battery is dead or it was turned off. The last call listed under usage was to voicemail. is there any way i can find out the general area they were in when that call was made?

    Beyond checking the call details online on the detailed bill in your My Verizon Account, there would be no other way to check the location of that call online.
    You would log in as the Account Owner  Role online, then hover your mouse arrow over the Account Tab, then choose the Bill option, then click on the view and print bill link  to see the last bill.  From there you could stroll down to that number, then view the call  details to see calls  placed on that day.  
    http://community.vzw.com/t5/forums/replypage.editorform.messageeditor.spellcheck?t:ac=board-id/Other1/message-id/1838&ticket=Ba9rWogdq-N7_212654

  • Where to call the write Form for SAP Script

    Hello all,
    I am trying to develop a SAP script. I want to print the details of fight table in Form.
    I have defined 3 forms.
    1.form-open -contains call function for open form
    2.form-itab_print - contains logic for filling internal table and in the loop..endloop, I have called write form for printing the table details
    3. Form_close - contains call function for close_form.
    I have given the perform in the same manner..but I could not see the ouptput of this..
    your immediate help is highly appreciated..
    Thanks
    Tharani

    Hi,
    Include your write form inside your loop statement and in your sapscript form put in there the variables that you want to show. Here is a rough explanation:
    *report driver
    loop at itab.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'TEST'
       FUNCTION                       = 'SET'
       TYPE                           = 'BODY'
       WINDOW                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
      ELEMENT                        = 1
      FUNCTION                       = 2
      TYPE                           = 3
      UNOPENED                       = 4
      UNSTARTED                      = 5
      WINDOW                         = 6
      BAD_PAGEFORMAT_FOR_PRINT       = 7
      SPOOL_ERROR                    = 8
      OTHERS                         = 9
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endloop.
    *sapscript form
    *Assume that this is the MAIN window
    L1   ,,&ITAB-FIELD1&,,&ITAB-FIELD2&
    ***In the example above, it will show the values in your field1 and field2 of your itab.
    Hope this helps...
    P.S. Please award points for useful answers.

  • Write HTML to Proper Page - Always writes to page - where servlet called

    I call a servlet from a second window(thirdWin) that was created/opened by the first window(window) in HTML. The servlet writes out HTML to the browser using the following code(note HTML$ is a java class that contains methods of HTML code lines):
    PrintWriter out=response.getWriter();
    HTML$.pageBegin();
    HTML$.tableHeader("Murph");
    The problem is that the servlet writes/ outputs the HTML code to the third window(thirdWin). I want to call the servlet from the third window and write/output the new HTML to the first window. There must be a way of accomplishing this. One, by setting the browser window directory to the original window(first window) before the servlet is called so that the new HTML gets written to that page, or two, by setting the brower window to the proper window in the servlet before writing the HTML out to the window.
    The following is the code in the servlet that opens the thirdWin. It is a javascript function whose body is a Servlet that has been written it out to the browser page. Do not get confused with me calling it the thirdWin it is acually a second window opened by the opener, I have just called it thirdWin.
    out.println("thirdWin = open('', 'UserName', 'height=300, width=500 scrollbars=yes');");
         out.println("thirdWin.document.write(\"<TITLE>Enter UserName</TITLE>\");");
    out.println("thirdWin.document.write(\"<BODY BGCOLOR=white>\");");
    out.println("thirdWin.document.write(\"<FORM name='showEdit' method='post' action='showEditProfile'>\");");
    out.println("thirdWin.document.write(\"<table><tr><td width=120>User Name :</td><td width=300><input type='text' class='listRow' name='user_name'></td></tr></table>\");");
    out.println("thirdWin.document.write(\"<table><tr><td width=120>Password :</td><td width=300><input type='text' class='listRow' name='user_name'></td></tr></table>\");");
    out.println("thirdWin.document.write(\"<table><tr><td width=120>Search :</td><td width=300><input type='submit' name='showEdit' value='Show Profile'/></td></tr></table>\");");
    /**out.println("thirdWin.document.write(\"<table><input id =\"subfds\" type=\"button\" name=\"Submit5\" value=\"Enter Information\" onclick=\"\"/></table>\");");**/
    out.println("thirdWin.document.write(\"</FORM>\");");
    out.println("thirdWin.document.write(\"</BODY>\");");
    out.println("thirdWin.document.write(\"</HTML>\");");
         out.println("thirdWin.document.close()");

    Since you want your function to write directly onto the page,
    the only way would be to pass the "out" variable to your function
    So your function would be
    ==============
    public void pageFooter(JspWriter out, boolean bolEndBanner)
    jspout.println( "<table width=\"100%\" align=\"center\" cellpadding=0 cellspacing=0 bgcolor=\"#FFFFFF\">" );
    jspout.println( "<tr>" );
    jspout.println( "</tr>" );
    jspout.println( "</table>" );
    // D�but de la Fin de page Normale
    jspout.println( "</body>" );
    jspout.println( "</head>" );
    jspout.println( "</html>" );
    ==============

  • Knowing where the call to?

    Hi experts,
    I got 1 secretary who support 3 users. She's asking on how to know on the Ip Phone unit (7960) for whose call when a missed call has been received by her or whose call is that for?
    Is there a way what is the original called number on the unit itself?
    I know how to get it from the Call details but my concern is how to know by the user (w/out my help) can know it.
    tnx

    Hi Robert,
    This info is not available if using a 7960 sadly. If you upgraded to something like a 7961 then yes there is a line in the Missed Calls entry that shows which of the Lines on the phone the call was intended for.
    For example a 7961 has the following;
    Line 1 - 6007
    Line 2 - 5126
    Line 3 - 7001
    Line 4 - 5555
    When a call comes in for 5126 and is Missed, the Missed calls Info would show the Time the call came in as well as "On 5126" at the bottom of the display.
    Hope this helps!
    Rob

  • I want to know where to call or go to inquire about an IMEI number... I also want to know what am I going to get from that inquiry? If it is paid? Stolen? What?

    I want to know where to go to get information about certain IMEI. I'm about to buy a used phone. I've never bought a used phone before, but I was told to inquire about the IMEI #. I don't know where to go or what I'll get from that inquiry.

    There is nowhere to enquire about the IMEI status
    all you can do is check that activation lock is not enabled you will not ever get the iPhone to work if thee owner has not or does not release the iPhone
    Check it here on this Apple checker
    https://www.icloud.com/activationlock/
    and this is Activation lock
    Find My iPhone Activation Lock - Apple Support
    Buying second hand is inherently risky

  • Getting no where with call centre can anyone pleas...

    I nearly 68 years old and this is my first computer and internet package, i am on the BT upto 8mb package but only get around 1.5 mb speed, my son has looked into this for me and told me i have  "a stuck at 2000kbps ip profile" he has called the help centre that many times for me i have lost count, they have told me that my IP profile should rise after they changed the wirless chanel for me, that was two months ago and i still count myself lucky if i get 1.6 mb download speed. I was finaly told that the reason i only get this speed is because i live so far away from the bt equipment, can some one let me know if this is true please or is this a case of the indian call centre trying to fob off someone who is new and unused to this technology. I understand you will need the details below to see. The connection time is low as i had to reset the hub to get into the settings as i have lost my password but before that i have not crashed in months.
    Thank you
    ADSL line status
    <script type="text/javascript">// var trClass = ["odd", "even"]; var td1 = ["w3", "Line state", "Connection time", "Downstream", "Upstream"]; var td3 = ["w3", "VPI/VCI", "Type", "Modulation", "Latency type", "Noise margin (Down/Up)", "Line attenuation (Down/Up)", "Output power (Down/Up)", "Loss of Framing (Local)", "Loss of Signal (Local)", "Loss of Power (Local)", "FEC Errors (Down/Up)", "CRC Errors (Down/Up)", "HEC Errors (Down/Up)", "Error Seconds (Local)"]; var td2 = ["", "Connected", "0 days, 0:03:07", "2,272 Kbps", "912 Kbps"]; var td4 = ["", "0/38", "PPPoA", "ITU-T G.992.5", "Interleaved", "17.0 dB / 7.1 dB", "36.0 dB / 19.4 dB", "18.6 dBm / 12.3 dBm", "0", "0", "0", "0 / 0", "0 / 2147480000", "nil / 74311", "0"]; // </script>
    Connection information<script type="text/javascript">// createTable("normal", trClass, td1, td2); // </script>
    Line state
    Connected
    Connection time
    0 days, 0:03:07
    Downstream
    2,272 Kbps
    Upstream
    912 Kbps
    ADSL settings<script type="text/javascript">// createTable("normal", trClass, td3, td4); // </script>
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.5
    Latency type
    Interleaved
    Noise margin (Down/Up)
    17.0 dB / 7.1 dB
    Line attenuation (Down/Up)
    36.0 dB / 19.4 dB
    Output power (Down/Up)
    18.6 dBm / 12.3 dBm
    Loss of Framing (Local)
    0
    Loss of Signal (Local)
    0
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    0 / 0
    CRC Errors (Down/Up)
    0 / 2147480000
    HEC Errors (Down/Up)
    nil / 74311
    Error Seconds (Local)
    0
    <script type="text/javascript">// var showButton = new Button("show","","Hide Details", function(){GoAndRemember('bb_dsl.lp','');}); // // ]]></script>

    welcome to the forum
    you currently are on 21CN up to 20mb but only getting 2mb.  If you could not access the hub manager before I think your connection may have been resetting and you probaly just saw the blue lights and assumed connection was stable.  your noise margin in high at 17 as normal about again suggesting disconnections.
    have you tried the quiet line test  dial 17070 option 2  should be quiet and best done with a corded phone  if cordless might get a dull hum which is normal.
    are you connected to the master or test socket?
    At present I would suggest that you leave your hub connected 24/7 for the next 3+days as I think you may well be in a banded profile (nothing to do with ip profile) and it should release your line in 3+days connected. 
    if after 3+ days connected there is no improvement then I would contact the mods for assistance  http://bt.custhelp.com/app/contact_email/c/4951
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Where to call a ViewObject's setWhereClauseParam() ?

    Simple question:
    Where to set a where clause param for a ViewObject defined at design time?
    I have the VO as Read-only form on a DataPage, and I want
    to show a different row based on a HttpRequest parameter send to the DataPage. For example, show the employee with id=?, having EmployeeVO and HttpRequest parameter 'id'.

    Check out this how-to for a sample of how to do it.
    http://www.oracle.com/technology/products/jdev/tips/shmeltzer/setwhereclause/index.html

  • Where to call the javascript function

    Hi,
    I am using JSF and ADF.
    I have a javascript function called by the body onload.
    The javascript is to set the first the first column of a table fixed.
    But when I click the next page link which is generated by defaut,
    the function from the javascript disappears.
    Can I call a javascript function when pressing the next page link which is
    generated by default ?
    Thanks.
    Ivan

    Hi Frank,
    My javascript function is to make the first column of the table fixed which
    is something like the function in the Excel.
    The function is called by body onload.
    But when the 'next page' link is clicked, it will not refresh the whole page.
    The above cannot be called.
    So I wanna add it during the action of pressing the link.
    any alternatives ?
    Ivan

  • Where to call setRollbackOnly?

    I have 2 session beans in 2 different apps (maybe on different servers).
    Do I have to call setRollbackOnly only in one session bean or in both?
    TIA
    Frank

    It depends on how you call the two.
    suppose
    sb1 --> calls sb2
    then if sb2 is unsuccessful, it should throw exception which should be caught by sb1. sb1 can then rollback the Tx.
    --Ashwani                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • Schedule Lines not created from MRP

    Hi !! I have a finished product ""111-2523-64"" and in its BOM i have a semifinished product ""111-2523-64-010"" produced(Inhouse)& three raw materials . For the Raw Materials I have made the scheduling agreement & source list with indicator ("2"" cr

  • BAPI_ACC_DOCUMENT_POST how to post a document relate with assets

    Hello all, I'm using this BAPI to replicate the financial accounting flow. I've achieved to post almost of document types but asset documents. I've got the following error: "Account 'Contra account: Acquisition value' could not be found for area 01"

  • Real 10 Export Plug-in for Mac OS X Doesn't Work?

    I need to create RealAudio .rm files from .aiff files. RealAudio now has an export plug-in for quicktime. I know it's not working for 10.4, but I'm on 10.3.9 with QT 7. An export of "Movie to Real Media" does now appear in the export menu. But trying

  • I can't deleted my advanced Email in icloud ?

    i can't deleted my advanced Email that i intered in i cloud on the iphone however i changed it on my account in the web but i can't do it on the iphone?

  • Cpm. Flash player. Com pop up

    How do I get rid of a cpm.flashplayertrack.com pop up asking me to upgrade my flash player version. It won't let me do anything else in Safari.