Need Xml Extraction help...not very urgent but only 6 Hrs left...

Hi,
     I have an xml in a blob column and I need to extract the xml resultset into the (specified below) row/column format. So that i created a custom blob_to_clob function for this conversion and extracted below specified xml. Now I am executing the below specified queries for this xml to extract PanelSet, PanelId, Link values & attributes. but the problem is, I am not been able to relate the parent and child nodes or may be not able to identify, who belongs to who (parent--child). for e.g if I extract all link i.e status1, status2 etc of a particular Panel then i am not been able to access its (parent) Panel identification.please suggest me any solution.
--query using
--to extract PanelSet
select
  extractValue(value(t),'/PanelSet/@name') panelset_name
  from
    (Select blob_to_clob(grp_menu) blobval
    from OUG
    WHERE user_group_seqno =9) c,
table(xmlsequence(extract(xmltype.createxml(c.blobval),'/Menus/PanelSet'))) t
--to extract PanelID
select
  extractValue(value(t),'/PanelID/text()') panelid
  from
    (Select blob_to_clob(grp_menu) blobval
    from oug
    WHERE user_group_seqno =9) c,
table(xmlsequence(extract(xmltype.createxml(c.blobval),'/Menus/PanelSet/PanelID'))) t
--to extract Panel
select
  extractValue(value(t),'/Panel/@id') Panel_id,
  extractValue(value(t),'/Panel/@name') Panelname
  from
    (Select blob_to_clob(grp_menu) blobval
    from oug
    WHERE user_group_seqno =9) c,
table(xmlsequence(extract(xmltype.createxml(c.blobval),'/Menus/Panel'))) t
--to extract link
select
  extractValue(value(t),'/Link/@name') link_name,
  extractValue(value(t),'/Link/@type') link_type,
  extractValue(value(t),'/Link/text()') link_value 
  from
    (Select blob_to_clob(grp_menu) blobval
    from oug
    WHERE user_group_seqno =9) c,
table(xmlsequence(extract(xmltype.createxml(c.blobval),'/Menus/Panel/Link'))) t
--XML
<Menus>
    <PanelSet name="0_Data center_A">
    <PanelID>1-1</PanelID>
    <PanelID>1-2</PanelID>
    <PanelID>1-3</PanelID>
    <PanelID>0-0</PanelID>
    <PanelID>1-6</PanelID>
    <PanelID>1-7</PanelID>
</PanelSet>
   <PanelSet name="1_Data center_B">
      <PanelID>2-4</PanelID>
      <PanelID>2-5</PanelID>
      <PanelID>2-6</PanelID>
      <PanelID>0-0</PanelID>
      <PanelID>2-7</PanelID>
      <PanelID>2-8</PanelID>
</PanelSet>
   <PanelSet name="2_Data center_C">
      <PanelID>3-2</PanelID>
      <PanelID>3-4</PanelID>
      <PanelID>0-0</PanelID>
      <PanelID>3-9</PanelID>
      <PanelID>3-10</PanelID>
      <PanelID>3-11</PanelID>
</PanelSet>
      <Panel id="1-1" name="Sts">
        <Link name="status 1" type="Module">forbidden</Link>
        <Link name="status 2" type="Module">/forbidden</Link>
        <Link name="status 3" type="Module">/forbidden</Link>
        <Link name="status 4" type="Module">/forbidden</Link>
        <Link name="status 5" type="Module">/forbidden</Link>
      </Panel>
      <Panel id="1-2" name="Adm">
         <Link name="View 1" type="Module">forbidden</Link>
         <Link name="View 2" type="Module">forbidden</Link>
         <Link name="View 3" type="Module">forbidden</Link>
         <Link name="View 4" type="Module">forbidden</Link>
         <Link name="View 5" type="Module">forbidden</Link>
         <Link name="View 6" type="Module">forbidden</Link>
         <Link name="View 7" type="Module">forbidden</Link>
      </Panel>
      <Panel id="2-4" name="Position">
         <Link name="viewer 1" type="Module">forbidden</Link>
         <Link name="viewer 2" type="Module">forbidden</Link>
      </Panel>
      <Panel id="3-2" name="Administration">
         <Link name="inquiry 1" type="Module">forbidden</Link>
      </Panel>
      <Panel id="3-4" name="Reconciliation">
        <Link name="reconciliation 1" type="Module">forbidden</Link>
        <Link name="reconciliation 2" type="Module">forbidden</Link>
        <Link name="reconciliation 3" type="Module">forbidden</Link>
      </Panel> 
