Need help in HANA Coding

Hi All,
We have a requirement to calculate the Position Start/End Dates of an Employee.
Logic: look for the earliest date when the position started and pick the Start date as the position start date,
          look for the latest date when the position ended and pick the End date as the position End date
Below is the Sample data:
Table1:
Employee
Version
Date From
Date To
HRPOSITION
Postion Start Date
Position End Date
46581
A
1/1/1900
10/20/1985
46581
A
10/21/1985
5/31/2008
99999999
10/21/1985
5/31/2008
46581
A
6/1/2008
6/18/2008
50025336
6/1/2008
5/13/2011
46581
A
6/19/2008
2/15/2011
50025336
6/1/2008
5/13/2011
46581
A
2/16/2011
5/13/2011
50025336
6/1/2008
5/13/2011
46581
A
5/14/2011
4/15/2012
50025335
5/14/2011
4/15/2013
46581
A
4/16/2012
4/15/2013
50025335
5/14/2011
4/15/2013
46581
A
4/16/2013
12/31/9999
50025336
4/16/2013
12/31/9999
Below is the code snippet that I have used:
select EMPLOYEE,OBJVERS,DATEFROM,DATETO,HRPOSITION,JOB,ACTIONTYPE,ACTIONREAS,ORGUNIT,
       FIRST_VALUE(DATEFROM) over (partition by EMPLOYEE order by DATEFROM) as position_start_date,
       FIRST_VALUE(DATETO) over (partition by EMPLOYEE order by DATETO DESC) as position_end_date
FROM "TEST"
By using the above code snippet, for HRPOISTION '50025336' am getting the start and end dates as 6/1/2008 and 12/31/9999 for all the rows as shown below:
Table 2:
Employee
Version
Date From
Date To
HRPOSITION
Postion Start Date
Position End Date
46581
A
1/1/1900
10/20/1985
46581
A
10/21/1985
5/31/2008
99999999
10/21/1985
5/31/2008
46581
A
6/1/2008
6/18/2008
50025336
6/1/2008
12/31/9999
46581
A
6/19/2008
2/15/2011
50025336
6/1/2008
12/31/9999
46581
A
2/16/2011
5/13/2011
50025336
6/1/2008
12/31/9999
46581
A
5/14/2011
4/15/2012
50025335
5/14/2011
4/15/2013
46581
A
4/16/2012
4/15/2013
50025335
5/14/2011
4/15/2013
46581
A
4/16/2013
12/31/9999
50025336
6/1/2008
12/31/9999
When for the given Emp the HRPOSITION is swithching from '50025336' to '50025335' and again back to '50025336', the start and end dates are not populating as per the sample data in Table 1.
Please provide inputs on this.
Thanks,
Sireesha J

Hi
I don't know the table PKIN (there isn't in my system), but it seems to be a standard table so it should be better create a BDC program to update it.
If you are sure you can directly update it (ask it to your functional guy) you can use a code like this:
DATA: T_UPDATE LIKE STANDARD TABLE OF PKIN WITH  HEADER LINE.
Get records to be updated
SELECT * FROM PKIN INTO TABLE T_UPDATE WHERE HRKFT = '8788'.
Update the field HRKFT
T_UPDATE_PKIN-HRKFT = '276K'.
MODIFY T_UPDATE TRANSPORTING HRKFT WHERE HRKFT = '8788'.
Write the record was updated:
LOOP AT T_UPDATE.
WRITE: / T_UPDATE-.....
ENDLOOP.
Update the table
UPDATE PKIN FROM TABLE T_UPDATE.
Max

