Login module - multiple logins

Hi
I want to implement the multiple login in the portal .For this i have to edit the java file where the authentication check will be done ,i am unable to get that java file where this user authentication is being checked.Can any one plz help me out on how to get that java file .
For that I have checked in Logon.par file but i haven't get any implementation for that .
Can anyone help me know which jar/par file and which java file i need to use for custmisation of existing one.
URS ANSWERS MUST BE APPRECIABLE.
thanks
shashank

Is the idea to password protect the DB itself from further
edits while the user is logged in (i.e. ms access password
protect), or is it to simply deny other logged in users edits until
the first user logs out?

Similar Messages

  • Creating Help for multiple modules, multiple versions and multiple locales

    I need to put together a new help solution for a suite of applications. The problem I have is working out how to manage and publish the content. Would someone be able to offer any advice?
    The software has:
    Multiple modules
    Head office and site versions
    UK and US locales
    Multiple software versions to be supported
    Previously I used WinHelp, regenerating the project 6 times per software version to provide all possible permutations.
    I’d like to create a single hosted help solution with a simple home/landing page that allows users to enter a natural search term – the results provided would be drawn from the database or collection of available help topics and ranked for relevance to application/version/locale etc.
    Obviously the right help must be displayed, and I don’t want every topic to be prefixed with: [uk | head office | Module name | v3.5].
    I have RH9 (for html and word), but would upgrade if I needed to.
    I have looked into using Webhelp, Airhelp and even Wordpress but still haven’t worked out the best way to do this. I understand that this is not a normal posting, but if anyone can point me towards any information that may help me I’d very much appreciate it.

    I think build expressions are what I am looking for, but if I need to create a new conditional build tag for every variation (Locale/Installation/Version) it will be become rather unwieldy and since new software versions are released almost quarterly it will soon become challenging to manage.
    OK, I am happy you picked up on that point. It will be challenging.
    Sorry but your requirement is a complex output so too will be the solution.
    Also, can I apply a build tag to an entire topic to include or exclude it from a build for whole topics that are UK or US specific?
    Yes. Whole topics or content can be tagged. You can apply a topic tag to exclude it entirely from some categories and you can have content tags so that variants of the topic can be generated so that a topic could be excluded from US but for UK it could then vary according to version, for example.
    From an authoring perspective I want to create a single help file, but I can’t have users scrolling through hundreds of possible help permutations to find the one they are looking for. Creating one help file will simplify the hosting of the webhelp too.
    You cannot have sub categories so you would create a category for each permutation. I don't think that would amount to hundreds though.
    Another approach would be similar tagging but using multiple layouts. With categories, your output would have a folder for each category and when a user selects what they want, the system goes to the chosen folder. If you created multiple layouts, you would have much the same folders but each one would be a standalone help system. It would be for your developers to install the right help for each user. Not as difficult as it might sound. For a start, the versions would be simple to hook up.
    A lot of places stop updating help once either a new version is released or goes out of support.
    The best advice I can give is cut down the permutations as much as you can.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Output Module - Multiple  compositions render

    AE CC / Mac / Mavericks
    After adding a comp to the render queue, I'm getting a message when I go to output that says "not yet specified"
    I have comp name set to default in the settings but it still is "not yet specified" when I add comps to the render queue, and you have to do this one by one. In previous versions, if I remember correctly, once you set a destination for something the render queue all comps added afterwards would default to that location.  This doesn't seem to be the case anymore.   It makes rendering multiple shots in the same project really annoying. Any suggestions?

    What version of AE CC are you running?

  • Treasury Module: Multiple Excel Lines are not copying to SAP

    Hi Experts,
    I am facing a peculiar problem in Treasury Module.
    The details are as below:
    1. Transaction Code FTR_CREATE: I am providing all the details then go to interest condition. Here I am going to provide manually the interest amount.
    2. In update Paragraph, I choose "Special" button & select "Single Dates". Here I can provide Date & amount manually. But system is allowing only one line at a time from the excel sheet.
    That is a big bug in system or my laptop.
    I need help from all of you because of this my go live stuck in between.
    Please help.
    Thanks,
    Satya

    Hello Niels,
    I am very interested in having a deeper look at the example:
    Concerning the "passive" issue I have the following question/note:
    - Do you see the same behavior when you do a "quiet" install instead of a passive one?
    - For some reason this makes me think about a bug in Visual Studio (old version) that I also personally experienced some time ago, but I do not think it is directly linked.
      I did a quick google search and  this is what I could directly find back about that bug. (http://community.flexerasoftware.com/archive/index.php?t-154037.html)
      Do note that I am not sure that it is linked to the issue. To be able to give some more feedback I would require the modified example that you are using.
    Concerning the uninstall process:
    - Can you share the modified version of the community example you are using? (to be able to reproduce exactly the same issue)
    - The most common reason I know off that might cause files to not uninstall is that the linked GUIDs are causing "issues".
      Changing the GUIDs of the files/components that are not uninstalling might do the trick in that case.
      However, to have some certainty about this I should be able to have a look at your code (and test it)
    Kind Regards,
    Thierry C - Applications Engineering Specialist Northern European Region - National Instruments
    CLD, CTA
    If someone helped you, let them know. Mark as solved and/or give a kudo.

  • Unloading Module Closing Multiple Custom Panels

    I have a requirement where in  same screen can be openned N times, i have written a custom panel (module loader inside it) with a close buttonn, to load the same module multiple times. The problem is when i close one panel all the panels are closed. The reason it is closing all the panels is i have included the removeChild inside unload tag of the module loader.
    I tried changing the "ml.unloadModule();" to "parent.removeChild(this);" then i acheive what is needed close only the panel that is closed, but the module it not unloaded. Is there any way i can acheive closing only a single panel (this is closed) and unload the module. 
    Below is the custom panel code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Panel xmlns:fx="http://ns.adobe.com/mxml/2009"
                         xmlns:s="library://ns.adobe.com/flex/spark"
                         xmlns:mx="library://ns.adobe.com/flex/mx" width="436" height="340">
              <fx:Script>
                        <![CDATA[
                                  [Bindable]public var url:String;
                                  protected function button1_clickHandler(event:MouseEvent):void
                                            // TODO Auto-generated method stub
                                            ml.unloadModule();
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:ModuleLoader x="10" y="9" id="ml" url="{url}" width="404" height="277">
                        <s:unload>
                                  if(parent != null)
                                  parent.removeChild(this);
                        </s:unload>
              </s:ModuleLoader>
              <s:Button x="411" y="-23" width="17" height="16" label="Button"
                                    click="button1_clickHandler(event)" icon="assets/icon_close_down.png"/>
    </s:Panel>

    Instead of using an unload handler, just call both unloadModule and removeChild in the click handler.

  • Static table in normal abap function module

    Hi All,
    I have written a code which calls multiple function module multiple times with parameters. However in code review I got comments: 'Please declare a static table to maintain the values of x/y/z.... this can be used when the FM is called evry time for the same values.'
    I have never implemented this functionality. I guess in class and object programming we have functionality to put parameters as static. Can anybody put more light on this? An example would help a lot.
    Thanks in advance.
    Regards,
    Jignesh

    Structured Static Data Object Definitions
    - STATICS: BEGIN OF struc,
                   END   OF struc.
    Structured Static Internal Table Definition
    - STATICS itab TYPE tabtype [WITH HEADER LINE].
    - STATICS itab TYPE tabkind OF linetype
                 [WITH [UNIQUE|NON-UNIQUE] keydef]
                 [INITIAL SIZE n] [WITH HEADER LINE].
    - STATICS itab LIKE tabkind OF lineobj
                [WITH [UNIQUE|NON-UNIQUE] keydef]
                [INITIAL SIZE n] [WITH HEADER LINE].
    - STATICS itab TYPE linetype OCCURS n [WITH HEADER LINE].
    - STATICS itab LIKE lineobj  OCCURS n [WITH HEADER LINE].
    - STATICS: BEGIN OF itab OCCURS n,
             END   OF itab [VALID BETWEEN f1 AND f2].
    STATICS itab TYPE RANGE OF type.
    STATICS itab LIKE RANGE OF f
    REGARDS
    SHIBA DUTTA

  • Importing TestStand Measurement results to LabVIEW module

    I have a need to extract all measurements from TestStand(V3.1) and process in a LabVIEW(7.1) module (Multiple step measurements of numeric and boolean). Will I need to extract data within the module using sequence reference by first obtaining parameter names, and subsequent property gets, or Is it practical to create and pass a container? Any examples?
    Our CM refuses to allow database access, and text file creation (in their particular fomat) is only acceptable.
    I am new to TestStand, as can be deduced.

    Thanks for your comments. We use TestStand databasing for our record access, but could look at modifying the text file sequence shipped with TestStand. Enclosed is a sample file I 've created for reference. Looks simple enough but is a difficult situation considering the number or parameters, and subparameters necessary to pull out of TestStand.
    To pull from TestStand, I suspect I need to programmatically obtain # Steps, Step Name, and all subparameters down the line.
    Icing on the cake is the CM has this in an TestStand OI and refuse to provide to us.
    Thanks again.
    Attachments:
    K01234567.txt ‏1 KB

  • MTA Exam 98-361 CS - Please Help ASAP - It would be greatly appreciated!

    Hey guys:
    I am brand spanking new to this development scene and have zero background in any type of IT so, please bare with me..I'm currently active duty military planning on getting out in the fall. I heard about the MSSA program
    offered by Microsoft and decided to give it a shot since I meet the requirements (well, most). The reason I say most is my lack of background. Anyway, I just heard about the program about three or four weeks ago and didn't find out I met the requirements till
    about two weeks ago..At that time, I was also advised that to get into the program I had to pass this exam (MTA 98-361) , and I had to pass it before the new year to get into the course starting in January.
    Because I had such a short amount of time to prepare for the exam, of which I had no knowledge of, my leadership has been very flexible in letting me have time to study. I've taken great advantage of this and have spent countless hours at my desk studying.
    Probably around 12-14hrs a day, to be honest. I thought I had been taking this stuff in and really learning a lot getting all of these hours in in the past couple of weeks, until today. I get to the building that is holding my certiport proctored exam, I sign
    in, and when I do the proctor asks me, "is this the first time you're taking this exam?" At which point I replied yes and she advised me I had to pick the Visual Basic version of the test because it was my first time..My heart dropped and I got very
    nervous. I began the test and it looked completely foreign to me. These last two weeks I had focused all of my energy on learning C# and didn't have even a slight idea of how to apply these methods to VB. I know, most of you guys that have been in this awhile
    say this test is easy either way, but it wasn't for me, I'm not at that level. Needless to say, I failed...miserably, and was advised I could retake the test in 24hrs and I could take the correct test..real reassuring...When I say I did bad, it was BAD. Now
    I'm beginning to question if I even have a grasp on the simple stuff, the basic understanding of all of this. I enjoyed what I was learning, hence the keeping motivation through those long days.
    Is this not for me? I was advised that my results would be sent directly to MS and all I could think was GREAT, and I'm trying to get a job in this industry..is this going to look negatively on my behalf when MS sees that, even if I do somehow still manage
    to pass the test that I've been studying for and make it into the program? I'm dedicated and wiling to put what I need to into this because, like I said, it really interests me..I'm just looking for some insight if this is a realistic path for me or not and,
    if so, if anyone can enlighten me on how I can better prepare myself for the exam next week (CS version).
    Is the MeasureUp practice testing as good of a source as it's made out to be? Or should I be going elsewhere? I've watched the MSDN MTA modules multiple times, read Wiley cover to cover, and looked up things I didn't know or wasn't sure of all over the internet.
    I'm just wondering what all of you dev gurus would suggest for someone totally new, to learn all of these fundamentals in this short amount of time. Sorry for the lengthiness of this thread, I'm just a little stressed and frustrated.
    Thanks much,
    Joey
    ////I know there's lots of threads about the MTA 98-361, I'm just looking for particular help in regards to ////my current situation, thank you.//

    To start with, I think that your proctor made a mistake. If you have been doing all your studying with C#, you should have taken your exam in C#, not in VB. Although the change from C# to VB is trivial for someone who has years of practice with both languages,
    in your particular case you should have stuck with the one with which you were most familiar.
    As a second piece of advice, you need some practice rather than just stuudy time. The questions in the MTA exams are in general very easy to reply if you have actually done the things that they are talking about (versus just having studied them on paper).
    For this exam about "development fundamentals" I would recommend that you write a few simple programs that exercise the various topics covered in the "skills measured" section of the exam description page. For instance, when you see the
    topic labelled "For loops, While loops, Do...While loops, and recursion", go ahead and write a programs with several types of loops and verify that you understand how to write them, how they work, and that they produce the results that you expected.
    Do the same with recursion. Repeat this for every entry in the list of Skills Measured, and you should be ready to take the exam.

  • Crystal Reports performance is too slow

    Dear SDNers,
    I have designed a crystal report which is fetching data from a Z developed function module. From crystal report side, used filters.But while executing report, it is calling the function module multiple times.
    due to this performance is very bad. Why report is calling mutiple times of the function module. Do need to modify from crystal report side or from function module side. Please clarify.
    Regards,
    Venkat

    A similar issue was seen a year ago It was regarding a function module call being executed multiple times from  CR4Ent tool. It involved the usage of sub reports inside that report and the issue was generic for any function module used for testing.
    At that time, the issue was resolved by upgrading to the latest available patch of CR4Ent and also by applying the latest patch at SAP R3 end.
    If you are able to post the exact support package and patch level of CR4Ent and also for the SAP R3 system, then someone can tell whether its the latest or not.
    -Prathamesh

  • Requests in phase completed with status warning and there is no output

    Hi guys,
    While running some requests, they complete with a warning and there is no output to view. The request log doesn't show any significant errors. What could be the reason for this and how can I troubleshoot this problem?
    This is the content of the request log:
    +---------------------------------------------------------------------------+
    Application Object Library: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    FNDMLSUB module: Multiple Languages
    +---------------------------------------------------------------------------+
    Current system time is 05-NOV-2013 13:47:59
    +---------------------------------------------------------------------------+
    **Starts**05-NOV-2013 13:48:00
    **Ends**05-NOV-2013 13:48:00
    Language function associated with program CAMAIR-CO Proforma Invoice Print determined no data exists for the given set of parameters
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Calling language function ARP_RAXINV_MLS_PACKAGE.ARP_RAXINV_MLS_FUNCTION  : 05-NOV-2013 13:48:00
    Language function returned the following languages :  .  : 05-NOV-2013 13:48:00
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    No completion options were requested.
    Output file size:
    0
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 05-NOV-2013 13:48:00
    +---------------------------------------------------------------------------+
    Thanks in advance and I hope Hussein Sawwan-Oracle will weigh on this.

    Hi,
    The report works fine when  we change some parameter values like the customer name.
    In that case, I believe the issue is because the user is trying to submit parameter values which are not available in the system, and as a result the report completes with warning. And if you see the error message in the logfile it says:
    "Language function associated with program CAMAIR-CO Proforma Invoice Print determined no data exists for the given set of parameters"
    But if you wish to confirm, you may try to fetch the data from the back-end and see if the records exist. But being said, I believe the cause being of non existence of data.
    Thanks &
    Best Regards,

  • How to specify PACKAGE SIZE for to RFC_READ_TABLE from PyRFC?

    I'm trying to use PyRFC to extract large tables via RFC_READ_TABLE (due to an uncooperative/unsupportive basis team).
    I know that RFC_READ_TABLE supports calling it with PACKAGE SIZE since ERPConnect does it by default.
    In Python for Basis (Part 1), I learned how to specify an Open SQL where clause using the OPTIONS:
    result = connector.call('RFC_READ_TABLE',
                           QUERY_TABLE=tablename,
                           DELIMITER=delimiter,
                           OPTIONS = [{'TEXT':where_clause}])
    Is there a way, and how to specify PACKAGE SIZE in this case?
    Thanks

    Hi,
    the package size works, but you need to call the function module multiple times in a loop. Here's an excerpt of the attached script:
    recordcounter = 1          #needs to be >0 to get the while loop going
    iteration = 0              #the number of times the function module got called
    while recordcounter > 0:  #as long as the function module calll returns rows...
        tempresult = self.call('RFC_READ_TABLE',             
                                ROWSKIPS=iteration*fetchsize,  #defines the number of rows to skip
                                **parameters)
        iteration=iteration+1  #increase the iteration
        data = tempresult['DATA']    #assign the returned rows to a variable
        if len(data) > 0:      #have there been any rows?
            for row in data:      #Do something with them
        else:
            recordcounter=0    #set recordcounter to 0 to end the while loop.
    The script is far away from being perfect. It doesn't deal with RAW fields and the data types it returns are all strings. It does what I needed it to do but it may not be sufficient for what you may be trying to achieve.
    Best regards
    Lars

  • To Run GPS by changing variable in UPSPL transaction automatically??

    Can somebody tell me if it is possible through an ABAP code to run global Plannig Sequence by changing variable value automatically by just a single click of button. (for eg. If i have a variable which can be given 5 different values, and i want to run a Global Planning Sequence for each variable value. Then can i write a ABAP code so that on just a single click of botton this is possible.) It would be helpful if somebody can send me a demo code also. My email id is [email protected]
    Regards
    Rishi

    Hi Rishi,
    To Answer, How to run GPS through ABAP code -
    i do not know a planning function to run a GPS, but i have written an ABAP code thought with i'm executing 3 planning functions one after another using function module UPC_FUNCEXE.
    CALL FUNCTION 'UPC_FUNCEXEC'
      EXPORTING
        I_AREA                =
        I_PLEVEL              =
        I_PACKAGE             =
        I_METHOD              =
        I_PARAM               =
    IMPORTING
      ET_LOG                =
      E_ERROR_OCCURED       =
    you can call this function module multiple time in your ABAP code. it will work same as a Global Planning Sequence.
    Can you explain more about how do you want to execute a planning sequence on the change of variable value.
    Regards
    Tarun

  • IE tries to load all movies if set to 'autoplay'

    I have created modules with many video clips included. These are all set to autoplay when the user gets to the slide. This works fine in Safari, Chrome and FF. However in IE 7 and 8 the browser tries to load ALL the movies when the swf first loads leading to crash/hang.
    If I turn off autoplay it behaves - but I would rather the videos autoplay when the user gets to a page.
    Any ideas!

    Hi Vish
    I have tested on IE7 under XP and IE8 under Vista
    In both cases it seems that IE (only) tries to load the movies in the module
    multiple times. I have used an Http analyser to log calls to the server and
    with IE see multiple loads of the same movie before the module has started
    like below:
    18     False     + 5.344           True     145.610 s     GET     200
    22.37 M     (None)
    http://learning.pukkafilms.com/file.php/2/moddata/scorm/13/mod1.flv
    19     False     + 11.578           True     139.345 s     GET
    200     22.52 M     video/x-flv
    http://learning.pukkafilms.com/file.php/2/moddata/scorm/13/mod1.flv
    I have tried turning off autoplay on the movies, and tried turning off the
    'prloader' option when publishing and tried turning off the autoplay when
    publishing but IE seems to still try and download any movies linked in the
    module.
    If you want to try on windows 7 you can access the course at
    learning.pukkafilms.com and use the enrolement key 'trial'
    Of course it may be a moodle thing!
    Nick
    I have now run quite a few tests... each module I have contains around 5 movies. If I split the module into 5 sub modules and link from module to module, only the first movie loads in IE and they all play OK. But this is a bore as new SWFs have to load every 3 or 4 pages. However it is a workaround!
    I am still interested in why IE tries to preload all the movies linked to from a single Captivate SWF. I have updated to latest players and am using the 'patched' captivate 5 to recover from last flash player update.
    The problem is not evident when playing locally - but I suspect the overhead on IE is smaller.
    N
    Message was edited by: crispin62

  • MAX not finding my FP1600 Ethernet

    I have an FP1600 ethernet module directly connected to a laptop. The laptop has a static IP of 25.0.0.1. I have cycled power on the FP module multiple times. MAX does not pick up any device. What is the default IP address of the FP module? I know MAX uses UDP broadcasting to find devices, however this does not seem to be working.
    Someone please help,
    thanks
    Solved!
    Go to Solution.

    The FP 1600 might have a different subnet configuration compared to your laptop. The best approach is to reset the 1600 module and reconfigure it using MAX. Follow the reset instructions from the manual below. Connect your 1600 module directly to the laptop by using a crossover cable or indirectly to a hub/switch by using a normal ethernet cable.
    You may have to restart Max in order to see the device under remote devices with IP address 0.0.0.0.
    DirkW
    Attachments:
    FP-1600.pdf ‏722 KB

  • Modification in the Analysis Table in WAD

    Has anybody anytime used modification option for Analysis wad properties. it has entries single module, multiple modules and others.
    I want to use this and write or configure for reading the entries in the data cell.
    Thank you

    Dear Sandeep,
    If you do not want to use the default display and behavior of the Analysis Web item, you can use the Modification parameter to change them. You can modify the table structure and the table cells.
    The Modification parameter provides modules whose use can be controlled using additional parameters.
    This function enables you to use similar options to those available in earlier releases with the Web Design API for Tables. Unlike the Web Design API for Tables, modifications enable you to make targeted changes to the display and behavior without any programming.
    Prerequisites
    The modules are the main prerequisites for making modifications to the Analysis Web item. The modules are implemented in Java. The SAP Basis infrastructure in SAP NetWeaver 7.0 does not support any customer modifications or extensions to Java coding. Customers are therefore not able to develop their own modules for modifications to the Analysis Web item.
    SAP delivers a number of sample modules. You can use parameters to modify the display and behavior of these modules.
    Procedure
    You use the modules as follows:
           1.      Select a module from the sample modules.
           2.      Specify the module in the Modification parameter of the Analysis Web item.
           3.      Control the display and behavior of the module by specifying the module-specific parameters.
    Please see the below link for more understanding..
    http://help.sap.com/saphelp_nw70/helpdata/EN/1a/456a3badc1b315e10000000a114084/frameset.htm
    Hope this helps u..
    Best Regards,
    VVenkat..

Maybe you are looking for

  • Color Correcting Help!

    I shot a bunch of timelapse clips (12 and 15fps) with two GoPro3's and transcoded them in the GoPro software, Cineform Studio, because PP5.5 apparently does not natively handle MP4's.  I made them universally 1080 and 29.97fps AVI's for import into P

  • How to fix "no version information available" error

    Hi, I installed zsce-core from package: http://aur.archlinux.org/packages.php?ID=38766 and then, I want to install zsce-phpmyadmin from this packge: http://aur.archlinux.org/packages.php?ID=38769 But I get belew error message: [william@myarch zsce-ph

  • Webservices - International Phone Numbers

    Hello, We have a customer who is implementing a web form on their website that with a call back number currently when web services creates the contact it populates with a +1 at the start of the phone number. I realise that this is driven off the ID m

  • PDF Spam cannot be filtered by IronPort?

    Recently, my company received many pdf spams although we have IronPort C100. Any solution for filtering PDF Spams?

  • NOT RECEIVING VERIZON EMAIL

    Since 8/27, I haven't received any emails into my verizon email account.  I have contacted the verizon tech support, no help; just ran through scripts.........for some reason I received and error message (account disabled; this is a sub account).   I