Using workspaces for "ALMOST" static data

          Hi,
          The application that we are developing has the following requirement:
          We have a whole bunch of data that is ALMOST static as far as the application is concerned.
          However this data can change infrequently.
          We have two solutions in mind
          1) We are planning to have a StaticDataManager component that will handle the reading/updation of this data.
          All the other components of the application will get the static data from the StaticDataManager
          and cache this data to avoid communication between the components.
          The application will be hosted on a clustered WLS configuration.
          Now suppose an updation takes place, how best can we update all the components that have the cached data?
          2) In case we use Workspaces to cahce this static data, does the cluster configuration take care of
          updating the workspaces in the machines in the cluster?
          TIA!
          Sreeja
          

If you do like you say and specify servera and then specify serverb
          respectively, then yes the workspace doesn't show the same information
          across the cluster. However, if you always specify the cluster, serverc,
          then no matter which side you update or read from the data is the same. So
          yes, if you specifiy a specific server in the cluster, and not the cluster,
          the data will not replicate across the cluster, and you lose concurrency.
          Let me paste in the output to show you what I am seeing which proves the
          data is being replicated with a single write.
          Tester ver. 1.00.00 ----> Test started...
          Connected successfully using http to ethouic97/198.171.100.107:80
          ws.store(DOG, FIDO)
          Connected successfully using http to ethouic97/198.171.100.106:80
          ws2.fetch(DOG)
          DOG = FIDO
          These are some system outs from the test app below with a few extra system
          outs. Notice if the cluster is always your connection point and not an
          individual server, in this case ethouic97. Then the answer to the original
          first question is YES, you can store near static data in workspaces on a
          cluster to have the data replicated across the cluster. However, you must
          always address the cluster and not the individual servers, in this case
          address ethouic97 never server 106 or 107 directly.
          Jonathon Cano
          "Mike Reiche" <[email protected]> wrote in message
          news:[email protected]...
          >
          > Well, it does look like it works, doesn't it?
          >
          > Now try running the first half on one WLS instance and the other half of a
          different WL instance and
          > specify servera in the first half and serverb in the second half. If the
          workspace is replicated it should
          > work.
          >
          > It's broken now. Not really. Regardless of where the t3 connection is
          made, the workspace is
          > in the local WL instance.
          >
          > Mike
          >
          >
          > "Jonathon Cano" <[email protected]> wrote:
          > >Details:
          > >We are using a DNS cluster where serverc actually maps to servers a and
          b.
          > >If you set the workspace to SCOPE_SERVER, and use a t3client connection
          to
          > >the serverc, it can not be servera or serverb directly, then the
          workspace
          > >is updated or read from the data is persisted across both sides of the
          > >cluster. All reads and writes must be done using the cluster name for
          this
          > >to work. I use this to manage fail-over for some Vitria subscribers I
          have
          > >runnig at startup. I have a tester I wrote which works, here is the
          code:
          > >
          > > private void testWorkSpaces() {
          > >
          > > try {
          > >
          > > T3User userInfo = new T3User("system","password");
          > >
          > > T3Client t3 = new T3Client("http://cluster:80",userInfo);
          > > t3.connect();
          > >
          > > WorkspaceDef ws =
          >
          >t3.services.workspace().getWorkspace().getWorkspace("test",WorkspaceDef.OPE
          N
          > >,WorkspaceDef.SCOPE_SERVER);
          > > ws.store("DOG", "FIDO");
          > >
          > > t3.disconnect();
          > >
          > > T3Client t32 = new T3Client("http://cluster:80",userInfo);
          > > t32.connect();
          > >
          > > WorkspaceDef ws2 =
          >
          >t32.services.workspace().getWorkspace().getWorkspace("test",WorkspaceDef.OP
          E
          > >N,WorkspaceDef.SCOPE_SERVER);
          > > String dogName = (String) ws2.fetch("DOG");
          > >
          > >
          > > t32.disconnect();
          > >
          > > System.out.println(dogName);
          > >
          > > } catch (Exception e) {
          > > System.out.println("Test Work Spaces Failed.);
          > > e.printStackTrace();
          > > }
          > >
          > > }
          > >
          > >The first t3client connection echos out that it is connecting to servera.
          > >The second t3client connection echos out that it is connecting to
          serverb.
          > >However, the data being returned is the name FIDO which was written to
          the
          > >workspace when connected to servera. Thus, as long as you are connecting
          to
          > >the cluster, you get replication of data across cluster for workspaces.
          > >
          > >WLS 5.1
          > >
          > >Jonathon Cano
          > >
          > >
          > >"mreiche" <[email protected]> wrote in message
          > >news:[email protected]...
          > >>
          > >> >I am confused.
          > >>
          > >> Yes.
          > >>
          > >> >So why was the original answer to workspaces being used for clustering
          > >near static data NO?
          > >>
          > >> Because that's what the documentation says?
          > >>
          > >> Are you really, really sure it's being propagated? Or perhaps it's just
          > >being updated identically on both instances?
          > >>
          > >> Mike
          > >>
          > >> "Jonathon Cano" <[email protected]> wrote:
          > >> >I am confused. I am storing data in the workspaces right now, and I
          am
          > >> >using this data in a cluster. I can update the data in the cluster
          just
          > >> >fine, and both sides of the cluster are being updated. So why was the
          > >> >original answer to workspaces being used for clustering near static
          data
          > >NO?
          > >> >
          > >> >Jonathon Cano
          > >> >
          > >> >"Tao Zhang" <[email protected]> wrote in message
          > >> >news:[email protected]...
          > >> >>
          > >> >> But the problem is whether you want Exactly-once-per-cluster data or
          > >not.
          > >> >> If not, you can deploy the data object into each server in the
          cluster,
          > >> >but in the data object, it contains the logic of updating itself.
          > >> >> Otherwise, you have to make it a pinned service.
          > >> >>
          > >> >> It's hard to describe here.
          > >> >>
          > >> >> Hope the document can solve your problem.
          > >> >>
          > >> >> http://www.weblogic.com/docs51/classdocs/API_jndi.html#user
          > >> >>
          > >> >> Good Luck.
          > >> >>
          > >> >> Tao Zhang
          > >> >>
          > >> >> "Sreeja" <[email protected]> wrote:
          > >> >> >
          > >> >> >Thanks. Can you please elaborate on the solutions 1 and 2. We are
          > >trying
          > >> >to eliminate the
          > >> >> > usage of 3 - entity beans - since we do not want the components
          using
          > >> >the data to contact
          > >> >> >the entity bean every time they need the static data - as this
          would
          > >> >result in remote calls
          > >> >> >for every usage.
          > >> >> >Sreeja
          > >> >> >
          > >> >> >"Tao Zhang" <[email protected]> wrote:
          > >> >> >>No, the workspace can't be clustered, the data can't be propagated
          to
          > >> >other
          > >> >> >>servers in the cluster.
          > >> >> >>Of course , you can select one server as the data holder and other
          > >> >servers
          > >> >> >>will be t3 client. But it's time consuming to
          > >> >> >>connect to the data holder server.
          > >> >> >>Possible solutions:
          > >> >> >>1. RMI.
          > >> >> >>Deploy the rmi as pinned service which hold the data.
          > >> >> >>2. jndi
          > >> >> >>The data can be propagated by jndi's default behavior.
          > >> >> >>3. database or entity bean.
          > >> >> >>
          > >> >> >>Hope this can help.
          > >> >> >>
          > >> >> >>Tao Zhang
          > >> >> >>
          > >> >> >>Sreeja <[email protected]> wrote in message
          > >> >> >>news:[email protected]...
          > >> >> >>>
          > >> >> >>> Hi,
          > >> >> >>>
          > >> >> >>> The application that we are developing has the following
          > >requirement:
          > >> >> >>> We have a whole bunch of data that is ALMOST static as far as
          the
          > >> >> >>application is concerned.
          > >> >> >>> However this data can change infrequently.
          > >> >> >>> We have two solutions in mind
          > >> >> >>> 1) We are planning to have a StaticDataManager component that
          will
          > >> >handle
          > >> >> >>the reading/updation of this data.
          > >> >> >>> All the other components of the application will get the static
          > >data
          > >> >from
          > >> >> >>the StaticDataManager
          > >> >> >>> and cache this data to avoid communication between the
          components.
          > >> >> >>> The application will be hosted on a clustered WLS configuration.
          > >> >> >>> Now suppose an updation takes place, how best can we update all
          the
          > >> >> >>components that have the cached data?
          > >> >> >>>
          > >> >> >>> 2) In case we use Workspaces to cahce this static data, does the
          > >> >cluster
          > >> >> >>configuration take care of
          > >> >> >>> updating the workspaces in the machines in the cluster?
          > >> >> >>>
          > >> >> >>> TIA!
          > >> >> >>> Sreeja
          > >> >> >>>
          > >> >> >>
          > >> >> >>
          > >> >> >
          > >> >>
          > >> >
          > >> >
          > >>
          > >
          > >
          >
          

