Could anyone tell me what the 'irj' stands for? what is its abbreviation?

thanks, I have not found any explanation from SAP documentation.

hi,
In addition to what others said
The Java iView Runtime is part of the iViewServer. It runs as a servlet on a Java application
server. It executes Java iViews and renders the returned content. It provides Java iViews with
access to infrastructure services such as user management. It also offers personalization of
Java iViews and stores personalization data and any other persistent data in the persistence
layer.
In addition the Java iView Runtime provides a development platform that allows developers to
build their own iViews written in Java or JSP.
SAP portal components are deployed as enterprise archives to the iView Runtime for Java (IRJ), the EP's Java runtime environment. You can develop and build a portal component archive (PAR) file with any commercial IDE you can even use Apache Ant, the open source build tool. For the Eclipse Platform, SAP provides a custom plug-in that supports portal component development projects with wizards and templates based on the DynPage framework. The Eclipse plug-in also enables the hot deployment of portal archives directly to the IRJ.
Regards,
Ganesh N

Similar Messages

  • Could anyone tell me whether the ios7 for ipad with retina display comes with flash,compass and calculator!? Because mine has none!

    Could anyone tell me whether the ios7 for ipad with retina display comes with flash,compass and calculator!? Because mine has none!

    ravelvanto wrote:
    Could anyone tell me whether the ios7 for ipad with retina display comes with flash,compass and calculator!? Because mine has none!
    Hi ravelvanto,
    mine too (iPad 3/WiFi) hasn't this features.
    Especially the flash can't be realized because there is a simple lack of a flash light.
    Why there is no compass, calculator (I'm using the Wolfram App instead), or the weather app etc. I don't know...
    Best regards, mackevin

  • New to developing could anyone point me in the right direction for sqlite issue?

    Hello I am a new developer in training trying to work on my first project I have been hit by a major roadblock that i have worked on correcting for 5 days before posting here.  I am currently using flash builder 4.6 coding in flex.  I am trying to make a database that is able to be accessed accross multiple views.   I am also trying to hook up the date spinners so it search's in the Archive view between the selected dates for entries. However for the life of me I cannot seem to get a database up and running.
    I keep getting the following errors.
    Database is now open
    Error #2044: Unhandled SQLErrorEvent:. errorID=3115, operation=execute , message=Error #3115: SQL Error. , details=no such table: 'stb'   //this error is from the Journal view
    Database is now open
    Error #2044: Unhandled SQLErrorEvent:. errorID=3115, operation=execute , message=Error #3115: SQL Error. , details=no such table: 'stb' // this error is from the Archive View
    // Journal view code
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark" title="Journal" creationComplete="createDatabase()">
              <fx:Script>
                        <![CDATA[
                                  import flash.data.SQLConnection;
                                  import flash.data.SQLStatement;
                                  import flash.errors.SQLError;
                                  import flash.events.Event;
                                  import flash.events.SQLErrorEvent;
                                  import flash.events.SQLEvent;
                                  import flash.events.TimerEvent;
                                  import flash.filesystem.File;
                                  import flash.utils.Timer;
                                  import mx.collections.ArrayCollection;
                                  import mx.utils.ObjectUtil;
                                  import org.osmf.events.TimeEvent;
                                  public var sqlc:SQLConnection = new SQLConnection();
                                  public var dbFile:File;
                                  public var dbConnection:SQLConnection;
                                  private function createDatabase():void
                                            dbFile = File.applicationStorageDirectory.resolvePath("assets/appsimplicity.sqlite"); //last modified
                                            dbConnection = new SQLConnection();
                                            dbConnection.addEventListener(SQLEvent.OPEN, onDatabaseOpen);
                                            dbConnection.addEventListener(SQLEvent.CLOSE, onDatabaseClose);
                                            dbConnection.openAsync(dbFile);
                                  private function onDatabaseOpen(evt:SQLEvent):void
                                            trace("Database is now open");
                                            var statement:SQLStatement = new SQLStatement();
                                            statement.sqlConnection = dbConnection;
                                            statement.sqlConnection.open(appsimplicity.sqlite, SQLMode.READ);
                                            statement.text = "CREATE TABLE IF NOT EXISTS stb (id INTEGER PRIMARY KEY AUTOINCREMENT, title TEXT , entry TEXT)";          ///working on issue here
                                  private function onDatabaseClose(evt:SQLEvent):void
                                            trace("Database is now closed");
                                  private function saveJournal():void
                                            var statement:SQLStatement = new SQLStatement();
                                            statement.sqlConnection = dbConnection;
                                            statement.text = "INSERT INTO stb_ (title , entry) VALUES ('"+title_txt.text+"','"+entry.text+"')"; //is this maybe wrong?
                                            statement.execute();
                                            title_txt.text = "";
                                            entry.text = "";
                                  //debug log
                                  //[SWF] Main.swf - 3,574,774 bytes after decompression
                                  //Database is now open
                                  //Error #2044: Unhandled SQLErrorEvent:. errorID=3115, operation=execute , message=Error #3115: SQL Error. , details=no such table: 'journallistb'
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:Label id="title_lable_txt" x="10" y="48" width="124" height="21" color="#E2881E" text="Title:"/>
              <s:TextInput id="title_txt" x="47" y="36" width="146" enabled="true" prompt="Entry Title" needsSoftKeyboard="true" />
              <s:TextArea id="entry" x="9" y="120" height="147" enabled="true" prompt="Entry" needsSoftKeyboard="true" />
              <s:Button id="savejournal" x="11" y="326" width="296" label="Save" click="saveJournal()" />
              <s:Button id="addphotostojournal" x="11" y="275" width="296" label="Add Photos"/>
              <s:Label id="journal" x="10" y="97" color="#E2881E" text="Journal:"/>
              <s:Label id="Datefield" x="145" y="97" color="#E2881E" text="Date:"/>
              <s:TextInput id="date" x="187" y="78" width="120" height="34" enabled="true" prompt="enter date"/>
    </s:View>
    //Archive view code
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark"
                        title="Archive" creationComplete="createDatabase()">
              <fx:Script>
                        <![CDATA[
                                  import mx.collections.ArrayCollection;
                                  public var dbFile:File
                                  public var dbConnection:SQLConnection;
                                  public var selectQuery:SQLStatement;
                                  private function createDatabase():void
                                            dbFile = File.applicationDirectory.resolvePath("appsimplicity.sqlite");
                                            dbConnection = new SQLConnection();
                                            dbConnection.addEventListener(SQLEvent.OPEN, onDatabaseOpen);
                                            dbConnection.addEventListener(SQLEvent.CLOSE, onDatabaseClose);
                                            dbConnection.openAsync(dbFile);
                                  private function onDatabaseOpen(evt:SQLEvent):void
                                            trace("Database is now open");
                                            selectQuery = new SQLStatement();
                                            selectQuery.sqlConnection = dbConnection;
                                            selectQuery.text = "SELECT * FROM stb ORDER BY title ASC";
                                            selectQuery.addEventListener(SQLEvent.RESULT, onQueryResult);
                                            selectQuery.execute();
                                  private function onQueryResult(evt:SQLEvent):void
                                            archivefiles.dataProvider = new ArrayCollection(selectQuery.getResult().data);
                                  private function onDatabaseClose(evt:SQLEvent):void
                                            trace("Database is now Closed");
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:DateSpinner id="Startdate" x="66" y="54" width="40" height="60"/>
              <s:List id="archivefiles" x="69" y="119" width="185" height="138" enabled="true" labelField="title" ></s:List>
              <s:Button id="Delete" x="68" y="313" width="185" label="Delete"/>
              <s:VScrollBar x="248" y="120" height="138"/>
              <s:DateSpinner id="Enddate" x="68" y="361" width="40" height="50"/>
              <s:Label id="adspace" x="0" y="0" width="321" height="36" color="#751E1E" text="AdSpace"/>
    </s:View>
    I made the data base using sqlite manager "Firefox plugin" then copied it to a new package I called assets. inside the project SRC folder.  I am at a lose, and any help would be greatly appreciated! 
    Message was edited by: JeanneM7289  updated with tags

    I am now getting the error.
    Error: Error #3101: Database connection is already open.
              at Error$/throwError()
              at flash.data::SQLConnection/open()
              at views::HomeView/onDatabaseOpen()[C:\Users/blah\Adobe Flash Builder 4.6\appSimplicity Journal\src\views\HomeView.mxml:55]
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark" title="Journal" creationComplete="createDatabase()">
              <fx:Script>
                        <![CDATA[
                                  import flash.data.SQLConnection;
                                  import flash.data.SQLStatement;
                                  import flash.errors.SQLError;
                                  import flash.events.Event;
                                  import flash.events.SQLErrorEvent;
                                  import flash.events.SQLEvent;
                                  import flash.events.TimerEvent;
                                  import flash.filesystem.File;
                                  import flash.utils.Timer;
                                  import mx.collections.ArrayCollection;
                                  import mx.utils.ObjectUtil;
                                  import org.osmf.events.TimeEvent;
                                  public var sqlc:SQLConnection = new SQLConnection();
                                  public var dbFile:File;
                                  public var dbConnection:SQLConnection;
                                  private function createDatabase():void
                                            dbFile = File.applicationStorageDirectory.resolvePath("appsimplicity.sqlite"); //last modified
                                            dbConnection = new SQLConnection();
                                            dbConnection.addEventListener(SQLEvent.OPEN, onDatabaseOpen);             ////************ added by bblommers
                                            dbConnection.addEventListener(SQLErrorEvent.ERROR, onDatabaseError);  
                                            dbConnection.addEventListener(SQLEvent.CLOSE, onDatabaseClose);
                                            dbConnection.openAsync(dbFile);
                                  private function onDatabaseError(evt:SQLEvent):void    
                                            trace('Error with the database: '+evt);
                                  private function onDatabaseOpen(evt:SQLEvent):void
                                            trace("Database is now open");
                                            var statement:SQLStatement = new SQLStatement();
                                            statement.sqlConnection = dbConnection;
                                            statement.sqlConnection.open("appsimplicity.sqlite", SQLMode.READ);
                                            statement.text = "CREATE TABLE IF NOT EXISTS stb (id INTEGER PRIMARY KEY AUTOINCREMENT, title TEXT , entry TEXT)";          ///working on issue here
                                            statement.execute();                    //************* added by bblommers
                                            trace("Table is now created");     //************ added by bblommers
                                  private function onDatabaseClose(evt:SQLEvent):void
                                            trace("Database is now closed");
                                  private function saveJournal():void
                                            var statement:SQLStatement = new SQLStatement();
                                            statement.sqlConnection = dbConnection;
                                            statement.text = "INSERT INTO stb (title , entry) VALUES ('"+title_txt.text+"','"+entry.text+"')"; //is this maybe wrong?
                                            statement.execute();
                                            title_txt.text = "";
                                            entry.text = "";
                                  //debug log
                                  //[SWF] Main.swf - 3,574,774 bytes after decompression
                                  //Database is now open
                                  //Error #2044: Unhandled SQLErrorEvent:. errorID=3115, operation=execute , message=Error #3115: SQL Error. , details=no such table: 'journallistb'
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:Label id="title_lable_txt" x="10" y="48" width="124" height="21" color="#E2881E" text="Title:"/>
              <s:TextInput id="title_txt" x="47" y="36" width="146" enabled="true" prompt="Entry Title" needsSoftKeyboard="true" />
              <s:TextArea id="entry" x="9" y="120" height="147" enabled="true" prompt="Entry" needsSoftKeyboard="true" />
              <s:Button id="savejournal" x="11" y="326" width="296" label="Save" click="saveJournal()" />
              <s:Button id="addphotostojournal" x="11" y="275" width="296" label="Add Photos"/>
              <s:Label id="journal" x="10" y="97" color="#E2881E" text="Journal:"/>
              <s:Label id="Datefield" x="145" y="97" color="#E2881E" text="Date:"/>
              <s:TextInput id="date" x="187" y="78" width="120" height="34" enabled="true" prompt="enter date"/>
    on the archive view I am still getting the error
    Error #2044: Unhandled SQLErrorEvent:. errorID=3115, operation=execute , message=Error #3115: SQL Error. , details=no such table: 'stb'
    However the journal view Trace show's Table created and Database opened  I am at my wits end with this

  • Logic synths; ES2 etc. - what do they stand for & what types of synthesis?

    I'm talking here about the synths that come with Logic: ES1, ES M, EVD6, EFM1, ES1, ES2, ES E, ES P, EVB3, EVP88.
    What do these abreviations stand for? - I assume it goes back a long way, and the E might be for E-Magic. M and P probably mean Monophonic and Polyphonic, but what about the rest?
    What are the advantages and disadvantages of each synth, - why would I use one over an other?
    Also, I assume EFM1 is an FM synth, but what types of synthesis do the others employ?
    Thanks.

    Actually, all your "assumptions" are pretty spot on. At least the way I'm remembering things.
    E (magic) S (ynth) 1
    E (magic) S (ynth) 2
    E (magic) V (irtual) P (iano) 88 (# of keys on a piano)
    E (magic) V (irtual) B3 (Hammond B3 organ)
    E (magic) V (irtual) D6 (Hohner D6 clavinet)
    And yes, the P is for Polyphonic, and M for monophonic. I believe the E is for "ensemble", and yes, the EFM1 is an FM synth.
    As for what synth is best to use for what... that's the art and science of it all.
    Obviously, the EVP88, EVB3 and EVD6 are intended to sound like the vintage keyboards they are emulating. But each one can really do a lot, especially the EVD6. Check out the presets, and start moving buttons and sliders.
    I find Sculpture best suited for atmospheric textures, or when I need something really bizarre, but it can be SO much more than that as well.
    I'm sure others have some great insight as to practical usage as well.

  • HT201471 What does the (MM) stand for ie  wi-fi+cellular(MM)?

    What does the (MM) stand for ie:wi-fi+cellular (MM)?

    I don't know what the "MM" stands for specifically, but those are the CDMA models, A1455 for the mini and A1460 for the 4th-gen iPad Retina.
    Regards.

  • TS3988 i want to delete my iCloud account and get a new one. but i can not delete as it says that my iphone is being restored. could anyone tell me what would be the solution to my problem. i will be thankful to you..

    i want to delete my iCloud account and get a new one. but i can not delete as it says that my iphone is being restored. could anyone tell me what would be the solution to my problem. i will be thankful to you..

    You can go to icloud.com, open Mail, click on the gear shaped icon on the upper right and choose preferences, go to the Vacation tab and set up an auto response saying that the account is no longer in use.  Then go to Settings>iCloud and turn Mail to Off on your device and stop using the account.
    Incoming email to the account will receive your vacation auto response, and eventually the mailbox will fill up and no longer receive mail at all.

  • Hey, im really sick of this, how can i open folders but in the same windows, when i open a folder which is inside of another one, it just open me a new window, its so annoying, could anyone tell me what to do? im using mac os 10.7.2

    hey, im really sick of this, how can i open folders but in the same windows, when i open a folder which is inside of another one, it just open me a new window, its so annoying, could anyone tell me what to do? im using mac os 10.7.2

    Finder > Preferences > General > Always open folders in a new window: uncheck

  • Could anyone tell me what is the minium requirement to run a java program.

    I am new to java. Could anyone tell me what is the minium requirement to run a java program. Thanks in advance.

    Lara1983 wrote:
    Could anybody give me a direct answer? I think the minium requirement to run a java program is JVM and Java API. Is this right?What does Google tell you?
    BTW in order to get a direct answer, one must ask a direct unambiguous question. Are you asking for the minimum software or hardware requirements to run an application developed in Java or to develop an application in Java. What environment? Details are important and again Google is an interactive search engine, try it!
    Mel

  • Could anyone tell me whats the code means??

    Hi,
    Could anyone tell me explanation of the code below:
    player1.placeArmy(world.southAmerica().territory1());
    all I know is that it is calling the method of an objects. I am not really sure about whats inside the bracket. How could such argument have the dot notation format?
    Furthermore, could anyone have some advices about references to the multiple classes code example??

    player1.placeArmy(world.southAmerica().territory1());player1 is a variable of some type. This type has presumably a method called placeArmy, which takes a parameter.
    world is another variable of some type. This type has presumably a method called a method southAmerica(),
    which returns a value of a type, which has a method territory1(), whose return value is provided as teh paramtere value to the method call mentioned above.
    Another useful example as a food for thoughts could be:
    Object o = new Integer(3);
    System.out.println(o.toString());

  • Could anyone tell me what is a senior member in a coherence cluster?

    Hi all,
    I am problem finding the definition of Senior member in coherence documentation.
    Could anyone tell me what is a Senior member in a coherence cluster?
    Could we configure which server is Senior? How?
    Thanks and Regards,
    NB

    Hi NB,
    a senior member of a clustered service (there is one for each service) is the member which has special role in deciding service membership related issues. There is always one (usually the oldest living member), if it dies, then a new one is immediately elected.
    Since the cluster is also a service it also has a senior member, and that is referred to as the senior member of the cluster.
    You cannot configure which node is the senior for the cluster (or for any service for that matter), that is determined by the timing of the nodes being started, the senior will usually be the node started first unless they are started very quickly during cluster formation, at which point it can seem random from the outside.
    Some parts of the documentation hints that the distributed cache services have a storage-senior node, too, which is not exactly the same thing as a service senior, as you can start a distributed cache service in a way that storage-disabled members happened to start first in which case the senior member for the service would not be storage-enabled and there would be no storage senior since there are no storage nodes until the first is started. You can consider this as a service (storage functionality) within a service (distributed cache service), similarly to how clustered services relate to the ClusterService.
    Best regards,
    Robert

  • Could anyone tell me if it is possible to import the information from the Palm Pilot agenda and address book to some programs of the Iphone and Iphone?

    Could anyone tell me if it is possible to import the information from the Palm Pilot agenda and address book to some programs of the Iphone and Iphone?

    Look to your right under "More Like This" for related discussions. ----------------->

  • Could anyone tell me in which tables could I find the field DMSHB?

    Hi All
    Could anyone tell mein which tables could I find the field DMSHB?
    It's managed in the t.code f-32
    Thanks

    Hi,
    find the below tables;
    BWPOS
    DSKOP
    J_1AOIFWVL
    MHND
    RFASLD11B
    TBKOW
    TZIN3
    Thanks

  • HT1711 At the bottom of the itunes main page, the colored bar graph indicates what amount of media i have on my iphone.  What does"other" stand for?!

    can anyone tell me at the bottom of the itunes main screen, on the color graph what does "other' mean?

    It is whatever does not fit in the remaining categories.
    Could be app data, contacts, calendars, favorites, recents, etc

  • Could anyone tell me how many discs are suppose to come in this 10.4 Tiger Box?

    Could anyone tell me how many discs are suppose to come in this 10.4 Tiger Box? I might have bought more than one box at one time and then just combined the discs. I have two black OS X discs that look almost identical with the exception of what looks one disk is 10.4 and the other is 10.4.6.

    One DVD or four CDs depending on what you purchased.
    (67080)

  • Can anyone tell me if the Canon Vixia HF R21 camcorder is compatible with my Mac OS X 10.5.8 and iMovie '08? Many thanks for your help.

    Can anyone tell me if the Canon Vixia HF R21 camcorder is compatible with my Mac OS X 10.5.8 and iMovie '08? Many thanks for your help.

    Here's what I found for you by searching Apple support:
    http://support.apple.com/kb/HT1014

Maybe you are looking for