I have a requirement of not using j_security_check

I have a requirement of not using the j_security_check in the FORM action and code my own servlet. Can yuo guide me as to how it can be done.

Hi Jawad,
If you have requirement for DENSE ranking you can refer following link:
Dense Ranking – Xcelsius Dashboard
Else for Ranking check the following:
Dashboards Trick - Finding Top or Bottom N Items based on a Measure
Regards,
Supriya

Similar Messages

  • Whether -3113 and -3114 have sequence requirement or not when occurring?

    A proc code connects to Oracle database. When the link between application and database is down, the proc code will prompt the sql error code.
    I find that it will promt :"-3113 end-of-file on communication channel" firstly. And then, it will prompt "-3114 not connected to ORACLE" in every call to this proc code before the link recoveries.
    My question is that whether it will prompt -3113 error code at the first time and -3114 after the first time in every call before recovery or not?
    -3113 and -3114 have sequence requirement?
    Thanks a lot.

    >
    -3113 and -3114 have sequence requirement?No.
    While you often encounter both errors together or more specifically you first encounter the -3113 "Connection lost" and later the -3114 "No Connection" you have no guarantee that you will always encounter both. But why care? The solution is identical for both errors, reestablish the connection.

  • We have ECC 6, but not using New GL concept

    Dear Members,
    We have ECC6 version, but we are not using any functionality relating to New General Ledger concept.
    When I am running Carryforward Balances I am getting Following Msg;
    Balance carryforward is not possible; GLT0 update is not active
    Message no. FAGL_MIG401
    Then i changed configuration settings by selecting check boxes of
    Write classic general ledger
    read classic general ledger
    after this system is allowing me to  run the balance carryforward program.
    but the problem is there are no balances in gls for previous year ..eventhough posting are there.
    how to solve this problm.??
    regards,
    shashi kanth reddy

    Hi Jigar,
    Thank u for u r ans.
    But does it has effect anywhere .. as i got that error right.
    and in this version there is no tcode of f.16 so i used that tcode for carryforwarding balances its dint give any error.it worked well.
    my doubt is with latest versions new gl comes with activation defaultly or not??
    Points hav been assigned.
    regards,
    shashi kanth reddy

  • I have an iphone4 ATT, not using it anymore. Can it be unlock to use oversea?

    I have an ATT Iphone 4, not using it anymore. Can it be unlock to use oversea with other simcard? If so, how or if the apple store can do that?

    Only ATT can do that for you and you must qualify for unlocking.

  • Because of your intolerance of "dissenting" views, I have uninstalled and will not use Firefox.

    "Mozilla believes both in equality and freedom of speech. Equality is necessary for meaningful speech. And you need free speech to fight for equality. Figuring out how to stand for both at the same time can be hard."
    But only your form of "equality," I guess.
    Why this would be an issue to a company that intended to employ it's original creative force is beyond me.
    I will not be using firefox or any Mozilla products.

    Restricting the beliefs of your employees does not protect the web. It has the opposite effect.
    Looks at your facebook page. I did not see a single post support Mitchell Baker's position. She needs to go.

  • How to capture SOAP fault when using "Do not use SOAP envelope" parameter

    Hi,
    we have a synchronous  RFC -> XI -> Web Service scenario. The Web Service requires some custom SOAP header elements for user authorization which forced us create the entire SOAP message in a message mapping and to set the "Do not use SOAP envelope" parameter in the receiving SOAP adapter.
    In order to capture the SOAP fault message from the Web Service we have created a message interface with a fault message and also created an interface mapping with a fault message mapping.
    Our problem is that the fault message is not populated when we get a SOAP fault message back from the Web Service. Is this due to the fact that we have set the  "Do not use SOAP envelope" parameter?
    Thanks in advance!
    Stefan
    Message was edited by:
            Stefan Nilsson

    Hi Bhavesh,
    I have exaactly same scenario. But the only difference is that the Successful payload is also not coming into PI.
    The request is successfully hittng the webservice.
    Please guide me on how to capture the paylod.
    I am using the WSDL provided by the thirdparty but sill the message is not coming into PI.

  • "Do Not Use Envelope"  feature: WS Receiver vs Soap Receiver

    I have a scenario that I need to call web service on receive side.
    When I use Soap adapter, need to use mapping program to compose SOAP message mannully:
    Envelope
       + Header
         ++MessageID
         ++Action
       +Body
         ++FistName
         ++FistName
    In SOAP receiver adapter, I do not use PI envlope, so I have to choose "Do Not Use Soap Envelope" option.
    When I use WS receiver adapter to call the same web service, I could not find the way the Soap adapter does.
    Anyone tried to use same feature in WS adapter ?
    Thanks
    Liang
    Edited by: Liang Ji on Oct 27, 2011 4:33 PM

    >Anyone tried to use same feature in WS adapter ?
    IMO, WS adapter does not provide "Do Not USe Envelope option" in 7.1 as well in  above versions.   You might want to see other experts opinion.

  • Need to test if a column have unique values or not

    Hi all,
    in ETL process I need to check if some cols have unique values or not using sql or plsql.
    Suppose we need to load a big file data with external table initially and then test if values
    on one or more columns have unique values  in order to proceed with ETL process.
    What is the faster test I can execute to verify that a column have unique values or not?
    It's better for the ETL performance, use:
    a. techniques regard constraints like described on Ask tom forum
    "ENABLE NOVALIDATE validating existing data"
    (Ask Tom "ENABLE NOVALIDATE validating existing da...")
    b. "simply" query on the data?
    like this:
    select count(count(*)) distinct_count,
             sum(count(*)) total_count,
             sum(case when count(*) = 1 then 1 else null end) non_distinct_groups,
             sum(case when count(*) > 1 then 1 else null end) distinct_groups
    from hr.employees a
    group by A.JOB_ID
    c. use analytics function?
    d. use some feature directly on external table?
    Bye in advance

    Here is the example to handling the errrs using LOG_ERRORS into concept. You will check this and let me know if any doubt you have
    DATAFILE:-
    1000,ANN,ZZ105
    1001,KARTHI,ZZ106
    1002,PRAVEEN,ZZ109
    1002,PARTHA,ZZ107
    1003,SATHYA,ZZ108
    1000,ANN,ZZ105
    ----- Original Table With unique constraints
    SQL> CREATE TABLE tab_uniqtest(student_id     NUMBER(10) UNIQUE,
                              student_name   VARCHAR2(15),
                                                      course_name    VARCHAR2(15)
      2    3    4
    Table created.
    ----- External table
    SQL> CREATE TABLE tab_extuniqtest(student_id     NUMBER(10),
      2                               student_name   VARCHAR2(15),
      3                                                  course_name    VARCHAR2(15)
      4                              )
      5  ORGANIZATION EXTERNAL
      6  (
      7  DEFAULT DIRECTORY ann_dir
      8  ACCESS PARAMETERS
      9  (
    10    RECORDS DELIMITED BY NEWLINE
    11    BADFILE 'tabextuniqtest_badfile.txt'
    12    LOGFILE 'tabextuniqtest_logfile.txt'
    13    FIELDS TERMINATED BY ','
    14    MISSING FIELD VALUES ARE NULL
    15    REJECT ROWS WITH ALL NULL FIELDS
    16    (student_id,student_name,course_name)
    17  )
    18  LOCATION ('unique_check.csv')
    19  )
    20  REJECT LIMIT UNLIMITED;
    Table created.
    ---- Error logging table to log the errors
    SQL> CREATE TABLE dmlerrlog_uniqtest(ORA_ERR_NUMBER$     NUMBER ,
      2                                 ORA_ERR_MESG$       VARCHAR2(2000),
      3                                 ORA_ERR_ROWID$      ROWID,
      4                                 ORA_ERR_OPTYP$      VARCHAR2(2),
      5                                 ORA_ERR_TAG$        VARCHAR2(4000),
      6                                 inserted_dt         VARCHAR2(50) DEFAULT TO_CHAR(SYSDATE,'YYYY-MM-DD'),
      7                                 student_id              VARCHAR2(10)
      8                                  );
    Table created.
    ---- Procedure to insert from external table
    SQL> CREATE OR REPLACE PROCEDURE proc_uniqtest
      2  AS
      3  v_errcnt NUMBER;
      4  BEGIN
      5      INSERT INTO tab_uniqtest
      6      SELECT * FROM tab_extuniqtest
      7      LOG ERRORS INTO dmlerrlog_uniqtest('PROC_UNIQTEST@TAB_UNIQTEST') REJECT LIMIT UNLIMITED;
      8      SELECT COUNT(1) into v_errcnt
      9      FROM dmlerrlog_uniqtest
    10      WHERE ORA_ERR_TAG$ = 'PROC_UNIQTEST@TAB_UNIQTEST';
    11       IF(v_errcnt > 0) THEN
    12       ROLLBACK;
    13      ELSE
    14        COMMIT;
    15       END IF;
    16      DBMS_OUTPUT.PUT_LINE ( 'Procedure PROC_UNIQTEST is completed with ' || v_errcnt || ' errors') ;
    17  EXCEPTION
    18   WHEN OTHERS THEN
    19    RAISE;
    20  END proc_uniqtest;
    21  /
    Procedure created.
    SQL> SET SERVEROUTPUT ON
    SQL> EXEC proc_uniqtest;
    Procedure PROC_UNIQTEST is completed with 2 errors
    PL/SQL procedure successfully completed.
    SQL> SELECT STUDENT_ID,ORA_ERR_MESG$ FROM dmlerrlog_uniqtest;
    STUDENT_ID                     ORA_ERR_MESG$
    1002                           ORA-00001: unique constraint (
                                   SCOTT.SYS_C0037530) violated
    1000                           ORA-00001: unique constraint (
                                   SCOTT.SYS_C0037530) violated

  • MRP not using UoM

    Version: 2007A PL30
    Description of requirements: MRP not using UoM.
    Business needs: MRP should recommend purchase quantities in line with the purchasing UoM.  If a product can only be bought as a case, then no fractions (1.6 cases) should be recommended, instead 2 cases should.
    Examples: When a certain product has a purchasing UoM of 24 (a case) and sales UoM of 1 (each), then when MRP recommends the purchase of 30 individual units it should recommend 2 cases.  Currently it will recommend 1.6 cases (the vendors will not sell 1.6 cases, you can only buy them by the case of 24) so it makes no sense for SAP to recommend 1.6.
    Current Workaround: Customer uses the MRP recommendations but rounds up the quantities to the nearest purchasing UoM.
    Proposed solution: See “Examples” above.

    Hello,
    In the Item Master Data-> Planning data tab, please mention the order multiple as 24 (or its multiple).
    Please see if this works.
    Regards
    Preety

  • Opening my Photoshop Elements 11 does not work. I always get following message: "Could not open a volume of work, because the file is locked or you do not have the required permissions. Undo the protection of the file on using the command 'Properties' in

    Opening my Photoshop Elements 11 does not work. I always get following message: "Could not open a volume of work, because the file is locked or you do not have the required permissions. Undo the protection of the file on using the command 'Properties' in Windows Explorer." What is wrong? I cannot unterstand what I have to do!

    Could not open a scratch file because the file is locked or you do not have the necessary access privileges. (…) | Mylen…
    Mylenium

  • Why when I try to update certain app it require an old email address and password I have not used for years and I do I get to update them on my new details

    Why when I try to update certain app it require an old email address and password I have not used for years and I do I get to update them on my new details

    Apps are tied to the Apple ID that was used to purchase them and you will always need to use that ID and password in order to update them.
    Saying that you do get to update them on your new details makes no sense at all.

  • Unable to install "Mavericks" as it asks for my 'Admin Password" and it does not work. Have not used it since I got my iMac in 2008. First upgrade to do so. Any solutions please?

    I have a 2008 iMac which had Leopard initially and I have upgraded to each new OS without a hitch. I downloaded "Mavericks" and began the install, it asked me for my "Admin Password" which I have never ever used since I set the Mac up, I have it safely tucked away so entered it, it rejected it each time. Am sort of lost now, as if my "Admin P/W" does not work here can I go from here?
    I have seen many others with this problem but so far most of the solutions seem to be for the "log in" or "User" password not the Admin one.
    I am running Mountain Lion successfully.
    I have my original disks as supplied and also a Snow Leopard install disk.
    I have seen some info about fixing this via Lion Recovery partition which I must have due to using Mt Lion.
    How can I repair this situation.
    Thank you to all those who respond.

    Thanks for your reply.
    I have visited both the sites you listed but it seems to me that the solutions mentioned are to fix the User or log in p/w's.They do not seem to refer to the admin one again.
    I understand about it being just like other user accts but the fixes do not really refer to it only the above two.
    I have no problem booting up my Mac, I do not use a log in p/w so my problem is with the Admin p/w that was set up back in 2008. This is what I need to reset etc.
    I am quite confused over these pw's as to just what is what and I need to make sure I understand all before I get into deeper trouble following these links.
    This Admin p/w that was set up has never been used and is the only p/w I have except for my Apple ID. All previous upgrades only required my user name log in which has no p/w set up.
    I hope you can follow me here butI have read so much on this it is becoming very confusing about whcih p/w's are what.

  • I use an iMac (27" 3.4) and have problems with the Magic Mouse. It does not use contact, but opens useless and unrelated submenus with every click, even on the empty desktop. I can't shift, open or close pages. Has anyone out there the same problem?

    I use an iMac 27" (mid 2011). Until recently I had OSX 10.6.8 installed, but both, the HDD and SSD had to be replaced, and I lost all the memory.
    After the repair through Apple Care I had OSX 10.7.5. (Lion) installed, which developed a Magic Mouse problem.
    Unlike with most users, I have no problems with connection, but grapple with a different kind of erratic behaviour.
    All fancy stuff is turned off in the mouse preferences. When I try to move, open or close pages, unrelated submenus pop up and hinder the
    required task. No matter how often I click, these menus stay there, and they even come up when clicking on the bare desktop.
    It renders the mouse absolutely useless, as no work can be done with it.
    The first 'Magic Mouse' had depleted batteries every few days, despite switching it off after use.
    I was supplied a new Mouse, which does better battery-wise, but the problems are the same. I can't get a result by clicking on any link, due to
    the pop-up menus, so both 'Magic Mice' are totally useless.
    At present I am using the old USB mouse from my Mac Pro, and that works still o.k.
    The problem are not the mice, but the software. The first 2 weeks after installation of OSX 10.7.5 the Magic Mouse worked though.
    I have no idea as to what the reason may be.
    Has anyone in the community ever experienced that particular problem. Any hint would be welcomed.
    Thank you!

    Not using any mouse pad, I have a very smooth desktop. But I just tried to use a sheet of A4 printing paper, but no result, the problem persisted.
    Someone on this forum suggested, that USB3 may interfere with the magic mouse.
    I have 2 LaCie HDD's about 70 cm away from the mouse, I use them on Thunderbolt. But in operation or not - the result is the same, the mouse plays up! Just now I was clicking the desktop and the mouse created a new folder!!
    Thanks for the advice, Bee
    Cheers, Gerd

  • Why is my iPod running slow, uses nearly 600MB of space that I'm not using, and have short battery life?

    I have owned an iPod touch for about a month now and I having some problems with it. On occasion, my iPod is running very slowly, even when I keep my multitasking bar empty, the native apps such as the App Store, Music, Videos, etc. lag a lot whenever i try to access content. This was not the case for me when I was running iOS 4, in which my iPod ran extremely fast and had great battery life. I most of the time keep my wireless turned off (to be specific, i turn on airplane mode approx 3/4 of the time) along with my brightness turned all the way down. Any suggestions?
    I also have another concern with my storage space. I have an 8GB 4th Generation, and whenever I plug it into iTunes, I notice nearly 700MB of space that I am not using on my iPod, I have gone through all of the data and calculated that the 700MB of space that iTunes classifies as "other", i am not using this storage space. Is there anything that I can do about this or do I have to erase everything and restore to get rid of this?
    Thank you for taking the time to read my question, and if you can, please answer.
    Thanks.

    - iOS 5 does slow the iPOd.  Periodically powering off and then back on helps since it free up memory that apps do ot release. The iPod only has 256 MB of memeor and low memory slows the iPod.
    - iOS 5 also increases battery drain. I leave mine in airplane mode when not using wifi or BT. Also see:
    iPod: How to extend battery life
    - An other of about 1/2 GB is normal and expected.  to get it down you need to restore your iPod.  Sometimes restoring from backup works but sometimes a restore to factory defaults/new iPod is required.

  • I have just upgraded from Elements/Premiere elements 11 to version 12. I am running on a PC with Windows 7. When I try to run video from the existing catalogue or video newly imported I get a window stating "....system does not have the required compresso

    I have just upgraded from Elements/Premiere elements 11 to version 12. I am running on a PC with Windows 7. When I try to run video from the existing catalogue or video newly imported I get a window stating "....system does not have the required compressor/decompressor (codec) installed" Where has it gone? Where do I get a new one? I am getting REALLY REALLY fed up with trying to find an answer!!!!!!!!

    Try to disable hardware acceleration in Firefox.
    *Firefox > Preferences > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • How can I load data with Scripts on *FDM* to a HFM target System????

    Hi all! I need help because I can´t find a good guide about scripting on FDM. The problem I have is the next one. I have on mind to load my data with data load file in FDM to a HFM target system, but I would like to load an additional data using an e

  • Powerbook Display flaws

    I have a Powerbook 1.67Ghz that I've had since May of last year. The day I picked it up it had a stuck red pixel, which I was not too happy about but they wouldn't do anything about so I had to live with it. Recently it started developing other probl

  • ORA-31011 error over a "?"

    Hi all. I've got a database table which has a CLOB column and a Sys.XMLType column. In order to store the XML data, I insert the record with an EMPTY_CLOB() value, get a reference to the CLOB (as a java.sql.Clob object). Once I have the Java Clob obj

  • Vendor return - Debit nore

    Hi Experts Material is rejected and we dont have to send it back to the supplier. We decide to scrap it.Wecan scrap the quantity using movement type 555 in MIGO. Can you advise how the debit note will be raised as we are not creating a return po in t

  • Fonts in Latex look ugly

    Hi, i am writing my bachelorthesis in latex. At home i compile it with latex running archlinux and at work i compile my thesis with latex running windows (using MikTex and TeXnicCenter). I compile my thesis with pdflatex and the pdf compiled on windo