How to Reward the Points

Dear all,
i am new in this forum. can any one tell me how to reward the points?
atul

Atul,
<b>How to give points:</b>
1. Mark your thread as a question while creating it.
2. In the answers you get, you can assign the points by clicking on the stars to the left.
<b>You also get a point yourself for rewarding (one per thread).</b>
Regards,
Prasobh

Similar Messages

  • How to give the points??

    hi all
    pls let me tell how to give the point to our friends??

    please check the rules engagement found in the begining of the questions page. Out of that the 4 th step is the following.
    Step 4: Thank Others by Giving Points
    SDN/BPX has a Contributor Recognition Program. Which in short text means that for each question you have 10 points, which can be given to the person that answers your question. 6 & 2 points should also be given for helpful answers. For every question you later award points for, you in turn receive 1 point for.
    you would find three radio buttons on the left hand side of your query with marked with 3 colors. Choose the suitable one based on the merit of the answer.
    regards
    sadhu kishore

  • Overlapping polygon and how to determine the points

    I have a larger footprint polygon/table called A and a sub-polygon/table called B.
    I need to identify which is polygon A and which is polygon B because they overlap with each other.
    And I need to identify all the point that falls within A and B.
    which means A = A and B = A+B and the other points that do notfall within A and B will be null.
    How do I start this assignment?
    I was thinking
    alter table A
    add  (ID varchar( 50 BYTE)) ;
    update A
    set ID = 'larger';
    --TO do a point in Polygon
    PROCEDURE point_polyA
    IS
         proc_name varchar2(50);
    BEGIN
         proc_name := 'point_polyA';
         add_log(proc_name,'Start processingpolyA');
         COMMIT;
         FOR x IN (SELECT id, geoloc
                       FROM A)
         LOOP     
              FOR y IN (SELECT a.*
                            FROM point
                           WHERE sdo_filter (A.geoloc, x.geoloc) = 'TRUE')
              LOOP               
                   IF sdo_geom.relate(y.geoloc, 'ANYINTERACT', x.geoloc, 5) = 'TRUE' THEN
                        INSERT INTO point_polyA ( id)
                             VALUES ( x.id);
                   END IF;          
              END LOOP;
              COMMIT;
         END LOOP;
         add_log(proc_name,'Finish!');
         COMMIT;
         EXCEPTION
                 WHEN OTHERS THEN
                    add_log(proc_name, substr(SQLCODE||' '||SQLERRM, 1, 199));
         COMMIT;Do the same for B then
    select ID
    from A,B
    where sdo_relate(A.geoloc,B.geoloc,'mask = contains') = 'TRUE';Message was edited by:
    CrackerJack

    Hi,
    this
    rownum<2
    making sure that only the one clicked polygon is rendered/displayed
    (pls see the [image of the screen |http://bp0.blogger.com/_8PXbvmaOB6M/SEe0rNCz4nI/AAAAAAAAAWo/lOHcLjbIz-U/s1600-h/verschneiden_snap3.png] )
    i.e. you click on the polygon of the area (county) and get the FOI as per Parameter 1 (which are the records/FOI contained in the first table "DEKUNDEN" = customers)
    in ur above code you will need to say:
    (b.geoloc, :1)
    recommend to firstly try to achieve a result with the delivered MVDEMO data.
    Then the SQL of the theme will look as follows:
    select a.location, a.name,
    a.city, a.sales from customers a where sdo_relate(a.location, (select
    geom from counties b where sdo_contains(b.geom, :1)='TRUE' and
    rownum&lt;2), 'mask=ANYINTERACT')='TRUE'
    re) attributes for both points and polygon
    --> for the points (customer table/theme) usually you get an Infowindow automatically for the theme "customers" for the "Info columns" you have defined in the ADVANCED Tab of the theme in the Mapbuilder.
    --> for the polygon you'll have to assign an info window on "mouse_right_cklick" as the "mouse-click" (left) has already been used for selelcting the polygon.
    and lastly I am not dealing with a webservice - just 2 tables: "customers" (with the POI - points) and "counties" (the polygon - area) from the MVDEMO example data.
    Hope that helped and I did not make more complicated - sorry - but it is quite complex (;-).
    Bernhard
    Edited by: BernhardFW on Aug 25, 2008 1:30 PM

  • How come sometimes the 'pointer' disappears while i'm moving it on my browser and i have to scroll through stuff to see see it again... software problem?

    The pointer icon does not show when i move my touchpad though it still hovers over tabs and clicks it but you can't see the pointer so you move randomlly, thus i have to wait several minutes or swipe around before I can see it again. How do I fix it?

    There is a native Netflix app on Apple TV. If you are attempting to use a VPN via MBP then that is not supported.

  • How to change the point size in a plot.

    I want to set the point size in an XY plot to be proportional to the amplitude. So, when the amplitude is small, the point on the plot should be small and when the amplitude is large, the point on the plot should be large

    > I want to set the point size in an XY plot to be proportional to the
    > amplitude. So, when the amplitude is small, the point on the plot
    > should be small and when the amplitude is large, the point on the plot
    > should be large
    The other post points out that the point size applies to all points in a
    plot, and it has only a few possible sizes.
    The better solution is probably to look at the picture example for XY
    graphs. You can then open up the diagram and look at the source code
    for it. You will find a loop that draws for each point. You might also
    want to look at the scatter plot example.
    Greg McKaskle

  • How to know the point where one menu popUp is showed ?

    hi,
    I need know the point where one popUp menu is showed, but I have problems to do it....
    I can install actionListener for method actionPerformed of class AbstractAction but the event I get does not able to say the point...
    In the documentation, I read it is possible install a listener for the mouse and select the popUpMenu with the condition
    "if (e.isPopupTrigger())"
    but it is not confortable to do it and in that case it is not easy too to manage the choice for the item selected...
    Some advice please ?
    I write down the code I use...
    thank you to have one answer..
    regards tonyMrsangelo
    import java.awt.AWTEvent;
    import java.awt.event.*;
    import javax.swing.*;
    enum OpzPopMenu
    {NuovoAppuntamento, CancellaAppuntamento, SpostaAppuntamento};
    public class MenuPopUpTestOne {
        public static void main(String[] args) {
            MenuFrameXmenuTestOne frame = new MenuFrameXmenuTestOne();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
    A frame with a sample menu bar.
    class MenuFrameXmenuTestOne extends JFrame {
        JPopupMenu popupMenu;
        public static final int DEFAULT_WIDTH = 300;
        public static final int DEFAULT_HEIGHT = 200;
        public MenuFrameXmenuTestOne() {  // costruttore
            setTitle("MenuTest");
            setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);
            popupMenu = new JPopupMenu();
            Action nuovo = new PopupMunuAction("nuovo");
            Action sposta = new PopupMunuAction("sposta");
            Action cancella = new PopupMunuAction("cancella");
            JPanel jp = new JPanel();
            add(jp);
            // item1
            JMenuItem item1 = new JMenuItem(OpzPopMenu.NuovoAppuntamento.toString());
            item1.addActionListener(nuovo);
            popupMenu.add(item1);
            // item2
            JMenuItem item2 = new JMenuItem(OpzPopMenu.SpostaAppuntamento.toString());
            item2.addActionListener(sposta);
            popupMenu.add(item2);
            //item3
            JMenuItem item3 = new JMenuItem(OpzPopMenu.CancellaAppuntamento.toString());
            item3.addActionListener(cancella);
            popupMenu.add(item3);
            jp.setComponentPopupMenu(popupMenu);
            enableEvents(AWTEvent.MOUSE_EVENT_MASK);
        // aggiungere il popupMenu FINE   -----------------
        } // costruttore
    * Serve per gestire il menu popUp
    class PopupMunuAction extends AbstractAction {
    //    String itemOne = "nuovo";
    //    String itemTwo = "cancella";
    //    String itemTree = "sposta";
        public PopupMunuAction(String nome) {
            super(nome);
        public void actionPerformed(ActionEvent e) {
            String command = e.getActionCommand();
            if (command.compareTo(OpzPopMenu.NuovoAppuntamento.toString()) == 0) {
                JOptionPane.showMessageDialog(null, "NUOVO  one");
            if (command.compareTo(OpzPopMenu.SpostaAppuntamento.toString()) == 0) {
                JOptionPane.showMessageDialog(null, "SPOSTA  one");
            if (command.compareTo(OpzPopMenu.CancellaAppuntamento.toString()) == 0) {
                JOptionPane.showMessageDialog(null, "CANCELLA  one");
    } // inner class PopupAction

    tonyMrsangelo wrote:
    I need know the point where one popUp menu is showed, but I have problems to do it....Do you mean where the JPanel was clicked, or where the pop up appears on the screen.
    If you mean where the panel was clicked, then it's as simple as adding this to your program:
            jp.addMouseListener(new MouseAdapter()
                @Override
                public void mousePressed(MouseEvent e)
                    if (e.getButton() == MouseEvent.BUTTON3) // if right clicked
                        // do whatever in here with the e.getX() and e.getY() results
                        System.out.println("[" + e.getX() + ", " + e.getY() + "]");                   
            });

  • How to make the pointer work when clicking?

    Hi,
    I have purchased a new Macbook Pro and am at set up stage yet. I can't go further because the pointer is not working when I am clicking. I can't click on "Start using Mac OS X Lion." I have become so frustrated now! Please let me know if I can fix it or I have to return it to apple centre for fixing.
    Cheers,
    Mehrshaad

    Press the 'tab' key on your keyboard a couple of times. You should see the blue highlight/focus move between options. When its on the option you want, hit the spacebar.
    There may be something wrong with your trackpad. Try pressing down quite hard in the bottom left corner. It it takes an unreasonable amount of force, take it back to the shop to have it cleaned or replaced.
    I had exactly this problem from new (in 2009) and never bothered to get it fixed because I mostly use 'tap to click'
     > System Preferences > Trackpad | One Finger - tap to click
    but it is an PITA in installation and recovery mode where that gesture is off by default.

  • How to uplaod the Point of sales

    Dear all,
    Retail scenario is like, every day lot of transaction data user want to send data from Point of sales(POS) back office to staging server, these data i want to uplaod into BW,
    how do i get these data into my system.
    A waiting ur kind reply
    Regards,
    Rams.

    Hi Rams,
    What is the staging system ?
    If R3, oracle database : Create a connexion between this system and BW. RSA1 source system
    If ftp server: Create a link between bw and ftp server, transaction file
    Use the datasource generated, to build upload data process from staging system to bw.
    If you have details data, and you just want to store these data in bw, and therefore use the datawarehouse functionnality of the tool. Upload the information in an ODS.
    In a second you could aggregate these data into a cube for report requirement.
    Hope these big line help you to start.

  • Bis repetita... How to center the pointer on Tiger's startup...?

    Hi all!
    This is becoming a gipsy post, since it's the second time around I've had to relocate it... (Smile)
    As Alan advised me to ("Hi Didier Calzergues; I have no ideas of how to solve your problem but I am going to suggest you repost here. Where I am sending you is the Automator section of Tiger since that it the operating system you are using. Allan"), I'm relocating my original subject here. Goes like this:
    Following someone's advice (S.U. wrote: "I have no idea myself, but if you don't get an answer here, you might try your question in the Leopard forum which is where there might be more software experts. Good luck!"), I decided to relocate my previous post on "How to use your MacBook Pro", which goes as follows:
    Hi guys (and ladies)!
    New on this forum, I confess I didn't have much time to prowl it in search for an answer to the question in the tittle of this post. I apologize for this, but the question itself is pretty straightforward: I'd like my TrackPad pointer to appear in the center of the screen on startup, the way it does on... err, um, you know, the OS from Redmond... You know?
    I find it a hassle to have to dislodge it from its upper left corner every time I boot up my MBP, especially considering it takes several attempts to move it, with the Apple menu usually appearing when all I need is to click on a Dock icon...
    I read somewhere that an AppleScript could be devised that would remedy to my problem, but I'm not fluent in AppleScript, so if you guys suggest something along this route, please make it understandable for the newbie that I am!
    Thanks in advance...
    PS: I'm on Tiger, but I gather an AppleScript's an AppleScript, right...?

    An AppleScript is usually an AppleScript, but the AppleScript forum is actually here. Automator is a different animal, with both TIger and Leopard versions (or mutations, depending on your point of view).
    Anyway, you can do what you want with some scripting. First, there is the XTools scripting addition, which will give AppleScript the ability to move the mouse. Once the scripting addition is copied to either the /Library/ScriptingAdditions or ~/Library/ScriptingAdditions folders, you can use it's commands. Next, you will need to place a script application into your login items (System Preferences > Accounts > Login Items) that will move the mouse when you log in:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #FFEE80;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    do shell script "/usr/sbin/system_profiler SPDisplaysDataType | grep 'Resolution'" -- get info
    tell the result to set {DisplayWidth, DisplayHeight} to {word 2, word 4} -- get resolution
    move mouse {DisplayWidth div 2, DisplayHeight div 2} -- center mouse
    </pre>

  • How to set the point interval in Tektronix TDS220?

    I am programming a program by LabVIEW which read and control a Tektronix TDS 220 through serial port. When I need to specify the data points into steps of 6.25E-5(s), I used the command "WFMPre:XINcr 6.25E-5" as the programmer manual points out. But the sampling interval still keeping as it was, not changed. I want to know which command can specify the interval in time domain? Thanks!

    Please check the other thread that you posted to for a response.
    Thanks.
    A.S.
    Anu Saha
    Academic Product Marketing Engineer
    National Instruments

  • How to find the points that define an edge?

    I'm looking at a very large geometry that's generating an error from VALIDATE_GEOMETRY_WITH_CONTEXT:
    ORA-13349: polygon boundary crosses itself 13349 [Element <5>] [Ring <1>][Edge <7566>][Edge <7591>]
    How can I find the X & Y coordinates of those two edges?
    It's a two-dimensional polygon, with thirty two inner rings, and extracting ring 5 doesn't show any obvious errors: It doesn't have seven thousand edges to it either though - is that supposed to be the edge number counting from the start of the outer ring, or just the start of that element?
    Cheers
    Simon Anderson
    Scisys

    Hi,
    What I'm looking for is a way to report the error back to the end-user. The information is there in the form of:
    [Element <5>] [Ring <1>][Edge <7566>][Edge <7591>]
    But the exact position of the error is often hard to find in a CAD system.
    I want to return edge 7566 and edge 7591 as geometry objects.
    So the question is:
    Given a geometry object and a list of element,ring,edge elements. How to create geometry objects for these edges?
    Rene

  • How can I plott data from a text file in the same way as a media player using the pointer slide to go back and fort in my file?

    I would like to plott data from a text file in the same way as a media player does from a video file. I’m not sure how to create the pointer slide function. The vi could look something like the attached jpg.
    Please, can some one help me?
    Martin
    Attachments:
    Plotting from a text file like a media player example.jpg ‏61 KB

    HI Martin,
    i am not realy sure what you want!?!?
    i think you want to display only a part of the values you read from XYZ
    so what you can do:
    write all the values in an array.
    the size of the array is the max. value of the slide bar
    now you can select a part of the array (e.g. values from 100 to 200) and display this with a graph
    the other option is to use the history function of the graphes
    regards
    timo

  • How to delete the OLD PSA table altogether?

    Hi,
       I am in BI for NW04S and CRM4.0 sp6.0.
       I created a custom data source in the source system and replicated and used transfer rule/Update rule to load an Data store object in the BI system.
       However today , I needed to change some fields of the same data source, and replicated and regenerated the transfer rule, Update rule etc.
       Checked the RSA3 in the source system and the data source is working fine.
        However When I look into the PSA after an attempted data load, I still fine the old PSA table (/BIC/B0000893000) getting populated and not the new one ( /BIC/B0000893001).
      when I look into the show data flow on the ODS i can see the PSA table name, and when I serached in SE11 for that table name I have found both these new and old table.
      Although the data source is replicated in to BW system properly for some reason the OLD PSA table is still being used.
      How can I correct the situation?
      Thanks, will reward the points is the problem is solved.
    Arun

    Dear Arun,
    Please check in the table (SE16) RSTSODS.
    This table stores the PSA information for all the datasouces.
    Enter the datasource in question followed by * in the field 'ODSNAME' (for eg. 2LIS_02_SCL*).
    This will show you all PSA tables for that Datasource.
    The fields DATETO and DATEFROM will tell you, which PSA table is currently in use.
    By the way, a new PSA table should be generated only if there is a change in Transfer Structure.
    Hope it helps.
    thanks,
    amol

  • How to change the color of the News content?

    Hi Friends,
    I have requirement that we have to change the color of the date of the news from blue #9999FF to Black #000000. Can any body tells how to do this?
    I have tried it by changing the theme but the color is always be same. Please help me to sort out from this problem.
    I will surely rewards the points
    Thanks and regards,
    Kuldeep Verma

    Dear Kuldeep,
    Go to Content Administration -> click on news on left plane.
    Edit the news you want to edit.
    now select the text and change the color of foreground.
    Do not select all and apply changes as your change will not take place that way.
    So do it by selecting line by line.
    Also if that doesnt work then Copy all the text of news in notepad.
    Delete all text
    Click on fore ground and select color as black
    type some random text see if color is black or not.
    then copy paste the text from notepad to this news.
    Save it and refresh your portal.
    Hope this will work
    Regards,
    Purav

  • How to get the edit channel link from within the channel?

    Following problem:
    I want to include a link to edit the settings of a channel in the channel contents. The link should be the same as the edit button on the frame of the channel container. Searching through the provider jsps I found that the edit link is created in single.jsp. The code I need seems to boil down to
    <dt:obtainContainer container="$JSPProvider">
      <dtsingle:singleContainerProvider>
      <dtpc:getStringProperty key="editContainerName" id="editContainerName" scope="request"/>
      <dt:getName id="SingleContainer" scope="request"/>
      <jx:declare id="editContainerName" type="java.lang.String"/>
      <jx:declare id="SingleContainer" type="java.lang.String"/>
        <dtsingle:obtainSelectedChannel>
    <A HREF="<dtpc:getDesktopURL/>?action=edit
    &provider=<%=editContainerName%>
    &targetprovider=<dt:getName/>
    &containerName=<%=SingleContainer%>"
    TARGET="_self"> EDIT! </A>
        </dtsingle:obtainSelectedChannel>
      </dtsingle:singleContainerProvider>
    </dt:obtainContainer>However I am unable to get that working in the channel, as I always receive a ProviderException on the line with
    <dt:obtainContainer container="$JSPProvider">
    What am I doing wrong, or is does the obtainContainer simply not work from within a channel?
    If anyone can help me out to get the edit link it would be greatly appreciated. Any hints and/or sample code would help alot.
    thanks!
    Message was edited by:
    obstler42

    Hi Detlev ,
    Thank you very very much . We could figure out how to get the URL and Driver information from there .I have rewarded the points also.
    Thanks
    Ravi
    Message was edited by: Ravi Krishnan

Maybe you are looking for

  • Creating a test in PDF: Is it possible to create Right and Wrong answer fields in PDF?

    Very new to this.  I may be way off, but Im trying to create a test for some students to do in class.  Is it possible to create fields that turn green when right and red when wrong?  Also can you have a field that accumulates the right answers to giv

  • Issue in OOB display Name in OIM 11.1.1.5

    HI, We Had clustered enviornment in OIM (11.1.1.5). We had created post process event handlers for generating 7-8 fields on user form.Now in clustered enviornment is there need to register the plugins and importing the event handlers at both nodes or

  • Is there a problem with Virtual PC and OS 10.4.4?

    After installing OS 10.4.4 (which gave me my first EVER Mac system crash!) I found that when running Virtual PC (6.1) I had to re-install Windows XP. I didn't need the CD; everything was still on the hard drive, but I had to re-register it. Has this

  • Can't find library (xml, itl) files

    Hi, I can't find the library database files (*.xml, *.itl) that are supposed to be in the ..My Music/itunes folder. I use Explorer to look at the itunes folder (which does exist in the My Music folder -- all my music files are in the My Music folder)

  • Artwork missing... Leopard? or new iMac problem?

    Hi, I recently moved all of my music to my new iMac. Then I discovered that not all of my artwork moved over. Many of the albums that had artwork no longer have it. What's even more strange is that my iPod and iPhone have some of the missing artwork,