RUN TIME ERROR IN THIS CODE

HELLO EVERY ONE ...
I AM GETTING run time error in this code.....can u send me the corrected code....
START-OF-SELECTION.
SELECT T1~MATNR
       T1~MEINS
       T1~ERSDA
       T1~ERNAM
       T1~SPART
       T2~MAKTX
       T3~LVORM
       T3~EKGRP
       T3~WERKS
       T4~LABST
       T4~SPEME
       T4~LGORT
       INTO CORRESPONDING FIELDS OF TABLE ITAB
       FROM MARA AS T1
       INNER JOIN MAKT AS T2
       ON T1MATNR = T2MATNR
       INNER JOIN MARC AS T3
       ON T2MATNR = T3NFMAT
       INNER JOIN MARD AS T4
       ON T3MATNR = T4MATNR
       WHERE T1~MATNR IN SMATNR.
Thanx & Regards,
PHANINDER

ok i am sending u the full code.....
REPORT  Z_SB_RP_MATERIAL.
TABLES: MARA,
        MARD,
        MAKT,
        MARC,
        EINA,
        EINE.
DATA: BEGIN OF ITAB OCCURS 15,
      MATNR LIKE MARA-MATNR,
      MEINS LIKE MARA-MEINS,
      ERSDA LIKE MARA-ERSDA,
      ERNAM LIKE MARA-ERNAM,
      SPART LIKE MARA-SPART,
      MAKTX LIKE MAKT-MAKTX,
      LVORM LIKE MARC-LVORM,
      EKGRP LIKE MARC-EKGRP,
      WERKS LIKE MARC-WERKS,
      LABST LIKE MARD-LABST,
      SPEME LIKE MARD-SPEME,
      LGORT LIKE MARD-SPEME,
      END OF ITAB.
SELECTION-SCREEN BEGIN OF BLOCK BLK WITH FRAME TITLE TEXT-T01.
SELECT-OPTIONS: SMATNR FOR MARA-MATNR,
                SERSDA FOR MARA-ERSDA,
                SWERKS FOR MARC-WERKS,
                SLGORT FOR MARD-LGORT.
SELECTION-SCREEN END OF BLOCK BLK.
TOP-OF-PAGE.
WRITE:/ SY-VLINE,
      02 'S.NO',
      06 SY-VLINE,
      08 'MATNR',
      20 SY-VLINE,
      22 'MEINS',
      32 SY-VLINE,
      34 'ERSDA',
      44 SY-VLINE,
      46 'ERNAM',
      56 SY-VLINE,
      58 'SPART',
      68 SY-VLINE,
      70 'MAKTX',
      80 SY-VLINE,
      82 'LVORM',
      92 SY-VLINE,
      94 'EKGRP',
     104 SY-VLINE,
     106 'WERKS',
     116 SY-VLINE,
     118 'LABST',
     128 SY-VLINE,
     130 'SPEME',
     140 SY-VLINE,
     142 'LGORT',
     152 SY-VLINE.
START-OF-SELECTION.
SELECT T1~MATNR
       T1~MEINS
       T1~ERSDA
       T1~ERNAM
       T1~SPART
       T2~MAKTX
       T3~LVORM
       T3~EKGRP
       T3~WERKS
       T4~LABST
       T4~SPEME
       T4~LGORT
       INTO CORRESPONDING FIELDS OF TABLE ITAB
       FROM MARA AS T1
       INNER JOIN MAKT AS T2
       ON T1MATNR = T2MATNR
       INNER JOIN MARC AS T3
       ON T2MATNR = T3NFMAT
       INNER JOIN MARD AS T4
       ON T3MATNR = T4MATNR
       WHERE T1~MATNR IN SMATNR.
END-OF-SELECTION.
DATA: COUNT(4) TYPE N.
LOOP AT ITAB.
COUNT = COUNT + 1.
  WRITE:/ SY-VLINE,
      02 COUNT,
      06 SY-VLINE,
      08 ITAB-MATNR,
      20 SY-VLINE,
      22 ITAB-MEINS,
      32 SY-VLINE,
      34 ITAB-ERSDA,
      44 SY-VLINE,
      46 ITAB-ERNAM,
      56 SY-VLINE,
      58 ITAB-SPART,
      68 SY-VLINE,
      70 ITAB-MAKTX,
      80 SY-VLINE,
      82 ITAB-LVORM,
      92 SY-VLINE,
      94 ITAB-EKGRP,
     104 SY-VLINE,
     106 ITAB-WERKS,
     116 SY-VLINE,
     118 ITAB-LABST,
     128 SY-VLINE,
     130 ITAB-SPEME,
     140 SY-VLINE,
     142 ITAB-LGORT,
     152 SY-VLINE.
