Need steps in creation of LO extractor

Hi All,
I am new to SAP BI, I  am working on **LO and FI-Sl extractor..can any of you please provide me the detail steps in creation of these extractors.
Please do the needful by providing the required information.
thanks,
Vinay.

Hi Vinay ,
Plz find the steps below for LO
LO :
1. Run T-Code LBWE
2. Select your area EX : You want to activate the DS : 2LIS_02_SCL.Then u need to Expand the Purchaisdng application component.
3. Clcik on maange extractor
      -  Using this you are going to select the Required fields in u r struture by dragging from right to left
4. Click on the DS : 2LIS_02_SCL
      -Here you will set the options like slection,hide  etc...
5. Activate
6. Job Control..
7. Update mode .
  -  Used queued delta option.
8 Your LO DS is available in RSA6 T-Code.
9 You need to fill the data for the DS by running the T-Code "OLI2BIW".
10.Check the dara for the DS in RSA3.
Regardds
Ram

Similar Messages

  • I need Drill through creation step by step process in the BPC NW7.5

    Hi,
    I am doing SAP BPC Migration project.
    In this I want to create Drill throughs as usal in the MS version.
    I need step by step process to do this,Could you please help me in this as early as possible.
    Thanks and Regards
    Krishna

    and what's a firewire port? how do i know if i have one?

  • Step by step - Bapi creation

    hi,
    I want to learn BAPIs..........suggest me links to get step by step BAPI creation procedure.
    thanks in advance....

    Hi
    BAPI-step by step
    http://www.sapgenie.com/abap/bapi/example.htm
    list of all bapis
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    for BAPI's
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sappoint.com/abap/bapiprg.pdf
    http://www.sappoint.com/abap/bapiactx.pdf
    http://www.sappoint.com/abap/bapilst.pdf
    http://www.sappoint.com/abap/bapiexer.pdf
    http://service.sap.com/ale
    http://service.sap.com/bapi
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
    http://www.planetsap.com/Bapi_main_page.htm
    http://www.topxml.com/sap/sap_idoc_xml.asp
    http://www.sapdevelopment.co.uk/
    http://www.sapdevelopment.co.uk/java/jco/bapi_jco.pdf
    Also refer to the following links..
    www.sappoint.com/abap/bapiintro.pdf
    www.sap-img.com/bapi.htm
    www.sap-img.com/abap/bapi-conventions.htm
    www.planetsap.com/Bapi_main_page.htm
    www.sapgenie.com/abap/bapi/index.htm
    Checkout !!
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    u can check the below the material also
    what is BAPI?
    BAPI stands for Business API(Application Program Interface).
    I have answered this question before..
    A BAPI is remotely enabled function module ie it can be invoked from remote programs like standalone JAVA programs, web interface etc..
    You can make your function module remotely enabled in attributes of Function module but
    A BAPI are standard SAP function modules provided by SAP for remote access. Also they are part of Businees Objest Repository(BOR).
    BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects. You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA. in this case u only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. Whenever possible, a standardized BAPI must be used in preference to an individual BAPI.
    The following standardized BAPIs are provided:
    Reading instances of SAP business objects
    GetList ( ) With the BAPI GetList you can select a range of object key values, for example, company codes and material numbers.
    The BAPI GetList() is a class method.
    GetDetail() With the BAPI GetDetail() the details of an instance of a business object type are retrieved and returned to the calling program. The instance is identified via its key. The BAPI GetDetail() is an instance method. BAPIs that can create, change or delete instances of a business object type
    The following BAPIs of the same object type have to be programmed so that they can be called several times within one transaction. For example, if, after sales order 1 has been created, a second sales order 2 is created in the same transaction, the second BAPI call must not affect the consistency of the sales order 2. After completing the transaction with a COMMIT WORK, both the orders are saved consistently in the database.
    Create( ) and CreateFromData! ( )
    The BAPIs Create() and CreateFromData() create an instance of an SAP business object type, for example, a purchase order. These BAPIs are class methods.
    Change( )
    The BAPI Change() changes an existing instance of an SAP business object type, for example, a purchase order. The BAPI Change () is an instance method.
    Delete( ) and Undelete( ) The BAPI Delete() deletes an instance of an SAP business object type from the database or sets a deletion flag.
    The BAPI Undelete() removes a deletion flag. These BAPIs are instance methods.
    Cancel ( ) Unlike the BAPI Delete(), the BAPI Cancel() cancels an instance of a business object type. The instance to be cancelled remains in the database and an additional instance is created and this is the one that is actually canceled. The Cancel() BAPI is an instance method.
    Add<subobject> ( ) and Remove<subobject> ( ) The BAPI Add<subobject> adds a subobject to an existing object inst! ance and the BAPI and Remove<subobject> removes a subobject from an object instance. These BAPIs are instance methods.
    Example Code
    U need to give the step_nr, item_nr, cond_count and cond_type so the correct conditon will be updated. If no condition exists for the given parameters, a new condition will be created.
    U can find these parameters for a particular condition type in table KONV.
    *& Form saveTransactionJOCR
    text
    --> p1 text
    <-- p2 text
    FORM saveTransactionJOCR .
    data: salesdocument like BAPIVBELN-VBELN,
    order_header_inx like bapisdh1x,
    order_header_in like bapisdh1,
    return type standard table of bapiret2 with header line,
    conditions_in type standard table of bapicond with header line,
    conditions_inx type standard table of bapicondx with header line,
    logic_switch like BAPISDLS,
    step_nr like conditions_in-cond_st_no,
    item_nr like conditions_in-itm_number,
    cond_count like conditions_in-cond_count,
    cond_type like conditions_in-cond_type.
    salesdocument = wa_order_information-VBELN.
    LOGIC_SWITCH-COND_HANDL = 'X'.
    order_header_inx-updateflag = 'U'.
    conditions
    clear conditions_in[].
    clear conditions_inx[].
    clear: step_nr,
    item_nr,
    cond_count,
    cond_type.
    step_nr = '710'.
    item_nr = '000000'.
    cond_count = '01'.
    cond_type = 'ZCP2'.
    CONDITIONS_IN-ITM_NUMBER = item_nr.
    conditions_in-cond_st_no = step_nr.
    CONDITIONS_IN-COND_COUNT = cond_count.
    CONDITIONS_IN-COND_TYPE = cond_type.
    CONDITIONS_IN-COND_VALUE = 666.
    CONDITIONS_IN-CURRENCY = 'EUR'.
    append conditions_in.
    CONDITIONS_INX-ITM_NUMBER = item_nr.
    conditions_inx-cond_st_no = step_nr.
    CONDITIONS_INX-COND_COUNT = cond_count.
    CONDITIONS_INX-COND_TYPE = cond_type.
    CONDITIONS_INX-UPDATEFLAG = 'U'.
    CONDITIONS_INX-COND_VALUE = 'X'.
    CONDITIONS_INX-CURRENCY = 'X'.
    append conditions_inx.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
    SALESDOCUMENT = salesdocument
    ORDER_HEADER_IN = order_header_in
    ORDER_HEADER_INX = order_header_inx
    LOGIC_SWITCH = logic_switch
    TABLES
    RETURN = return
    CONDITIONS_IN = conditions_in
    CONDITIONS_INX = conditions_inx
    if return-type ne 'E'.
    commit work and wait.
    endif.
    ENDFORM. " saveTransactionJOCR
    Bdc to Bapi
    The steps to be followed are :
    1. Find out the relevant BAPI (BAPI_SALESORDER_CHANGE for VA02).
    [for VA01 use BAPI_SALESORDER_CREATEFROMDAT2]
    2. Create a Z program and call the BAPi (same as a Funtion module call).
    2. Now, if you see this BAPi, it has
    -> Importing structures.
    eg: SALESDOCUMENT: this will take the Sales order header data as input.
    -> Tables parameters:
    eg: ORDER_ITEM_IN: this will take the line item data as input.
    Note :
    Only specify fields that should be changed
    Select these fields by entering an X in the checkboxes
    Enter a U in the UPDATEFLAG field
    Always specify key fields when changing the data, including in the checkboxes
    The configuration is an exception here. If this needs to be changed, you need to complete it again fully.
    Maintain quantities and dates in the schedule line data
    Possible UPDATEFLAGS:
    U = change
    D = delete
    I = add
    Example
    1. Delete the whole order
    2. Delete order items
    3. Change the order
    4. Change the configuration
    Notes
    1. Minimum entry:
    You must enter the order number in the SALESDOCUMENT structure.
    You must always enter key fields for changes.
    You must always specify the update indicator in the ORDER_HEADER_INX.
    2. Commit control:
    The BAPI does not run a database Commit, which means that the application must trigger the Commit so that the changes are read to the database. To do this, use the BAPI_TRANSACTION_COMMIT BAPI.
    For further details... refer to the Function Module documentation for the BAPi.
    Bapi to VB(Visual Basic)
    Long back I had used the following flow structure to acheive the same.
    Report -> SM59 RFC destination -> COM4ABAP -> VB.exe
    my report uses the rfc destination to create a COM session with com4abap. com4abap calls the vb.exe and manages the flow of data between sap and vb exe.
    You need to have com4abap.exe
    If com4abap is installed you will find it in sapgui installatin directory , C:\Program Files\SAPpc\sapgui\RFCSDK\com4abap.
    else refer OSS note 419822 for installation of com4abap
    after making the settings in com4abap to point to the vb program and setting up rfc destination in sm59 to point to com4abap session , you can use the following function modules to call the vb code.
    for setting up com4abap and rfc destination please refer to the documentation for com4abap.
    Invoke NEW DCOM session
    call function 'BEGIN_COM_SESSION'
    exporting
    service_dest = service_dest "(this will be a RFC destination created in SM59)
    importing
    worker_dest = worker_dest
    exceptions
    connect_to_dcom_service_failed = 1
    connect_to_dcom_worker_failed = 2
    others = 3.
    call function 'create_com_instance' destination worker_dest
    exporting
    clsid = g_c_clsid
    typelib = g_c_typelib
    importing
    instid = g_f_oid
    exceptions
    communication_failure = 1 message g_f_msg
    system_failure = 2 message g_f_msg
    invalid_instance_id = 3
    others = 4.
    call function 'com_invoke' destination worker_dest
    exporting
    %instid = g_f_oid
    %method = 'UpdatePDF'
    sntemp = g_v_const_filent
    snsysid = sy-sysid
    snflag = 'N'
    tables
    rssaptable = g_t_pdfdetail1
    %return = g_t_pdfdetail1 "t_test
    exceptions
    communication_failure = 1 message g_f_msg
    system_failure = 2 message g_f_msg
    invalid_instance_id = 3
    others = 4.
    then close the com session , using
    FM delete_com_instance
    FM END_COM_SESSION
    <REMOVED BY MODERATOR>
    Regards
    Anji
    Edited by: Alvaro Tejada Galindo on Feb 22, 2008 9:24 AM

  • How do I sync my new ipad mini with my old ipad 2, without losing any apps or data in notes?  I need step by step instructions for first-time sync with ipad mini.  Thanks.

    How do I sync my new ipad mini with my old ipad 2, without losing any apps or data in notes?  I need step by step instructions for first-time sync with ipad mini.  Thanks.

    If you synced it many times, you have to have a backup. It's just a question of how old that backup is now. When did you last sync?
    First of all launch iTunes on your computer and go to Edit>Preferences>Devices. Do you see any backups for you iPad in that window? If so, how new is the newest backup? That will be the backup that you will want to use. But remember that if you use that backup and it is one month old, you can only restore from that date back in time. Anything that you did on the iPad in the past month will not be in that backup.
    Turn on the new iPad Minin and start activating OTA via WiFi. You will get to a certain point in the process where you will be given the choice to Set up as new, Restore from iCloud - or Restore from iTunes. You will want to select Restore from iTunes.
    That is the short and sweet version. There are step by step instructions in this article. This applies to the mini as well as the iPad 4 or the iPad 3 for that matter.
    http://www.everythingicafe.com/how-to-set-up-new-ipad/2012/03/16/

  • How do I separate my music from my husbands to just go on my ipod shuffle?I know I need to manually pull the songs over...please help I need step by step instructions

    Need step by step instructions on how to separate my music from my husbands that I purchased on Itunes.I know my account is listed to set up manually...I just forget how to do it.I know I need to drag each song over right???Please advise

    Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer was planned with you maintaining a master copy of your media on a computer which is itself independently backed up against loss. To use a device with a new computer you transfer the content from the old computer (or its backup) directly to the new computer, not the device to the new computer. Syncing is one way, computer to device, updating the device content to the content on the computer, not updating or restoring content on a computer. The exception is iTunes Store purchases which can be transferred to a computer. iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only purchases from iTunes Store For transferring other items from an i-device to a computer you will have to use third party commercial software. See this document by turingtest2: Recovering your iTunes library from your iPod or iOS device - https://discussions.apple.com/docs/DOC-3991

  • Apple TV will no not connect to iTunes.  I need step by step info.

    My Apple TV will not connect to iTunes?  I need step by step instructions to try and fix this. 

    Hello there, Canuckam2.
    The following Knowledge Base article offers up some great step-by-step instruction on troubleshooting your issue:
    Troubleshooting Home Sharing
    http://support.apple.com/kb/ts2972
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Steps for creation of DSO in BI7.....

    Hi,
    Can anyone help me out with the steps for creation of DSO in BI7.....
    Points will be assigned...
    Cheers
    Shankar

    Hi Shankar,
    Procedure of creation of DSO in BI7 :
    1.Select the InfoArea to which the new DSO object is to be assigned, or create a new InfoArea. Choose Modeling--> InfoProvider --> Create InfoArea.
    2.Choose Create DSO Object in the context menu for the InfoArea.
    3.Specify a name and a description for the DSO object, and choose Create.
    If you want to create a copy of an existing DSO object, specify the DSO object that you want to use as a template.
    You get to the DSO object maintenance screen.
    4. Transferring InfoObjects:
    On the left side of the screen, there are various templates to choose from, which allow you to get a better overview in relation to a particular task. For performance reasons, the default setting here is an empty template. Using the pushbuttons, select an InfoSource (only the InfoObjects for the communication structure of the InfoSource are displayed), an InfoCube, an DSO object, or an InfoObject catalog.
    On the right side of the screen you define the DSO object. Using the Drag&Drop function, assign the InfoObjects in the key fields and in the data fields. It is possible to select several InfoObjects at once. The system assigns navigation attributes automatically. These navigation attributes can be switched on for reporting in BEx.
    Thanks
    Reshu

  • Needs Steps to carry out packing in PP process.

    Hi Friends,
    I need to know the step wise procedure ( With Tcodes) to pack the material which is produced in PP process (process order) and this should result in generation of handling units.
    I also would like to know any prerequisite configuration to be done for this?
    Regards,
    Amrish Purohit

    Hi Friends,
    Thanks for the efforts. I am very well aware about the Packing process in SD cycle.
    What I was looking for is" Needs Steps to carry out packing in PP process"
    Which I have found out
    Thanks for your time though.
    Regards,
    Amrish Purohit

  • Need steps to create ant scripts for publishing and deploying projects.

    Need steps to create ant scripts for publishing and deploying projects.
    Have got ant, Oracle BPM Enterprise WL edition installed , Need to know what are the other configurations to be done.
    Any working example would help me to understand, please do mail me at [email protected]
    Thanks in advance.
    -Sree

    Sreekant,
    Please find the build file to publish and deploy.
    <project name="deployProject"
    xmlns:fuego="antlib:fuego.tools.ant.enterprise"
    xmlns:fuego.j2ee="antlib:fuego.tools.ant.j2ee" default = "publish">
              <property file="./Properties/fuego_deploy.properties"/>
              <fuego:passport id="fuego.passport"
    directoryid="${fuego.directoryid}"
    preset="engine" />
    <target name="publish" description="Publish and deploy processes" depends = "takeInputs">
    <!-- Open a session to the Oracle BPM directory -->
    <fuego:session
    passportref="fuego.passport"
    verbose="true"
                   properties="${fuego.basedir}/conf/directory.xml"
    haltonerror="true" >
    <!-- Publish processes -->
    <fuego:publish fpr="${fuego.project.name}"
    deploy="true"
    engine="${fuego.engineName}"
                        importdata = "${fuego.importdata}"
                        automaproles="${fuego.automaproles}"
                        automapbuspars = "${fuego.automapbuspars}"
                        automapvars="${fuego.automapvars}"
                        automapconfigs = "${fuego.automapconfigs}">
    </fuego:publish>
    </fuego:session>
    </target>
    <target name= "takeInputs" >
    <input
    message="Please enter admin-username:"
    addproperty="fuego.participant"
    />
    <input
    message="Please enter admin-password:"
    addproperty="fuego.password"
    >
    </input>
    </target>
    </project>
    and find the properties I have used..
    fuego.basedir=C:\OraBPMEnterpriseHome
    fuego.directoryid=default
    fuego.engineName = bpmengine
    fuego.project.name = E:/antExamples/Project/CommonUtilities
    # If the below property is true then ant script imports data from the project, as defined in Studio.
    # This includes importing:
    #      •Holiday and Calendar rules
    #      •Organizational Units
    #      •Roles
    #      •Resource configurations
    #      •External Variables
    fuego.importdata = true
    #If the below property is true ant script automatically map abstract roles to real ones with the same name.
    fuego.automaproles=true
    #If the below property is true ant script automatically map business parameter variable names (as defined in the project design) to an business parameter variable id with the same name (as defined in the Fuego Enterprise directory).
    fuego.automapbuspars = true
    #If the below property is true ant script automatically map external variable names (as defined in the project design) to an external variable id with the same name (as defined in the Fuego Enterprise directory).
    fuego.automapvars=true
    #If the below property is true ant script automatically map External Resources configurations (as defined in the project design) to real Configurations with the same name (as defined in the Fuego Enterprise directory).
    fuego.automapconfigs = true

  • I need step-by-step procedure for ESS/MSS Security??

    Hi, I need step by step procedure for ESS/MSS security. I know the Structural .Authorization , but i dont know how this ESS/MSS security is. Could you please help me with any step by step notes of your personal. Please i dont want any best practices from help.sap.com. I already gone through those links, but i didnt get how to maintain security for ESS/MSS.

    Hi @mehdijon 
    I can help. There is no full feature software and driver available from HP, but the OS X v10.9 Mavericks driver for your printer is available through Apple Software Update (ASU).
    With this driver you can still print and scan, you just wont have HP software to scan from. Scanning to the computer from the printer control panel is only available when using HP Scan software, thus it will not work because there is no HP scan software as apart of the Apple Software Update driver.
    Instead, you can scan using,
    Method one: Scan from the Print & Scan window   
    Method two: Scan from Apple Preview
    Method three: Scan from Apple Image Capture 
    I hope this helps. If you have any additional questions are have any difficulty using any of these methods, please let me know what method you are trying and what the issue/error is. You may also find the following document helpful; OS X v10.9 Mavericks: Installing and Using the Printer on a Mac
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Ipad exchange load, need step by step instructions, so I can sync e-mail (from pc) including contacts, messages etc.

    Hey,
    receive mail through local provider but can't obtain conacts, folders etc.
    I was told to use exchange for the mail provider, but I'm lost.
    Really challenged,
    As title says need step by step instructions, real basic, techno-challenged - have mercy!!
    Ian

    Step by step, how did you arrive at seeing this agreement?

  • Need steps for rehosting FR currently running on windows 2008 R2 to LinuxOS

    Need steps for rehosting FR server currently running on windows 2008 R2 to Oracle Linux 5 OS
    I found something for essbase in oracle EPM whitepaper library but not for FR. Did anyone of you out there try this.
    Any ideas/thoughts.
    Thanks in Advance

    If it's 11.1.2.1 or 11.1.2.2 you simply install it in the new host, configure it and you can either manually edit the mod_wl.conf file to point to the new server or you can re-run the web server (OHS) configuration wherever it is installed. Beware though that if you do this you will not be able to run FR against HFM.
    Pablo

  • Need steps to configure BAM and DATAMART for Oracle BPM Enterprise

    Hi,
    Need steps to configure BAM and DATAMART for both Oracle BPM 10.3 Enterprise Standalone and Oracle BPM 10.3 Enterprise Weblogic.
    Configurations like BAM Updater Service, Process Data Mart Updater Service, Start Up / Shut Down of the service etc.
    I am referring : http://www.oracle.com/technology/products/bpm/bpm10gr3technicalarticles/BPMConfiguringAndTroubleshootingBAMAndDataMart.pdf

    Hi,
    To add system to solman:
    Go to SMSY and define:
    1) Server --> host name, IP etc
    2) DB --> DB details
    3) System --> R3, Netweaever etc, assign proper components, products
    4) define and assign logical components for the system defined in step 3
    5) generate RFC destionation to the satellite system
    6) Provided you have the necessary trusted authorization and if the RFCs are generated successfully then your task is done. Else you'll have to troubleshoot.
    Once this is done, you need to goto SOLUTION_MANAGER and define
    1) new solution
    2) make necessary inclusion in Solution Landscape Maintenance
    3) include logical component
    This completes the system setup for you.
    For CCMS agent configuration, refer:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/e2/eff640fa4b8631e10000000a1550b0/content.htm
    For system monitoring using solman, refer:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/0b/160419162a476380b5608e7f27a742/frameset.htm
    Hope this helps.
    Rajeev

  • Need Steps for Configuring BI 7.0 with ECC 6

    Hi All,
    I need steps for configuring BI 7.0 with ECC 6, Please if anybody has material, Please share with me...
    Regards,
    Kiran Telkar

    Hi,
    regarding bi7 and ecc6.0 Configruration,pls chk this
    https://www.sdn.sap.com/irj/sdn/developerareas/bi?rid=/webcontent/uuid/e78a5148-0701-0010-7da9-a6c721c6112e [original link is broken] [original link is broken] ...
    http://sheffield.gumtree.com/sheffield/57/13455557.html
    https://www.sdn.sap.com/irj/sdn/developerareas/bi?rid=/webcontent/uuid/e78a5148-0701-0010-7da9-a6c721c6112e [original link is broken] [original link is broken] ...
    *pls assign points,if links useful*
    regards,
    CSM Reddy

  • Multiple accounts in po (me21n) need steps to create

    HI ALL.
    I Need STEPS FOR multiple account assiginemnt in creating purchase order(me21n).
    Thanks in advance for sap mm dudes.
    Regards.
    Parameshwar

    Hii parameshwar,
              as above said by NPK3279, is absolutly correct.
           i am adding on above.....
    Its a standard practice that if there is multiple account assignment, the proportion will not be appearing at the time of MIGO. It will get updated only at the time of Invoice verification.
    Incase of multiple account assignment with account assignment category, actual charging will happen at time of MIRO, you can change the account assignment details in MIRO.
    for documentation, u can refer:
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/75/ee0e0355c811d189900000e8322d00/frameset.htm
    thanks
    nisha

Maybe you are looking for

  • Device not working after updating from 8 to 8.1: SMK Ehome Infrared Transceiver and remote control (usb)

    Hi all, An excellent 2015 to you all.  I wonder whether it's possible to get my (USB) SMK Ehome Infrared transceiver (which serves to connect my PC to a remote control)  to work again. It functioned okay under Windows 8, but when I upgraded my system

  • Where is the subtitle option in iTunes 12.0.1

    Where is subtitle option in iTunes 12.0.1?

  • 845PE Max 2 USB probs

    Hi all, I have an 845PE max2 board w/ XP pro (my problem exist with or without SP1). My understanding is that there are six USB ports on this board, two of which can be used by either the front of case jacks or the the jacks on the diagnostic plate.

  • Should I import to iPhoto or to Aperture?

    I am new to Apple and have just bought a 27 inch iMac. I have both iPhoto and Aperture. Currently my photos - about 18,000 are on a USB drive (backed up twice). I store them in a calendar sequence. One folder per year, each year has 12 sub-folders fo

  • Screen shots not working

    When I try to take a screenshot (Command + Shift + 3/4) I get the camera sound, but a file is never created on my desktop. I have searched my drive and can't see that these images are going anywhere. Any ideas? It worked before, just happened 2 days