How to use the eventing and databag with a WAS 6.20 ?

How to use the eventing and databag with a WAS 6.20 ?
Is what there is a good guide for these services?
Thank's

In the raise event you can pass the value
like below.
<SCRIPT>
function raiseEvt(value1){
if(window.document.domain == window.location.hostname){
if ( document.domain.indexOf(".") > 0 ) document.domain = document.domain.substr(document.domain.indexOf(".")+1);
   EPCMPROXY.raiseEvent( "urn:com.sap:BWEvents","BWiViewevent", value1, null );
  // alert('tree domain'+document.domain);
</SCRIPT>
and in the
subscribe event you can get the values like below.
<script language="javascript">
if(window.document.domain == window.location.hostname){
document.domain = document.domain.substring(document.domain.indexOf('.')+1);
    EPCMPROXY.subscribeEvent("urn:com.sap:BWEvents","BWiViewevent", window, "myreceiveEvent");
function myreceiveEvent( eventObj ) {
      document.forms[0].gp_hidden.value = eventObj.dataObject;
</script>
Also look at the following link for a complete documentation.
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/Enterprise%20Portal%20Client.pdf
Regards
Raja

Similar Messages

  • How to use the same OC4j server with different port number

    How to use the same OC4j server with different port numbers..?
    I have to OC4J installed on my machine on different hard disk drives....
    I want to be able to run both the server simultaneously..?
    is it possible ..it yes then how..?
    for that i have changed the port number of one server...
    but when i am trying to start the other server with different port number..it says that JVM -Bind already...
    Is there any clues...?
    Nilesh G

    In the config directory:
    default-web-site.xml: Change the port the HTTP listener listens on
    jms.xml: Change the port the JMS service listens on
    rmi.xml: Change the port the ORMI listener listens on.
    Or, you can add another web-site.xml file, and deploy your applications to 1 server, and bind the web applications to the different web sites. This way you only have to deploy your applications to 1 place.
    Rob
    Oracle

  • Gantt chart: Don't know how to use the tooltipkeys and toolkeylabel

    I have a problem. Don't know how to use the tooltipkeys and toolkeylabel. I used jquery to select the gantt bars and on mouse over i was getting the task id "tid" then passing it to adf bean with serverlistener and showing a popup that is adf component with javascript. For positioning of the popup I used a button that has width and height 0 and has position absolute and gets the coordinates of the mouse.
    "div[et]" is a jquery selector that selects all the elements that have attribute et. I noticed that all the bars have that attribute as a few other attributes as well "part"...
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
            xmlns:dvt="http://xmlns.oracle.com/dss/adf/faces">
        <af:document title="untitled1.jsf" id="d1">
            <af:resource type="javascript" source="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"/>
            <af:resource type="javascript" source="resources/js/home.js"/>
            <af:messages id="m1"/>
            <af:form id="f1">
               <af:commandButton text="commandButton 1" id="cb1" inlineStyle="visibility:hidden; width:0; height:0" />
                <af:popup id="noteWindow" contentDelivery="lazyUncached" binding="#{homeBean.popup}">
                    <af:noteWindow id="popupWindow">
                        <af:panelFormLayout id="pfl2">
                            <af:panelLabelAndMessage label="Task id" id="plam5">
                                <af:outputText value="#{homeBean.taskId1}" id="ot64"/>
                            </af:panelLabelAndMessage>
                            <af:panelLabelAndMessage label="Start Location Name" id="plam6">
                                <af:outputText value="#{homeBean.startLocation}" id="ot7"/>
                            </af:panelLabelAndMessage>
                            <af:panelLabelAndMessage label="Stop Location Name" id="plam7">
                                <af:outputText value="#{homeBean.stopLocation}" id="ot8"/>
                            </af:panelLabelAndMessage>
                            <af:panelLabelAndMessage label="tasktype" id="pla2m7">
                                <af:outputText value="#{homeBean.taskType}" id="ot9"/>
                            </af:panelLabelAndMessage>
                        </af:panelFormLayout>
                    </af:noteWindow>
                </af:popup>
                <af:serverListener type="jsServerListener" method="#{homeBean.serverEventHandler}"/>
                <dvt:schedulingGantt id="gantt1" value="#{bindings.PersonView1.schedulingGanttModel}" var="row"
                                     startTime="2011-07-04 00:00:00" endTime="2011-07-04 23:00:00" summary="gsg"
                                     showMenuBar="false" showToolbar="false" iconPlacement="left"
                                     showTasksAsDailyBar="false">
                    <f:facet name="major">
                        <dvt:timeAxis scale="days" id="ta1"/>
                    </f:facet>
                    <f:facet name="minor">
                        <dvt:timeAxis scale="hours" id="ta2"/>
                    </f:facet>
                    <f:facet name="nodeStamp">
                        <af:column sortProperty="#{bindings.PersonView1.hints.PersonId.name}" sortable="false"
                                   headerText="#{bindings.PersonView1.hints.PersonId.label}" id="c1">
                            <af:outputText value="#{row.PersonId}" id="ot1">
                                <af:convertNumber groupingUsed="false"
                                                  pattern="#{bindings.PersonView1.hints.PersonId.format}"/>
                            </af:outputText>
                        </af:column>
                    </f:facet>
                </dvt:schedulingGantt>            
            </af:form>
        </af:document>
    </f:view>javascript:
    $(document).ready(bindEvents());
    function bindEvents() {
        $("div[et]").live('mouseover', function (e) {
             $('#cb1').css("position", 'absolute');
             $('#cb1').css("top", e.pageY-4);
             $('#cb1').css("left", e.pageX);
            var popup = AdfPage.PAGE.findComponentByAbsoluteId("noteWindow");
            var element = AdfPage.PAGE.findComponent("f1");
            var taskIdToPass = null;
            if ($(this).attr("tid") !=undefined) {
                 taskIdToPass = $(this).attr('tid').toString();
            } else {
                taskIdToPass = $(this).parent().attr('tid').toString();
            var param = {            taskId : taskIdToPass        };
            AdfCustomEvent.queue(element, "jsServerListener", param, true);
            if (!popup.isPopupVisible()) {
                var hints = {};
                hints[AdfRichPopup.HINT_LAUNCH_ID] = "cb1";
                hints[AdfRichPopup.HINT_ALIGN_ID] =  "cb1";
                hints[AdfRichPopup.HINT_ALIGN] = AdfRichPopup.ALIGN_AFTER_START;
                popup.show(hints);
        }).live("mouseout", function () {
            var popup = AdfPage.PAGE.findComponentByAbsoluteId("noteWindow");
            popup.hide();
    };My bean that is session bean:
    package view;
    import oracle.adf.model.BindingContext;
    import oracle.adf.model.binding.DCDataControl;
    import oracle.adf.view.rich.component.rich.RichPopup;
    import oracle.adf.view.rich.render.ClientEvent;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Key;
    import oracle.jbo.Row;
    import oracle.jbo.RowSetIterator;
    import oracle.jbo.ViewObject;
    public class HomeBean {
        private RichPopup popup;
        private String taskId1;
        private String startLocation;
        private String stopLocation;
        private long taskId;
        private String taskType;
        public HomeBean() {
            super();
        public void serverEventHandler(ClientEvent clientEvent) {    
            String taskIdString = clientEvent.getParameters().get("taskId").toString();
            this.taskId = Long.parseLong(taskIdString);
            DCDataControl dc1 = BindingContext.getCurrent().findDataControl("AppModuleDataControl");
            ApplicationModule am = dc1.getApplicationModule();
            ViewObject vo = am.findViewObject("PdTrfDayView1");  
            RowSetIterator rowSetIterator = vo.createRowSetIterator(null);
            Row[] rows = rowSetIterator.findByKey(new Key(new Object[] {taskId}), 1);
            Row row = rows[0];
           this.taskId1 =  row.getAttribute("PdTrfDayId").toString();
           this.startLocation = row.getAttribute("StartLocation").toString();
           this.stopLocation = row.getAttribute("StopLocation").toString();
           this.taskType = row.getAttribute ("PdTrfTypeId").toString();
            RichPopup.PopupHints ph = new RichPopup.PopupHints();
            vo.closeRowSetIterator();
        public long getTaskId() {
            return taskId;
        public void setPopup(RichPopup popup) {
            this.popup = popup;
        public RichPopup getPopup() {
            return popup;
        public String getTaskId1() {
            return taskId1;
        public String getStartLocation() {
            return startLocation;
        public String getStopLocation() {
            return stopLocation;
        public String getTaskType() {
            return taskType;
    }I am wondering If i can use setCurrentRow on the iterator that i create and use it for displaying on the popup instead of binding startLocation and stopLocation to the bean and if there is any benefit of that at all...
    Edited by: 897833 on Nov 24, 2011 11:37 AM

    Hi,
    To use tooltipkeys and tooltiplabel in gantt, you can add following code in managed bean
    public String[] getTooltipKeys()
    return new String[]{"columnA", "columnB", "StartDate", "EndDate"};
    public String[] getTooltipLabels()
    return new String[]{"A", "B", "Start Date", "End Date"};
    where , the string array in the ToolTipKeys represents the columns, of the table you have in the gantt component , and the string array in TooltipLabels displays the label you want to display for the table columns.
    In the jsff, you could call the bean methods as follows:
    tooltipKeys="#{GanttBean.tooltipKeys}"
    tooltipKeyLabels="#{GanttBean.tooltipLabels}"

  • How to use the validations and exceptions  in BPEL

    Hi,
    How to use the validations and exceptions in BPEL.
    pls provide one sample example to give the exceptions and validations in BPEL

    Hi,
    For example you can create a simple BPEL Process and you can throw an error during running process. If input data is not valid and format is not correct you can throw error using throw activity and using catch activity you can catch particular error. The catch-all will handle all the error occurred with the scope.
    you can also refer faulthandling section in the link for more information related to exception handling.
    http://download-west.oracle.com/docs/cd/B31017_01/integrate.1013/b28981/faults.htm#sthref1188
    Regards,
    Deepa

  • Does anyone kwow how to use the Korg M50 editor with garageband?

    does anyone kwow how to use the Korg M50 editor with garageband?

    Moved from the Creative Cloud to the Photoshop forum. They will be able to help you here.

  • How to use the d3.js library with Apex Charting

    Hello.
    I am using Apex 4.1.0 with Oracle 11gR2 and Oracle App Server (mod_plsql).
    I'm trying to incorporate the d3.js library (a visulaization framework) in my Apex charts but am not having much success.
    I found this article in which David Mann uses the library within an Apex 4.x application:
    http://ba6.us/d3js_application_express_basic_dynamic_action
    I replicated his exact steps in my own application but without success. I do not see how he was able to get his application to work. Indeed, the tutorial does not even use a dynamic action despite what the article title says.
    Has any one used the d3.js library with their Apex application. If so, would you be willing to share how you went about it?
    Thank you very much.
    Elie

    EEG wrote:
    Hello fac586.
    Thank you very much for responding/helping.
    In the article I referenced I did note David's statement about using a "modern" browser with d3.js (one that recognizes css3 syntax); otherwise, the framework will not respond. And so, I was careful to run my Apex application in IE9.x as well in Firefox 16.x. But all I see is an empty region with a title. No chart. Nothing.
    I suspect my one of my problems here is in getting the chart to refresh every "n" seconds. For this, I think the dynamic action would be used, though I'm not sure how to go about doing so.That's included in the sample code (line 99). Strangely Dynamic Actions don't seem to include a native timer event...however there is a plug-in.
    More problematic, though, is that I am not seeing any chart whatsoever in the region. I would have expected to see some chart data, even if it is not automagically refreshing.
    I've created my example in my EEG workspace on apex.oracle.com:
    Workspace: EEG
    Username: [email protected]
    Password: galaxy (note: all lowercase)
    Please see application 27083 called Elie_Goodies, page 25. This page has an associated tab called, appropriately enough, "d3.js Library". The Safari console showed a couple of JavaScript errors.
    1. The URL used to include the d3 code in the blog article:
    <script type="text/javascript" src="http://mbostock.github.com/d3/d3.js"></script>is returning HTML, not JavaScript. Changing it to that given on the d3js.org site:
    <script src="http://d3js.org/d3.v2.js"></script>includes the correct script.
    2. There was a syntax error in a script in the Run Code region. I think there was some kind of issue arising from copying from the blog article: it looked like line endings hadn't been respected as the code wasn't formatted properly. Pasting it from the blog into Coda's editor and then into the APEX Region Source text area fixed the format, and it then ran first time.
    Thanks for the heads-up. I'll also be looking further into d3.

  • HT1688 I am trying to find answers about how to use the earphones that came with my new iPhone 4s. Does this work similarly as a Bluetooth or do I need to still buy one. The printing in the manual is SOOO small, it is too hard to read!

    Does anyone know how to use the earphones( plugs) that come with iPhones?
    Mine is still fairly new and I am just learning how to use certain things.

    They're pretty straightforward. You plug them into the headset jack (the hole on the top left of your phone). You put the buds in your ears. All sounds, except for the phone ringing will now come through the earbuds.

  • How to use the user and role API's and where to use it

    Hi All,
    I have configured SSO for my UCM11g. Now my application authenticates through the Oracle SSO login page. Currently it is working with SQL authenticator.
    Now, i have to use LDAP authenticator. when i will configure the LDAP authenticator, i have to use the user and role API's to fetch the user profile information from LDAP. i have got the API's which will be used to fetch the respected information, but i am not getting as where i will write those java programs and how this API will be used in my application. what settings i need to do on it so that application uses the API's. ?
    Please can anyone help me on this.
    thanks,
    Saurabh

    Hi, Mithu,
    Thanks a lot for your help in advance.
    I have carefully read the document: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6b66d7ea-0c01-0010-14af-b3ee523210b5.
    Now, I think I have to set the processor of every actions in every process if I use the GP for processing the workflow.
    I am better to hope that I can set the processor to the role for every actions in every process in the runtime through get the organizational structure in the WDA(webdynpro for java or webdynpro for java). Thus, the customer don't set the processor to the role for every action in every process when runing in the GP.   I don't know how to do this. 
    Whether the function is not supported in the GP? If so, I have to config two organizational structure: in the R/3 and in the Portal. I don't think our customer don't receipt this solution.
    Do you give me some hints? Thanks a lot.  My email: [email protected]
    Thanks again.
    Thanks & Regards,
    Tao

  • How to use the rescue and recovery, and the product recovery discs ?

    Hi everyone,
    I've just recently became a new owner of a T61, and really enjoying it. I haven't had a chance yet to test-drive the lenovo phone support, as I have not yet screwed anything up that bad that required their help. I did try a clean factory reinstall from the service partition and it worked great. I would like to find out, how does one use the rescue and recovery startup disc, and the product recovery discs that I created myself? From my previous experience with Dell and HP, I only had to insert the first one and restart the computer, and the rest followed. But with ThinkPads, if I ever wanted to bring it to a clean factory state using those discs, do I use rescue and recovery first, followed by the product recovery? I'm curious, what is the difference between the two? 
    T61 (7658CTO), T9300, 3GB, 250GB, XP Pro
    Solved!
    Go to Solution.

    blake_ibm wrote:
    Hi! I'm blake
    There is no diff between the two... One is on  the Hard Drive and the other on CD/DVD.
    Having the HDD version (pre-installed) is a good for trouble shooting.  It uses a whole diff O/S on a whole diff partition (not C.
    So if you are having problems and boot to RnR (via F11), and those problems go away. you know your issue is software related. If you still have the same problems probly Hardware related...  IT IS AN EFFECTIVE WAY TO TAKE WINDOWS OUT OF THE PROBLEM.
    Other then that. You can re-image another HDD from disks, you can't do that with the F11 version.
    dose all that make sense?
    Hi blake_ibm,
    Thanks. All this makes perfect sense to me, but that's not what I'm asking for. My question is this: if I wanted to bring my notebook to its factory shipped condition using my recovery cd's, how do I do that? Do I insert cd1 first and then restart the notebook, or do I just insert it without restarting it, or perhaps I should use first the rescue and recovery?
    You said that there is no difference between the two, but what two are you talking about man? I am not comparing cd recovery to partition recovery. I am talking about rescue and recovery cd, with system recovery cd's. These are the two things that I'm talking about.
    I'm really grateful for all replies, but please people, read the question first !!!
    I would really appreciate if someone could explain the steps involved in performing a clean factory recovery, using the cd's, and not the recovery partition. I just want to know for the future, in case one day I have to do it. That is all I'm asking.
    T61 (7658CTO), T9300, 3GB, 250GB, XP Pro

  • How to Control the Valves and Pump with Labview?

    I have started a new project where I have to control the valves operation through Labview 2009,using PXI 1031, NI 5105(Digitizer) and NI 6251(M-series DAQ).
    The valves I need to control using the labview are:
    a) Pressure Reducing Valve (open & close)
    b) Remote control Valve(On & Off) with in-built actuator
    c) Flow control valve(open, semi open, partially open, semi close, partially close, fully close), 1%, 2%, 3%..etc
    d)saftey valve (opening closing depending on increase in pressure from certian limit)
    I hav eto control
    a) Hydraulic pump operation with in built gear-box
    Please let me know, how should l develop the VI for all? How to get started?, any helpful links? If there is any example code?
    Its little urgent !

    If you are not familiar with LV, I would suggest you go through the tutorials. Then take the leap and figure out how to use Action Engines and State Machines (search any of the terms I used that don't understand, there are a zillion threads on them).
    Then...
    Sit down and write stand-alone testers for each of the widgets you are going to control monitor etc.
      These testers will give you an idea if they really work the way you think, their character, and will serve as a "Sanity Check" when you think you are going crazy  durring development.
    THen integrate the tester so they can all work at the same time. This will become a utility screen that will serve you well when maintaining the critter latter in its life.
    Only then...
    write out a complete set of state diagrams that describe what you plan to do (don't cheat! ) and walk through them in your head until you are cetain it will all work blah blah blah.
    This step is optional but highly recomened...
    Compose a detailed set of documemtns describing what you have in mind and post them here (include the images, they will get many mor readers) and let people  pick aprat your design.
    When you have a final design, use everything you learned along the way to be a kick-ass developer.
    Along the way post distinct well defined question on this site and as long as it looks like you are trying someone will probably reply and get you going again.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to use the Events which are in BOR?

    HI Experts
    In SAP Business Object Repository, under each object, we can see some events. What are these events, can we use them in our programs. For instance the business object type BUS2010-Purchase order; I can see some events for it, If I want to use these events in my custom program, can I use them?
    What is the use of it SAP R/3. If you feel my question is baseless also, please provide me the information about this once.
    Thanks in advance
    Praveen

    Hi,
    If you want to raise BOR event from your program you can use function module SWE_EVENT_CREATE.
    If you want to register for the event and handle it you can go to transaction SWEC and register your function module there.

  • How to use the MouseAdapter and mouseEntered

    I've made panel(Jpanel) with a Label(Jlabel) wich contains an Image).
    but i want the image changes in another Image when the mouse passesover the image, without click the mouse?
    how can i get this, if i can?
    some told use the MouseAdapter anf the mouseEntered, but how
    here is the program
    public class Panel1 extends JPanel
    JLabel ImageLabel,ImageLabel3;
    ImageIcon imatge1,imatge2,imatge;
    boolean asig;
    int Ymove,Xmove;
    public Panel1()
                   imatge1 = new ImageIcon("c:/Applet/imatges/lupa.gif");
         imatge2 = new ImageIcon("c:/Applet/imatges/not.gif");
              ImageLabel = new JLabel (imatge1);
              ImageLabel.setBackground(new Color(255,219,183));
    ImageLabel.setForeground(new Color(255,219,183));
    ImageLabel.setOpaque(true);
    add(ImageLabel);
    //Add a MouseAdapter to the Jlabel and change the image in the mouseEntered method of the adapter.

    Here a simple example:
    import java.awt.*;
    import java.awt.event.*;
    class MAdapter extends Frame
         private Button b1, b2, b3;
         public MAdapter()
              addWindowListener(new WindowAdapter()
                   public void windowClosing(WindowEvent e)
                        dispose();
                        System.exit(0);
              setLayout(new GridLayout(3, 1, 10, 10));
              b1 = new Button("Button 1");
              b2 = new Button("Button 2");
              b3 = new Button("Button 3");
              MouseListener mListener = new MMListener();
              b1.addMouseListener(mListener);
              b2.addMouseListener(mListener);
              b3.addMouseListener(mListener);
              add(b1); add(b2); add(b3);
         class MMListener extends MouseAdapter
              public void mouseEntered(MouseEvent e)
                   Object o = e.getSource();
                   if (o == b1)
                        b1.setBackground(Color.yellow);
                   else if (o == b2)
                        b2.setBackground(Color.yellow);
                   else
                        b3.setBackground(Color.yellow);
              public void mouseExited(MouseEvent e)
                   Object o = e.getSource();
                   if (o == b1)
                        b1.setBackground(Color.LIGHT_GRAY);
                   else if (o == b2)
                        b2.setBackground(Color.LIGHT_GRAY);
                   else
                        b3.setBackground(Color.LIGHT_GRAY);
         public static void main(String args[])
              MAdapter mainFrame = new MAdapter();
              mainFrame.setSize(400, 200);
              mainFrame.setTitle("MAdapter");
              mainFrame.setBackground(Color.LIGHT_GRAY);
              mainFrame.setVisible(true);

  • How to use the new MacBook 13'' with Built-in 7-hour battery

    Hi,
    I just bought the new MacBook, it is my first Mac, and having the Built-in 7-hour battery I don't know if I can plug it in most of the times without doing any damage to the battery.
    On other portable computers, I just take the battery out and than plug it in and use it, but in this one that can not be done.
    So, what to do? Try to always drain and recharge fully, or it is no problem to plug it in when the battery is fully charged?
    I read that you should let it sleep(when it goes to sleep because it doesn't have battery)for 5 hours before charging it so it really drains. Is that really necessary?
    Also after it goes to sleep and I plug it in to charge, should I let it charge in Sleep Mode, or should I Shut it down and let it charge?
    What has been your experience with battery life? The first time I used it, it lasted for 4hours, is this normal and it will get better with 3 or 4 fully charges/draines?
    Thank you very much for your help.
    Pantuf

    Hey guys, I understand your concern that you're not getting 7 hours out of your battery but let me put a couple things into perspective and also offer you some info from Apple's website that may or may not explain why you aren't getting the full 7 hrs.
    First mgb545, 5.5 hours is killer for laptop battery, but nonetheless you paid for it for the 7 hour battery so I don't fault you in any way for wanting what they said you would get.
    Second, the MacBook is Apple's "sub $1000" notebook. At first mention of that you think, "alright, it's under a thousand bucks!". It is, it's just $999...
    My point is that it's an advertising game. The MacBook can get +up to+ 7 hours on a single charge but not everybody is doing the same things or has the same configuration as when Apple was testing their machines. You might have a Time Machine HDD backing up (which I don't recommend nor do I think you guys do since you didn't mention it) or some other USB peripheral that takes power which would lower the battery's life. However, I think there is
    This is straight an easier explanation... This next blurb is the "fine print" from Apple's website right on their MacBook page about how they got 7 hrs.
    +"Testing conducted by Apple in October 2009 using preproduction 2.26GHz Intel Core 2 Duo-based MacBook units. Battery life depends on configuration and use. See www.apple.com/batteries for more information. The wireless productivity test measures battery life by wirelessly browsing various websites and editing text in a word processing document with display brightness set to 50%."+
    That all being said, I think or at least hope you'll find your answer there. For starters, it says "various websites". Who knows if those were basic HTML or Flash heavy sites or a combination of both? The other stipulation of this is brightness. Do you guys have your brightness at 50% or is it higher?
    Try this, I know the weekend just passed, but if you find that you have 7 hours where you don't need your laptop, leave it on, make sure it doesn't go to sleep or screen saver, play with it every so often, leave wi-fi on, make sure your brightness is at 50% and then see how long it lasts.
    One last thing, when you say you're getting 5.5 hrs out of your battery, how low are you letting it go to? I'm assuming when Apple says "a single charge" they mean it. So if you're getting 5.5hrs when it goes down to 8 or 10% you also need to factor in the extra time you might gain from that.
    Hope this help, let me know how your computers are set up, I'm curious to know if this will resolve or at least account for your lack of 7 hrs because me just recently got the 13" MBP and it doesn't get 7hrs either.
    -David

  • N8 Photo Editing - how to use the cut and paste?

    Hello,
    I am trying to edit some photos - there is a an option to use an ellipse or magic wand.  I thought that was to cut and paste from the photos.
    All I can do is select and area - but how do I cut it. 
    I tried save, but it saves the whole image...
    Or am I just doing this wrong...
    Thanks,
    VeePee
    Nokia 3395
    Nokia 6600
    Nokia N95 8GB
    Nokia N8 (Anna)
    Nokia Lumia 930

    I was hoping to use the ellipse or magic want to cut and paste items in a certain shape to paste on other photos.
    I could do this on my N95-4.
    So there is no way to photo edit with cut and paste?
    Any idea what the ellipse and magic wand function do, and how do they work?
    Thanks,
    VeePee
    Nokia 3395
    Nokia 6600
    Nokia N95 8GB
    Nokia N8 (Anna)
    Nokia Lumia 930

  • How to use the "GEN_KEY" and "FROM_KEY" of RFC_GET_TABLE_ENTRIES

    Hi there,
    I am using JCO java connector in my own client application to talk to SAP. I need to use RFC_GET_TABLE_ENTRIES to read table entries.
    Just wondering if anyone knows how to use GEN_KEY and FROM_KEY of this function to narrow the table read as it currently returns all the entries in the table. Could someone provide the exact syntax of the data that I need to pass to these two parameters please?
    Your help is much appreciated!

    Thanks for your reply.
    I am using this table "USRSYSACTT". It is keyed on "MANDT", "SUBSYSTEM", "LANGU" and "AGR_NAME". When I want to only get the entry where the SUBSYSTEM = "SUB123", LANGU="E" and AGR_NAME="Role Name", I passed GEN_KEY="SUB123    ERole Name                     ". It did not work for me. It seems that only the "SUBSYSTEM" field has some effect. It returns all the entries with the correct subsystem. But the LANGU and AGR_NAME do not seem to have any effect.
    Any idea what I have done wrong.
    Thanks again

Maybe you are looking for

  • Is there a way to automatically have a web page begin to scroll down?

    Is there a way -- sort of an "autoplay" sort of way to have a web page begin to slowly scroll down to the bottom like a teleprompter automatically? I know this isn't technically iWeb but the site is created in iWeb and from that basis I'm sure I"ll h

  • JTable's background color

    How do I set the background color of a jtable after giving it a jscrollpane? I can only seem to be able to set the color before and not after.... V

  • Time Zone diferent

    Dear Team I have the time zone UTC -4 in the operative system (HP-UX)  and SAP system (STZAC transaction) in windows GMT -4 and the user (SU01 transaction), pero in the status os the system, shows the following: System Time = 10:04:37 Time Zone ( UTC

  • Wifi interface hanging on startup after enabling GDM service

    I've got a fresh install.  I wanted to boot directly to a gnome login screen so I enabled GDM using "netctl enable gdm".  After I did that, I can't boot to a prompt. instead, it hangs on "brcsmac bcma0:0: brcsmac: brcms_ops_bss_info_changed: associat

  • Why users with E1 license can use Azure Right Management on Office 365?

    Hello All, We have bought 30 E3 Licenses on my office 365 tenant?. However, E1 users can send mail with Azure Right Management policies on Outook? Why does it happens? Regards Jose Osorio