</Menus>
--Structure
                                   -----Link abc
                                  -     Link abd
                              -      Link abe
            -----Panel ID 1-1-                
              -     Panel ID 1-2--------link a--z (more than one)
--------    -      Panel ID 1-3--------link N...
|PanelSet 0|-
              ------PanelID 2-1--------link N...
           -     PanelID 2-2--------link N...
--------     -      PanelID 2-3--------link N...
|PanelSet 1|-      
              ------PanelID 3-1--------link N...
--------     -      PanelID 3-2--------link N...
|PanelSet 2|-       PanelID 3-1--------link N...
--resultset required
Panel_set         Panel_id          link
0_Data center_A    1-1               Status1
0_Data center_A    1-1               Status2
0_Data center_A    1-1               Status3
0_Data center_A    1-1               Status4
0_Data center_A    1-1               Status5
0_Data center_A    1-2               View 1
0_Data center_A    1-2               View 2
0_Data center_A    1-2               View 3
0_Data center_A    1-2               View 4
0_Data center_A    1-2               View 1
1_Data center_B    2-4              viewer 1
1_Data center_B    2-4              viewer 2Message was edited by:
Sachin.Singh

with t as
(select xmltype(
'... your xml here ...
') as xml from dual),
panel_sets as ( select extractvalue(t2.column_value, '//*/@name') as panel_set,
                       extractvalue(t3.column_value, '//*'      ) as panel_id
                  from t, table(xmlsequence(extract(t.xml,           '//Menus/PanelSet'))) t2,
                          table(xmlsequence(extract(t2.column_value, '//*/PanelID'     ))) t3
    panels as ( select extractvalue(t2.column_value, '//*/@id'  ) as panel_id,
                       extractvalue(t3.column_value, '//*/@name') as link
                  from t, table(xmlsequence(extract(t.xml,           '//Menus/Panel'))) t2,
                          table(xmlsequence(extract(t2.column_value, '//*/Link'     ))) t3
select s.panel_set, s.panel_id, p.link
  from panel_sets s, panels p
  where p.panel_id = s.panel_id
PANEL_SET            PANEL_ID LINK
0_Data center_A      1-1      status 1
0_Data center_A      1-1      status 2
0_Data center_A      1-1      status 3
0_Data center_A      1-1      status 4
0_Data center_A      1-1      status 5
0_Data center_A      1-2      View 1
0_Data center_A      1-2      View 2
0_Data center_A      1-2      View 3
0_Data center_A      1-2      View 4
0_Data center_A      1-2      View 5
0_Data center_A      1-2      View 6
0_Data center_A      1-2      View 7
1_Data center_B      2-4      viewer 1
1_Data center_B      2-4      viewer 2
2_Data center_C      3-2      inquiry 1
2_Data center_C      3-4      reconciliation 1
2_Data center_C      3-4      reconciliation 2
2_Data center_C      3-4      reconciliation 3
18 rows selected.

Similar Messages

  • Trying to change ownership of my old iPod. The advice here is to go to "Devices" "Summary" "Restore", but I find "Devices" does not offer "Restore" but only "Sync", "Transfer", "Backup", and a greyed "Restore from backup."

    Trying to change ownership of my old iPod. The advice here is to go to "Devices">"Summary">"Restore", but I find "Devices" does not offer "Restore" but only "Sync", "Transfer", "Backup", and a greyed "Restore from backup."

    What I don't understand is that your iTunes looks different from mine--just a little bit. You have 3 circles, red, yellow, and green, in the upper right end of the top bar. INstead I have a square that is half gray. When I click it, I get a menu very similar to the menu under "File."
    The only place I see an entry for "Devices" is under "File," but it only gives the 4 options I mentioned before (see below). There is no "Summary."
    Here's another screen shot after I added an album to music. Now all the choices under "Devices" are grayed.

  • Hi.  I have a Macbook Pro Model 5,5 with one 800 firewire port.  I need to create two firewire 800 ports but only have an SD card slot (this is for video interface with 2 cameras).  Is this possible or do I have to have an express card slot in order to do

    Hi.  I have a Macbook Pro Model 5,5 with one 800 firewire port.  I need to create two firewire 800 ports but only have an SD card slot (this is for video interface with 2 cameras).  Is this possible or do I have to have an express card slot in order to do this?

    Hi Jessica,
    No, the SD slot will not work, you need an ExpressCard/34 slot.
    I do not know if it works with cameras, but with two or more HDs, if the first one has two FW ports, you can "daisy chain" one or more additional HDs from it.

  • I tried synching my 2nd generation ipod touch and it told me to update the software. Then it said "error 37" and could not complete updating but it has left me with an ipod that is not recognised by my pc and wont turn on or anything- just black

    I tried synching my 2nd generation ipod touch and it told me to update the software. Then it said "error 37" and could not complete updating but it has left me with an ipod that is not recognised by my pc and wont turn on or anything- just black

    Error 20, 21, 34, 37: These errors typically occur when security software interferes with the restore and update process. If you are using a PC, follow this article to resolve this issue.
    Above from:
    http://support.apple.com/kb/TS3694
    You also may have to place the iPod in recovery mode. For how see:
    iPhone and iPod touch: Unable to update or restore

  • My iPhone 5 is not charging properly and only the left speaker in any headphones is working

    Hi folks my iPhone 5 is not chagrin properly and only the left speaker on any set of headphones is working how do I report to apple

    Will not turn on, will not turn on unless connected to power, or unexpected power off
    No sound through stereo headset

  • I am in my e-mail and a keyboard came up but only the left hand-side of the keyboard and I can't get rid of it, any idea how to make it go away?

    I am in my e-mail and a keyboard came up but only the left hand-side of the keyboard and I can't get rid of it, any idea how to make it go away?

    Have you turned the phone off? If so, and it hasn't fixed the issue, try a reset:
    Press and hold the Sleep/On/Off button and the Home button at the same time for approximately 10-15 seconds. Ignore the slide to turn off indicator, and wait for the Apple logo to reappear. Release buttons. No content will he changed with this process.
    Stedman

  • How to write code for this logic, plz help me very urgent

    Hi All,
    i am new to sap-abap, i got this work and i m working on this can any body help me in writing code, plz help me, this is very very urgent.
    here  i m giving my logic, can anybody send me the code related to this logic.
    this is very urgent .
    this program o/p should be in ALV format and need to create one commond 'SAVE" on this o/t list  if  user clicks save processedon and processedby fields in ZFIBUE should be updated automatically.
    i am creating one custom table zfibue having fields: (serialno, bukrs, matnr,prdha,hkont,gsber,wrbtr,budat, credate, cretime,processed, processedon, processedby,mapped)
    fields of zfibue:
    serailno = numc
    bukrs = char
    matnr = char
    prdha = char
    hkont = char
    gsber = char
    wrbtr = char
    budat = date
    credate = date
    cretime = time
    processed= char
    processedon = date
    processedby = char
    mapped = char      are   belongs to above type data types
    and seelct-optionfields:  s_bukrs for bseg-bukrs
                                        s_hkont for bseg-hkont,
                                         s_budat for bkpf-budat,
                                         s_processed for zfibue-processed,
                                          s_processedon for zfibue-processedon,
                                          s_mapped. for zfibue-mapped
    parameters: p_chk1 as checkbox,
                      p_chk2 as checkbox.
                      p_filepath type rlgrap-filename.
    1.1 Validate the user inputs (S_BUKRS and S_HKONT) against respective check tables (T001 and SKB1). If the validation fails, provide respective error message. Eg: “Invalid input for Company Code”.
    1.2 Fetch SERIALNO, BUKRS, MATNR, PRDHA, HKONT, GSBER, WRBTR, BUDAT, CREDATE, CRETIME, PROCESSED, PROCESSEDON, PROCESSEDBY, MAPPED from table ZFIBUE into internal table GT_ZFIBUE where BUKRS IN S_BUKRS, HKONT IN S_HKONT, BUDAT IN S_BUDAT, PROCESSED IN S_PROCESSED, PROCESSEDON IN S_PROCESSEDON, and MAPPED IN S_MAPPED.
    1.3 If P_CHK2 = ‘X’, go to step 1.11. Else continue.
    1.4 If P_CHK1 = ‘X’, continue. Else go to step 1.9
    1.5 Fetch MATNR, PRDHA from MARA into GT_MARA for all entries in GT_ZFIBUE where MATNR = GT_ZFIBUE-MATNR.
    1.6 Sort and delete adjacent duplicates from GT_MARA based on MATNR.
    1.7 Loop through GT_ZFIBUE where PRDHA = blank.
              Read Table GT_MARA based on MATNR = GT_ZFIBUE-MATNR.
              IF sy-subrc = 0.
                     Move GT_MARA-PRDHA to GT_ZFIBUE-PRDHA.
                  Modify Table GT_ZFIBUE. “Update Product Hierarchy
                 Endif.
        Fetch PRDHA, GSBER from ZFIBU into GT_ZFIBU for all entries in GT_ZFIBUE where PRDHA = GT_ZFIBUE-PRDHA.
        Read Table GT_ZFIBU based on PRDHA = GT_ZFIBUE-PRDHA.
              IF sy-subrc = 0.
                     Move GT_ZFIBU-GSBER to GT_ZFIBUE-GSBER.
                  Move “X” to GT_ZFIBUE-MAPPED.      
                  Modify Table GT_ZFIBUE.
                 Endif.   
    Endloop.
    1.8 Modify database table ZFIBUE from GT_ZFIBUE.
    1.9 Fill the field catalog table GT_FIELDCAT using the details of output fields listed in section “Inputs/Outputs” (above).
       Eg:                 LWA_ FIELDCAT -SELTEXT_L = 'Serial Number’.
                              LWA_ FIELDCAT -DATATYPE = ‘NUMC’.
                              LWA_ FIELDCAT -OUTPUTLEN = 9.
                              LWA_ FIELDCAT -TABNAME = 'GT_ZFIBUE'.
                              LWA_ FIELDCAT-FIELDNAME = 'SERIALNO'.
              Append LWA_FIELDCAT to GT_FIELDCAT
    Note: a) The output field GT_ZFIBUE-PROCESSED will be editable marking INPUT = “X” in field catalog (GT_FIELDCAT).
             b) The standard ALV functionality will be used to give the user option for selecting all or blocks of entries at a time.
             c) The PF-STATUS STANDARD_FULLSCREEN from function group SLVC_FULLSCREEN will be copied to the program and modified to include a “SAVE” button.
    1.10 Call the function module REUSE_ALV_GRID_DISPLAY passing output table GT_ZFIBUE and field catalog GT_FIELDCAT. Additional parameters like I_CALLBACK_PF_STATUS_SET (= ‘ZFIBUESTAT’) and I_CALLBACK_USER_COMMAND (=’HANDLE_USER_ACTION’) will also be passed to handle user events. Go to 2.14.
    1.11 Download the file to P_FILEPATH using function module GUI_DOWNLOAD passing GT_ZFIBUE.
    1.12 Exit Program.
    Logic to be implemented in  routine “Handle_User_Action”
    This routine will have the following interface:
    FORM Handle_User_Action  USING r_ucomm LIKE sy-ucomm
                                                               rs_selfield TYPE slis_selfield.
    ENDFORM.
    Following logic will be implemented in this routine:
    1.     If r_ucomm = ‘SAVE’, continue. Else exit.
    2.     Loop through GT_ZFIBUE where SEL_ROW = ‘X’. “Row is selected
    a.     IF GT_ZFIBUE-PROCESSED = ‘X’.
    i.     GT_ZFIBUE-PROCESSEDON = SY-DATUM.
    ii.     GT_ZFIBUE-PROCESSEDBY = SY-UNAME.
    iii.     MODIFY ZFIBUE FROM work area GT_ZFIBUE.
    Endif.
    Endloop.

    Hi Swathi,
    If it's very very urgent then you better get on with it, don't waste time on the web. Chop chop.

  • Experts plz help its very urgent

    hi expert
    plz help- me
    previously i was getting dump in this statement
    TRANSFER v_tab TO p_file.
    FYI:
    here v_tab is a table which hav som records
    and p_file contains the path of a file like c:\new\ggg.txt
    DATA: v_tab TYPE STANDARD TABLE OF t_line WITH HEADER LINE,
    TYPES: BEGIN OF t_line,
           pspid(9) TYPE c,
           tab1 TYPE x,
           post1 TYPE proj-post1,
           tab2 TYPE x,
           vernr TYPE prps-vernr,
           tab3 TYPE x,
    END OF t_line.
    DUMP I WAS GETTIN :
    For the statement
       "TRANSFER f TO ..."
    only character-type data objects are supported at the argument position
    "f".
    In this case. the operand "f" has the non-character-type "T_LINE". The
    current program is a Unicode program. In the Unicode context, the type
    'X' or structures containing not only character-type components are
    regarded as non-character-type.
    to avoid this dump i used feild symbol
    assign V_TAB to <IN> casting.
          p_file = <in>.
          unassign <IN>.
    nw there is no dump
    but problem is p_file contains the contents of v_tab not the file path .
    plz help me its very urgent
    thanx in advance

    Hey, no probs,
    after your initial declaration, do this.
    TYPES: BEGIN OF n_line,
    pspid(9) TYPE c,
    tab1(15) TYPE c,        "check the length you want
    post1 TYPE proj-post1,
    tab2(15) TYPE c,         "check the length you want
    vernr TYPE prps-vernr,
    tab3(15) TYPE c,         "check the length you want
    END OF t_line.
    DATA: n_tab TYPE STANDARD TABLE OF n_line WITH HEADER LINE.
    now after you fetch data into v_tab,
    move it to n_tab.
    using a loop at v_tab and move corresponding fields to n_tab's work area
    append to n_tab.
    once you have populated n_tab and are ready to TRANSFER.
    OPEN your file using
    open dataset <file> for output in text mode encoding default.
    now
    loop at n_tab.
    TRANSFER n_tab to p_file.
    endloop.
    CLOSE DATASET.

  • Error while opening a module. plz help me, very urgent.

    when i try to open a module, the following error message appears on my screen.
              " no j2ee component found in d:\krisp\programs\servlets".
              i've installed bea in c: drive and my servlet program is in d: drive.
              plz help me, it's very urgent.

    Can you provide some more information? What were you doing when this happened?
              Can you post the entire error message?
              -- Rob
              WLS Blog http://dev2dev.bea.com/blog/rwoollen/

  • TS3899 My ipood touch works fine when at home and on my own wi-fi network but when abroad and using wi-fi I can only receive emails but my ipod touch won't send my messages.  I am not very techy but don't know how to resolve this problem.  Any advice?

    Hi
    I am having problems sending emails when using my ipod touch with wi-fi abroad.  When at home my ipod touch receives and I can send emails through my home wi-fi system but when away and logged into other wi-fi networkcan only receive emails and not send them.  Internet access is fine when abroad.
    I am assuming that this is to do with the outgoing server but this is only a guess!
    I am not very techy so any ideas how to resolve this problem would be gratefully received.
    Thanks
    KeithGH

    Seems like the other networks are blocking you from sending emails.
    Do yo have more that one email account on the iPod?
    Have you tried sending from another account?

  • My Firefox 20 seems to not shut down but only restart. Also, rather than my home page, the last pages visited appear.

    It's as if Firefox 20.0 never shuts down but only restarts.
    Even when I close Firefox 20.0 by clicking the X button on the top right or use "exit," when I open Firefox, it acts the same as if I'd used "restart," namely the tabs don't load until I click on them. Furthermore, the 4 pages I use as my home pages aren't there but rather whatever pages I had up when I last closed my browser.
    I have tried creating a new profile, which worked ONE TIME. Then, it went back to my problem.
    I have used "restore" to go back to a time before the problem started but that hasn't worked.
    I removed the addon I had downloaded in that time period but that didn't help, either.
    Thank you for any help you can give. I know you're all volunteers and your time is important.

    Does it seem like that Firefox is crashing? Try checking if there are any crash reports by going to about:crashes in your browser. Alternatively you can try safe mode as outlined below:
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

  • HT1657 I have not watched movie but only have 1 day to view?

    Downloaded a rental movie from ITunes have not watched it but it says I have only 1 day to view? Thought it was 30 day rental once views could be watched within 48 hrs? How do I solve this problem?  Have not been billed yet?

    Did you click play on it ? Even if you only watched it for a second then the countdown before it expires will start, which is 24 hours if you are in the UK, 48 hours elsewhere.

  • I need to upgrade my ram very urgent plz help !!!

    I have MacBook Pro 13 inch early 2011, i need to upgrade my ram, right now i am using 4gb ram, i searched on apple support it says max 8 gb ram and base 4gb , but if i install 8 + 8 = 16 gb ram will it work perfectly ?

    Yes it will work and is compatible with your make and model computer early 2011,13", 2.7 ghz,  i7 MacBook Pro I believe what Niel meant by this satement ~Yes, unless there's a problem with the specific modules you get; the computer supports 16GB.~  Was if the new modules eg 2x8 are in themselves a problem or defective. Hope this helps you somewhat

  • PARSING HTML ELEMNETS IN XML FILE?,Help please very urgent

    I am getting the input in this form
    <ul>
    <li>Strategies</li>
    <li>Planning</li>
    <li>Value</li>
    <li>Total Investment</li>
    </ul>
    I want to convert it into below format so that ContentHandler parse the HTML tages.The HTML elements are dynamic,
    contentHandler.startElement("", "ul", "ul", attrs);
    contentHandler.startElement("", "li", "li", attrs);
    contentHandler.characters(value.toCharArray(), 0, value.length());
    contentHandler.startElement("", "li", "li", attrs);
    contentHandler.startElement("", "li", "li", attrs);
    contentHandler.characters(value.toCharArray(), 0, value.length());
    contentHandler.startElement("", "li", "li", attrs);
    contentHandler.startElement("", "li", "li", attrs);
    contentHandler.characters(value.toCharArray(), 0, value.length());
    contentHandler.startElement("", "li", "li", attrs);
    contentHandler.startElement("", "li", "li", attrs);
    contentHandler.characters(value.toCharArray(), 0, value.length());
    contentHandler.startElement("", "li", "li", attrs);
    contentHandler.endElement("", "ul", "ul");
    Is their any library through which we can convert HTML tags into ContentHandler elements.
    Thanks in Advance
    Thanks
    Lakhi

    Actually i am parsing XML file,but i have HTML elements inside XML elements:
    <section id='2'><header><line>Agenda( Slide2 )</line></header>
    <line>
    <h3>Agenda</h3>
    <ol>
    <li>Overview of ABC Company inc.</li>
    <li>Defining and Measuring Employee Engagement</li>
    <li>Foresight's Survey Methodology</li>
    <li>Online Tools</li>
    <li>Standard and Custom Reporting Capabilities</li>
    <li>Action Planning and Best Practices</li>
    </ol></line></section>
    And i am using Contenthandler interface to parse,
              attrs.addCDATAAttribute("id",""+i);
                   contentHandler.startElement("", "section", "section", attrs);
                   attrs.clear();
                   contentHandler.startElement("", "header", "header", attrs);
                   contentHandler.startElement("", "line", "line", attrs);
                   contentHandler.characters(key.toCharArray(), 0, key.length());
                   contentHandler.endElement("", "line", "line");
                   contentHandler.endElement("", "header", "header");
                   contentHandler.startElement("", "line", "line", attrs);
    /*HERE I need to Generate java instruction for HTML elements as i mailed before.for elements like <li>Overview of ABC Company inc.</li>
    <li>Defining and Measuring Employee Engagement</li>...................</ol>
                   contentHandler.characters(value.toCharArray(), 0, value.length());
                   contentHandler.endElement("", "line", "line");
                   contentHandler.endElement("", "section", "section");

  • Hi need help..very urgent..

    Hi ABAPers,
    I am very new to ABAP..i need help in coding this following logic,,,
    Can anyone help me in coding this following logic..
    Step 1.  Retrieve customer number KUNNR from VBAK
    Step 2.  Pass customer number KUNNR to KNA1 and retrieve address number-ADANR value
    Step 3.  Pass ADANR value to ADRC table to retrieve NAME3
    Please do reply guys..
    full marks would be given for the right answer.
    Regards
    Sahil

    If Windows Live Mail can export the mailboxes in .mbox format then they can be imported into Mail. Otherwise, you would need to export the accounts to Thunderbird, Netscape, or Office Entourage in order to directly import into Mail.

Maybe you are looking for