ENDLOOP.
THANX & REGARDS,
PHANINDER

Similar Messages

  • HELP! Run-time Error with this code.

    I'm having problem with the code below. But if I were to remove the writer class and instances of it (writeman), then there are no problems. Can some1 pls tell me why the writer class is giving problems. Btw, no compilation errors, only errors at run-time..........
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.MouseListener;
    import java.awt.event.*;
    public class HelloWorld extends Applet
    public static String MyString = new String("Hello");
    Graphics f;
    public void init()
    Changer Changer1 = new Changer();
    writer writeman = new writer();
    setBackground(Color.red);
    setForeground(Color.green);
    addMouseListener(Changer1);
    writeman.paintit(f);
    public void paint(Graphics g)
    g.drawString(MyString,10 ,10);
    public class Changer implements MouseListener
    public void mouseEntered(MouseEvent e)
    setBackground(Color.blue);
    MyString = "HI";
    paint(f);
    repaint();
    public void mouseExited(MouseEvent e)
    setBackground(Color.red);
    repaint();
    public void mousePressed(MouseEvent e){};
    public void mouseReleased(MouseEvent e){};
    public void mouseClicked(MouseEvent e){};
    public class writer
    public void paintit(Graphics brush)
    brush.drawString("can u see me", 20, 20);

    I assume the exception you are getting is a NullPointerException...
    When you applet is loaded, it is initialised with a call to init... the following will then occur...
    HelloWorld.init()
    writeman.paintit(f)
    // f has not been initialised, so is null
    brush.drawString("can u see me", 20, 20)
    // brush == f == null, accessing a null object causes a NullPointerException!
    The simplest way to rectify this is to not maintain your own reference to the Graphics object. Move the writer.paintit(f) method to the HelloWorld.paint(g) method, and pass in the given Graphics object. Also, change the paint(f) call in Changer to repaint(), which will cause the paint method to be called with a valid Graphics object - which will then be passed correctly to writer.
    Hope this helps,
    -Troy

  • 2013 Run-Time error 32809 on macro

    I am unable to have a file open correctly that has 'automatic macros'.  The file work in 2010 and now I have the run-time error.  This workbook is created by outside source and is password protected.
    Thanks for any assistance.

    Do a bit of searching. It appears that this error is most likely caused by a MS security patch and is related to things like ActiveX. I'm not sure if there are fixes that don't require access to the file's design. If so, you should be able to get it working
    again. If not and you can't get into the file, then you really have no option except to push the fix back to the developers who have the password.
    It's also possible that there's something about the design that is incompatible with 2013 and you're back to needing the devs with the password to fix the problem since it's code that's borked.
    I feel you pain. Just curious, how do you fit in? Are you an end user stuck with something not working (and is so I REALLY feel your pain) or are you somehow tied into the development?

  • A run-time-error ,how to solve it

    I write a function to return a float64 type pointer and  assign the pointer to my defined Pionter "newdata" in  my StartCallBack,there's no error,but when I USE  "
    DAQmxWriteAnalogF64 (gtaskhandle0, leng[0]<=leng[1]?2*leng[0]:2*leng[1], 0, 10.0, DAQmx_Val_GroupByScanNumber, newdata, &written, NULL);",
    I get a run-time-error like this : "work.c", line 231, col 121, thread id 0x00007FB4:   Array argument too small (40000000 bytes).  Argument must contain at least 80000000 bytes (10000000 elements).Why this happen?
    My part code:
       DAQmxCreateTask ("", &gtaskhandle0);
       DAQmxCreateAOVoltageChan (gtaskhandle0, "Dev1/ao0:1", "", -10.0, 10.0, DAQmx_Val_Volts, "");
       DAQmxSetTimingAttribute(gtaskhandle0,DAQmx_SampClk_Rate,1000/looptime);
       DAQmxCfgSampClkTiming(gtaskhandle0,"",1000/looptime,DAQmx_Val_Rising,DAQmx_Val_FiniteSamps,leng[0]+leng[1]);
       DAQmxRegisterDoneEvent(gtaskhandle0,0,DoneCallback,NULL);
       DAQmxWriteAnalogF64 (gtaskhandle0, leng[0]<=leng[1]?2*leng[0]:2*leng[1], 0, 10.0, DAQmx_Val_GroupByChannel, newdata, &written, NULL);
       SetCtrlAttribute (panelHandle, PANEL_REALWRITE, ATTR_CTRL_VAL, (double)written);
       DAQmxStartTask(gtaskhandle0);
    Solved!
    Go to Solution.

    I do not think so ,when  I modificate the channel from "Dev1/ao0:1" to "Dev1/ao0",it works normally ,but I can output only in one AO channel by this way ,rather than in two AO channels.
    float64 * volarray(double ti[],double vi[],int num,int len,double looptime)
      int k=0,sum=0,m=0;
      float64 *p=NULL;
      p=(float64 *) malloc(sizeof(double)*len);
      for(k=0;k<num-1
       if(ti[k]<ti[k+1])
        {for(m=0;m<(int) (ti[k+1]-ti[k])/looptime;m++)
         p[m+sum]= vi[k]+m*(vi[k+1]-vi[k])/((ti[k+1]-ti[k])/looptime);
           sum+= (int) (ti[k+1]-ti[k])/looptime ;
        k+=1;
       else
        {for(m=0;m<(int) (ti[k+2]-ti[k+1])/looptime;m++) 
         p[m+sum]= vi[k+1]+m*(vi[k+2]-vi[k+1])/((ti[k+2]-ti[k+1])/looptime);
        sum+= (int) (ti[k+2]-ti[k+1])/looptime ;
        k+=2;
       return p;}
    float64 * JointVol( float64 *data0, float64 *data1, int len0, int len1 )
    {  int i=0;
       int totalLen=0;
       float64 * P=NULL;
       if(len0<=len1)
        totalLen=2*len0;
       else
           totalLen=2*len1;
       //totalLen=((len0<=len1)?len0:len1)*2;
       P=(float64*)malloc(sizeof(double)*totalLen);
       for(i=0;i<(totalLen/2);++i) 
       P[2*i]=*(data0+i);
       P[2*i+1]=*(data1+i);
    return P; 

  • Trying to upgrade my i-phone 3 operating system to ios-5.  The program seems to download fine, but at the end it says network run time error and then I have to cancel it out and try again.  Tried 5 times and I can't upgrade the system.  help?

    I am trying to upgrade the operating system on my i-phone 3 to ios-5.  I download the program and it runs and downloads.  When almost finished, an error occurs that says Network run time error.  This cancels out the download.  I have tried 5 times with the sdame result.  Can anyone help?  Thanks

    This is asked and answered frequently... a simple search of the forums would have revealed that disabling any Anti-Virus and Firewall software on the computer prior to downloading will rectify the issue.

  • Run time error in DTP

    Hi gurus,
    When i select the DTP temporary storage at the DTP infopackage level i am getting Run time error.
    is this Basis problem?

    Hii Krishna,
    Check out this link
    http://help.sap.com/saphelp_nw04s/helpdata/en/42/fbd598481e1a61e10000000a422035/content.htm
    u can find out where is the error.
    Hope this is helpful for u.

  • Run time error when trying to import bookmarks from firefox

    When trying to import bookmarks from Firefox to Safari I get the following error message: "Run Time Error. This application has requested the Runtime  to terminate it in an unusual way." Safari does not function anymore and I have to close it. Can somebody help me? I am using a PC with Windows 7.

    In the Bookmarks Manager (Library) there is a toolbar with the Back and Forward button and three other buttons (Organize, Views, Import & Backup).
    * The first (gear) button is the Organize button with basic edit menu items for bookmarks
    * The second button is the Views button that allows to change the sort order for viewing purposes (doesn't sort permanently).
    * The third (star) button is the Import & Backup button that allows to backup and restore a JSON backup and import and export an HTML backup and import bookmarks from other browsers.
    Hover each button to see the tooltip or click each of them to see what they do.
    * https://support.mozilla.org/kb/how-do-i-use-bookmarks

  • I cannot access my openoffice documents. I keep getting a run time error message

    When I try to open any OpenOffice.org 3.0 file I get a message that says Run time error! This application has asked the Run Time to terminate it in an unusual way.

    Please try updating to version 19.0
    Please check if all your plugins are up-to-date. To do this, go to the [http://mozilla.com/plugincheck Mozilla Plugin Check site].
    Once you're there, the site will check if all your plugins have the latest versions.
    If you see plugins in the list that have a yellow ''Update'' button or a red ''Update now'' button, please update these immediately.
    To do so, please click each red or yellow button. Then you should see a site that allows you to download the latest version. Double-click the downloaded file to start the installation and follow the steps mentioned in the installation procedure.

  • Run time Error 457

    Hi,
    We upgraded to BI 7.0, after upgrade the query is executing fine but while restricting a time characteristic the query throws an error "Run Time Error 457, this key is already associated with an element of this collection". This happens only in the production server, the query is working fine on development and test servers. When i try to access the variable associated with the time characteristic thru query designer the query designer window gets blocked displaying the same above message. I guess the error is related to Visual Basic of MS Office.
    Please let me know  the procedure for resolving the issue.
    Thank you

    Hi,
    Check SAP Note - 517232.
    Also check the below thread:
    BEx Query designer : Run-time error '457'
    Hope these helps u...
    Regards,
    KK.

  • BEx Query designer : Run-time error '457'

    Hey,
    We installed the standard query's for HR.  When we try to change the query 'Average age of employees', and we try to restrict on 'Calender year/month' then we receive this error. 
    Run-time error '457' : This key is already associated with an element of this collection.
    We're using version 3.50.
    I already saw oss note 517232 but that was for version 2.0 and not intresting for my case...  Anybody any idea? 
    Kind regards,
    Tom
    PS : I also saw : https://forums.sdn.sap.com/click.jspa?searchID=1049118&messageID=1649858 & https://forums.sdn.sap.com/click.jspa?searchID=1049118&messageID=2243413

    Hi,
    Check this conditions as I haven't checked the queries ......make sure that these two conditions are not getting into picture after you make the changes to the query.
    1) When we are making restricted key figures we can’t use same variable to restrict to two different Characteristics in the same RKF.
    2)Once a Variable used to restrict a characteristic in one RKF you cannot use it to restrict it other characteristic in other key figures i.e.  You can use it to restrict that particular characteristic only in other key figures.
    Hope it helps
    Thanks

  • Java run time error while executing JavaFX code

    Hi
    I copied the code from [http://java.sun.com/javafx/1/tutorials/ui/overview/UIControls.fx|http://java.sun.com/javafx/1/tutorials/ui/overview/UIControls.fx] while
    reading in [http://java.sun.com/javafx/1/tutorials/ui/overview/#controls|http://java.sun.com/javafx/1/tutorials/ui/overview/#controls] tutorial and paste it to my
    netbeans editor but i got following error.
    init:
    deps-jar:
    compile:
    jar:
    standard-run:
    # An unexpected error has been detected by Java Runtime Environment:
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d94513f, pid=5152, tid=5996
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_03-b05 mixed mode, sharing)
    # Problematic frame:
    # V  [jvm.dll+0xd513f]
    # An error report file with more information is saved as hs_err_pid5152.log
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    BUILD FAILED (total time: 18 seconds)can anyone tell whether its netbeans fault or javaFX. I am using netbeans 6.5.1 on windows vista. I have added following plugin in netbeans for javaFX
    *JavaFX Kit
    *JavaFX SDK for Windows
    is anyone also getting this error for this code and have solution for this.

    You are correct the crash is causing due to ToggleButton and ProgessBar. the code is correct because i tried it on eclipse 3.4 and it worked fine.This is definitely netbeans error. because its giving error even if u try to execute javafx code with just one ToggleButton or ProgressBar. I tried the following simple code in netbeans 6.5
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.control.ToggleButton;
    import javafx.scene.control.ProgressBar;
    var toggle=ToggleButton {
                    translateX:50
                    translateY:50
                    text: "First"
                    width:100
                    height:20
    var progress= ProgressBar {
            progress: bind ProgressBar.computeProgress( 100, 30 )
    Stage {
        title : "Toggle Button Test"
        scene: Scene {
            width: 200
            height: 200
            content: [ toggle
    } When i just added toggle button to contents then button showed up in window but on clicking it window disappear and compiler gave crash error on the other hand when i added just progess bar it just throws the error.The same code is running fine on eclipse
    Is there any workaround in netbeans for this if its a bug and if not what should i do to correct it.

  • ABAP/4 run time error with error code  SNAP_NO_NEW_ENTRY

    Dear All,
               I've installed SAP R/3 IDES on Oracle on Windows 2003 server.After clicking Log on button , I should be asked to enter client,user and password.But, my system does not display such details.Instead I get ABAP/4 run time error with error code  SNAP_NO_NEW_ENTRY that too after a long time.
                Can you please address what is the reason for this problem and how to over ride it?
    Regards,
    S.Suresh

    Hi,
    the most probable reason is an archiver stuck. Backup the archived redo log files and delete them afterwards.
    The database will archive some more logs after this. Handle them in the same manor. For complete explanation search for brtools.
    Regards
    Ralph Ganszky

  • How to clear this type of run time error

    good eve,
    i am migrating sql server procedures to oracle procedures
    i am trying to execute char(39) function in plsql is the following way correct and if this way is correct i am getting
    run time error like
    create or replace
    procedure Sel_subgroup(key in varchar2,gradename in varchar2)
    as
    gid res_grades.grade_id%type;
    gn res_grades.gradename_en%type;
    stid sub_topics.subtopic_id%type;
    stn sub_topics.subtopicname_en%type;
    cc res_grades.countrycode%type;
    estid exsub_topics.exsub_topics_id%type;
    estn exsub_topics.exsubtopicname_en%type;
    d_stmt varchar2(500);
    type ref_cursor is ref cursor;
    rc ref_cursor;
    begin
    d_stmt :='SELECT RG.Grade_ID,RG.Gradename_'||key||',ST.SubTopic_ID,ST.SubTopicname_'||key||', RG.CountryCode,
    Est.ExSub_Topics_ID, Est.ExSubTopicname_'||key||' from
    Res_Grades RG INNER JOIN Sub_Topics ST ON RG.Grade_Id= ST.Grade_ID
    INNER JOIN ExSub_Topics Est ON ST.SubTopic_ID = Est.Sub_Topics_Id
    Where Gradename_'||key||' = '''||gradename||'''';
    open rc for d_stmt;
    loop
    fetch rc into gid,gn,stid,stn,cc,estid,estn;
    if rc%found then
    dbms_output.put_line(gid||gn||stid||stn||cc||estid||estn);
    else
    exit;
    end if;
    end loop;
    close rc;
    commit;
    end Sel_subgroup;the out screen result is:
    Connecting to the database rasool.
    Process exited.
    Disconnecting from the database rasool.can u please help me,
    thanking you,
    prakash

    to samb,
    It doesn't look like you are getting a runtime error. Is it possible your query is returning no rows?
    If you are sure your query should be returning rows, you probably need to check if DBMS_OUTPUT is enabled in SQL Developer (View menu I think).my query is returning a row
    where where 123=key and 'FUBAR'=gradename?
    If so, you want 3 single-quotes at the end of the string, not 4:
    You sure? I think 4 is correct.i am sure 4 is correct i have tried as per jeenesh said
    to jeenesh
    SQL> ed
    Wrote file afiedt.buf
      1  create or replace
      2  procedure Sel_subgroup(key in varchar2,gradename in varchar2)
      3  as
      4   d_stmt varchar2(500);
      5  begin
      6  d_stmt :='SELECT RG.Grade_ID,RG.Gradename_'||key||',ST.SubTopic_ID,ST.SubTopicname_'||key||', RG.CountryCode,
      7  Est.ExSub_Topics_ID, Est.ExSubTopicname_'||key||' from
      8  Res_Grades RG INNER JOIN Sub_Topics ST ON RG.Grade_Id= ST.Grade_ID
      9  INNER JOIN ExSub_Topics Est ON ST.SubTopic_ID = Est.Sub_Topics_Id
    10  Where Gradename_'||key||' = '''||gradename||'''';
    11  dbms_output.put_line(d_stmt);
    12* end Sel_subgroup;
    SQL> /
    Procedure created.
    SQL> set serverout on
    SQL> exec Sel_subgroup('1','TEST');
    SELECT RG.Grade_ID,RG.Gradename_1,ST.SubTopic_ID,ST.SubTopicname_1,
    RG.CountryCode,
    Est.ExSub_Topics_ID, Est.ExSubTopicname_1 from
    Res_Grades RG
    INNER JOIN Sub_Topics ST ON RG.Grade_Id= ST.Grade_ID
    INNER JOIN ExSub_Topics
    Est ON ST.SubTopic_ID = Est.Sub_Topics_Id
    Where Gradename_1 = 'TEST'
    PL/SQL procedure successfully completed.i have also executed your code sir it is executing.in my coding,i found that the part of dbms_output.put_line in my ref cursor loop is not displaying me the print.
    to karthick arp
    Did enable serveroutput?yes i have enabled it with buffer size 200000
    to
    Billy Verreynne     & Frank Kulash
    as per you said sir i have done and got an error my code as follows
    SQL> var rc refcursor
    SQL> var key varchar2(2)
    SQL> var gradename varchar2(30)
    SQL> exec :key :='EN';
    PL/SQL procedure successfully completed.
    SQL> exec :gradename :='PRE-K';
    PL/SQL procedure successfully completed.
    SQL> begin sel_subgroup(key => :key, gradename => :gradename,rc => :rc); end;
      2  /
    PL/SQL procedure successfully completed.
    SQL> print rc
    ERROR:
    ORA-24338: statement handle not executed
    SP2-0625: Error printing variable "rc"how to handle this error sir

  • Run time error in MIGO after maintaining tax code

    Hello Experts,
    I had configured the new tax code ,which is working fine for the PO document ZLOC domestic and the account category Z.
    While doing the MIGO for purchase document type ZGEN general purchase , I am getting run time error:
      "Division by 0 (type P) in program "SAPLJ1IEX".
    When I debugged the code i found that inside FM: 'J_1IEX_DEFAULT_EXCISE_DUTY'
    one another FM is being called: 'J_1I6_UNIT_CONVERSION' which is returning the value "ls_ekpo-menge" as 0(Zero).
    later in the code when "ls_ekpo-menge" used in calculation then divide by 0 runtime error is coming.
    Please suggest what need to be done.
    Is there anything related to tax code? How should I correct it?

    Hi,
            There is not value in that field for PO quantity / Value it is missing while doing MIGO. Check whether you have maintained values for all required fields.
    Kiran

  • How do I fix this run time error crash on start up?

    Whe I start Elements 10, it stops and waits at the "Organize" or "Edit" choice. (normal operation.) I chose edit and it crashes with a C++ run time error.

    See if this Adobe troubleshooting document helps:
    http://helpx.adobe.com/x-productkb/global/troubleshoot-c-runtime-errors-products.html
    Ken

Maybe you are looking for

  • How can I use a progress bar in objective c mac

    How can I use a progress bar in objective c mac? I have a code that downloads a file and I want to be able to let the progress bar increase by 1. A bit further on the code (to download the file) it needs to increase again. And so on... My code -(IBAc

  • Subquery inside INSERT INTO

    Hi ! I have a problem to put a Subquery inside an INSERT INTO-Statement. I try it this way: (the select-statemnet alone is running fine) (the listing is shortened) INSERT INTO W_CACS_ENTRY location_code ,case_num ,billing_account_id select a.location

  • Compress PDF missing from Preview

    I want to compress a PDF I have created. I've been told that in Preview, in the Print dialog box, in the PDF menu there is an option "Compress PDF." That option doesn't appear in my dropdown menu. It doesn't appear in that menu regardless of what pro

  • Impossible to start mail (V 4.5) on Mac OSX (V 10.6.8) what do i have to do?

    Impossible to start mail (V4.5) after sytem update  Mac OSX (V10.6.8). What do i have to do?

  • NSM 3.0.3.9 not seeing DFS Namespace with two taget paths.

    I am currently running NSM 3.0.3.9 (Evaluation copy) on a server 2008 r2 file server which is a member of a domain. When cofigured DFS with one target path I could see the storage via the storage resource list in NSM however, when added a second path