Problem populating a block

Hello,
i have a problem populating a block.. so here: [http://img7.imageshack.us/my.php?image=pbb.jpg] the block which contains 3 7 10 88, should contain a record with 4 6 7 10 too, but this diesn't happen. it's about a master detail block. in the first block i have 5 *4* 11 4 and 10 *3* 11 2. the second block contains only record with id=3. (the corresponding id is Id Profilanscolar from the second block). i have already a post-query trigger like this:
declare cursor crPAS1 is
     select id_profil from profil_anscolar where id=:clasa_profil.id_profilanscolar;
begin
     open crPAS1;
     fetch crPAS1 into :profil_anscolar.id_profil;
     close crPAS1;
end;so that;s the problem, the right block doesn't contain all the data corresponding to all Id Profilanscolar
Please help me
Thanks and sorry for mistake, i pressed Enter..
Edited by: Roger22 on 21.04.2009 04:26

Yes, now it's ok, sorry, my mistake
so it's about a child and 2 master blocks of this child. when i select a record from the first master, i wanna populate the child, and also populate the second master (regarding to specific foreign key in child). how can i do this? Please help me if you can
Edited by: Roger22 on 21.04.2009 05:38

Similar Messages

  • Problem for releasing  blocked sales order on Creditlimit

    Hi Gurus,
            I a   hve a problem for releasing blocked sales orders
             what i have done: 1)i have blocked sales order based on exceeded creditlimit
             (i have change SDType in 'OVAK' is 'C')
                      2)now i have to release for furthur processing so i have done following steps
                      3)Goto VKM3/VKM1 T.Code and then release what order that is blocked.
                      4) order will appear in the list.
                      5)Select that one.
                      6)Click on the green flag that appears on the left hand side.
                      7)Click on save.
                      8)click on back it will ask for "Leave list".
                      9)Click on yes.
                      10)It said that Sales orer has been released
    Still what my problem is:
    Problem: 1)So i'm trying to create deliver for Sales order but it shows an error
             2)"Sales order is blocked for delivery: Credit limits" Even it was released    
    Plz kindly help  me what i do....
    Thanks In Advance
    sivakumar

    sorry   i was  unfotunately put this thread here  over in SD

  • Problem populating an internal table

    Hello,
    I am having a problem with filling an internal table. I cannot seem to grasp this and I struggle with this in every program. I am attaching pieces of my program so that maybe someone can help me. I have a selection screen that I populate with dates. if the dates are populated, I want to use these dates for the selection. If the dates are initial, I want to read an entry from the TVARV table and populate the dates that will used in the selection. I tried various code statements and I cannot get it to work. i get messages like "is a table without a header line and therefore has no component "LOW" or other messages similar to this. I would like that if the s_udate is populated, I could fill the tvarv table and not have to call the form.
    also if anyone has some documentation on working with internal tables without header lines (I think I read in here that internal tables without header lines is the way to go ), could you please include that as well so that I could try to understand how this suppose to work 
    thanks in advance for the help
    TYPES: BEGIN OF ty_tvarv_date,
            low     TYPE   tvarv_val,          "start date
            high    TYPE   tvarv_val,          "end date
           END OF ty_tvarv_date.
    TYPES: ty_t_tvarv_date TYPE STANDARD TABLE OF ty_tvarv_date INITIAL SIZE 0,
    DATA   it_tvarv_date TYPE STANDARD TABLE OF ty_tvarv_date INITIAL SIZE 0.
    SELECTION-SCREEN BEGIN OF BLOCK a WITH FRAME TITLE text-001.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 2(22) text-002.
    SELECT-OPTIONS s_udate FOR sy-datlo.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK a.
    PERFORM select_date_tvarv CHANGING it_tvarv_date.
    PERFORM select_data643_mseg USING    it_tvarv_date
                                         it_zfi_gl_subcontrk[]
                                  CHANGING it_mseg643.
    <b>*******************************************************************</b>
    FORM select_date_tvarv CHANGING p1_it_tvarv_date TYPE ty_t_tvarv_date.
    IF s_udate IS INITIAL.
      SELECT low high
        FROM tvarv
        INTO  TABLE p1_it_tvarv_date
        WHERE name EQ  'Z_SUBCONTRK_DATES'.
      IF sy-subrc NE 0.
        IF sy-batch IS INITIAL.
          MESSAGE i899 WITH text-027.
          LEAVE LIST-PROCESSING.
        ELSE.
          MESSAGE e899 WITH text-027.
        ENDIF.
      ENDIF.
    ELSE.
         MOVE s_udate to p1_it_tvarv_date.
         MOVE s_udate-low(8)  to p1_it_tvarv_date-low.
         MOVE s_udate-high(8) to p1_it_tvarv_date-high.
    ENDIF.
    ENDFORM. " FORM SELECT_DATE_TVARV
    <b>*******************************************************************</b>
    FORM select_data643_mseg USING p1_tvarv_date       TYPE ty_t_tvarv_date
                                   p1_zfi_gl_subcontrk TYPE ty_t_zfi_gl_subcontrk
                          CHANGING p1_it_mseg          TYPE ty_t_mseg643.
      DATA: wa_tvarv_date type ty_tvarv_date.
      READ TABLE p1_tvarv_date INTO wa_tvarv_date INDEX 1.
      SELECT abukrs  awerks amatnr aerfmg a~erfme
             akostl abwart amblnr awempf acharg akzbew algort bbudat
        FROM mseg AS a INNER JOIN mkpf AS b ON amblnr EQ bmblnr
          AND b~budat <= wa_tvarv_date-high
          AND b~budat >= wa_tvarv_date-low
            INTO TABLE p1_it_mseg
            FOR ALL ENTRIES IN p1_zfi_gl_subcontrk
            WHERE a~bukrs   EQ p1_zfi_gl_subcontrk-bukrs_from
            AND   a~werks   EQ p1_zfi_gl_subcontrk-werks_from
            AND   a~wempf   EQ p1_zfi_gl_subcontrk-werks_to643
            AND   a~matnr   EQ p1_zfi_gl_subcontrk-matnr
            AND   a~bwart   EQ'643'.
      IF sy-subrc NE 0.
        IF sy-batch IS INITIAL.
          MESSAGE i899 WITH text-027.
          LEAVE LIST-PROCESSING.
        ELSE.
          MESSAGE e899 WITH text-027.
        ENDIF.
      ENDIF.
    ENDFORM. " FORM SELECT_DATA643_MSEG

    In tables with header line, you need not define an explicit work area.
    System will create a so-called work area, which is called header line.
    This header line is like any other work area. the difference is that it can be accessed using internal table name. A record will be by default read into header line in a READ statement.
    For ex,
    READ TABLE p1_tvarv_date INTO wa_tvarv_date INDEX 1.
    Here you used to read the 1st record into wa_tvarv_date.
    But after making it table with header line you can use
    READ TABLE p1_tvarv_date INDEX 1.
    This will move the data to header line and it can be accessed by name p1_tvarv_date.
    See the code below.
    TYPES: BEGIN OF ty_tvarv_date,
    low TYPE tvarv_val, "start date
    high TYPE tvarv_val, "end date
    END OF ty_tvarv_date.
    TYPES: ty_t_tvarv_date TYPE STANDARD TABLE OF ty_tvarv_date INITIAL SIZE 0,
    DATA it_tvarv_date TYPE STANDARD TABLE OF ty_tvarv_date <b>WITH HEADER LINE INITIAL</b> SIZE 0.
    SELECTION-SCREEN BEGIN OF BLOCK a WITH FRAME TITLE text-001.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 2(22) text-002.
    SELECT-OPTIONS s_udate FOR sy-datlo.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK a.
    PERFORM select_date_tvarv CHANGING it_tvarv_date.
    PERFORM select_data643_mseg USING it_tvarv_date
    it_zfi_gl_subcontrk[]
    CHANGING it_mseg643.
    FORM select_date_tvarv CHANGING p1_it_tvarv_date TYPE ty_t_tvarv_date.
    IF s_udate IS INITIAL.
    SELECT low high
    FROM tvarv
    INTO TABLE p1_it_tvarv_date
    WHERE name EQ 'Z_SUBCONTRK_DATES'.
    IF sy-subrc NE 0.
    IF sy-batch IS INITIAL.
    MESSAGE i899 WITH text-027.
    LEAVE LIST-PROCESSING.
    ELSE.
    MESSAGE e899 WITH text-027.
    ENDIF.
    ENDIF.
    ELSE.
    MOVE s_udate to p1_it_tvarv_date.
    MOVE s_udate-low(8) to p1_it_tvarv_date-low.
    MOVE s_udate-high(8) to p1_it_tvarv_date-high.
    ENDIF.
    ENDFORM. " FORM SELECT_DATE_TVARV
    FORM select_data643_mseg USING p1_tvarv_date TYPE ty_t_tvarv_date
    p1_zfi_gl_subcontrk TYPE ty_t_zfi_gl_subcontrk
    CHANGING p1_it_mseg TYPE ty_t_mseg643.
    <b>READ TABLE p1_tvarv_date INDEX 1.</b>
    SELECT abukrs awerks amatnr aerfmg a~erfme
    akostl abwart amblnr awempf acharg akzbew algort bbudat
    FROM mseg AS a INNER JOIN mkpf AS b ON amblnr EQ bmblnr
    <b>AND b~budat <= p1_tvarv_date-high
    AND b~budat >= p1_tvarv_date-low</b>
    INTO TABLE p1_it_mseg
    FOR ALL ENTRIES IN p1_zfi_gl_subcontrk
    WHERE a~bukrs EQ p1_zfi_gl_subcontrk-bukrs_from
    AND a~werks EQ p1_zfi_gl_subcontrk-werks_from
    AND a~wempf EQ p1_zfi_gl_subcontrk-werks_to643
    AND a~matnr EQ p1_zfi_gl_subcontrk-matnr
    AND a~bwart EQ'643'.
    IF sy-subrc NE 0.
    IF sy-batch IS INITIAL.
    MESSAGE i899 WITH text-027.
    LEAVE LIST-PROCESSING.
    ELSE.
    MESSAGE e899 WITH text-027.
    ENDIF.
    ENDIF.
    ENDFORM. " FORM SELECT_DATA643_MSEG

  • Problems with file block settings

    We manage file block settings via group policy.  I have run into problems with the file block settings not working as advertised.
    I've run into a couple of issues:
    First, in Excel 2010 I would like to open Web Page and XML files in protected view rather than blocking entirely.  Our "Set Default File Block Behavior" in the GPO is set to "Blocked Files are not opened."  According to the
    documentation, the settings for individual file types should be able to override this behavior but this is not the case in my testing.  If I set "Web pages and Excel 2003 XML spreadsheets" to "Allow editing and Open in Protected View"
    the files are still blocked and the Trust Center list the file as Do not open, not the GPO setting of open in protected view.  I have verified via GPresults that the GPO applied successfully, rebooted the PC, etc.  The "Set Default File Block
    Behavior" is NOT overridden by individual file type settings.
    According to the "plan file block settings" technet article:
    The “Set default file block behavior” setting specifies how blocked files open (for example: does not open, opens in protected view, or opens in protected view but can be edited). If you enable this setting, the default file block behavior you specify applies
    to any file format that users block in the Trust Center UI. It also applies to a specific file format only if you both enable its file format setting (for more information about individual file format settings, see the tables in this article) and select the
    Open/Save blocked, use open policy option. Otherwise, if you configure an individual file format setting, it overrides the
    Set default file block behavior setting configuration for that file type.
    Second, even if I do change the set default file block behavior to open in protected view, I still cannot open XML spreadsheets.  The trust center says that the file format is set to open in protected view but when I attempt to open a file it behaves
    as if the setting was still set to block entirely.
    The only thing that works is setting it to "do not block" which is not where I'd like to go - I would for security reasons like these types of files to open in protected view but there doesn't seem to be any way to do this contrary to the Technet
    documentation.

    Hi,
    I had opened a case at Microsoft in 2012 about the «Open/Save Block, use open policy» parameter about HTM/HMTL files... Here is the answer I got from the support.
    Hope it will help
    Thank you for contacting Microsoft regarding your recent Office 2010 Hotfix request (SR 112022071246968) in reference to File Block settings on web pages. We have conducted a thorough investigation into this matter
    and while we recognize the impact the issue is having on your business, we cannot accept this Hotfix request because it is acting as designed.<u5:p></u5:p>
    Office will block any files that are explicitly set in the File Block UI by an Administrator when there is no built in validator.  The Office File Validation scans and validates certain kinds of files and will
    only display those applicable files in Protected View.  We could provide a safe experience in Protected View for HTM, but it wouldn't be a useful experience. Linked content of the web page is not available (images, stylesheets, javascript, etc), so the
    user would effectively see plain text. This is not the experience we want in Protected View, and it would encourage users to leave Protected View, putting their machine at risk. So HTM/HTML files are blocked.<u5:p></u5:p>
    <u5:p></u5:p>

  • Problem in Coding Block during the Acc Doc posting BAPI_ACC_DOCUMENT_POST

    Hi,
    I have a problem in the Coding Block of a FI invoice Document posting. In our project, we have implemented substitutions to derive SBL;SEGMENT field in the line item of a GL Account.
    I have created a program and in that i'm using BAPI_ACC_DOCUMENT_POST for posting the Accounting Document. During this BAPI call, it is not deriving the values of SBL and SEGMENT.
    But, when i'm posting through transaction FB01; the substitutions are getting triggered and finally values are being derived.
    Can anyone help on this as to why these values were not derived when it is being called through BAPI_ACC_DOCUMENT_POST. For COBL; is it really possible to post through this BAPI or something more has to be done.
    Very urjunt !!! Please
    Awaiting your valuable answers.
    Thanks
    Rohith

    Hi Rohith,
    to populate correctly the profit. Segment you should fill in the information used in derivation inside the BAPI CRITERIA table structure.
    In the below example the profit. Segment is derived from Sales Org. (VKORG) and Distribution Channel (VTWEG).
      Fill CRITERIA for CO-PA (Profitability Segment)
        REFRESH lt_criteria.
        wa_criteria-itemno_acc = lv_itemno_acc.
        wa_criteria-fieldname  = 'VKORG'.
        wa_criteria-character  = '1080'.
        APPEND wa_criteria TO lt_criteria.
        wa_criteria-itemno_acc = lv_itemno_acc.
        wa_criteria-fieldname  = 'VTWEG'.
        wa_criteria-character  = '01'.
        APPEND wa_criteria TO lt_criteria.
    If you need further information, please post your doubts here.
    Regards,
    Antonio
    Edited by: indetony on Sep 9, 2011 12:46 AM

  • Problem with DECODE block in WHERE clause

    Hi,
    I'm facing problem with DECODE statement. I just simulated my problem in the simple way as follows. If I execute this following query, I should get "hello", but I'm not getting anything (ZERO rows returned).
    SELECT 'hello' FROM DUAL
    WHERE 'sample1' in (DECODE(1, 1, '''sample1'', ''sample2'', ''sample3''',
    2, '''sample4'', ''sample5'', ''sample6'''
    I think some problem is there in my WHERE clause.
    But When I'm exeucting the following query as a seperate query, then I'm getting the value of DECODE block properly, but didn;t understnad why its not returning the same way when I'm putting the same DECODE statement in WHERE clause.
    SELECT DECODE(1, 1, '''sample1'', ''sample2'', ''sample3''',
    2, '''sample4'', ''sample5'', ''sample6'''
    FROM DUAL;
    Please help me to get out of this problem. Thank you so much in advance.
    Thanks,
    Ramji.

    The value returned by SELECT DECODE(1, 1, '''sample1'', ''sample2'', ''sample3''',2, '''sample4'', ''sample5'', ''sample6''') FROM DUAL;
    'sample1', 'sample2', 'sample3' is a single string. Consider it x.
    SELECT 'hello' FROM DUAL WHERE 'sample1' in ( DECODE(1, 1, '''sample1'', ''sample2'', ''sample3''',2, '''sample4'', ''sample5'', ''sample6'''));
    is like SELECT 'hello' FROM DUAL WHERE 'sample1' in ('x');
    or
    SELECT 'hello' FROM DUAL WHERE 'sample1' in ('''sample1'', ''sample2'', ''sample3''') and not
    SELECT 'hello' FROM DUAL WHERE 'sample1' in ('sample1', 'sample2', 'sample3');
    For this same reason SELECT 'hello' FROM DUAL WHERE 'sample1' in (select '''sample1'', ''sample2'', ''sample3''' from dual);
    also does'nt work.
    Please use INSTR to find whether 'sample1' exists in the string 'sample1', 'sample2', 'sample3'.

  • Problem with CVI blocking UART Callback

    Hi,
    I have been using LabWindows CVI 9.0 since a few years now and I have seen a problem that didn't blocked me until now.
    My LabWindows Software freezes, the code is no longer executed, when I hold a click on the interface, on a string for example.
    The problem is that I use a device that emits data continuously on a COM port. When I decide to drag the software window or simply hold a left click on the interace the software stop acquiring data from the COM callback and my software misses data.
    Do you have a solution for this problem ?
    Thank you

    HI Penou,
    In fact it is a good idea using multiple Threads to  avoid this kind of behavior.
    Maybe you are using ProcessSystemEvents to handle events,  on the same main thread. 
    If it is the case, when ProcessSystemEvents handles an event that starts a tracking loop, such as the user pulling down a menu, ProcessSystemEvents does not return until the tracking loop completes. In the case of pulling down a menu, the tracking loop does not complete until the user dismisses the menu. 
    You have several inforrmations about ProcessSystemEvents here.
    Regards,
    Rémi D.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> Les rencontres techniques de NI - Mesures et acquisition de données : de la théorie à la mise en ...

  • Problem in relational blocks(Parent Child Grand Child

    Hi all
    I am working on Oracle Forms 10g Release-2.
    I am facing a problem in a form which consists three relational block. Blocks are organised as below:
    1.Parent >> 2.Child. >> 3.Grand Child.
    In 2.Child Block I have multiple records, each record has detail records in Grand Child block. Now if I move cursor from parent block to child block in a record(2nd,3rd or any other) other than first record for the first time, the child and grand child blocks flash out automatically.But if click on first record of child block for the fisrt time, then this problem is not happening.In Grand child block I am not facing this kind of problem.
    Thanks
    Mokarem.

    'Flash out' means Child block and grand child block is cleared autromatically, if I navidate to the child block for the first time. But if I navigate to first record of child block then I am not getting this problem, but if I click 2nd or higher then this problem is happening.
    Thanks
    Mokarem.

  • Problem with ForEach block in BPM

    Hi,
    I have a scenario as follows:
    Collecting Idocs and send them separately via file channel (Does not make so much sense but I want to get used using the forEach Block)
    Loop (as long as "control" != false)
    Fork
    1. branch: Wait step 1 minute and container operation assign "control" = false (if no more idoc is received, loop stops after 1 minute)
    2. branch: receive step with correlation, container operation with append to multiline message, container operation assign "control" = true
    Mapping
    multiline message to single line message (same interface)
    ForEach Block
    Send Step with single line message
    My problem:
    x idocs get collected by the BPM and my file channel posts x idocs to the directory but it is always the same idoc and not x different ones.
    Any idea on that?
    Regards.
    Oliver.

    Yes, that's the blog I used.
    I have used the same interface for Send/Receive Steps, the Multi-Line Element and the Current Line Element. I restricted the Current Line Element to the block. Any other definition would not show up in the dropdown list, anyway.
    These are my settings for the Block:
    Step Name: Block1
    Description: [Blank]
    Mode: ForEach
    MultiLine Element: Idoc_Multi
    CurrentLine: Idoc_Local
    End Condition, Exceptions and Local Correlations: [Blank]
    Here are the settings for the Send Step:
    Step Name: Send1
    Description: [Blank]
    Mode: Asynchronous
    Create New transaction: [Not marked]
    Message: Idoc
    Ack: None
    Receiver from: Send Context
    All others: [Blank]
    I don't see any error?
    Regards.
    Oliver.

  • Problem with coding blocks

    Dear All,
    I am doing a BDC for  a particular transaction. The BDC program defaults some values. The problem is , at a particular screen the coding blocks screen was popping up..I did n't code this coding block screen..I want to supress that coding block screen. Client does n't wants the coding blocks screen.. Can some one help me to supress these coding blocks...
    Thanks in advance,
    King.

    BDC behave differently in background, so where ever coding block page comes out just key-in enter, you cannot surpress this value.
    Ex: BDC_OKCODE   "=ENTE"
    It will solve your problem.
    Reward points if useful.
    Regards,
    SaiRam

  • Problem with variant block

    Hi everibody
    I am nephiew with labview and i am trying to use "to variant" block.
    In the atteachment there is a picture of my VI.
    Where am i wrong?!
    Best regards
    Giovanni
    Attachments:
    variant.png ‏39 KB

    You are right but the problem is more complex.
    This is only a short vi.
    I am communicating with a PLC and to do that i have used a .NET library.
    The problem is that the library gives me some data from the plc in a To string variable. See the atteachment.
    Trhough the variable datatype i select the corrisponding case. In the case of boolean is not a metter. In the case of an int16 i don't know how i can do. I would like to make a different thing for all type of variables...
    is it clear?!
    in the atteachment there is the vi and two screenshot of it.
    Attachments:
    variant2.png ‏14 KB
    variant.png ‏11 KB
    Untitled 2.vi ‏33 KB

  • Problem populating date dimension with correct values

    Hi all,
    I have a 'simple' problem, but can't get it solved! The YTD calculations in the cube don't 'reset' at the right moment in time (they should 'reset' on the FISCAL year, but it actually seems to happen on the normal calendar year).
    Our dimensions and cubes are MOLAP. There is a relational table, containing columns with values for both a CALendar hierarchy as well as for a FISCAL year hierarchy. This table populates the date dimension (only the fiscal hierarchy as in MOLAP we only have a fiscal hierarchy). The result looks correct in the data viewer.
    The cube is populated from relational sources as well. One view provides the measure values and the CODE (business identifiers) values for each dimension involved. In case of the date dimension, it provides the code value for the involved level at which we load the cube (month).
    I made a very simple testcase with only 1 dimension (date) and 1 small cube. The cube uses only the date dimesion (to load cube on the fiscal hierarchy at month level) and has 1 base measure that is loaded with a simple number and 1 calculated measure that calculates the YTD value for this base measure. The calculated measure is added in the OWB cube designer using button "Generate Calculated Measures" and choosing the "Year to Date" function.
    When populating the cube and using the data viewer to check the results, the YTD measure values don't 'reset' at the fiscal year end. They seem to reset at the normal CALendar year end!?
    After some testing, I have concluded it has to do with the values I supply to populate the date dimension, but I can't figure out what the modification should be and I can't find any examples anywhere.
    Does anyone out there have a working YTD calculation in MOLAP?
    Any help much appreciated.
    Regards,
    Ed

    Sorry David, I am not sure I've got this right yet. I am looking at using the cumsum function, but I am not sure how to apply this. That is, I can see examples (cumsum(measure, total_dim, reset_dim)), but I think I cannot put such formula directly into the expression editor for a cube measure in OWB?
    Until now I have been using the standard available calculated measures in the OWB measure editor and I think they insert an xml template? I'll get the Excel Calculation Tool from OTN, to see if I can create the correct formula and paste that in OWB in the expression editor for the measure. (Does that tool need a ROLAP workspace or does it need / can it work with a MOLAP workspace?)
    Thanks and regards,
    Ed
    Edited by: EdSp on Jan 13, 2009 1:57 PM
    I have downloaded the Excel sheet and can see how it works, but it seems to "insert" the calculated measures straight into the AW. However we deploy the AW from OWB so I will be looking at getting something to enter/paste in the expression editor of OWB...

  • Problem with payment block code in MIRO

    Hi experts,
    I've a problem during invoice verification, the system doesn't set the payment block code R -Invoice verification but another payment block code and in this way the transaction MRBR doesn't show the invoice blocked.
    Is there in customizing an option for setting a specify payment code block for a company code?
    I've verified the OMR6 and OMR9, but the problem not solved.
    Thanks.
    Best regards,
    Gaetano

    You can Block the invoice by
    1. By defining the Block in payment terms
    2. By setting tolerance limits in OMR6 trxn
    3. and using Stochostic Block

  • SOLARIS 10 with iSCSI Problem "not a block device"

    Hi Guys.
    I almost reached it to build an iscsi connection with a Netgear readynas 2100.
    But I have still one Point which makes me a Problem!!!
    Everything works, except mounting the device....
    It always Sais me: "not a block device"
    At the bottom you can see an output of the whole configuration that I did.
    Has anybody maybe a tip for me? Thanks in advance, Mischa
    login as: root
    Using keyboard-interactive authentication.
    Password:
    Last login: Fri Dec 18 01:18:30 2009 from pnm
    Sun Microsystems Inc. SunOS 5.10 Generic January 2005
    Sourcing //.profile-EIS.....
    root@sun001 # iscsiadm list discovery
    Discovery:
    Static: disabled
    Send Targets: disabled
    iSNS: disabled
    root@sun001 # iscsiadm modify discovery -s enable
    root@sun001 # iscsiadm modify discovery -t enable
    root@sun001 # iscsiadm modify discovery -i enable
    root@sun001 # devfsadm
    root@sun001 # devfsadm -C
    root@sun001 # ping 172.16.251.215
    172.16.251.215 is alive
    root@sun001 # iscsiadm list discovery
    Discovery:
    Static: enabled
    Send Targets: enabled
    iSNS: enabled
    root@sun001 # iscsiadm add discovery-address 172.16.251.215
    root@sun001 # iscsiadm list discovery-address
    Discovery Address: 172.16.251.215:3260
    root@sun001 # iscsiadm list discovery-address -v
    Discovery Address: 172.16.251.215:3260
    Target name: iqn.2009-12.Z-NAS-B0204:znaszim
    Target address: 172.16.251.215:3260, 1
    root@sun001 # format
    Searching for disks...done
    AVAILABLE DISK SELECTIONS:
    0. c1t60014052E198270014ED001000000000d0 <DEFAULT cyl 65267 alt 2 hd 255 sec 63> znaszim1
    /scsi_vhci/disk@g60014052e198270014ed001000000000
    1. c3t0d0 <DEFAULT cyl 17747 alt 2 hd 255 sec 63>
    /pci@7b,0/pci1022,7458@11/pci1000,3060@2/sd@0,0
    2. c3t2d0 <DEFAULT cyl 17747 alt 2 hd 255 sec 63>
    /pci@7b,0/pci1022,7458@11/pci1000,3060@2/sd@2,0
    Specify disk (enter its number): ^C
    root@sun001 # dev
    devattr devfree devfsadm devinfo devlinks devnm devreserv
    root@sun001 # dev
    devattr devfree devfsadm devinfo devlinks devnm devreserv
    root@sun001 # dev
    devattr devfree devfsadm devinfo devlinks devnm devreserv
    root@sun001 # devfsadm -c iscsi
    root@sun001 # iscsiadm list target -S
    Target: iqn.2009-12.Z-NAS-B0204:znaszim
    Alias: LIO Target
    TPGT: 1
    ISID: 4000002a0000
    Connections: 1
    LUN: 0
    Vendor: LIO-ORG
    Product: FILEIO
    OS Device Name: /dev/rdsk/c1t60014052E198270014ED001000000000d0s2
    root@sun001 # mkdir /export/iscsi
    root@sun001 # mount /dev/rdsk/c1t60014052E198270014ED001000000000d0s2 /export/iscsi/
    mount: /dev/rdsk/c1t60014052E198270014ED001000000000d0s2 not a block device
    root@sun001 #
    -----------------------------------------------------------------

    Ok. Sorry i have to explaine it in an other way.
    The Storage Device is a Netgear Ready NAS 2100.
    Netgear Ready NAS with a Linux os.
    The OS Supports different Protocols like: CIFS / FTP / HTTP/ iSCSI etc...
    Now im trying to use an other protocoll (cifs) to store the data on the Netgear NAS.
    i found smbclient and was able to open a connection to the NAS.
    root@sun001 # /usr/sfw/bin/smbclient //172.20.0.51/video_net -U usrvideo
    Password:
    Domain=[Z-NAS-A0111] OS=[Unix] Server=[Samba 3.4.5]
    smb: \> ls
    . D 0 Tue Feb 23 11:12:04 2010
    .. D 0 Thu Feb 18 10:38:52 2010
    172.22.1.58.lnk A 747 Fri Feb 19 19:18:37 2010
    172.22.1.55.lnk A 747 Fri Feb 19 18:41:07 2010
    65535 blocks of size 33553920. 65535 blocks available
    smb: \>
    Is there a way to mount the smb connection when the server starts up?
    I have to find a way to attach the NAS like a local folder...
    And that is why i choose iSCSI before..
    Regards
    mischa
    Edited by: mischu on Feb 26, 2010 2:34 AM

  • Problems populating a PDF file

    Good afternoon everyone,
    In the latest Firefox update (July 21st) it seems that we have received many complaints about not being able to scan into our browser based system. We use the dynamic web twain as a plugin to allow this. We were previously able to do so until this latest update.
    What happens is when scanning or uploading it does not generate the PDF file. Almost as if something is blocking this process from happening.
    We have tried the following:
    1) Allowing all plugins.
    2) Under permissions we have allowed the plugins as well.
    3) Reset the browsers
    4) Start in safe mode.
    5) Disable all plugins and re-enable
    6) Clear browser history and cache numerous times.
    7) Using Adobe Reader in Firefox (default) and using FIrefox PDF viewer.
    This only happens on Firefox but not on Chrome. Our clients mostly prefer using Firefox.
    Any advice?
    Thanks!

    Hi DannyPPC1,
    Thanks for this question, I apologize for the late reply. If you are still getting reports of this issue, can you tell me how many reports of this issue you have? Or a guess at the number of clients experiencing this problem?
    Best regards,
    Michelle Luna
    Mozilla Support Manager

Maybe you are looking for

  • Calendar Server Proxy possible ?

    Hi, Is there a way to proxify Calendar Server as MMP with Messaging Server ? Calendar Server 6.x Best regards. Jo

  • Maxl data load error

    Hi All, I'm trying to load data from a csv file to an Aggregate Storage cube. I keep getting a wierd error "Syntax error near ['$']". Where there is no $ sign in either the script or the flat file source from where I'm loading data. This same script

  • How to upgrade iphoto 8.1.2 to the latest version????

    My Imac is 2009.   I have Lion 10.7.2   I want to update to the latest Iphoto.  When I click on download in the APP store,  all I get is some nonsense about how I am " subscribing to a photo feed" and "am I sure I want to do that?"    I can't get the

  • Can i use a Dynamic Calc member as a Shared member

    Can i use a Dynamic Calc member as a Shared member in other hierarchy? is it mandatory to make a member as Stored type if we want to use the same member in other hierarchy as a shared member.? -KK

  • I too updated iTunes to 10.5.2

    now it doesn't work, it doesn't show my iPod when it's plugged in.I restarted my Mac no change. iTunes will play a couple songs then I can't get it to do anything else can't check or uncheck songs.