Can anyone explain briefly  What is LIS and LO?

hai sapbw-gurus,
Can anyone explain briefly  What is LIS and LO?
what is the different b/w LIS and LO?
how u will create these two in sap bw?

hi,
  LIS is old technique through which we can load the data. Here we use typical delta and full up-loading techniques to get data from an logistics application, it uses V1 and V2 update, it means that it was a synchronous or asynchronous update from the application documents to LIS structures at the time when the application document was posted.
LO Cockpit is new technique i think from bw 3.0 ( i am not sure) which uses V3 which is an update that you can schedule, so it does not update at the time when you process the application documents, but it will be posted at a later stage.
Another big difference between LO and LIS is that,
You have separate datasources for header level, item level and schedule line level available in LO, you can choose at which level you want to extract your data and switch off others, which results in reduced data.
we do not have this flexibility with LIS structures
with Plug-In 2001.2 S2xx-Structures have been replaced by Logistics Extraction Cockpit. However, R/3 releases 4.x support S2xx-Structures and Logistics Extraction Cockpit in parallel.
With new LBWE extractors there are a lot of benefits:
- Detailed Extraction: extraction can be deactivated (e.g. Schedule Line Data) leads to leaner extractors with less volume.
Document Changes: only BW-relevant data changes will be updated (less upload volume).
- LIS-Tables are not updated reduced data volume due to avoided redundancy.
- Update with Batch-Process (V3) -> no load on daily business (but now there are available different delta methods as the direct delta...)
- No LIS-Know How necessary.
- Functional Enhancements easy to be done.
- Central, uniform maintenance tool for logistics applications (LBWE)
- No Delta-Tables (SnnnBIW1/-2) no double update, no double Data-Storage
- A lot of flows are covered: Purchasing,Inventory Controlling, Shop Floor Control, Quality Management, Shipment, Sales, Shipping, Billing, Plant Maintenance, Customer Service, Retailing....
LOGISTIC COCKPIT DELTA MECHANISM - Episode one: V3 Update, the ‘serializer’
/people/sap.user72/blog/2004/12/16/logistic-cockpit-delta-mechanism--episode-one-v3-update-the-145serializer146
LOGISTIC COCKPIT DELTA MECHANISM - Episode two: V3 Update, when some problems can occur...
/people/sap.user72/blog/2004/12/23/logistic-cockpit-delta-mechanism--episode-two-v3-update-when-some-problems-can-occur
LOGISTIC COCKPIT DELTA MECHANISM - Episode three: the new update methods
/people/sap.user72/blog/2005/01/19/logistic-cockpit-delta-mechanism--episode-three-the-new-update-methods
LOGISTIC COCKPIT - WHEN YOU NEED MORE - First option: enhance it !
/people/sap.user72/blog/2005/02/14/logistic-cockpit--when-you-need-more--first-option-enhance-it
differences between LO and LIS
hope it helps,
regards,
partha

