Dynamic thematic request - advanced style

Hi,
I'm using a dynamic theme to render a map using an advanced style. The values i'm rendering change from call to call - currently I am having to redefine the style every request (not ideal). I'm sure i've read somewhere that you can use an advanced style in your request but just change the high/low/buckets values.
Please can someone help?!
Thanks
Steve H

Yeah - I'm using that version (warm off the press!). I can define my styles fine - it's the "Low", "High" and "nBuckets" values of the style that I want to change at draw / request time. For example mapping population of different areas of the country means that my low and high values will change every map request - and I don't want to redefine the style (or create a new one) and clear the style cache on every request. I'm sure I read somewhere that one of the features of the new release was to be that you could change these values as part of the jdbc theme section of the request, but I can't find info on it anywhere!
Thanks
Steve

Similar Messages

  • JDBC theme - dynamic advanced style

    Hi
    I'm using dynamic JDBC theme's from within javascript. For instance :
    themebasedfoi=new MVThemeBasedFOI("XX","<themes><theme name='XX'><jdbc_query asis='true' spatial_column='GEOLOC' jdbc_srid='82343' render_style='DK_VALUE' datasource='PHV_MAP'>"+aip_sql+"</jdbc_query></theme></themes>");
    that works nicely.
    Now I want to be able to build the advanced bucket style on the fly instead of using a fixed advanced style(in the example DK_VALUE').
    I can define the style as for instance:
    vol_style="<style name='vol_style'><AdvancedStyle><BucketStyle><Buckets><RangedBucket seq='0' label='less than 100k' high='10000.0' style='C.RED_1'/><RangedBucket seq='1' label='100k - 150k' low='10000.0' high='15000.0' style='C.YEL_1'/><RangedBucket seq='2' label='150k - 250k' low='15000.0' high='20000.0' style='C.BLUE_1'/><RangedBucket seq='3' label='250k - 350k' low='20000.0' high='30000.0' style='C.GRE_1'/><RangedBucket seq='4' label='350k - 450k' low='30000.0' high='100000.0' style='C.GRE_2'/></Buckets></BucketStyle></AdvancedStyle></style>";
    But how can I get the dynamic theme to use this dynamically created advanced style?
    Jesper

    With MapViewer 11 preview 1, you can define dynamic styles and use the dynamic styles in your jdbc themes. We provide classes such as MVStyleColor, MVStyleMarker, MVBucketStyle, MVBarCharStyle, MVPieCharStyle and the most generalized all, MVXMLStyle to define any MapViewer supported style.
    Here is an example.
    var dynStyle = new MVStyleColor("mycolor", "00FF00", "FF0000") ;
    var themeDef =
    '<theme name="mytheme" >' +
    '<jdbc_query spatial_column="geometry" jdbc_srid="8307" ' +
    'render_style="mycolor" datasource="mvdemo">'+
    'select geometry from counties' +
    '</jdbc_query></theme>' ;
    var themeBasedFOI = new MVThemeBasedFOI('county_theme', themeDef);
    themeBasedFOI.addStyle(dynStyle) ;
    mapview.addThemeBasedFOI(themeBasedFOI);

  • Advanced Styles with JDBC Themes

    Hi,
    I am trying to use the Java API to add a JDBC theme to a map request (no problem we have been doing this for some time). However, I now want to apply a predefined Advanced style to that theme but am struggling to do so. If I predefine a theme and use the predefined advanced style them it works fine. When I user the .addJDBCTheme call with the advanced style as the style parameter it does not work. I am guessing I have to use the setThemeRenderingRules to get this to work but the documentation is not great and I can't find any examples. Has anyone applied an advanced theme to JDBC layers and if so how did you do it, any help much appreciated.
    Chris

    Hi Chris,
    when using a predefined theme the attribute column (or columns) to be used by the advanced style are defined on the theme definition.
    For dynamic themes, you need to select the attribute on the dynamic SQL expression. On the following example, the column TOTPOP is used for the render style.
      <themes>
        <theme name="states" >
           <jdbc_query
             spatial_column="GEOM"
             render_style="V.USSTATES TOTPOP"
             jdbc_srid="8265"
             datasource="mvdemo"
             asis="false">select GEOM, TOTPOP from STATES
           </jdbc_query>
         </theme>
      </themes>Joao

  • Displaying default styles in an advanced style as theme based foi

    Hi,
    I have a problem to display the default style of an advanced style as theme based foi.
    According to the mapviewer log x feature were found to display but no one was rendered into the map.
    MapViewer with image layer works, MapBuilder, too.
    MapViewer version:
    Ver1033p5_B081010
    MapBuilder marker definition:
    <?xml version="1.0" ?>
    <AdvancedStyle>
    <BucketStyle>
    <Buckets default_style="C.ORANGE">
    <CollectionBucket seq="0" type="string" style="C.BLUE">90002,19208</CollectionBucket>
    <CollectionBucket seq="1" type="string" style="C.RED">14002,13004</CollectionBucket>
    </Buckets>
    </BucketStyle>
    </AdvancedStyle>
    The mapviewer log indicates 7 found featuers, but only 2 of them are displayed. The 5 items are using the default style and are not visible.
    LOG
    May 28, 2009 3:46:26 PM oracle.sdovis.LoadThemeData run
    FINER: LoadThemeData running thread: Thread-6894
    May 28, 2009 3:46:26 PM oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    FINER: [Master scale] 46.091784655389 [Theme scale factor] 1.0
    May 28, 2009 3:46:26 PM oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    FINEST: [ TEST_FOI_POI_2 ]: 2xxx973.7866666666,5xxx599.714666666,2xxx466.072533333,5xxx968.929066666
    May 28, 2009 3:46:26 PM oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    FINEST: Theme query [ TEST_FOI_POI_2 ]: SELECT ID, GEOM, 'M.TEST_IMAGE2', null, 'null', -1, 'rule#0', ID, BEMERKUNG FROM FOI_TEST_POI WHERE MDSYS.SDO_FILTER(GEOM, MDSYS.SDO_GEOMETRY(2003, 31466, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 3), MDSYS.SDO_ORDINATE_ARRAY(:mvqboxxl, :mvqboxyl, :mvqboxxh, :mvqboxyh)), 'querytype=WINDOW') = 'TRUE'
    May 28, 2009 3:46:26 PM oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    FINER: [ TEST_FOI_POI_2 ] Fetch size: 100
    May 28, 2009 3:46:26 PM oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    INFO: [ TEST_FOI_POI_2 ] sql exec time: 0ms, total time loading 7 features: 31ms.
    May 28, 2009 3:46:26 PM oracle.lbs.mapserver.core.MapperPool freeMapper
    FINER: freeMapper() begins...
    May 28, 2009 3:46:26 PM oracle.lbs.foi.ThemeRenderingThread render
    FINER: 7 features loaded.31
    May 28, 2009 3:46:26 PM oracle.lbs.foi.ThemeRenderingThread render
    FINER: Total time rendering foi data:0
    May 28, 2009 3:46:26 PM oracle.lbs.foi.FOIServlet doPost
    FINEST: ---- begin FOI response ----
    {"foiarray":[{"id":"201","gtype":"2001","imgurl":"http://server02/mapviewer/images/foi/23_p_Sj_28_24.png","x":2xxx200,"y":5xxx800,"width":28,"height":24,"attrs":["201",]},{"id":"200","gtype":"2001","imgurl":"http://server02/mapviewer/images/foi/23_p_Sj_28_24.png","x":2xxx200,"y":5xxx866,"width":28,"height":24,"attrs":["200",]}],attrnames:["Bezeichnung","BEMERKUNG"],themeMBR:[1.0,0.0,0.0,2xxx422.22678222],hiliteImgPref:"Sh",hiliteMW:10,hiliteMH:10,isWholeImg:false}
    ---- end FOI response ----
    May 28, 2009 3:46:26 PM oracle.lbs.foi.FOIServlet sendGZippedResponse
    FINEST: Sending FOI response in gzip format.
    Regards,
    Cord

    Hi Joao,
    thanks!
    Do you know a workaround or alternative for that problem?
    I have a request of our customer. He has about 400 different group items. Only a few of them (40-60) should be defined with an individual style and the rest with a default style.
    The problem is, that the number of group items rises nearly daily. The new ones should automatically be displayed with the default style.
    Cord

  • Advanced style rule (attribute) column can be a sql expr

    Just wondering if folks have used complex formulas or sql expressions for the rule column for an advanced style. If yes please post examples in response.
    The rule column used in an advanced style can be a sql expression. e.g. (TOTPOP/LANDSQMI) POPDENSITY to display a thematic map of population density instead of total population. The theme def would look like
    <?xml version="1.0" standalone="yes"?>
    <styling_rules>
    <rule column="(TOTPOP/LANDSQMI) POPDENSITY">
    <features style="V.POPPSQMI"> (landsqmi is not null AND
    landsqmi &gt; 0) </features>
    </rule>
    </styling_rules>
    In particular has anyone used CASE, DECODE, NTILE etc.?

    Try changing the following properties:
    autosubmit = true;
    immediate = true;
    Here is a link where the user uses a transient attribute for the rows in his table:
    Technology on my way...:): ADF 11g : CheckBox Demo (Select one checkbox in table, Select all/Deselect all)
    Hope that helps.
    Regards,
    Frederico.

  • ThemeBasedFoi Not rendering with advanced style

    Hello,
    I have defined an advanced variable ranged bucket as:
    <?xml version="1.0" ?>
    <AdvancedStyle>
         <BucketStyle>
            <Buckets>
                <RangedBucket seq="0" label="Muito Pouco" low="0.0" high="19915.0" style="C.RED5" label_style="T.RIO"/>
                <RangedBucket seq="1" label="Pouco" low="19915.0" high="218128.12" style="C.RED4" label_style="T.RIO"/>
                <RangedBucket seq="2" label="Normal" low="218128.12" high="1992239.79" style="C.RED3" label_style="T.RIO"/>
                <RangedBucket seq="3" label="Muito" low="1992239.79" high="1.91553676E7" style="C.RED2" label_style="T.RIO"/>
                <RangedBucket seq="4" label="Elevado" low="1.91553676E7" high="1.1386E14" style="C.RED1" label_style="T.RIO"/>
        </Buckets>
       </BucketStyle>
    </AdvancedStyle>And the following theme, that makes use of the above style.
    <?xml version="1.0" standalone="yes"?>
    <styling_rules>
        <rule column="agg">
            <features style="V.VR_RED5">SELECT pk_instalacao, agg, geom
        FROM TABLE_I_GF_SQE </features>
      </rule>
    </styling_rules>When i render it in Oracle Maps all geometric elements are displayed in white color, not the color i specified in the advanced style.
    Any thoughts ...

    Hi J. Sharma, thank you for your response, sorry for my delay.
    This was just a test to see if i could specify, queries in the theme definition.
    I'm building a Spatial OLAP Server, and i need to define the themes dynamically, based on the spatial attributes, semantic attributes, and aggregated measures specified by the Spatial OLAP client.
    At the time i wrote my first post, i was realizing that mapviewer does not handle well the SDO_AGGR_UNION, so i decided to create a table with the result of a more complex query and render it with an advanced style.
    But the style failed, nevertheless i found a solution for the problem, as soon as i have some time i will post my results in the forum.

  • How I can create dynamically-formed requests or use native SQL in EJB?

    Hi all.
    I'm working around modify an example from NetWeaver Developer Studio (CarRental). I want to get ordered data from table and allow users to specify the ordering field, not in the code. EJB QL doesn't support dynamically-formed queries like "select object(b) from QuickBooking b where b.status like ?1 order by b.<b>?2</b>" so i can't passing field name as parameter into query. Creating a sorting method for every field is not good solution because I need a dynamically-formed requests.
    I think using native SQL will help but I don't know how I can use SQL in EJB.
    Thanks,
    Lev

    import javax.persistence.EntityManager;within class, place
    protected EntityManager  entityManager;of course make it public, private, whatever you need.
    Then, in your method
    entityManager.createNativeQuery(....);R. Grimes

  • Dynamic file request to appserver and static file request to webserver

    Can we redirect dynamic file request to appserver and static file request to webserver in any application and
    what are the best way to do it ?
    Waiting for the best suggestions ?

    when you have a large number of images/css/javascript/static(html/pdf/doc) files. It takes some of the processing load from your app server and also reduces the network traffic (otherwise traffic must flow between webserver and weblogic as well). it is also reasonably trivial to configure cache/modification/etags headers from a webserver and they are probably more featured than a weblogic server (e.g. to turn on gzip for static files dynamic is just a setting in the webserver but probably needs a custom filter developed in weblogic).
    Again this applies if you already have a webserver (normally because your firewall policy dictates this approach). If you are considering whether to have a webserver at all then there are different considerations.
    regards
    deepak

  • Dynamic HTTPService request AS3

    I'm doing a mashup in Flex right now using Yahoo Maps. One of
    the functions allows users to create their own routes.
    Here's the problem. I need a dynamic httpService request
    because I never know beforehand how many markers a route holds.
    Here's my code:
    [Bindable]
    private var rssFeed:String;
    private function opslaanRoute(event:Event):void
    if(this.tekstInputVenster.text!="")
    if(markerLijst.length>0)
    rssFeed = "<route>";
    rssFeed +=
    "<routebeschrijving>"+this.tekstInputVenster.text+"</routebeschrijving>";
    var lengte:Number = markerLijst.length;
    for(var d:Number=0;d<lengte;d++)
    rssFeed +="<marker>";
    rssFeed +=
    "<latlon"+d+">"+markerLijst[d][0]+"</latlon"+d+">";
    rssFeed +=
    "<indexMarker"+d+">"+markerLijst[d][1]+"</indexMarker"+d+">";
    rssFeed +=
    "<titel"+d+">"+markerLijst[d][2]+"</titel"+d+">";
    rssFeed +=
    "<beschrijving"+d+">"+markerLijst[d][3]+"</beschrijving"+d+">";
    rssFeed +="</marker>";
    rssFeed += "<aantal>"+indexMarkers+"</aantal>";
    rssFeed += "<userid>"+_loginid+"</userid>";
    rssFeed += "</route>";
    opslaanR.send();
    else
    Alert.show("U moet markers toevoegen om op te slaan!");
    else
    Alert.show("U moet een routebeschrijving toevoegen om op te
    slaan!");
    The httpservice looks like this:
    <mx:HTTPService
    id="opslaanR"
    url="url"
    useProxy="false"
    method="POST"
    resultFormat="e4x"
    result="opslaanSucces(event)"
    showBusyCursor="true"
    >
    <mx:request>
    {rssFeed}
    </mx:request>
    </mx:HTTPService>
    The "aantal" tag is the number of markers a route holds.
    Basically I want to loop the $_POST variables in php using "aantal"
    so I can add them to my database. The PHP works flawlessly but it
    never gets the httpservice values.
    Please help.

    well you understood me, I want an alternative to the script what I put in AS2,
    but I think. of the script as you sent me centenary assume that I have in the library button menu0 menu1 .....
    But I have only one menu button.
    because I tried it and it did not work.
    var ClassRef: Class = Class (getDefinitionByName ("menu" + i));
    I will be happy if later you look again

  • Theme looking different before and after previewing an advanced style

    Hello,
    i have a problem with a theme looking different before and after previewing an advanced style in mapbuilder Ver11_1_1_5_B110527
    My style xml looks like this:
    <?xml version="1.0" ?>
    <AdvancedStyle>
        <CollectionStyle>
          <style name="color_style" shape="polygon"/>
          <style name="line_style"/>
      </CollectionStyle>
    </AdvancedStyle>It is a combination of a color style and a line style styles:
    <?xml version="1.0" standalone="yes"?>
    <svg width="1in" height="1in">
        <desc/>
        <g class="color" style="fill:#B6D1CA">
            <rect width="50" height="50"/>
      </g>
    </svg>
    <?xml version="1.0" standalone="yes"?>
    <svg width="1in" height="1in">
      <desc/>
      <g class="line" style="fill:#969696;stroke-width:2;stroke-linecap:BUTT">
        <line class="base"/>
      </g>
    </svg>The styles and theme are created using insert statements, and not the mapbuilder.
    When i take a look at the theme preview in mapbuilder, it will look like this: http://dl.dropbox.com/u/22117905/before_preview.PNG
    Now i open up the advanced style and hit the preview button.
    If i take another look at the theme preview, it will now look like this (and this is the desired output btw.): http://dl.dropbox.com/u/22117905/after_preview.PNG
    Now my question is, why does the same theme look different, after previewing the advanced style?
    I tried clearing the cached geometries and metadata cache of mapviewer, but that didn't help.
    Apart from previewing every style, what can i do to make sure that the themes are styled correctly?
    Thanks for help in advance,
    Dirk

    Hello Joao,
    i just found the error. It is in my pl/sql package where i create the styles.
    Mapbuilder showed the staly as in my first post, but that i created looks like this
    <?xml version="1.0" ?>
    <AdvancedStyle>
        <CollectionStyle>
          <style name="color_style" shape="polygon"/>
          <style name="line_style" shape="all"/>
      </CollectionStyle>
    </AdvancedStyle>Notice the "shape=all" attribute in line_style. Apperently Mapbuilder doesn't like it, if i set this in the style. After previewing or saving the style in mapbuilder, the sttribute is removed and the style is correct.
    I now edited my package and rerun it, and now the themes are displayed correctly.
    Regards,
    Dirk

  • Double attributes in info window with advanced style

    Hi,
    I have a MapViewer theme with an advanced style and several attributes to display. The attribute column to render the advanced style should be displayed in the info window, too.
    Its working so far but this attribute is displayed twice!
    I only have this problem with advanced styles.
    My MapViewer version: Ver1033p5_B081010
    Does anybody know this problem?
    Regards,
    Cord

    Hi Joao,
    my theme XML definition:
    <?xml version="1.0" standalone="yes"?>
    <styling_rules key_column="SP_KEY">
    <hidden_info>
    <field column="SP_ROUTENR" name="Routennr"/>
    <field column="SP_STARTDATUM" name="Startdatum"/>
    <field column="SP_STARTZEIT" name="Startzeit"/>
    <field column="SP_ENDZEIT" name="Endzeit"/>
    <field column="SP_BC" name="Bordcomputer"/>
    <field column="SP_VEHICLE" name="Fahrzeug"/>
    <field column="*SP_MENGEINKG*" name="Menge (kg)"/>
    <field column="SP_KEY" name="SP_KEY"/>
    </hidden_info>
    <rule column="*SP_MENGEINKG*">
    <features style="V.FAHRTEN"> (SP_STARTDATUM = :1) AND
    (SP_STARTZEIT BETWEEN :2 AND :3) AND
    (SP_VEHICLE = :4) </features>
    <label column="SP_ROUTENR" style="T.TEXT"> 1 </label>
    </rule>
    </styling_rules>
    The column value "Menge (kg)" (node SP_MENGEINKG) is displayed twice.
    Cord

  • When selected preference advance style sheet to zoom. Cheak box and radio looks odd.

    In safari 8. After updated OS X to Yosemite. When set preference>advance>style sheet to xxx.css.
    In xxx.css contain :
    body {
    zoom: 110%;
    Safari will show checkbox and radio box in all website distortion. As shown below.
    Cheak box looks odd and invisible radio box.
    Please, tell me. What caused it Or is it a BUG.
    Thank You.

    Does anyone have a problem it?

  • Dynamically changing the Advance table column Header.

    Dear All,
    I want to change dynamically the Advance table column header.
    I tried the below code and its working process request,not in process form request when button pressing.
    Please suggest me.
             OAAdvancedTableBean tableBean =
                               (OAAdvancedTableBean)webBean.findIndexedChildRecursive("advanceTableRN");
                           if (tableBean != null) {
                           System.out.println("tableBean");
                               OAColumnBean columnBean =
                                   (OAColumnBean)tableBean.findIndexedChildRecursive("column3");
                               if (columnBean != null) {
                                   System.out.println("columnBean");
                                   OASortableHeaderBean colHeaderBean =
                                       (OASortableHeaderBean)columnBean.getColumnHeader();
                                   if (colHeaderBean != null) {
                                       System.out.println("colHeaderBean");
                                       colHeaderBean.setText("Segment3");

    You can try 2 options:
    1. Try to call pageContext.forwardImmediatlytoCurrentPage();
    2. Try yo set a vo attribute to the columnbean text property and set the vo attribute programmatically. (I have not tried this but I think it should work)
    Cheers
    AJ

  • Can't dynamically bind Request var to ViewObjectLink SQL (for BIBean Graph)

    Can anybody pleaaaase help? I'm trying to get a graph done with JSP and a BI Bean. I have got the graph working just fine, based on an unfiltered query of the ViewObjectLink. However, have not been able to figure out how to dynamically add and alter the criteria of the underlying ViewObjectLink query.
    My research has found numerous references to the setWhereClause() and setWhereClauseParam() functions. I've placed setWhereClause() and setWhereClauseParam() calls in the constructor of the ViewObjectLink. But I always get exceptions :
    JBO-30003: The application pool (test_16.AppModuleLocal) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=
    JBO-29000: Unexpected exception caught:
    oracle.jbo.InvalidObjAccessException, msg=
    JBO-25036: An invalid object operation was invoked on type View Object with name FaVGetDueDatePcCtab2ViewImpl_120
    Any and all help appreciated.
    Thanks in advance,
    John.

    Thanks Keith.
    It's a question of how one sets and accesses the query datasource of the ViewObject which underlies and populates a BIBeans graph.
    I don't see how one binds criteria value(s) to the parameter placeholder(s) in the ViewObject object.
    For example, the Query property of my ViewObject is:
    SELECT FaVGetDueDatePcCtab2.PC0,
    FaVGetDueDatePcCtab2.PC1,
    FaVGetDueDatePcCtab2.PC2
    FROM FA$V$GET$DUE$DATE$PC$CTAB2 FaVGetDueDatePcCtab2
    The Where Clause propery is:
    WHERE FaVGetDueDatePcCtab2.PC2 IN (?, ?, ?)
    What wizard or method or means is used to bind the '?' placeholders with actual values?
    Or do you think this is more a question for the Forms/Reports forum?

  • Dynamical changing HtmlInputText component style on failed validation...

    ...but once validation passes the modified style isn't reset...and when navigating away from the page and then back again, the component will still have the modified style.
    this is for JSF1.1 because i understand JSF1.2 has a errorStyle property.
    I understand once first entry the components are rendered and then stored in a component tree for subsequent display, but because i have dynamical changed the style property it seems to be stored in the component tree.
    here is snippets of my code
    JSP page
    <h:inputText id="textName" styleClass="inputText" *validator="#{fieldValidators.validateText}"* value="#{customer.name}" required="true">
    <f:validateLength minimum="1" maximum="40"></f:validateLength>
    </h:inputText>
    _FieldValidators class_
    public void validateText(FacesContext context, UIComponent toValidate, Object value)
    ((UIInput)toValidate).setValid(false);
    *((HtmlInputText)toValidate).setStyleClass("inputText inputValidationError");*
    FacesMessage message = new FacesMessage(errorMessage);
    context.addMessage(toValidate.getClientId(context), message);
    the style class +inputValidationError+ sets the outline of the input type to be red. so input components highlight in red when validation fails.
    so to recap my issue, when the failed validation is corrected, the component still has the +inputValidationError+ style applied, and when navigating away from the page and back to it +inputValidationError+ still is in its style, so still appears with the red border.
    any help or recommendations would be really welcome.
    thanks.

    Implement a PhaseListener which listens on the afterPhase of the RENDER_RESPONSE and get the clientId of all components which have a validation error by FacesContext#getClientIdsWithMessages() and put it in a HashSet or so. Then iterate recursively over all children of UIViewRoot and if it is an instance of UIInput, then (re)set the styleclass accordingly based on the presence of its clientId in the HashSet created before.

Maybe you are looking for

  • Why can I not open a new window but I can open new tabs in V3.6.16?

    I am running Firefox 3.6.16 on both my PC and my laptop. The program works fine on my PC, I can open both new windows and new tabs. However, on my laptop I can not open a new window. Tabs open just fine, but when I try to open a new window nothing ha

  • HT5313 Second Display Problem after Update v10.7.5

    I just updated my MacBook Pro (Late 2011) and the new OS 10.7.5 is not recognizing my second display (VGA connected emachines 19''). I have restarted, changed the resolution, and tried many things, but the display that was working perfectly two hours

  • Developing Detail Screen in jsp using jdeveper

    Hi all, I want to develop a master detail scren in JSP using jdeveloper. I find problems while creating detail screen for the master. Can any one help me in fetching data from the table for the detail screen, manipulating(insert/delete/modify) the ro

  • Create Idoc INVOIC02 when a invoice is created

    Hi everybody. Which are the necessary steps to make in order to costumize the Idoc INVOIC02 creation when a invoice is created in R3? Thanks a lot

  • LOGIC 8 Keeps Crashing!!!

    Logic 8.0.2 crashes about 3 time every hour! It seems to crash while I am using the Spectrasonics (Trilogy, Omnisphere and Rmx) plugins. I hear and audio click (like something has been unplugged) and then logic crashes. Sometimes Logic will not shutd