Similar Messages

  • Need help in writing coding in HTML?

    HI All
    I have requirement like this.
    1st RFC i pass Plant and i will get trasportation point.
    in display template i need to display trasportation point in dropdown box and user will select the trasportation point and iam passing this trasportation  to aother RFC and gettting shipment cost.
    i need help in how to write coding in .IRPT
    i created the transactions for both the RFC and its working fine.First RFC iam getting trasportaion point ...i created Xecute query.
    I need how to display !st one in dropdown box and pass that data into 2nd RFC.
    Regards,
    Phani

    Phani,
    You have to use the iBrowser displaytemplate.
    Map the transportion point Xacute qquery in iBrowser displaytemplate.
    In code use : 
    document.APP1.getBrowserObject().getSelectedItem();
    Store the value of above code in a variable.
    And pass this variable in other appalet which displays the R/3 details as below:
    document.APP2.getQueryObject().setParam(1,var);
    document.APP2.refresh();
    -Suresh

  • Need help on logic/ coding

    Dear all,
    I need help on , How to compare two lists? I wrote the following code. but I'm not success. please help.
    declare
    rec_cnt number;                             --This for getting first record set count
    pd_cnt  number;                              -- This for getting second  record set count
    flg_tst char(1):='F';                      -- this flag  is set to false.
    begin             
          go_block('block1');                     -- In this block displays my first  list         
          last_record;                                 -- cursor Point out the last record.
          rec_cnt := :system.cursor_record;        -- here getting total number of records in the first list
          go_block('block2');                        -- In this block displays my second  list        
          last_record;                                 -- cursor Point out the last record.
          pd_cnt := :system.cursor_record;        -- here getting total number of records in the  second list
          begin   
               /* go_block('block1');
               first_record; */
               for i in 1..rec_cnt
               loop                                         /* Here my comparison  of records going on. for every record in  first list there  should be
                                                           corresponding record in second record.
                                         otherwise should throw message.
                                         suppose if one record is not matched then the control should exit from the two loops and throws the message */
                      go_block('block1');                              
                      go_record(i);
                      go_block('block2');
                      first_record;
                         for j in 1..pd_cnt
                         loop
                               if :block1.TEST_ID =:block2.TEST_CODE then     /*If two records match set the flag as True and exit from second loop. there is no need to further check. */
                                        flg_tst := 'T';                /* And loops should take next record from second list, again loops goes for second list record matching */
                                        exit;
                                  else
                                       if j != pd_cnt then       /*not match then compare with next record of the second record */                            
                                           next_record;
                                       end if;          
                                  end if;    
                         end loop;   
                      if (flg_tst := 'F' and j=pd_cnt) then     /*suppose one record in first list is not equal with all records in second list,exit from second loop and shows message */
                   exit;
                      elsif (flg_tst := 'F' and i != rec_cnt) then
                               next_record;
                      else
                           exit;
                      end if;   
                end loop;
               if flg_tst = 'F' then
                            message('For mu test no corresponding test code');                  
                      end if;
              /* Exception when others then
               message('HI:=  '||sqlerrm);
               message('HI:=  '||sqlerrm); */
          end ;
    end;
          My problem is :
    1. we should take one record from firstlist and compare with all records in second list.
    --> suppose match then,we should continue for next record for first list.
    -->not match then exit from two loops and shows error.
    2. we should compare all the records in first list with all records in second list.
    Thanks
    SB
    Edited by: SB on Dec 7, 2011 1:31 AM

    Hi all,
    Now I've changed my query as follows,
    PROCEDURE testing IS
    rec_cnt number:=0;
    pd_cnt  number:=0;
    flg_tst char(1);
    begin
          go_block('med_uw');
          last_record;
          rec_cnt := :system.cursor_record;
          go_block('panel_doctor');
          last_record;
          pd_cnt := :system.cursor_record;
          message('rec_cnt'||rec_cnt||'  '||'pd_cnt'||pd_cnt);
          message('rec_cnt'||rec_cnt||'  '||'pd_cnt'||pd_cnt);
           begin
               for j in 1..pd_cnt
               loop
                      flg_tst:='F';
                      go_block('panel_doctor');
                      go_record(j);
                      go_block('med_uw');
                      first_record;
                         for i in 1..rec_cnt
                         loop 
                                    if :block2.TEST_ID =: block1.TEST_CODE then
                                        flg_tst := 'T';
                                        exit;
                                  else
                                       next_record;
                                end if;          
                         end loop;   
                      if (flg_tst = 'F')then
                              exit;
                         else
                           next_record;
                      end if;   
               end loop;
            if flg_tst = 'F' then
                                message('For'||'  '||:block1.PD_DOC_CODE||' '|| 'doc code med test has not been added, please add the test or delete the doc code');                  
            end if;
          end ;
    end;
          but still the problem persist.
    Edited by: SB on Dec 7, 2011 5:22 AM

  • ABAP to XML conversion...need help for XSTL coding

    Hi,
    I am trying to convert ABAP internal table to XML format. I am using CALL TRANSFORMATION command. But i am not getting the exact conversion of my internal table data as i am lagging in perfection of XSLT coding that i have to maintain(in call transformation command).
    I am passing the data with internal table which has deep structuring( 2 other internal tables(table types) inside it).
    i am facing issue in writing the XSLT format coding(Tcode:XSLT_TOOL). I need some help on this.
    Thanks,
    Mahidhar.

    Hi,
    Can you please share the XSLT program that you have created and also your ABAP structure that is going to hold the data.
    Thanks,
    Aanand.

  • Need help asap Dreamwaver coding.

    Ok i am trying to replicate the following map.
    However stuck on one thing (got rusty) currently it is built with google api, the aim is to move it away in to plain old html....
    Ive sorted the easy part, when clicking on stay, eat it goes to the relevant screen loading up all the dots in this area, the hard part, as i mentioned ive become rather rusty with HTML is to have the dots when clicked on load up a small pop up box like shown below
    Can you help me with the code that would be required a) to bring the pop up (but in line with the picture more) b) that brings up a similar design, not a new window if can be helped but rather the cute little x box like above.
    the dimensions of the pop up box is 202 wide however length is to the information.
    The coding of the map and code is attached in a dropbox folder here i would use the stay picture and stay html.
    Thank you, any help would really be appreciated

    HTML alone cannot do this.  You need CSS Rollovers or JavaScript Tooltips.
    Pure CSS Disjointed Rollovers
    http://alt-web.com/DEMOS/CSS-Disjointed-Image-Rollover.shtml
    jQuery UI Basic Tooltips
    http://jqueryui.com/tooltip/
    30 Stylish jQuery Tooltip Plugins
    http://www.1stwebdesigner.com/css/stylish-jquery-tooltip-plugins-webdesign/
    Nancy O.

  • I need help with XML coding. Please reply

    I recently created a podcast. I submitted it to iTunes. All was successful but the download speed was Horrible. I had about 10 people test it -- after that the ISP I use shifted my Domain to a Streaming Server. The Tech then changed the specs to my iTunes <guid>. I updated the info on iTunes, but since then no one has been able to download it from iTunes. The RSS feed on the page ( website) works, but if I type it in to an RSS feed, I am even having problems getting it to recognize it.
    I feel the main problem is that the shifting of servers and changing the <guid> caused a major problem. Since my ISP and Tech rep is mainly Windows oriented, his expertise with Apple is very little. ( As is mine ).
    I will insert a snippet of the code and ask for Help... I really need to fix this, because I have secured another Domain, and wish to create a new podcast.
    (BTW if any one listens to any of them, I now have a mixing board and Mic.. so I am trying to better it.)
    Website: www.riverratdoc.com
    snippet of XML code
    <enclosure url="http://stream.riverratdoc.com/RiverratDoc/episode1a.mp3" length="9551933" type="audio/mpeg" />
    <guid isPermaLink="false">09072010EPS01</guid><!-- just make unique per episode -->
    <pubDate>Fri, 9 Jul 2010 12:40:01 GMT</pubDate>
    Thank you in advance
    River Rat Doc

    The problem doesn't lie with your feed, although it does contain an error - you have given a non-existent sub-category. You need to stick to the categories and sub-categories listed here:
    http://www.apple.com/itunes/podcasts/specs.html#categories
    Subscribing to your feed from the iTunes Store page work as such, but the episodes throw up an error message. The problem lies with your episode media files: you are trying to stream them. Pasting the URL into a browser produces a download (where it should play the file) of a small file which does not play and in fact is a text file containing (in the case of ep.2) this:
    [Reference]
    Ref1=http://stream.riverratdoc.com/RiverratDoc/episode2.mp3?MSWMExt=.asf
    Ref2=http://70.33.177.247:80/RiverratDoc/episode2.mp3?MSWMExt=.asf
    You must provide a direct link to the actual mp3 file. Streaming won't work. The test is that if you paste the URL of the media file (as given in the feed) into the address bar of a browser it should play the file.

  • NEED HELP IN SQL+ CODING USING POINTERS

    GOOD MORNING BOARD,
    I HAVE A CODING ISSUE DEALING WITH POINTERS AND BUILDING TABLES USING THEM CAN SOMEONE PLEASE HELP??
    I CAN SEND THE CODE TO U VIA ATTACHMENT
    THANK YOU IN ADVANCE
    A...

    GOOD MORNING BOARD,
    I HAVE A CODING ISSUE DEALING WITH POINTERS AND BUILDING TABLES USING THEM CAN SOMEONE PLEASE HELP??
    I CAN SEND THE CODE TO U VIA ATTACHMENT
    THANK YOU IN ADVANCE
    A...

  • Need help in ABAP coding in start routine

    Hi,
    I have a requriement like
    -To take the value of month which is an attribute of category(info Object) for which category value is 1. I need to apply the month obtained as the filter to another info object. I have opted to write this ABAP code in start routine. Can anyone guide me on this code.
    Thanks in advance.

    do you not have an abap-er at your disposal? i don't imagine this to be quick & dirty that can be written without access to your system! some analysis work may also be required before the actual coding can be done...so I wouldn't post the entire functional spec (business requirement) here hoping for a solution; that would be too weird.
    Regards.

  • Need help with XML Coding

    I'm trying to write an IF statement similar to <?if:QUANTITY='0'?> but would like to say 'is greater than' 0. I'm not very familiar with the coding in XML and what characters I'm able to use since I can't use <> in the coding. Can anyone help?
    Thanks,
    Susan

    Hello,
    If you want to represent '<' and '>' in xml you must entity encode them with &amp;lt; and &amp;gt; respectively.

  • Need help in doing coding

    how to attach a file? i need to do coding for my user interface subject. my file in pdf format.

    >
    how to attach a file? >Here? Don't.
    >
    ..i need to do coding for my user interface subject. my file in pdf format.>I don't understand. Perhaps you are:
    - Making software to do email, and asking how to attach a PDF to an email message.
    - Expecting to dump a PDF describing your project to this forum and get someone to complete it for you.
    Can you clarify?

  • I need help with button coding to go to the next scene

    Hi! I have been using flash cs5 for a few years now and I've never been great with coding since i usually just do swf animations. However I am in the process of writing a story/book and I wanted to make a little guide for all of the dragons species in the story.
    Example: I had it so there is a title screen and a start button, you click the start button and you are taken to the next scene; which is a picture of a mist dragon I drew and then audio plays; describing mist dragons. in the corner there is a "next" button and when you click it, it takes you to the next species and the audio plays just like with the mist dragon.
    my major problem is my code is muffed up( I know it is totally incomplete, but this code is what I am comfortable working with, anybody know whaat the full code is?). I typed in what I could remember from class... could anybody help me?
    here is the code i remembered:
    Stop();
    btn1.addEventListener(MouseEvent.CLICK…
    function btn1Listener(e:MouseEvent):void {
    gotoAndStop(1, "mist dragon");

    use:
    Stop();
    btn1.addEventListener(MouseEvent.CLICK,btn1Listener);
    function btn1Listener(e:MouseEvent):void {
    gotoAndStop(1, "mist dragon"); //<- you may want gotoAndPlay(1,"mist dragon")

  • Need help with java coding

    Hi i have a problem with some coding on my assingment can some expert help me please. i have been trying to work on it for days. Thanks :-
    public class AnnualHireRevenue
    private static final int vehicleno = 12;
    double[]numbers = new double[vehicleno];
    public AnnualHireRevenue()
    for(int i =0; i<vehicleno; i++)
    numbers[i] = new double();
    public void setRevenue()
    for(int i=0; i<vehicleno; i++)
    System.out.println("Please Enter Vehicle No"+(i+1));
    numbers[i] = EasyIn.getDouble();
    if (numbers <=12)
    System.out.println("Please Enter Vehicle Yearly Revenue");
    numbers[i] = EasyIn.getDouble();
    else
    System.out.println("InvalidNumberPleaseEnteragain");
    numbers[i] = EasyIn.getDouble();
    I am trying to create to arrays the first one works but this one don't the first on is a String array with int for loop.
    This one is a double array and having problems for some reason.
    I would be great full if some one can help me thanks
    my email is [email protected]

    public class AnnualHireRevenue
    private static final int vehicleno = 12;
    double[]numbers = new double[vehicleno];
    public AnnualHireRevenue()
    for(int i =0; i<vehicleno; i++)
    numbers[i] = new double();
    public void setRevenue()
    for(int i=0; i<vehicleno; i++)
    System.out.println("Please Enter Vehicle
    icle No"+(i+1));
    numbers[i] = EasyIn.getDouble();
    if (numbers <=12)
    System.out.println("Please Enter Vehicle Yearly
    arly Revenue");
    numbers[i] = EasyIn.getDouble();
    else
    System.out.println("InvalidNumberPleaseEnteragain");
    numbers[i] = EasyIn.getDouble();
    I am trying to create to arrays the first one works
    but this one don't the first on is a String array with
    int for loop.
    This one is a double array and having problems for
    some reason.
    I would be great full if some one can help me thanks
    my email is [email protected]
    Get rid of your constructor. That's the 1st problem.
    public AnnualHireRevenue()
    //for(int i =0; i<vehicleno; i++)
    //double is a primitive type, so 'new' won't work.
    //    numbers[i] = new double();

  • NEED HELP IN SQL CODING

    I AM HAVING SERIOUS PROBLEMS DROPPING TABLES IN MY SQL CODE... PLEASE HELP
    ...A

    here is a copy of the code... i can also send it as an attachment via email... thank you in advance...
    set pause on
    spool output-file
    echo on
    rem Asfa Taitt
    rem Project2
    drop table T_ENROLL;
    drop table T_SECTION;
    drop table T_STUDENT;
    drop table T_INSTRUCTOR;
    drop table T_COURSES;
    drop table T_SCHOOL;
    drop table T_MAJOR;
    create table T_SCHOOL (School char(4) not null,
    primary key (School));
    create table T_MAJOR (Major char(4) not null,
    School char(4),
    primary key (Major),
    foriegn key (School) references T_SCHOOL);
    create table T_STUDENT (Student_No integer not null,
    Student_Name Char(20),
    Major char(4),
    primary key (Student_No),
    foriegn key (Major) references T_MAJOR);
    create table T_INSTRUCTOR (Instructor_No integer not null,
    Instructor_Name Char(20),
    School char(4),
    primary key (Instructor_No),
    foriegn key (School) references T_SCHOOL);
    create table T_COURSES (Course Char(7) not null,
    MAX_Allowed Integer,
    Credit_Hours Integer,
    GOA Char(1),
    primary key (Course));
    create table T_SECTION (semester Char(7),
    School char(4),
    Course Char(7),
    Sec_No Char(4) not null,
    Sec_Loc char(5),
    Section_Time char(13),
    Instructor_No integer,
    primary key (Sec_No),
    foreign key (Instructor_No) references T_INSTRUCTOR,
    foreign key (Course) references T_COURSES,
    foreign key (School) references T_SCHOOL);
    create table T_ENROLL (
    Semester Char(7),
    Course Char(7),
    Sec_No Char(4),
    Student_No integer,
    GOS Char(1),
    Major char(4),
    foreign key (Student_No) references T_STUDENT,
    foreign key (Course) references T_COURSES,
    foreign key (Sec_No) references T_SECTION,
    foriegn key (Major) references T_MAJOR);
    insert into T_COURSES values ('IFSM410',30,3,'R');
    insert into T_COURSES VALUES ('CMIS300',30,3,'R');
    insert into T_INSTRUCTOR values (111223333,'BABISKIN ROBERT G');
    insert into T_INSTRUCTOR values (222997777,'CODD TED E');
    insert into T_SECTION values ('SPR01','BUS','IFSM410','4031','RM32','TUTH3:30-5:00',111223333);
    insert into T_SECTION values ('SPR01','ENG','CMIS300','4011','RM407','MWF 1:30-2:30',222997777);
    insert into T_STUDENT values (222445555,'HARRIS JOHN H');
    insert into T_STUDENT values (215557777,'LITTLE BOB K');
    insert into T_STUDENT values (517443333,'JONES JANE G');
    insert into T_ENROLL values ('SPR01','IFSM410','4031',222445555,'R','IFSM');
    insert into T_ENROLL values ('SPR01','CMIS300','4011',215557777,'R','CMIS');
    insert into T_ENROLL values ('SPR01','CMIS300','4011',222445555,'R','IFSM');
    insert into T_ENROLL values ('SPR01','CMIS300','4011',517443333,'R','CMIS');
    insert into T_ENROLL values ('SPR01','IFSM410','4031',517443333,'R','CMIS');
    DELETE from T_ENROLL
    WHERE T_ENROLL.Student_No = 222445555 and T_ENROLL.Course = 'IFSM410';
    commit;
    select * from T_INSTRUCTOR;
    select * from T_COURSES;
    spool ofF

  • Need help in ABAP coding

    Hi Gurus,
    here i hav some complication for displaying data in output.In output I have to show characteristics(ysd-characteristics,,,, ysd is a customized tablehaving fields vbeln, matnr, posnr, characteristics......) of material with respect to sales document number(vbap-vbeln).when I am executing the prog with below SELECT statement----
    select distinct
                        ysd~vbeln
                         ysdposnr  ysdmatnr
                ysd~characteristic
                        vbapposnr  vbapmatnr
                         vbap~arktx
                        vbap~kwmeng
                         into corresponding fields of table itab1
               from ysd_famd_chrctcs as ysd inner join vbap
              on ysdvbeln = vbapvbeln
              and ysdposnr = vbapposnr
               where vbap~vbeln = p_vbeln.
    After looping itab1 it is giving output like below.  
    -->>
    Sr |   MatNum | MatDesc | Charecteristics | Quantity
    no |                |               |                        |
    1   | 00000012 |   CCslab |   Moisture         |   50
    1   | 00000012 |   CCslab |   over size         |   50
    1   | 00000012 |   CCslab |   under size       |   50
    1   | 00000012 |   CCslab |   phos percnt     |   50
    1   | 00000012 |   CCslab |   chrome           |   50
    1   | 00000012 |   CCslab |   Ferrous           |   50
    but output should be like below
    -->>
    Sr |   MatNum | MatDesc | Charecteristics | Quantity
    no |                |               |                        |
    1   | 00000012 |   CCslab |   Moisture         |   50
                                         |   over size         |  
                                         |   under size       |  
                                         |   phos percnt     |  
                                         |   chrome           |  
                                         |   Ferrous           |  
    what should i write with select statement to get this.
    I tried using DELETE ADJACENT...... but it is deletin all characteristics from output.
    pls help...
    Regard
    Saif

    Hi,
    You can make use of AT NEW .... ENDAT statements.
    Declare another internal table ITAB2 & its corresponding work area.
    Refer the below code:
    Loop at ITAB1 INTO WA_ITAB1.
    CLEAR F_FLAG.
    AT NEW MATNR.
    WA_ITAB2-MATNR = WA_ITAB1-MATNR.
    WA_ITAB2-DESC   = WA_ITAB1-DESC.
    similarly do the same for other fields...
    f_flag = 1.
    ENDAT.
    IF f_flag NE '1'.
    WA_ITAB2-MATNR = SPACE.
    WA_ITAB2-DESC   = SPACE.
    WA_ITAB2-CHAR   = WA_ITAB1-CHAR.
    ENDIF.
    APPEND WA_ITAB2 TO ITAB2.
    CLEAR WA_ITAB2.
    ENDLOOP.
    Just try and see.
    reward points if useful.
    Thanks,
    Asha

  • Need help with ABAP coding using java

    Dear experts,
    I have used ABAP to code many reports/function modules.However as i know java quite well,i want to achieve the same using java.I have utilized JCO to retrieve information from RFC in this mission.
    However i realized that i had to code all things using ABAP and use java only as interface to connect to
    SAP fetch that module and display information on console.It was not that fun.
    I want that i should not Login to SAP but work only using java.
    I heard SAP Netweaver is a good choice.But i dont know much about it.Will i be able to develop reports only by java and how ?
    Plz suggest.

    hi,
    I hope that you already have the J2ME Toolkit and that your emulator works okay. In the toolkit you get several examples to show you how to program a MIDlet. One has to do with a HTTP client server connection. Also in the API documentation for the J2ME there is a Connector class that you used to set up this communication and in the description of this class it pretty thoroughly explains how to set up an HTTP protocol client.
    However, if you want to do some other kind of networking then you are pretty much out of luck, as the TCPIP socket protocol has not been fully implemented and is optional to the J2ME specifications, only the HTTP protocol is certain to be available. This means that mobile phone companies can add other networking functionality to their phone's java virtual machine if they feel like it. This is a bummer I know.
    I hope this helps.
    Cheers,
    Mark

Maybe you are looking for

  • SQL Report data Open link in URL

    Hi, Select 'Google' from dual My requirement is when i click on Google Lable //http://www.google.com url must populate how to proive this using sql in apex please suggest. Thanks Sudhir.

  • Can't Send or Receive Email from Exchange behind ASA 5510 with CSC SSM

    We are upgrading from a Pix 515e to a ASA 5510 with CSC SSM.  We cannot send outbound email or receive any email from the outside world. I have placed a call with Cisco Support with no luck. Here is a copy of my config:  Any Help would be appreciated

  • Fetch x-number of rows into an array

    I have some code that selects out x-different number of rows (the number is related to different input data). Is there a good way to select into an array? Right now I'm doing it in a horrible way: -- finds out how many entries there are in the array

  • Random Charges to Credit Card

    I just noticed some charges from the iTunes store to my Visa and they range from $20-50 and range from 10/5-10/11 with two charges on the 5th, one on the 9th, two on the 10th and one on the 11th. I checked my recent purchases in my iTunes account and

  • XI Instance Strategy - relationship to R/3

    I am told that as soon as we start to use ABAP proxies between R/3 and XI, we can only have a single XI instance talking with that R/3.  Can someone confirm this and explain why?  My concern is that we have a number of potential systems that have a l