Using Commerce Samples from 7.0 in 8.1

Folks,
Have a general question.We know well that BEA do not provide any commerce samples
with 8.1 and it exists in only 7.0
When I develop a commercial site with 8.1, can I use the samples? I have 3 original
weblogic 8.1 portal licenses.
Thanks
Johnson

Much of the sample code in 7.0 (in wlcsApp and e2eApp) is contained in
PipelineComponents and webflow InputProcessors, but the commerce code
contained in those should still work if put into something else (e.g. a
pageflow, a business process, a control).
Additionally, you can run 7.0 PipelineComponents and InputProcessor in
an 8.1 application, although we don't provide any specific development
tools to support developing those.
http://e-docs.bea.com/wlp/docs81/upgrade/chapter3.html#1049039 has some
information about how to enable Pipeline and webflow in your app and
webapps.
Greg
Johnson wrote:
Folks,
Have a general question.We know well that BEA do not provide any commerce samples
with 8.1 and it exists in only 7.0
When I develop a commercial site with 8.1, can I use the samples? I have 3 original
weblogic 8.1 portal licenses.
Thanks
Johnson

Similar Messages

  • AUDIO SAMPLES FROM IOMEGA 100 ZIP DRIVE TO MAC BOOK PRO / LOGIC?

    Posted: Fri, Feb 15 2013, 1:27pm    Post subject: AUDIO SAMPLES FROM ZIP 100 TO MACBOOK PRO / LOGIC?
    HI THERE
    I HAVE LOADS OF OLD AUDIO SAMPLES ON ZIP DISKS ( ZIP 100 using akai cd3000 sampler ) THAT I WOULD LIKE TO TRANSFER TO MY MAC BOOK PRO FOR LOGIC EX24.
    IS IT A SIMPLE CASE OF A 'SCSI TO USB LEAD' , WILL MY MAC BOOK PICK IT UP FROM THERE OR DO I NEED SOFTWARE OR DRIVERS FOR MY MAC TO BE ABLE TO SEE THEM?
    IS IT EVEN POSSIBLE AT ALL?
    THANKS

    Hi guys
    Sorry for the delay in coming back. I bought a zip drive pretty cheaply then and it has only just turned up. However when I put my old ZIP disks in, it seems like the ZIP drive reads them at least but the MACBOOK comes up with the following message...
    'The disk you inserted was not readable by this computer'
    Does this pretty much mean a no go then?  Or can I put the samples from my AKAI sampler back through the old ZIP drive,  reformat some new disks in a certain way on that drive so that my MAC can read them?
    All its for really is mainly to take old tracks that used these samples and getting them set up in my mac.  Also there was some good bits and pieces there anyway and would like to keep using those samples for newer projects. I could of coourse resample them from the AKAI straight to the MAC but would be not as practical and would take alot longer. The 13'' macbook pros input is not digital, only its output.
    thanks

  • How to convert a sample from labview 5.1 to labview8.0

    I have a sample from the manifacture which was programmed using the labview5.1 but now I use use the labview8.05 . Can anybody help me to convert the sample from labview5.1 to labview8.05 , thanks
    Solved!
    Go to Solution.
    Attachments:
    CaryExample.vi ‏125 KB

    Hi alane,
    here you go. It's missing the ActiveX component...
    Btw. you surely use LabVIEW8.5
    Message Edited by GerdW on 09-07-2009 03:20 PM
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome
    Attachments:
    CaryExample.vi ‏82 KB

  • Using color sampler values with curves adjustment layer

    Hi, I have just started trying to teach myself javascript.  Based on preliminary research, it's become apparent that there are many functions in Photoshop that are either extremely cumbersome or impossible to code by hand without using the Script Listener.
    My  goal is as follows: first, I will manually load two photos as layers in a single document.  Then I will manually place two or more color sampler points on the document.  At this point I would like the script to create a curves adjustment layer (ideally clipped to layer 2) and place as individual channel anchor points  the RGB data from the color sampler points on Layer 2, and then adjust the output of the points on each channel to the color sampler RGB values of layer 1.  
    As my first script, I realize this is probably going to be a lot of work.
    I did find some code that returns the average value of manually placed color sampler points.  Conceptually then, I would need to add code which creates a new curves adjustment layer and adds those RGB values (from a specific layer)  as anchor points on the individual channels,  and then hides one layer and looks at the RGB values of the color sampler points, and uses them as the output values for each anchor point.
    Sounds simple enough from a conceptual standpoint.
    I'm looking for some guidance on how to get started.
    Which parts will I definitely need Scriptlistener for and will that be adequate to do the job?
    How would you recommend I get started on this?
    Thanks very much for any input.

    The function I had provided was an example into which you would need to feed the values you got with Mike’s code.
    The code below would create a Curves Layer as shown in the screenshot, but I’m not sure it would work reasonably for all cases.
    // with code by mike hale;
    // 2012, use it at your own risk;
    // call the function to run the script
    #target photoshop
    createCurveAdjustmetFromColorSamplers();
    // create a function fo hold most of the code
    function createCurveAdjustmetFromColorSamplers(){
        // first add some condition checks
        // needs an open document in a color mode that supports layers
        if(app.documents.length == 0 || ( app.activeDocument.mode == DocumentMode.BITMAP || app.activeDocument.mode == DocumentMode.INDEXEDCOLOR ) ){   
            alert('This script requires a document in Greyscale, RGB, CMYK, or Lab mode.');
            return;
        // check for at least two colorSamplers
        if(app.activeDocument.colorSamplers.length < 2 ){
            alert('This script requires at least two colorSamplers.');
            return;
        // last check for at least two layers - assume they will be on same level( not in layerSet )
        if(app.activeDocument.layers.length < 2 ){
            alert('This script requires at least two layers.');
            return;
        // create varaibles to hold the colorSampler's color property for each layer
        // for the bottom layer
        var outputArray = new Array();
        // for top layer - array could also be created this way
        var inputArray = [];
        // store the number of samples because it will be needed in more than one place
        var numberOfSamples = app.activeDocument.colorSamplers.length;
        // hide the top layer
        app.activeDocument.layers[0].visible = false;
        // collect the samples from the bottom layer
        for(var sampleIndex = 0; sampleIndex < numberOfSamples; sampleIndex++ ){
            outputArray.push(app.activeDocument.colorSamplers[sampleIndex].color);
        // turn the top layer back on
        app.activeDocument.layers[0].visible = true;
        // collect those samples
        for(var sampleIndex = 0; sampleIndex < numberOfSamples; sampleIndex++ ){
            inputArray.push(app.activeDocument.colorSamplers[sampleIndex].color);
        // make sure the top layer is the activeLayer
        app.activeDocument.activeLayer = app.activeDocument.layers[0];
    // create arrays of the color values:
    var theArray = [[0, 0, 0, 0, 0, 0]];
    for (var m = 0; m < inputArray.length; m++) {
    theArray.push([inputArray[m].rgb.red, outputArray[m].rgb.red, inputArray[m].rgb.green, outputArray[m].rgb.green, inputArray[m].rgb.blue, outputArray[m].rgb.blue]);
    theArray.push([255, 255, 255, 255, 255, 255]);
    // sort;
    theArray.sort(sortArrayByIndexedItem);
    // makeCurveAdjustmentLayer();
    rgbCurvesLayer (theArray)
    ////// make rgb curves layer //////
    function rgbCurvesLayer (theArray) {
    // =======================================================
    var idMk = charIDToTypeID( "Mk  " );
        var desc5 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref2 = new ActionReference();
            var idAdjL = charIDToTypeID( "AdjL" );
            ref2.putClass( idAdjL );
        desc5.putReference( idnull, ref2 );
        var idUsng = charIDToTypeID( "Usng" );
            var desc6 = new ActionDescriptor();
            var idType = charIDToTypeID( "Type" );
                var desc7 = new ActionDescriptor();
                var idpresetKind = stringIDToTypeID( "presetKind" );
                var idpresetKindType = stringIDToTypeID( "presetKindType" );
                var idpresetKindDefault = stringIDToTypeID( "presetKindDefault" );
                desc7.putEnumerated( idpresetKind, idpresetKindType, idpresetKindDefault );
            var idCrvs = charIDToTypeID( "Crvs" );
            desc6.putObject( idType, idCrvs, desc7 );
        var idAdjL = charIDToTypeID( "AdjL" );
        desc5.putObject( idUsng, idAdjL, desc6 );
    executeAction( idMk, desc5, DialogModes.NO );
    // =======================================================
    var idsetd = charIDToTypeID( "setd" );
        var desc8 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref3 = new ActionReference();
            var idAdjL = charIDToTypeID( "AdjL" );
            var idOrdn = charIDToTypeID( "Ordn" );
            var idTrgt = charIDToTypeID( "Trgt" );
            ref3.putEnumerated( idAdjL, idOrdn, idTrgt );
        desc8.putReference( idnull, ref3 );
        var idT = charIDToTypeID( "T   " );
            var desc9 = new ActionDescriptor();
            var idpresetKind = stringIDToTypeID( "presetKind" );
            var idpresetKindType = stringIDToTypeID( "presetKindType" );
            var idpresetKindCustom = stringIDToTypeID( "presetKindCustom" );
            desc9.putEnumerated( idpresetKind, idpresetKindType, idpresetKindCustom );
            var idAdjs = charIDToTypeID( "Adjs" );
                var list1 = new ActionList();
                    var desc10 = new ActionDescriptor();
                    var idChnl = charIDToTypeID( "Chnl" );
                        var ref4 = new ActionReference();
                        var idChnl = charIDToTypeID( "Chnl" );
                        var idChnl = charIDToTypeID( "Chnl" );
                        var idRd = charIDToTypeID( "Rd  " );
                        ref4.putEnumerated( idChnl, idChnl, idRd );
                    desc10.putReference( idChnl, ref4 );
                    var idCrv = charIDToTypeID( "Crv " );
                        var list2 = new ActionList();
    // add r points;
    for (var m = 0; m < theArray.length; m++) {
              addCurvePoint (list2, theArray[m], 0)
                    desc10.putList( idCrv, list2 );
                var idCrvA = charIDToTypeID( "CrvA" );
                list1.putObject( idCrvA, desc10 );
                    var desc15 = new ActionDescriptor();
                    var idChnl = charIDToTypeID( "Chnl" );
                        var ref5 = new ActionReference();
                        var idChnl = charIDToTypeID( "Chnl" );
                        var idChnl = charIDToTypeID( "Chnl" );
                        var idGrn = charIDToTypeID( "Grn " );
                        ref5.putEnumerated( idChnl, idChnl, idGrn );
                    desc15.putReference( idChnl, ref5 );
                    var idCrv = charIDToTypeID( "Crv " );
                        var list3 = new ActionList();
    // add g points;
    for (var m = 0; m < theArray.length; m++) {
              addCurvePoint (list3, theArray[m], 2)
                    desc15.putList( idCrv, list3 );
                var idCrvA = charIDToTypeID( "CrvA" );
                list1.putObject( idCrvA, desc15 );
                    var desc20 = new ActionDescriptor();
                    var idChnl = charIDToTypeID( "Chnl" );
                        var ref6 = new ActionReference();
                        var idChnl = charIDToTypeID( "Chnl" );
                        var idChnl = charIDToTypeID( "Chnl" );
                        var idBl = charIDToTypeID( "Bl  " );
                        ref6.putEnumerated( idChnl, idChnl, idBl );
                    desc20.putReference( idChnl, ref6 );
                    var idCrv = charIDToTypeID( "Crv " );
                        var list4 = new ActionList();
    // add b points;
    for (var m = 0; m < theArray.length; m++) {
              addCurvePoint (list4, theArray[m], 4)
                    desc20.putList( idCrv, list4 );
                var idCrvA = charIDToTypeID( "CrvA" );
                list1.putObject( idCrvA, desc20 );
            desc9.putList( idAdjs, list1 );
        var idCrvs = charIDToTypeID( "Crvs" );
        desc8.putObject( idT, idCrvs, desc9 );
    executeAction( idsetd, desc8, DialogModes.NO );
    return app.activeDocument.activeLayer;
    ////// add curve point //////
    function addCurvePoint (theList, valueHor, theNumber) {
    var desc11 = new ActionDescriptor();
    var idHrzn = charIDToTypeID( "Hrzn" );
    desc11.putDouble( idHrzn, valueHor[theNumber] );
    var idVrtc = charIDToTypeID( "Vrtc" );
    desc11.putDouble( idVrtc, valueHor[theNumber+1] );
    var idPnt = charIDToTypeID( "Pnt " );
    theList.putObject( idPnt, desc11 );
    ////// sort a double array, thanks to sam, http://www.rhinocerus.net/forum/lang-javascript/ //////
    function sortArrayByIndexedItem(a,b) {
    var theIndex = 0;
    if (a[theIndex]<b[theIndex]) return -1;
    if (a[theIndex]>b[theIndex]) return 1;
    return 0;

  • Calling a custom tcode using abap class from workflow

    Hi Experts,
    I have a requirement of calling a custom tcode from my workflow.
    For this i have created a class zcl_test ( has if_workflow ) .
    I created a method ztest which will call the tcode.
    CALL TRANSACTION 'ZTX'.  ( My tcode just has 1 input field, for testing purpose )
    Then i created a task in whichi hv used this abap class and method.
    But the tcode does not run when i execute the workflow.
    Please help.
    Thank You,
    Radhika Vadher.

    Radhika Vadher 
    use the sample code to get the data from the task container into the ABAP class
    DATA :
             w_ref        TYPE  REF TO      if_swf_run_wim_internal,
             w_ref_cnt  TYPE  REF TO      if_wapi_workitem_context,
              w_wi_ref   TYPE  REF TO      if_swf_ifs_parameter_container.
    TRY.
        CALL METHOD cl_swf_run_wim_factory=>find_by_wiid
          EXPORTING
            im_wiid     = w_wiid
          RECEIVING
            re_instance = w_ref.
      CATCH cx_swf_run_wim_enq_failed .
      CATCH cx_swf_run_wim_read_failed .
      CATCH cx_swf_run_wim .
    ENDTRY.
    CALL METHOD w_ref->get_workitem_context
      RECEIVING
        re_ctx = w_ref_cnt.
    CALL METHOD w_ref_cnt->get_wi_container
      RECEIVING
        re_container = w_wi_ref.
    and the w_wi_ref is having a method GET use that method to get the values of the task container into the ABAP class.

  • Content aware fill - how to sample from small area?

    Is there a way how to sample from small area and then apply content aware fill to the much more bigger area? For example - there is an object on a table. The object fills 90% of the image and the table 10% image. Now, I just want to delete the object. But that doesnt work with content aware fill, because the area around it is much smaller. Is there a solution for this?

    I am not sure that CAF is the right tool if you want to fill a large area sampling from a small area.  You might get away with doing it in stages
    One trick is copy just those areas you want to sample from, to a new layer, and use CAF on that layer, but without seeing your image, it is difficult to say what the best aproach is going to be.  

  • Determine Physical Samples using a Sample Scheme

    Dear QM friends,
    currently I am struggling with a QM issue that maybe you can help me with.
    Within the one of our factory sites we have rolled-out QM for quality inspection at GR, for this we use Physical Samples (just like we do in other factory sites). Only thing is that in this specific site they want to draw their physical samples based on a sample scheme. The other site use formulas to draw samples.
    So we have setup a sample-drawing procedure to determine the samples based on a specific sample scheme that has been setup for this factory.
    What I expected SAP to do when doing a goods receipt of for example 3 items is that SAP will draw 3 Physical Samples with a quantity of 1. However strangely SAP creates 1 Physical Sample with a size of 3 items.
    With kind regards,
    Kenny Galle

    Thanks for both of your responses
    In relation to you questions I checked the following:
    1. I am using Primary Samples alone and they are to be taken from a Sample Scheme linked in the Sample-Drawing Procedure;
    2. Increasing the sampel size does not work, I am still left with one physical sample and multiple items. Where I want a physical sample PER item.
    When we use a formula in the Sample-Drawing procedure (e.g., "P1" or "TRUNC(P1/10)+1") it works fine and we get a Physical Sample per serialize item.
    Any guidance will be highly appreciated!

  • My black Box doesnt match the colour of the image it is sampled from when printed, suggestions?

    I have a black image covering half a page whilst placed next to it is a black box which has been sampled from the colour of the image, the CYMK are the same yet when printed the box comes out a different shade of black. suggestions?

    There are a couple of things that could be going on, and as an aside, trying to match a solid background to a sampled area in an image is seldom successfule as there is too much variability in the actual color in most images.
    The first possible issue is that the sample you are taking could be inaccurate. Are you sampling in ID or in Photoshop? You mentioned CMYK, and I don't believe ID will sample the CMYK in a placed image, but uses the preview instead. If you are sampling in Photoshop you are either sampling an average of the pixels in a square area, or a single pixel, depending on the eyedropper settings, and either choice is likely not to be truly representative in many cases. A further complication is if you are sampling an image that has a differnt color profile from the working space in ID.
    The other big possibility is that your printer uses what is know as a dual-layer  or CT-Line (for continuous Tone/Line art) processor and handles the raster image differently from the vector object created in ID. Theres a pretty good explanation of this in InDesignSecrets » Blog Archive » Eliminating YDB (Yucky Discolored Box) Syndrome

  • Cannot get accurate eyedropper sample from imported graphic

    I am working in illustrator CS5 set to CMYK which my imported photoshop layered file is also. When I sample a color from the imported psd file, it will not accurately pick it up. I have to write down the numbers in photoshop and hand apply them in illustrator. This is not the way it used to work so I think I have something set incorrectly. Does anyone know what I am doing wrong? When I double click on the eyedropper tool, the 2 appearance boxes are unchecked. Thank you.

    You were probably SHIFT clicking the eyedropper tool to get a color sample.
    The Photoshop method is more accurate as you can set the sample radius. Embedding the image gets you almost perfect values, for some reason my tests show that to be off by a very minor 1/10 %, but much much  better than not embedding.
    The values are supposed to be 15m 10015m 0Y 5K form a flat tint in Photoshop.
    NOT EMBEDDED
    SHIFT SAMPLE FROM EMBEDDED

  • Facebook has challenged the copyright of a movie using iMovie audio. Am i allowed to share movies made using audio clips from iMovie?, Facebook has challenged the copyright of a movie using iMovie audio

    Facebook has challenged the copyright of a movie using iMovie audio. Am i allowed to share movies made using audio clips from iMovie?

    Just curious as to why it's coming up as a copyright violation?
    Hard to say.  I think FaceBook errs on the side of abundance caution when they detect anything that sounds like music.
    It's also possible to that people use samples of various pieces of iLife audio contest to create a piece of work that they then copyright.
    Matt

  • Where can I download working bpel samples from?

    When i installed the BPEL PM and Jdeveloper Studio zip from oracle I did not get all the tutorials(i think there are about 75 working samples?). Does anyone know where can I download these working tutorials/samples from?
    Thanks!

    Hi,
    can you please provide the versions of BPEL PM?
    You should search for
    bpel/integration/orabpel/samples
    or bpel/samples
    in the application server directory. There you can use tutorials and demos...

  • Updated iPhoto could no longer use the music from iTunes library for slideshow

    Anybody checked if you can still use your music from iTunes library for slideshows?
    After updating both iPhoto and iTunes to the latest version in Mavericks, all music links in the iPhoto's slideshows became invalid. Tried even to re-establish the music links, but it seems like the iPhoto would not play any music from the iTunes library. Only the sample music from iPhoto is usable. The iTunes works fine by the way.
    Thanks a lot!

    I think I found a workaround that seemed to correct the problem. In iTunes, go to the File menu and choose Library. Then select Organize Library. Next choose Reorganize files in the folder "iTunes Media".  Click OK.

  • Spot Healing Brush sampling from unwanted region -- below the target area!

    Hello everyone,
    I have some text in a speech bubble I'm trying to get rid of.  So far, I've filled the white characters with background color.  To smooth the character outlines and to blend the somewhat gradient color, I'm trying to use the Spot Healing Brush, but it is not doing the job at hand because it is acting like the standard Healing Brush, sampling from a different region even though I"m not ALT clicking first.
    What am I missing here?  I'm really puzzled with the Spot Healing Brush misbehavior.
    Thanks!
    -Ron

    Without seeing the image and brush behaviour we need to guess, plus we don't know what version of Photoshop you are using.
    Take a look at the Options bar.  If you have 'Proximity Match' checked, tray changing it to Content aware.  Is Sample all layers checked, and could it be picking up information from an underlying layer?  Hmmm...  I'm getting too tired to think clearly (1am here) so that'll do for now.

  • Using garageband samples

    sounds and samples from my jampacks into my project soundtracks in FC, how?

    produce in garageband. share to itunes. convert in itunes. import. or use the gb loops in soundtrack. export from st.

  • Using exs24 samples in ultrabeat

    I'm trying to make a kit on Ultrabeat using a combination of samples from the exs24--the trouble is, everytime I load a sample and play it in Ultrabeat it sounds different from the preview. I'm assuming this is because other Ultrabeat functions are active, so I've tried to turn everything off but I'm still getting different sounds. Is there a simple way to load the sample and have all other Ultrabeat parameters off so I can just get the original sample sound?

    Create yourself a blank default kit to start with. I think you can download one from LogicProHelp.com.
    All you need to do is turn all modules off except the sample playback oscillator, null the pitch to zero and have sensible envelopes and so on. Copy that to all notes, and save the kit.
    Now you just select a note and load a sample to play it.

Maybe you are looking for

  • Why does my home wifi not work with my apple products

    my computer, ipad, and ipod all say that when i connect to my house wifi there is no internet connection yet when i try to connect my xbox and galaxy phone the wifi works just fine i called the wireless company and they told me that the router is wor

  • Freeze after raw photo update 10.6.8

    Iphoto will freeze (spinning blue wheel after Raw photo update. OS 10.6.8 Iphoto 9.1.2

  • Error in the Dynamic query in AME

    Hi Experts, I am using the below query but i am facing the error "Ensure the query selects exactly 1 column" in AME Approval group under Dynamic query. But the query returns only one column when i ran in toad. select 'person_id:'||a.person_id  from (

  • HT204088 request refund duplicate payment

    Anyone know how can I request for refund due to after I have found itune has duplicate charged me when I bought some diamonds in the game. Already contact related company of the app but they said the problem is itune rather than them. I have already

  • How am I supposed to open a new tab when the "+" icon has been removed?

    The icon I used to use to open new tabs has disappeared since the last Firefox update. I cannot find a menu, button, icon or anything to open a new tab anymore. How am I supposed to open a tab? p.s. If you want to change things people use regularly,