Similar Messages

  • Interface Using BAPI for Uploading shipment datas

    Can any1 send me the example code for Inbound Interface using BAPI for Uploading shipment datas.please kindly send me the programs which u using with BAPI

    Hi
    Except hiring (or new joinee) for all other actions you can use below Function Module.
    HR_INFOTYPE_OPERATION.
    ~~~Ganesh Kumar K.

  • Why can't I use iCloud for exchange of data - like I could with MobileMe?

    Why can't I use iCloud for exchange of data - like I could with MobileMe?
    Oder auf Deutsch, warum kann ich keine Daten mehr in iCloud speichern bzw. zum Austausch bereitstellen, wie das bei MobileMe noch ging?
    Danke für die Hilfe
    Thanx in advance!

    The purpose of iCloud is to sync data between your devices.
    There is no "web address" to your files and no way to "share" them with others (except photos).

  • I have been using Elements11 for almost a year. I am suddenly getting the message:Some of the application componentsare missing from the application directory. Please reinstall. I deleted old version, reinstalled on my Mac and now get this message:A requi

    I have been using Elements11 for almost a year. I am suddenly getting the message:Some of the application components are missing from the application directory. Please reinstall. I deleted old version, reinstalled on my Mac and now get this message:A required application library failed to load and the product cannot continue. I also get the first message again. Organizer works but not editor. Frustrated!

    What a waste of space to paste the code.
    Why not ask in the iLife > iPhoto forum where your question belongs.

  • Is Apex used for only static data?

    Can Apex use data directly from the database (means from database schemas) or must I always create the objects in the Apex workspace before using it?
    I ask because all of the examples I have seen are using static data. Can Apex be used for data that is changing (real-time)?
    If so, where can I find an example of using real-time data?
    Thanks!

    I see, so apex can not pull data from other application schemas. Apex is used to create an application from scratch (or imported/uploaded) and then you can dynamically add records, like a data/order entry application. It is a tool that provides a better and more complete way to report and present(forms) on dynamic/static data rather that using tools like access or excel spreadsheet.
    Is this correct?
    Thanks!

  • SE-YARI- Can't connect to 3G network after having used it for almost an year on the same phone. :(

    HI, i use a sony ericsson Yari phone that i bought in March '10, and i have been using BSNL 3G network on it for quite some time now.. But for the past few weeks i can't connect to a 3G HSDPA network. at times the display shows "NO access to network" and at other times i can't make calls from the phone though the phone shows coverage in the top left corner in the display.. My phone has been updated with the latest software upgrades. Reinstalled the software from the SE site through update srvice twice last week. What could possibly be wrong??
    My doubts are:
    1) Is it a prob i can troubleshoot myself or does it need to be given to the service centre?
    2) If it has to be repaired at the service centre, how long will it take them to resolve this prob? I ask this specifically because the last time i gave my phone in for some display prob they took an annoying TWO MONTHS!!
    I love my phone.. And i can't live without intrnet on the go.
    P.S. Let me put in some additional info.. the phone works fine on the GSM network and the GPRS is ok too. Jus that the slooooow net speeds test my patience.
    Yes, my phone supports 3G , my network supports 3G and my sim is a registered 3G sim. (and pls MODS, don't advice me to chek if ther is 3G coverage at my location,coz ther is and i ve been using 3G for quite awhile). The sim and the network work fine on any other phone when i checked(incidentally, on a Sony Ericsson ELM).

    I know you checked the SIM in another phone and it seems OK, but it might still be worth trying another 3G SIM in your phone.Otherwise, it could be an issue with the SIM card module in the phone.

  • Using cache for read only data

    In my application I have to display some read only data (in number of drop down present on several portlets)
    this data might be driven from the database or from some XML/property file.Not decided yet.
    for example : Country /state/City/Zip code etc..
    Kindly let me know how can I implement the same in Weblogic Portal 10.0.
    Do I have to use some third party caching mechanism like Hibernate cache for this
    or
    Weblogic portal do support caching ??
    Please suggest the all possible soultions to implement this.

    Cache cache = CacheFactory.getCache("yourCache"); //any name can be passed, and you can create as many as you want , perhaps by functionality, perhaps by size etc. If you want to configure statically you must use this name in the xml file. If you define it in the xml file , you can administer the cache from Portal Admin
    cache.put("key","value");
    cache.get("key");
    There are other advanced things you can do like Time To live / flushing / auto reload the cache which is all described in the javadoc
    regards
    deepak

  • Using Highlight for columns in data tables

    Hi, I'm using the "Highlight" function of SpryEffects in
    combination with the sorting features. My HTML structure is a
    simple data table, with a repeating region on the table row, so it
    pulls in as many rows there are pieces in the attached XML file.
    When I sort by one of the column headers at the top, I want to
    highlight that whole column, so users can see what they're sorting
    by. I'm able to get the first row of the data table highlighted,
    but none of the following rows work. I'm pretty sure the problem is
    that the highlight function only works when you use an id to define
    the element that you want highlighted. If it's in a repeating row,
    it sees many ids on the page, and only applies the highlight to the
    first one. I want to change the id to a class, so I can put
    multiple ones on the page and have it work, but I can't see how to
    do that in the SpryEffects.js file.
    Can anyone tell me if it's possible to do this? Thanks.
    Here's the portion of the .js file:
    function setupHighlight(element, effect)
    Spry.Effect.setStyleProp(element, 'background-image',
    'none');
    function finishHighlight(element, effect)
    Spry.Effect.setStyleProp(element, 'background-image',
    effect.options.restoreBackgroundImage);
    if (effect.direction == Spry.forwards)
    Spry.Effect.setStyleProp(element, 'background-color',
    effect.options.restoreColor);
    Spry.Effect.Highlight = function (element, options)
    var durationInMilliseconds = 1000;
    var toColor = "#ffffff";
    var doToggle = false;
    var kindOfTransition = Spry.sinusoidalTransition;
    var setupCallback = setupHighlight;
    var finishCallback = finishHighlight;
    var element = Spry.Effect.getElement(element);
    var fromColor = Spry.Effect.getStyleProp(element,
    "background-color");
    var restoreColor = fromColor;
    if (fromColor == "transparent") fromColor = "#ffff99";
    var optionFrom = options ? options.from : '#ffff00';
    var optionTo = options ? options.to : '#0000ff';
    if (options)
    if (options.duration != null) durationInMilliseconds =
    options.duration;
    if (options.from != null) fromColor = options.from;
    if (options.to != null) toColor = options.to;
    if (options.restoreColor) restoreColor =
    options.restoreColor;
    if (options.toggle != null) doToggle = options.toggle;
    if (options.transition != null) kindOfTransition =
    options.transition;
    if (options.setup != null) setupCallback = options.setup;
    if (options.finish != null) finishCallback = options.finish;
    var restoreBackgroundImage =
    Spry.Effect.getStyleProp(element, 'background-image');
    options = {duration: durationInMilliseconds, toggle:
    doToggle, transition: kindOfTransition, setup: setupCallback,
    finish: finishCallback, restoreColor: restoreColor,
    restoreBackgroundImage: restoreBackgroundImage, from: optionFrom,
    to: optionTo};
    var highlightEffect = new Spry.Effect.Color(element,
    fromColor, toColor, options);
    highlightEffect.name = 'Highlight';
    var registeredEffect =
    SpryRegistry.getRegisteredEffect(element, highlightEffect);
    registeredEffect.start();
    return registeredEffect;

    Hi Philip, Thanks a lot for puting this enhancement request through.
    Just downloaded the latest Patch upgrading to v 3.1.2-704 and confirmed that this functionality is not available yet.
    Keeping your experience in mind what kind of expectation to you have for the approval and realization of your request?
    Most likely this will take a couple of month – right? Or is there a beta version of 3.2 already available we could use.
    Thanks a lot. Cheers Stefan

  • Oracle giving Block corruption errors when using CDC for sending the data to SQL Server 2012

    Hello Friends,
    We are facing an error while using CDC with Oracle. It is a "Block corruption" error, which indicates at some level of data corruption. We ran RMAN validate command to scan the database for corruption but it returned with no errors, however he
    Alert Log in Oracle is still coming up with the following error. Has anyone experienced this error when using Oracle Standard Edition and SQL 2012 ?
    Trace file e:\app\pulse-ad\diag\rdbms\orcl\orcl\trace\orcl_ora_5992.trc
    Oracle Database 11g Release 11.1.0.7.0 - 64bit Production
    Windows Server 2003 Version V5.2 Service Pack 2
    CPU                 : 4 - type 8664, 4 Physical Cores
    Process Affinity    : 0x0000000000000000
    Memory (Avail/Total): Ph:6782M/24575M, Ph+PgF:12203M/30844M
    Instance name: orcl
    Redo thread mounted by this instance: 1
    Oracle process number: 151
    Windows thread id: 5992, image: ORACLE.EXE (SHAD)
    *** 2013-12-12 03:04:33.655
    *** SESSION ID:(1281.3832) 2013-12-12 03:04:33.655
    *** CLIENT ID:() 2013-12-12 03:04:33.655
    *** SERVICE NAME:(orcl) 2013-12-12 03:04:33.655
    *** MODULE NAME:(xdbcdcsvc.exe) 2013-12-12 03:04:33.655
    *** ACTION NAME:() 2013-12-12 03:04:33.655
    Lost-write detected for sequence 70856. The lost-write starts occurring in block 11193. The current block being validating is 12930.
    Block dump of the first lost-write block:
    Flag: 0x1 Format: 0x22 Block: 0x00002bb9 Seq: 0x000114bf Beg: 0x94 Cks:0x68ee
    Dump of memory from 0x0000000598D06C00 to 0x0000000598D06E00
    598D06C00 00002201 00002BB9 000114BF 68EE8094  [."...+.........h]
    598D06C10 00085BF1 0023BDA1 000DE19C 000DE19C  [.[....#.........]
    598D06C20 0000000C 00000000 2209160A 5BF10000  [..........."...[]
    598D06C30 3EB10502 00C0F5CA 0031BDA1 00010205  [...>......1.....]
    598D06C40 02B22C6A 038A6D69 00000001 00000000  [j,..im..........]
    598D06C50 4D554407 30373230 35BB0206 001100AE  [.DUM0270...5....]
    598D06C60 0001040A 000D000E 038A6D69 56B25735  [........im..5W.V]
    598D06C70 729C0003 E19C0001 000C0006 000D0006  [...r............]
    598D06C80 02BB0502 00C0F5CD 0023BDA1 000A0002  [..........#.....]
    598D06C90 00C00013 000000D0 00030201 56B25736  [............6W.V]
    598D06CA0 03890001 00000000 00000000 002E0105  [................]
    598D06CB0 FFFF0003 00C0F5CD 56B25736 3EB10003  [........6W.V...>]
    598D06CC0 FFFF0024 0014000C 000C0018 00120014  [$...............]
    598D06CD0 09CC0058 E75B0022 0009000F 00085BF1  [X...".[......[..]
    598D06CE0 0024BDA1 000DE19D 000DE19D 0000000C  [..$.............]
    598D06CF0 00000000 2309160A 5BF10000 3EB10502  [.......#...[...>]
    598D06D00 00C0F5CD 0020BDA1 00010205 02B22C72  [...... .....r,..]
    598D06D10 03900974 00000019 00000000 3030300A  [t............000]
    598D06D20 33303030 06323132 AE35BB02 0B441100  [0003212...5...D.]
    598D06D30 0001040A 000D000E 03900974 56B25736  [........t...6W.V]
    598D06D40 729C0003 E19D0011 000C0006 000D0006  [...r............]
    598D06D50 02BB0502 00C0F5CD 0024BDA1 00EA0002  [..........$.....]
    598D06D60 00270016 000001FC 00032C01 56B25736  [..'......,..6W.V]
    598D06D70 00000001 00000000 30393007 002E0105  [.........090....]
    598D06D80 FFFF0003 00C0F5CD 56B25736 00000003  [........6W.V....]
    598D06D90 FFFF0025 00140052 000C0018 00070035  [%...R.......5...]
    598D06DA0 0003000A 00070003 0001001D 00030001  [................]
    598D06DB0 00010001 00010001 00010001 00010001  [................]
    598D06DC0 00010001 00010001 00010001 00010001  [................]
    598D06DD0 00010001 00000001 00010001 00010001  [................]
    598D06DE0 00010001 00000014 09720174 00000022  [........t.r."...]
    598D06DF0 0009000F 00085BF1 0025BDA1 000DE19A  [.....[....%.....]
    Block dump of the current block being validating:
    Flag: 0x1 Format: 0x22 Block: 0x00003282 Seq: 0x000114c8 Beg: 0x0 Cks:0x312a
    Dump of memory from 0x0000000598DDFE00 to 0x0000000598DE0000
    598DDFE00 00002201 00003282 000114C8 312A8000  [."...2........*1]
    598DDFE10 50424703 31303607 34353335 69745319  [.GBP.6015354.Sti]
    598DDFE20 6E696C72 72502067 6375646F 4C207374  [rling Products L]
    598DDFE30 4E206474 C3025650 0380013D 0457454E  [td NPV..=...NEW.]
    598DDFE40 4E1E09C2 1E09C204 10C2024E 1E09C204  [...N....N.......]
    598DDFE50 09C2044E C2024E1E 03C30510 021B0929  [N....N......)...]
    598DDFE60 C3053DC3 0F192602 2602C305 C3050F19  [.=...&.....&....]
    598DDFE70 0C1A6203 5102C105 C2041F4E 044E1E09  [.b.....QN.....N.]
    598DDFE80 4E1E09C2 0410C202 4E1E09C2 1E09C204  [...N.......N....]
    598DDFE90 10C2024E 2903C305 78071B09 011D0B71  [N......)...xq...]
    598DDFEA0 BF020101 1FBF0215 4E018001 53014E01  [...........N.N.S]
    598DDFEB0 0723002C 0B0C7178 0A3C3C18 30303030  [,.#.xq...<<.0000]
    598DDFEC0 33373030 4D033337 47034255 36075042  [007373.MUB.GBP.6]
    598DDFED0 38333936 4E113331 2065776B 74616C50  [693813.Nkwe Plat]
    598DDFEE0 6D756E69 56504E20 0B0AC303 4E038001  [inum NPV.......N]
    598DDFEF0 C2045745 0459512E 59512EC2 5253C203  [EW...QY...QY..SR]
    598DDFF00 512EC204 2EC20459 C2035951 C3055253  [...QY...QY..SR..]
    598DDFF10 1B092903 0B0AC303 3C04C305 C3053239  [.).........<92..]
    598DDFF20 32393C04 4F08C305 C105114F 1F4E5102  [.<92...OO....QN.]
    598DDFF30 512EC204 2EC20459 C2035951 C2045253  [...QY...QY..SR..]
    598DDFF40 0459512E 59512EC2 5253C203 2903C305  [.QY...QY..SR...)]
    598DDFF50 78071B09 01190A71 C0030101 C0034709  [...xq........G..]
    598DDFF60 8001330A 4E014E01 002C5301 71780723  [.3...N.N.S,.#.xq]
    598DDFF70 3C180B0C 30300A3C 30303030 33373337  [...<<.0000007373]
    598DDFF80 42554D03 50424703 31304207 344C5131  [.MUB.GBP.B011QL4]
    598DDFF90 6F725020 63657073 614A2074 206E6170  [ Prospect Japan ]
    598DDFFA0 646E7546 64724F20 44535520 30302E30  [Fund Ord USD0.00]
    598DDFFB0 04C30331 03800133 0557454E 5B1603C3  [1...3...NEW....[]
    598DDFFC0 03C30521 04215B16 1F4004C3 1603C305  [!....[!...@.....]
    598DDFFD0 C305215B 215B1603 4004C304 03C3051F  [[!....[!...@....]
    598DDFFE0 031B0929 043304C3 4D245AC2 245AC204  [).....3..Z$M..Z$]
    598DDFFF0 02C3054D 040A1A18 494002C1 1603C305  [M.........@I....]
    *** 2013-12-12 03:05:07.984
    ** LOGMINER WARNING - Invalidated 6 LCRs **
    Complete dump of first invalid START LCR follows:
    ++  LCR Dump Begin: 0x0000000532C004E0 - CANNOT_SUPPORT
         op: 255, Original op: 3, baseobjn: 0, objn: 233316, objv: 1
         DF: 0x00000002, DF2: 0x00000000, MF: 0x00000000, MF2: 0x00000000
         PF: 0x40000001, PF2: 0x00002000
         MergeFlag: 0x00, FilterFlag: 0x00
         Id: 0, iotPrimaryKeyCount: 3, numChgRec: 4
         NumCrSpilled: 0
         RedoThread#: 1, rba: 0x0114c8.0001c6ce.00d4
         scn: 0x0003.56b593be, xid: 0x0008.00c.00100d85, pxid: 0x0008.00c.00100d85
         ncol: 0newcount: 0, oldcount: 0
         LUBA: 0x3.c109c0.c.15.38f64
    Thanks
    Dee

    Hi Dee,
    Thank you for your question.
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated.
    Thank you for your understanding and support.
    Regards,
    Mike Yin
    TechNet Community Support

  • Create new LSMW using Idoc for HR master Data

    Hi Guys,
    I was wondering id someone could help me. I have started developing an LSMW, of which I have already
    created the Object. I have also created the Maintain attributes and I have supplied the Message Type, Basic Type and activated the IDOC inbound processing after providing the appropriate information.
    The question I have is in the "Maintain source structure" do I need to create a structure for data records
    and a structure for header?
    Can I do a recording for transaction     -
    "PA30" --->  update infotype 6
                                                           |
    IDOC   -
    > infotype 0,1,2,6
    I have previously created HR LSMW using recording, but I have not used the IDOC facility and I'm not
    sure of the differences.
    Does anyone have any documentation.
    Regards,
    Frank

    Dear Frank,
    For Idoc method need to do setting first.
    Creating  pratner profile,.....................etc.
    then rest of the thing are same.
    Best Regards,
    Flavya

  • Very simple question: using XWS to generate static data

    Hi,
    I'm testing interop for JWSDP and a soon-to-be-released RSA Security, Inc. product that will also provide WSS as well as XML signatures, XML encryption, ...
    I have already used JWSDP -- xmldsig -- to generate a bunch of XML docs that were signed using JWSDP (all varieties of KeyInfo, signing algos, ...).
    I need to do something similar for WSS -- using xws-security.
    Do I need a Web container in order to be able to do this? (Again, recalling that all I want to do is generate thousands of encrypted, signed, encrypted & signed, signed & encrypted SOAP messages (using UsernameTokens, X509Tokens, ...))
    Do you have any examples that might save me some time?
    I have looked through all of the examples in the "interop" and "simple" subdirs of the "samples" subdir of "xws-security" and most of these presume that there's some RPC going on, which doesn't really fit the model of what I'm trying to do here. Got any ideas? Even basic ones? Even big ones?
    TIA.
    Liz

    I've kinda answered my own question in part:
    SecurableSoapMessage ssm = new SecurableSoapMessage(soapMessage);
    ssm.setFilterParameter(FilterParameterConstants.BINARY_SEC_TOKEN,new X509SecurityToken(ssm.getEnvelope().getOwnerDocument(),cert));
    ExportCertificateTokenFilter estf = new ExportCertificateTokenFilter();     
    estf.process(ssm);
    ExportSignatureFilter esf = new ExportSignatureFilter(new DirectReferenceStrategy(cert));
    esf.process(ssm);
    that transforms the soap message, adding the wsse xml, then I try to sign it:
    SignFilter sf = new SignFilter(new X509IssuerSerialStrategy(cert));
    sf.process(ssm);
    and this fails saying I don't have a privatekey, which makes sense. I need to create a DefaultSecurityEnvironmentImpl probably, define the key in there and then attach that to the SecurableSoapMessage? The problem is, I have the cert and privake key stored on files, how do I go about loading that into the SecurityEnvironment? Would this SecurityEnvironment handle cert chain validation then, since it can be constructed with a trusted keystore?

  • Using OBIEE for a custom Data Warehouse

    Hi Everyone,
    I am very new to OBIEE and I have a few questions about this product family.
    1. I have an existing custom build data warehouse, and I would like to know, is it possible to have build reports on this data warehouse?
    2. I understand that OBIEE comes with pre-built ETL jobs in Informatica, what kind of license is it? Is it possible to modify them, or even build new jobs that load into a non-OBIEE data warehouse?
    your answer will be greatly appreciated.
    Jeffrey
    Edited by: user3265404 on Oct 13, 2009 12:50 PM

    Its the same Informatica which can do all functions as a stand alone Infa. additionally it also has prebuilt adapters for source systems like Siebel, APPL, PSFT, JDE, SAP and some universal adapters, so the license included these also which is going to cost more than getting a informatica Licence from Informatica Corp. Moreover, OBI Apps 7.9.6 comes with Informatica 8.6 which is a little older version of the tool. Informatica is going to release version 9 in a couple of weeks.
    I see that you already have a datawarehouse, so why do you need a ETl tool again?
    OBI EE can directly report out of a datewarehouse, and also transactional systems as long as the metadata layer is built.
    PS: Am I clear?

  • Using VBA for loading Query data into Excel workbook

    Hi all.
    I want simply load data from BEx query into Excel Wortksheet using VBA because of report formats and footer section at the end of the results.
    Any code examples, tutorials, comments, suggestions will be regarded.
    thanx in advance,
    Gediminas

    The difficalty is that I don't know the number of rows report will return. And I need my footer only on LAST page of workbook.
    Another thing I can't imagine how to do by using standart BEx functionality is to design complex column header set (merged columns, sub-columns and etc.).

  • Using XSU for Storing XML data

    Please how can I use the XSU API for storing XML documents in Oracle8i? I know part of the code to store a document but how do I import the XSU API?
    Do I have to download it or use it via Oracle?
    example:
    String xmlDoc = "my_xml_document";
    Connection conn = >>DriverManager.getConnection(...);
    OracleXMLSave sav = new OracleXMLSave
    (conn,"purchaseOrderTab");
    sav.insertXML(xmlDoc);But how do I use OracleXMLSave? How do I import the XSU API?
    thanks for your help
    null

    What is XSU? I think you question should be posted at the XML or XDK forum.

  • Generic Data source using FM for BOM Item data is not saving

    Hi Experts,
    This is the first time I post on this forum.
    I am creating a custom datasource (ycp_bom_itm) based on Function Module in R/3 which get data from MAST and STPO.
    I have defined the Function Module and the extraction structure as well.
    So While saving the Data source i am getting Error as
    " Units field MEINS for field ZMENGE of DataSource ycp_bom_itm is hidden
         Message no. R8147"
    Does any of you have experience of this issue? Please Help to solve this issue
    Thank's In advance

    Hi,
    Go to Rsa6 and select relevant d.s (Custom) there will be 4  options for each field selction, hide fieldi ,nversion,field only .
    check MEINS  field  details either it is checked/unchecked (Enable/disabled)  hide field , need to be un checked.
    Thanks.

Maybe you are looking for

  • Jabber for ipad no video with CUCM

    hello everyone i ipad install the jabber for ipad client,everything is OK,i can regist to CUCM and i can call the phone ,can hear my voice mail,but i can't video call. i call the jabber for windows,the windows no video and i also can't see the window

  • Oracle 10g on Solaris 5.10 x86

    Hi, I just tried installing oracle 10g(10.2.0.1) on my new machine(Sun solaris 10 x86) Intel 915 GAG with 512 RAM and 120GB SATA drive. After I started running ./runInstaller the following message came on console...... Starting Oracle Universal Insta

  • How to create an alias from the command line

    Hi I would like to know how to create an alias (for a file, not a command) from the command line. I don't want to use the ln command, as an alias has more interesting features than soft/hard links... Is there an Apple specific tool to do this? Thanks

  • Want to hide address,Tool,link bars of a new window opened using target="a"

    Hi, I have to hide the address bar, tools bar, lilnks bar of a new window opened using the target = "detailWindow". I am opening the window on click of a link and button but I cannot use window.open();. On click of the link for the first time a popup

  • Pruchase order in MM don't consume budget in the WBS

    Hi fiends, We are doing implementation for Public Sector with EA-PS, MM and PS (ECC 6.0). We are having problems in the control availability or commitments of the WBS: duplication of the commitments in WPS:     - In EA-PS create a Funds Commitment (F