Differentiate between oa page and iStore page(jsp)

Hi,
How to Differentiate between OA page and iStore pages?

If the URL contains the JSP tag as OA.jsp or RF.jsp, then its an OAF application else if you see some custom jsp, eg, jftchrome.jsp etc, then the application is JTT/JTF based application:
eg:
OAF application:
http://sampledomain.oracle.com:5000/OA_HTML/*OA.jsp*?.......
http://sampledomain.oracle.com:5000/OA_HTML/*OA.jsp*?.......
JTT Application
http://sampledomain.oracle.com:5000/OA_HTML/*jtfchorme.jsp*?.......

Similar Messages

  • Differentiate between SRM Confirmation and Confirmation Cancellation

    We have a requirement to differentiate between SRM confirmation and cancellations.  In POWL both looks same. 
    1.  Is there any way we can assign different number ranges for confirmations and cancellations
    2.  Is there any other solution, from the POWL we can differnetiate these two documents
    Thanks

    Hi,
    Check in the confirmation POWL status
    1. SRM confirmation posted -- Status - Posted in the Backend
    2. SRM confirmation cancelled -- Status -Document deleted.
    Check this status
    Regards
    G.Ganesh Kumar

  • Differentiate between quantity contract and value contract?

    Hi,
    How can i differentiate between quantity contract and value contract?
    The agreement type of contract is  is not MK or WK , its custom created.
    regards
    N Banu

    Hi
    In Qty Contract you limit the total quantity of items that  required for you;
    It sums the partial quantities of Release Orders with the Contract as a reference.
    In a Value contract, you limit the total value of items to be required when
    you create Release Orders with the Contract as a reference, that is you
    don't work with the quantities as in the first case, but indeed with the
    quantities multiplied by the unit price you fixed in the Contract
    Refer the link for details
    http://www.erpdb.info/qquantity-contracts/
    http://help.sap.com/saphelp_crm40/helpdata/en/d2/650e26a21fe04bba5298afd089b9dd/content.htm
    Regards
    Anand

  • Differentiate between Simple, Medium and Complex Queries.

    Hi Gurus,
    I am a Tech. Architect on this new project. I would like to know how to differentiate between Simple, Medium and Complex Queries in BW because I need this info to work on the Estimates. Has this differentiation got anything to do with the Backend config also?
    Thanks in Advance.
    Chandu.

    Hi
    You need to understand the requirements and consider the following before you classify........
    1) Queries that are based on multiple key figures--which may result in cell definition.
    2) Queries with complex calculations.
    3) Queries that are based on Variable Exits
    Regards
    Srinivas Bandi

  • Does any one knows how to differentiate between outgoing mail and incoming

    Hi,
    I'm using the IV webclient inbox.
    Does any one knows how to differentiate between outgoing mail and incoming mail in the result list ?

    Hi,
    I'm using the IV webclient inbox.
    Does any one knows how to differentiate between outgoing mail and incoming mail in the result list ?

  • To differentiate between normal payment and urgent payment

    Hi All,
    I have refered the oss notes 138456, it is very old oss notes and our version is higher. I did know that instruction keys can be used for it. During Automatic Payments F110, would like to differentiate the normal payments and urgent payments.
    but do not know what exact configuration is required for it. kindly guide.
    Thanks and Regards
    Reena

    Reena-
    In order for you to run your F110 payment runs based on instruction keys follow the process described below:
    Maintain instruction key fields in the vendor master data.
    In F110 transaction go to the third tab "Free Selection". Under the selection criteria  for field name, drop down and in the next pop up box select "Vendor master record" and click on "Instruction Key". This will populate instruction key in the field name.
    Next, enter your instruction key under values. Like if you have configured 01 for urgent and 02 for normal, and if you want to run payment for normal vendors, you can enter 02 here.
    By doing this, payment program will look select all the vendors who have instruction key 02.
    Hope this helps.
    Shail

  • Cant differentiate between regular fonts and fonts which are bolder in firefox 5

    Hi ,
    I have a webpage created. In a paragraph I use bold font for only hyperlinks . when i view this page in firefox 5 all fonts look bolder paragraph. But in firefox 3.6 , IE7,IE8,IE9 version only hyperlinks look bolder in paragraph.

    Can you post a link?
    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • How to differentiate between printed form and form sent by Mail

    Hello All,
    We have a requirement where we need to print a different text in the smartform based on whether the PO is being printed or being sent by mail. There is a radio button in PO Output screen which lets you select whether to print the PO or send it by mail. Would anyone know which table holds this data?
    Thanks for your time.
    Regards,
    Johnson

    Hi
    Which SRM version are you using ?
    <u>You can change smartform in transaction SMARTFORMS. Choose From BBP_PO and click on edit button. Go to Global Settings\Global definitions and go to Initialization tab.</u>
    <u><b>You will find the relevant field in SF_PO structure</b>
    Based on the PO GUID, read the PO relevant data using the function module BBP_PD_PO_GETDETAIL. Hope here you can identify the table / field names as well.
    </u>
    <u>Also, you can add
    IF... ENDIF statements and add a flag variable
    based on the current status of document. And use this flag to differntiate between the two statuses.</u>
    <i><u>Related link -></u></i>
    Re: SRM PO Print
    <u>SRM PO Print</u>
    Re: How to change default smartform triggered while printing for shopping cart
    PO output (classic scenario)
    Revised PO
    Re: SRM PO SMARTFORM
    delete printed PO
    <u>Trigerring Smartform</u>
    Trigering Smartform
    Re: SRM PO Form
    Do let me know.
    Regards
    - Atul

  • How to differentiate between Single click and double click event in List

    I am facing a problem while using list in awt.
    I want to execute some code on single click and other on double click but when double click event occurs it also executes the single click code.
    because i have added both actionlistener and itemlistener on the list.
    How to sort out this problem.
    please help me out.
    Thanks buddies.

    Hello Meeraj_Kanaparthi
    Thanks for helping i m giving u the code i have tried.
    Plz help me on this...
    Thanks........
    import java.awt.*;
    import java.awt.event.*;
    class CheckList extends Frame implements MouseListener
         List l1;
         int x;
         int y;
         CheckList()
         setSize(500,500);
         setLayout(new FlowLayout());
         l1=new List(10);
         add(l1);
         l1.add("Item 1");l1.add("Item 2");l1.add("Item 3");l1.add("Item 4");l1.add("Item 5");
         x=6;
         y=0;
         l1.addMouseListener(this);
    //     l1.addItemListener(this);
         show();
         public void execute(int y)
         if(y==1)
         {System.out.println("3");
              l1.remove(l1.getSelectedIndex());
         if(y==2)
         {System.out.println("4");
              l1.add("item " + x);
              x++;
         public void mousePressed(MouseEvent e)
              System.out.println("Pressed");
         public void mouseReleased(MouseEvent e)
              System.out.println("Released");
         public void mouseEntered(MouseEvent e) {}
         public void mouseExited(MouseEvent e) {}
         public void mouseClicked(MouseEvent e)
         if (e.getClickCount()==1)
              System.out.println("1");
              y=1;
         if (e.getClickCount() == 2)
         {System.out.println("2");
              y=2;
              execute(y);
         public void actionPerformed(ActionEvent ae)
         public void itemStateChanged(ItemEvent it)
         public static void main(String ag[])
         new CheckList();
    }

  • Can you please differentiate between compile time and runtime?

    hi,
    I heard many of them speaking about complie time and runtime. I sometimes feel they talk about it but they themselves don't know about it.
    Please help me out.
    Thanks in anticipation
    Regards
    Deepa Datar

    Just remember, runtime means you are running the program. Compile time means your are in the process of building the program ("javac bla.java").

  • Differentiate between brand new and factory refurbished macbook pro

    How to spot the difference whether it is a brand new or factory refurbished macbook pro?

    I had a problem with my friends new MBP too. These steps fixed it. Keep me posted.
    First, Check for software updates, by clicking on the Apple () and then on 'Software Update'
    Then try
    SMC Reset
    http://support.apple.com/kb/HT3964
    PRAM Reset
    http://support.apple.com/kb/PH4405

  • Servlet filter that can differentiate between Filter and Servlet Writers

    Hey,
    I'm trying to build a Filter and HttpServletResponseWrapper that, when applied to a generic servlet, can differentiate between the output stream from the Servlet and the one from the Filters.
    So, say I have a servlet:
    PrintWriter pw = response.Writer();
    pw.write( "Output from servlet" );
    pw.close();And a filter that is applied to the servlet:
    PrintWriter pw = response.Writer();
    pw.write( "Output from filter" );
    pw.close();I want to be able to do this in my filter that is able to differentiate between the servlet and filter response:
    System.out.println( "Response from servlet: " + responseWrapper.servlet.toString() );
    System.out.println( "Response from filter: " + responseWrapper.filter.toString() );The responseWrapper.servlet and responseWrapper.filter can contain all filter responses from all the servlet(s) and filter(s), respectively.
    Can anyone give me guidance as to how to start with this - really I just need to know if I can differentiate between servlet and filter responses in a generic way (without having to modify the response specially in the filter or servlet files that write output)
    Thanks for your time.

    first thing's first..if the OutputStream if not closed Either a Filter or a ServletChain can write on to the stream.
    There could be cases where the servletoutputstream would be closed at servlet end itself.Therefore,its a valiant effort by acomplishing a responseheader in the response to indicate that.
    Now once the response/outputstream is not closed or flushed out there is not direct way by which you do this unless we indicate using response Headers as flags when we are implementing FilterChaning.
    Hope that might help :)
    REGARDS,
    RaHuL

  • Compiler directives to differetiate between solaris 9 and solaris 10

    i have an API which makes certain function calls which are different for solaris 9 and solaris 10. i cannot add my own defines, since that would mean that applications too would have to define them.
    does the Sun Workshop compiler provide any default directives to differentiate between solaris 9 and solaris 10? something like #ifdef __SunOS_5.10 or something like that?
    thanks.

    As explained in the C Users Guide, the compiler predefines several macros, one of which is represents the Solaris version number.
    The macro name is derived from the output of the commands
    uname -s and uname -r, starting with __, connected by _, and with dots replaced by _.
    Running on Solaris 9:
    % uname -s
    SunOS
    % uname -r
    5.9
    The defined macro name is __SunOS_5_9
    On Solaris 10 you get __SunOS_5_10
    __SunOS_5_9

  • How would i design the relationship between "question", "subquestion", and "answer"

    Hi all. Consider the following scenario:
    Scenario:
    A Question has an Answer, but some Questions have Subquestions. For example:
    1. Define the following terms: (Question)
    a) Object (1 marks) (Subquestion)
    An instance of a class. (Answer)
    b) ...
    2. Differentiate between a constructor and a destructor (2 marks)
    (Question)
    A constructor constructs while a destructor destroys.
    (Answer)
    Question:
    I want to model Questions, Subquestion, and Answer as Entities with relationships/associations, preferably binary relationships as i feel ternary relationships will be problematic while programming. Any suggestion on how i would
    go about this?
    There is never infinite resources.
    For the Question Entity, a question has the attributes "QuestionPhrase <String>", "Diagram<Binary>", and "Marks
    <Decimal>".
    For the SubQuestion Entity, a subquestion has the attributes "SubQuestionPhrase <String>", "Diagram<Binary>", and "Marks <Decimal>".
    For the Answer Entity, an answer has attributes, "AnswerPhrase<String>", "Diagram <Binary>"

    Yes. I am in .Net. I sure do hope i did not ask in the wrong forum. :-|
    Hi KCWamuti,
    If you need to design the relationship between Question table and Answer table in SQL Server, as Uri’s and Visakh’s posts, you can create the foreign key to establish relationship between tables, and use join in query to get your desired result. For more
    information about JOIN in SQL Server, please review this article:
    Different Types of SQL Joins.
    However, if you need to model Questions, Subquestion, and Answer as Entities in .Net, then the issue regards data platform development. I suggest you post the question in the Data Platform Development forums at
    http://social.msdn.microsoft.com/Forums/en-US/home?category=dataplatformdev . It is appropriate and more experts will assist you.
    Thanks,
    Lydia Zhang

  • Network infrastructure review - how to differentiate between network consultants?

    Not sure this is the most appropriate forum to discuss as its not a Cisco product technical question per se but thought i'd give it a go anyway in case others have been through similar and can give some input. 
    Following recent mergers, acquisitions etc my company would like carry out a network review to find a recommended overall architecture/strategy moving forward.  We have engaged with a number of different consultancies keen to assist us with this.
    The problem is - what should we be asking/checking to help differentiate between these consultancies and select the best one for the job? They all "talk a good game" and can boast of CCIE accreditations in their teams etc - so what should we be doing to make sure we select the right people? (Cheapest does not always mean best!)
    One thing we are keen on is that we only want them to carry out a review and give us recommendations - its not a mandate for them to actually sell us specific products and services following the review. 
    Any thoughts on this from forum members?

    Thanks for the response.  
    It’s not so much finding a Cisco partner that’s the problem, it’s differentiating between them.   If we talk to two different Cisco partners, then each can boast of CCIE engineers and give references from satisfied customers etc.  Each will also have different timescales and pricing associated with them – is there any way we can differentiate between them to ascertain which one would be best for the job at hand or – if they have the same level of accreditation etc – should we simply go with the cheapest/quickest?

Maybe you are looking for

  • Mass change in Vendor & Customer Master

    Hi All, Is there any Mass change available in Vendor & Customer Master? Thanks Pankaj Garg

  • "no access to the digital certificate" - Trying to export my first iOS app from Flash - Help please

    Hello I'm trying to export my first iOS app from flash to my desktop / on the device (Flash Pro CC, Iphone5) I followed the instructions on the adobe website to build an air app for iOS but on the last step it doesn't export the app. What I've done s

  • OEL 5.5 - Unable to configure xserver

    Hi I have installed OEL 5.5 on a brand new laptop. Not on the VM. I formatted the HD and have done a complete OEL 5.5 install. This is a HP Pavilion dm4 system i 'm trying to configure and start xserver .. but getting the following error .. Error Syn

  • Disk to Disk Backup

    Greetings, I am just getting started with Aperture and am planning on using the referenced masters setup. I will be saving my masters onto a 1tb external hard drive (drive A). I want to then back this disk up onto a 2nd external hard drive (Drive B)

  • Is ther a BAPI or RFC that can read any table ?

    I want to read 35 tables in SAP database. Is ther a BAPI or RFC that can read any table ? If I use RFC to read these tables, I will write a lot of codes. It may be a large work.