Similar Messages

  • I got an iphone from Hong Kong which is locked one. Can anyone explain me what does a locked iphone means. How do I use it in India now, with my own sim card. How do I unlock it???

    I got an iphone from Hong Kong which is locked one. Can anyone explain me what does a locked iphone means. How do I use it in India now, with my own sim card. How do I unlock it???

    If your iPhone is locked to a wireless provider, only that wireless provider
    can unlock it. Contact the wireless provider in Hong Kong to see if they
    offer unlocking and if you qualify.
    If your iPhone is locked to an AppleID that you do not know, return it for
    a refund as it is useless. Only the person whose AppleID was used for
    activation can remove the lock. There is no workaround for Activation Lock.
    If neither of the above is what you are facing, provide more detail so someone
    may offer a solution.

  • Can anyone explain me what is Attribute Changerun, in detail, Urgent

    Can anyone explain me what is Attribute Changerun, in detail

    If you assign the process type Attribute Change run to a process chain you must define a variant. With this variant you have to define the InfoObjects for which you want to activate the master data. There are four different possibilities:
         HIERARCHY: direct selection of the hierarchy which need to be activated
         INFOOBJECT: direct selection of the infoobjects which need to be activated
         LOADING: indirect selection: reference to an InfoPackage, which must be loaded before in the process chain. Combined with the meta data of these objects and the instance information the system derives the affected InfoObjects and hierarchies. If the chosen LOADING object is not in the process chain, the system automatically inserts the chosen infopackage in process chain.
         REPORTVARIANT: indirect selection: reference to a change run variant which you can define with RSDDS_AGGREGATES_MAINTAIN (SE38) or TCode RSATTR  Executing the Attribute/hierarchy change run with Variant:
    Instead of applying the InfoObjects or hierarachies directly to the process variant in RSPC you can create a central variant for the report RSDDS_AGGREGATES_MAINTAIN. You can assign InfoObjects and hierarchies to this report variant. This central variant could be used by several process variants in RSPC. The benefits are central maintenance, ..

  • Can anyone explain me what is interface

    hi gurus
    can anyone explain me what is interface
    tahnk you
    regards
    kals.

    Hi
    by using rs_selfield
    ty to call dynamic subroutine..
    FORM user_command USING r_ucomm LIKE sy-ucomm
    rs_selfield TYPE slis_selfield. "#EC CALLED
    read table rs-selfield with key cond = 'X'
    endform.
    see the below example
    REPORT Z_GET_REFRESH no standard page heading.
    type-pools : slis.
    tables : makt,
    mara.
    data : i_fieldcat type slis_t_fieldcat_alv.
    CONSTANTS :
    gc_refresh TYPE syucomm VALUE '&REFRESH'.
    data : begin of i_makt occurs 0,
    matnr like makt-matnr,
    maktx like makt-maktx,
    end of i_makt.
    data : v_repid like sy-repid,
    g_user_command type slis_formname value 'USER_COMMAND',
    g_status_set type slis_formname value 'SET_PF_STATUS',
    lt_event_exit TYPE slis_t_event_exit,
    ls_event_exit TYPE slis_event_exit.
    DATA:LC_GLAY TYPE LVC_S_GLAY.
    select-options s_matnr for mara-matnr .
    start-of-selection.
    select matnr maktx from makt into table i_makt
    where matnr in s_matnr.
    end-of-selection.
    Fill the fieldcatlog
    perform fill_field.
    Call the FM
    perform call_fm.
    *& Form fill_field
    text
    --> p1 text
    <-- p2 text
    FORM fill_field.
    data wa_fieldcat type slis_fieldcat_alv.
    clear : wa_fieldcat.
    wa_fieldcat-tabname = 'I_MAKT'.
    wa_fieldcat-fieldname = 'MATNR'.
    wa_fieldcat-outputlen = '18'.
    wa_fieldcat-seltext_l = 'Material #'.
    wa_fieldcat-col_pos = '1'.
    append wa_fieldcat to i_fieldcat.
    clear : wa_fieldcat.
    wa_fieldcat-tabname = 'I_MAKT'.
    wa_fieldcat-fieldname = 'MAKTX'.
    wa_fieldcat-outputlen = '40'.
    wa_fieldcat-seltext_l = 'Material Desc'.
    wa_fieldcat-col_pos = '2'.
    append wa_fieldcat to i_fieldcat.
    ENDFORM. " fill_field
    *& Form call_fm
    text
    --> p1 text
    <-- p2 text
    FORM call_fm.
    v_repid = sy-repid.
    LC_GLAY-EDT_CLL_CB = 'X'.
    CLEAR ls_event_exit.
    ls_event_exit-ucomm = gc_refresh. " Refresh
    ls_event_exit-after = 'X'.
    APPEND ls_event_exit TO lt_event_exit.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_INTERFACE_CHECK = ' '
    I_BYPASSING_BUFFER =
    I_BUFFER_ACTIVE = ' '
    I_CALLBACK_PROGRAM = v_repid
    I_CALLBACK_PF_STATUS_SET = g_status_set
    I_CALLBACK_USER_COMMAND = g_user_command
    I_CALLBACK_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_END_OF_LIST = ' '
    I_STRUCTURE_NAME =
    I_BACKGROUND_ID = ' '
    I_GRID_TITLE =
    I_GRID_SETTINGS = LC_GLAY
    IS_LAYOUT =
    IT_FIELDCAT = i_fieldcat
    IT_EXCLUDING =
    IT_SPECIAL_GROUPS =
    IT_SORT =
    IT_FILTER =
    IS_SEL_HIDE =
    I_DEFAULT = 'X'
    I_SAVE = ' '
    IS_VARIANT =
    IT_EVENTS =
    IT_EVENT_EXIT = lt_event_exit
    IS_PRINT =
    IS_REPREP_ID =
    I_SCREEN_START_COLUMN = 0
    I_SCREEN_START_LINE = 0
    I_SCREEN_END_COLUMN = 0
    I_SCREEN_END_LINE = 0
    IT_ALV_GRAPHICS =
    IT_ADD_FIELDCAT =
    IT_HYPERLINK =
    I_HTML_HEIGHT_TOP =
    I_HTML_HEIGHT_END =
    IT_EXCEPT_QINFO =
    IMPORTING
    E_EXIT_CAUSED_BY_CALLER =
    ES_EXIT_CAUSED_BY_USER =
    TABLES
    T_OUTTAB = i_makt
    EXCEPTIONS
    PROGRAM_ERROR = 1
    OTHERS = 2
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM. " call_fm
    FORM USER_COMMAND *
    FORM user_command USING r_ucomm LIKE sy-ucomm
    rs_selfield TYPE slis_selfield. "#EC CALLED
    data i_RSPARAMS like RSPARAMS occurs 0.
    CASE R_UCOMM.
    WHEN '&IC1'.
    read table i_makt index rs_selfield-tabindex.
    SET PARAMETER ID 'MAT' FIELD i_makt-matnr.
    if not i_makt-matnr is initial.
    call transaction 'MM02' and skip first screen.
    endif.
    when '&REFRESH'.
    CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
    EXPORTING
    CURR_REPORT = v_repid
    IMPORTING
    SP =
    TABLES
    SELECTION_TABLE = i_RSPARAMS
    EXCEPTIONS
    NOT_FOUND = 1
    NO_REPORT = 2
    OTHERS = 3
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    submit z_get_refresh with selection-table i_RSPARAMS.
    rs_selfield-refresh = 'X'.
    ENDCASE.
    MOVE '&REFRESH' TO r_ucomm.
    ENDFORM.
    FORM set_pf_status *
    FORM SET_PF_STATUS USING rt_extab TYPE slis_t_extab.
    DELETE Rt_extab WHERE fcode = gc_refresh.
    SET PF-STATUS 'STANDARD_FULLSCREEN' OF PROGRAM 'SAPLKKBL'
    EXCLUDING Rt_extab.
    *SET PF-STATUS 'STANDARD' EXCLUDING rt_extab.
    SET TITLEBAR sy-tcode.
    ENDFORM.

  • Can anyone tell me what is "publish and subscribe model"?

    hi experts:
    can anyone tell me what is "publish and subscribe model" in detail?
    many thanks

    Publish-Subscribe Model
    Purpose
    This model defines how you publish messages to and receive messages from a well-known node. Such nodes are referred to as topics. You can use the model for:
    ·        Creating Message Producer to a Topic
    ·        Creating Message Consumer to a Topic
    ·        Managing Durable Subscriptions
    Chk this for more.
    http://help.sap.com/saphelp_nw04/helpdata/en/aa/34518672fa44c79340c1f61556443e/frameset.htm

  • I recently installed Acrobat Pro X on my Mac. I initially accepted the terms of agreement, but then every few seconds the same prompted window for the terms of agreement keeps popping up. Can anyone explain why this is happening, and how to resolve?

    I recently installed Acrobat Pro X on my Mac. I initially accepted the terms of agreement, but then every few seconds the same prompted window for the terms of agreement keeps popping up. Can anyone explain why this is happening, and how to resolve?

    Have you tried reinstalling the original drive? Same symptoms with it?

  • Can anyone explain why my Dell laptop and my iphone can "see" a server in Luton when using a wireless broadband (I get 20 Mbps download speed) but my ipad can not see this server and finds one in Milton Keynes which gives me 0.37 download speed.

    Can anyone explain why my Dell laptop and my iphone can "see" a server in Luton when using a wireless broadband (I get 20 Mbps download speed) but my ipad can not see this server and finds one in Milton Keynes which gives me 0.37 download speed.

    Can anyone explain why my Dell laptop and my iphone can "see" a server in Luton when using a wireless broadband (I get 20 Mbps download speed) but my ipad can not see this server and finds one in Milton Keynes which gives me 0.37 download speed.

  • Can anyone explain me abt Cash inflow and outflow

    Hi all,
    Can anyone explain me the cummulative cash inflow and out flow available while creating an info object. with an example in realtime scenario.
    thanxs in advance
    hari

    Hi,
    Mainly inflow and outflow is using in inventory only. So take the inventory live scenario and understand the logic. Pay some passion to read the below doc. Coz it will explain the complete design of the inventory.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f83be790-0201-0010-4fb0-98bd7c01e328
    Regards,
    Vivek V

  • Can anyone explain the integration of sd and mm with fico

    Hi all,
    Can anyone explain with an scenario how fico integrates with sd and mm.
    thanxs
    regds
    hari

    the following organisation units are to be set up to integrate SD with FI.
    1. Sales organisation
    2. Plant
    3. Storage location (under material management)
    4. Shipping point
    5. Distribution Channel
    6. Division.
    In addition u can also create sales office, sales group but it is optional.
    In order to integrate, follow the following steps:
    1. Assign sales organisation to co code.
    2. Assign plant to company code.
    3. Assign distribution channel, division to sales organisation
    4. Determine sales area (it is a combination of sales organisation, distribution channel and division)
    5. Assign SO - Distribution channel - Plant
    6. Assign sales area to credit control area.
    7. Assign shipping point to plant (under logistics execution).
    After defining and assigning the organisation units, u can view the properly integrated structure under Tcode EC01.
    Having created the above SD organisation units, there are only a few more to create for FI-MM integration.
    1. Purchasing organisation.
    2. Valuation level ( generally plant)
    3. Location (optional and need to be created only when required by client)
    On creating the above,
    1. Assign Purchasing org to co code.
    2. Assign purchasing orgn to plant
    3. Assign business area to plant / valuation area ( in this state the business area against your plant).
    Hope this solves your query.
    Assign points if useful.

  • Can anyone explain me what is netweaver

    Hi All,
    what is netweaver....can anyone explain me..
    cheers,
    Raghavesh

    hi,
    just read this
    http://en.wikipedia.org/wiki/NetWeaver
    this is a basic explanation with all components
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Can anyone tell me what is this and how to convert it?

    PK        s Ë<^Æ2 '  '     mimetypeapplication/vnd.oasis.opendocument.textPK        s Ë<               Configurations2/statusbar/PK        p Ë<           '  Configurations2/accelerator/current.xml  PK        s Ë<               Configurations2/floater/PK        s Ë<               Configurations2/popupmenu/PK        s Ë<               Configurations2/progressbar/PK        s Ë<               Configurations2/menubar/PK        s Ë<               Configurations2/toolbar/PK        s Ë<               Configurations2/images/Bitmaps/PK        s Ë<              layout-cachecd`d(ðe`` àd``á„1 `  C ÆP†14aŒ  # È  PK  # /V&  Q  PK        s Ë<              content.xmlÝ][sÛȱ~?¿b¬T&#157;'Š²ì½*Y¹d›¶¸‘,•¤]gŸRCbH"    Šæ>凜óçòKN&#127;Ý= € ‰Šå*ïIUÖ 0מ¾|} è/¯>M3sçJŸ ùO{‡Ýç{ÆåÃ"IóñO{¿Ü¼ÛÿaïÕñ&#127;ý¥ &#141;Ò¡;JŠá|êòj&#127;Xä ýk¨wî&#143;äíO{ó2?*¬OýQn§Î UãbæòÐë¨Ùúˆç’'¾Zf;wçÆÍÞ•ûTíÚ m[}í`÷™¹q³wRÚÅ®&#157;Ñ–ˆÚì>*víüÉgû£‚¨>&#157;Ù*]Yŧ,Ío&#127;Ú›TÕìèà`±Xt /»E9>8üñÇ  øm\ð0¶›ÍËŒ[%à —9Læ  »‡ ¡íÔUv×õ¡msIù|:påΤ±•];U&#127;7Þ™#îÆ[H3œØrgÞàÆíã}™ì~¼/“fß©&[Î䇃szÉÿ9?«y¡œî: Ú¶H5,ÓÙÎÛ”ÖÍþEQÄ¥¢ƒ (/÷Åóçß Èï&#141;Ö‹{›/Ê´re£ùðÞæC› #Å‹é&¢Q»Ã j±ïîÀ¦‘ñA ¿¥Ã‹ y  ûdëÐ&#127;;?» NÜÔÖ&#141;Ó‡ 粒¯l^S¦Ä!lÝé· ¥› e  3Ú]aÒi½ˆk›TÓl»¸ãmh:.“dcSZÎË  } ¼ý»Ô-þ Ù0uYàù¸ ]œû4seŠu٠Ǻ?õD :êbvÔè-œ¥= –…6Àë9ªJ›{œ É+^éòhÓ¾ËÄØÇÔ¼N …Ô &#157;¦Ïªƒ" ½(“Q—~Ù; FI Ú Ä #2Nû#;tû‰ fþø/¢\âc#¿cW?íÝØI1µ‡{†´Hh2M³ex³wð@&#127;¢ˆ7 ÜÂ\Që|Ã8ÿmg…ÿóJ;y¸gZC£ýþØåDf’™RÇ«[ÌÒjHZåΖ)LÑCK;¡fÙ† …çÛ§ö‹ÔûÏ™ú:&#157;^Ï7 #¾¸gò¥¯ÜôsfדÛz¤Ÿ?ûÁ6VÓçv^ àïá>&#143; y&#144;ÿÛZëåaœK 9³¥ —v6 /è 0 ÿ²¯ô%Å“Ø2Ù  ÇNû3’GWV)qÛ¨`À³o³tL‚6t9+féñ&#143;¹¯ÒÑrß *¡q EI‚?²™— 6Ö{Ïâ_|•‹—6Ü»=  —O&#127;§E¼øfFª8<[¸t
    ¬ ‡Iº˜áž u9„¤‹d‰Ãf<á-Ã1X– p°²aR +µ1hN¨mN  o³¥'–&#129;@É(,·¡C Ùšº@¸S»Lœë  ‚ ¡AÒ’°)K? ë¢P©dò

    Thank you for your answer.
    I  moved my notepads to a USB and when I opened the notepad I got this strange
    characters. Since you said it is a zip file I downloaded and unzip software but it
    can't open it . This is a note pad. I don't know what I did wrong when
    I passed it to the USB that when I transfered it to the pc it came out like that.
    Anything I can do to get my text back?

  • Can anyone explain how this works (vlans and bridge groups)

    Can someone please explain how this works...I have started to have problems but nothing changed. My problems are vlan1 and 1000 getting blocked on the switchport where the root bridge is attached.
    ROOT BRIDGE:
    ssid state
    station-role root bridge
    rts threshold 4000
    concatenation
    interface Dot11Radio0.1
    encapsulation dot1Q 1 native
    no ip route-cache
    no snmp trap link-status
    bridge-group 1
    bridge-group 1 spanning-disabled
    interface Dot11Radio0.911
    encapsulation dot1Q 911
    no ip route-cache
    no snmp trap link-status
    bridge-group 5
    interface Dot11Radio0.1000
    encapsulation dot1Q 1000
    no ip route-cache
    no snmp trap link-status
    bridge-group 2
    bridge-group 2 spanning-disabled
    interface Dot11Radio0.2001
    encapsulation dot1Q 2001
    no ip route-cache
    no snmp trap link-status
    bridge-group 253
    bridge-group 253 spanning-disabled
    interface Dot11Radio0.2120
    encapsulation dot1Q 2120
    no ip route-cache
    no snmp trap link-status
    bridge-group 7
    interface Dot11Radio0.2330
    encapsulation dot1Q 2330
    no ip route-cache
    no snmp trap link-status
    bridge-group 3
    bridge-group 3 spanning-disabled
    interface Dot11Radio0.2336
    encapsulation dot1Q 2336
    no ip route-cache
    no snmp trap link-status
    bridge-group 4
    interface Dot11Radio0.2350
    encapsulation dot1Q 2350
    no ip route-cache
    no snmp trap link-status
    bridge-group 6
    interface Dot11Radio0.2901
    encapsulation dot1Q 2901
    no ip route-cache
    no snmp trap link-status
    bridge-group 255
    bridge-group 255 spanning-disabled
    interface Dot11Radio0.2902
    encapsulation dot1Q 2902
    no ip route-cache
    no snmp trap link-status
    bridge-group 254
    bridge-group 254 spanning-disabled
    interface FastEthernet0
    no ip address
    no ip route-cache
    interface FastEthernet0.1
    encapsulation dot1Q 1
    no ip route-cache
    no snmp trap link-status
    interface FastEthernet0.911
    encapsulation dot1Q 911
    no ip route-cache
    no snmp trap link-status
    bridge-group 5
    interface FastEthernet0.1000
    encapsulation dot1Q 1000 native
    ip address 10.0.32.10 255.255.255.0
    no ip route-cache
    no snmp trap link-status
    bridge-group 1
    interface FastEthernet0.2001
    encapsulation dot1Q 2001
    no ip route-cache
    no snmp trap link-status
    bridge-group 253
    bridge-group 253 spanning-disabled
    interface FastEthernet0.2120
    encapsulation dot1Q 2120
    no ip route-cache
    no snmp trap link-status
    bridge-group 7
    interface FastEthernet0.2330
    encapsulation dot1Q 2330
    no ip route-cache
    no snmp trap link-status
    bridge-group 3
    interface FastEthernet0.2336
    encapsulation dot1Q 2336
    no ip route-cache
    no snmp trap link-status
    bridge-group 4
    interface FastEthernet0.2350
    description 81 River Rd - Labor
    encapsulation dot1Q 2350
    no ip route-cache
    no snmp trap link-status
    bridge-group 6
    interface FastEthernet0.2901
    encapsulation dot1Q 2901
    no ip route-cache
    no snmp trap link-status
    bridge-group 255
    bridge-group 255 spanning-disabled
    interface FastEthernet0.2902
    encapsulation dot1Q 2902
    no ip route-cache
    no snmp trap link-status
    bridge-group 254
    bridge-group 254 spanning-disabled
    interface BVI1
    ip address 10.0.32.10 255.255.255.0
    no ip route-cache
    ip default-gateway 10.0.32.1

    NON-ROOT BRIDGE#2:
    ssid state
    station-role non-root bridge
    rts threshold 4000
    concatenation
    infrastructure-client
    interface Dot11Radio0.1
    encapsulation dot1Q 1 native
    no ip route-cache
    bridge-group 1
    bridge-group 1 spanning-disabled
    interface Dot11Radio0.1000
    encapsulation dot1Q 1000
    no ip route-cache
    bridge-group 254
    bridge-group 254 spanning-disabled
    interface Dot11Radio0.2001
    encapsulation dot1Q 2001
    no ip route-cache
    bridge-group 252
    bridge-group 252 spanning-disabled
    interface Dot11Radio0.2336
    encapsulation dot1Q 2336
    no ip route-cache
    bridge-group 251
    bridge-group 251 spanning-disabled
    interface Dot11Radio0.2901
    encapsulation dot1Q 2901
    no ip route-cache
    bridge-group 253
    bridge-group 253 spanning-disabled
    interface Dot11Radio0.2902
    encapsulation dot1Q 2902
    no ip route-cache
    bridge-group 255
    bridge-group 255 spanning-disabled
    interface FastEthernet0
    no ip address
    no ip route-cache
    hold-queue 80 in
    interface FastEthernet0.1000
    encapsulation dot1Q 1000 native
    no ip route-cache
    bridge-group 1
    interface FastEthernet0.2001
    encapsulation dot1Q 2001
    no ip route-cache
    bridge-group 252
    bridge-group 252 spanning-disabled
    interface FastEthernet0.2336
    encapsulation dot1Q 2336
    no ip route-cache
    bridge-group 251
    bridge-group 251 spanning-disabled
    interface FastEthernet0.2901
    encapsulation dot1Q 2901
    no ip route-cache
    bridge-group 253
    bridge-group 253 spanning-disabled
    interface FastEthernet0.2902
    encapsulation dot1Q 2902
    no ip route-cache
    bridge-group 255
    bridge-group 255 spanning-disabled
    interface BVI1
    ip address 10.0.32.11 255.255.255.0
    no ip route-cache
    ip default-gateway 10.0.32.1

  • My iPod touch (3rd gen) isn't putting out sound other than static and high pitched noises through the tv hookup, the built in speakers, and headphones. Can anyone tell me what's wrong and how to fix it?

    Everything on my iPod touch (3rd gen) works just fine except the audio out put.

    Try #2 and #3 in link below. If neither work, you most likely have a hardware issue. Contact Apple or a third-party service center.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • Can anyone explain.. what happen?? to the error...

    C:\j2sdk1.4.1_01\bin>javac FileMenu.java
    FileMenu.java:5: package packages does not exist
    import packages.SplashScreen;
    ^
    .\SplashScreen.java:6: 'class' or 'interface' expected
    package packages;
    ^
    2 errors
    Referring -- I am trying to do a packages on both program... 1 file call.. FileMenu.java.. and the other one call.. SplashScreen.java
    Why could this happen?

    I believe you may have the package statement and your import statement in the wrong order.
    IIRC the package statement must come first.
    You don't need to import stuff in the same package anyway.

  • Can anyone tell me what this is and if i need to worry about this

    Terminate airdrop P2P link,
    then: StatusMonitor::copyMyAppleIDSecIdentity(CSIdentityErrorDomain -100,
    then Wormhole Server::copymyAppleIDSecIdentity returned Null,
    then firewall::::finder is listening from............................ addy is there
    then firewall: finder is listening from ................ proto=6
    all new messages in console when i connect through airdrop to a certain mac book user

    https://discussions.apple.com/thread/3380580?start=0&tstart=0

Maybe you are looking for