Regarding ECC 6.0- CRM and BW. URGENT....Please help!!

Dear All,
I have a small query- Are CRM and BW an integral part of ECC 6.0? I mean, if I install ECC 6.0, will CRM and BW also get installed OR Do I need to explicitly install CRM and BW after installing ECC 6.0?
If CRM and BW are an integral part of ECC 6.0, Do I need to carry out some additional steps/install add-on components(while installing ECC 6.0), to activate CRM and BW OR  will it be activated by default once I am through with the normal installation process of ECC 6.0?
Thanks in anticipation!!

CRM-Customer Relationship Management
General Settings in CRM
Use
This section describes the general settings necessary for BW Integration in CRM.
If CRM is not involved in your scenario skip this section.
This step has to be carried out in the CRM system:
Integration with Other mySAP Components  Data Transfer to the SAP Business Information Warehouse  Business Content DataSources  Transfer Application Component Hierarchy
RSA9-Tcode
Confirm the security check: Do you want the content application Transfer Component Hierarchy? with YES.
If a dialog box appears requesting the user to enter a development class, enter a development class in the customers namespace and choose Save or choose Local object.
If no error message is sent the application component hierarchy has been transferred successfully.
Cross Connectivity:
It describes all settings that are necessary to connect the components of the SAP.system landscape with each other. The settings for each combination of two components to be connected are described in a separate structure node. The separate section headings make it possible to identify the activities required to connect certain components with each other. The section headings for components that are not part of the installation can be skipped
Connecting SAP BI with SAP ERP, SAP CRM
Procedure
To carry out the activity, choose one of the following navigation options in the SAP BI system:
Transaction Code     RSA1
SAP BI Menu     Modeling  Data Warehousing Workbench: Modeling
Connecting SAP BI with SAP ERP, SAP CRM
Procedure
To carry out the activity, choose one of the following navigation options in the SAP BI system:
Transaction Code     RSA1
SAP BI Menu     Modeling  Data Warehousing Workbench: Modeling
1.     Choose Modeling.
2.     Choose Source Systems.
3.     Select SAP in the window on the right.
4.     Choose the Context menu (right mouse click).
5.     Choose Create.
6.     Make the following entries:
Field     Entry
Target computer (server)                            Server of the SAP ERP, SAP CRM or SAP SRM system
System ID     System ID of the SAP ERP, SAP CRM or SAP SRM system
System number     System number of the SAP ERP, SAP CRM or SAP SRM system
Background user in source system     RFCUSER
Password for source system     welcome
Background user in BI     RFCUSER (can not be changed in this activity)
Password for BI user     welcome
9.     On the dialog box Please log on as an administrator in the following screen choose Continue.
10.     Log on to the Source System with your administrator user. Choose the correct client.
11.     On the dialog box New Source System Connection choose Continue.
12.     On the Replicate Metadata dialog box, choose Only Activate.
The building block CRM Lead Analysis describes the all the required activities to analyze the Marketing Lead Analysis data from SAP CRM in SAP Business Information Warehouse.
The analysis is carried out with the following queries of the InfoCube 0MKTG_C01 CRM - Lead Management (SAP BW Business Content).
The Lead Management InfoCube contains all the characteristics and data used for the administration of leads. This InfoCube enables you to execute the following standard queries available in SAP BW:
1.     Channel Analysis: This query is used to determine the best channels by which business partners are contacted in the context of a marketing campaign. Following each marketing campaign, the lead manager can compare the success of a given channel to those of others.
2.     Efficiency Reporting: This query is used to analyze the efficiency with which leads are qualified. By navigating to the sales organizations and the responsible employees for the leads, it is possible to assess how efficiently lead teams are working and to identify areas for improvement.
3.     Historical Evaluation: Use to help analyze and compare leads over different intervals (comparison of different quarters or years for example) to see if general characteristics in the processing of leads can be identified for these periods.
4.     Lost Leads: Provides an overview of the number of lost leads in a particular period and the reasons (implemented as a navigation characteristic) for the loss of the leads. This query is used to analyze the main reasons why leads might be lost, with a view to developing new strategies for overcoming these weaknesses.
5.     Channel Mgmt.: Top-n Lost Leads (Current Year): In a Channel Manager Portal, this query provides an analysis of the leads lost by a Channel Manager over the past 12 months. Channel Managers can also view the leads lost by their Channel Partners. In a Partner Portal, this query shows the top-n unsuccessful leads distributed by a Channel Manager to a Channel Partner. Partner Manager can see the lost leads of the Partner Employees over the year. Partner Employee can view his lost leads over the year.
InfoSources
0CRM_LEAD_H - Lead Header (Transactional Data)
0CRM_LEAD_I - Lead Item (Transactional Data)
0CRM_MIG -  Mail GUID
Before starting activities in this building block, you need to perform or check the following steps:
1.     From the BW Connectivity building block the following activities have to be completed:
a.     Local Settings è SAP CRM: all activities have to be completed.
b.     Local Settings è SAP BW: all activities have to be completed.
c.     Cross Connectivity è Connecting SAP BW with SAP R/3, SAP CRM, SAP SRM: Connect your CRM System.
2.     From the General Settings for BW Integration building block the following activities have to be completed:
a.     In section General Settings in CRM all activities have to be completed.
b.     In section General Settings in SAP BW all activities have to be completed.

Similar Messages

  • Query bean and multipleSelection (Urgent, please help!!!!)

    In my search page(query region, Construction Mode:     autoCustomizationCriteria, result table: advancedTable).
    I have a column of check box, some how the check box value is not updated when it is checked.
    Do you see what is missing?
    thank you in advance.
    Lei
    Here is my code and out put:
    if (pageContext.getParameter("Delete") != null){
    System.out.println("Delete button: "+ pageContext.getParameter("Delete"));
    System.out.println("delete button is clicked.");
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    // am.invokeMethod("deleteGoalSheet");
    OAViewObject vo = (OAViewObject)am.findViewObject("GoalSheetResultGAVO1");
    System.out.println("Find Object GoalSheetResultGAVO1 Successfuly");
    //Receiving first row of the VO
    GoalSheetResultGAVORowImpl row = (GoalSheetResultGAVORowImpl) vo.first();
    System.out.println("####################################");
    System.out.println("Fetched first row of GoalSheetResultGAVO");
    while (row != null)
    String sourceName = (String) row.getAttribute("SourceName");
    String selectFlag = (String) row.getAttribute("SelectFlag");
    System.out.println("Attribute sourceName Value -> "+sourceName);
    System.out.println("Attribute selectFlag Value -> "+selectFlag);
    if (selectFlag == null)
    System.out.println("Column SelectFlag is null");
    if (selectFlag!=null)
    if (selectFlag.equals("Y"))
    //row.setAttribute("GsStatusCode",Constants.GOAL_SHEET_STATUS_CODE_DEL);
    row.setGsStatusCode(Constants.GOAL_SHEET_STATUS_CODE_DEL);
    System.out.println("####################################");
    System.out.println("Fetching next row of GoalSheetResultGAVO");
    row = (GoalSheetResultGAVORowImpl) vo.next();
    System.out.println("####################################");
    System.out.println("Last row fetched, exiting loop");
    am.invokeMethod("apply");
    07/06/24 22:31:29 Find Object GoalSheetResultGAVO1 Successfuly
    07/06/24 22:31:29 ####################################
    07/06/24 22:31:29 Fetched first row of GoalSheetResultGAVO
    07/06/24 22:31:29 Attribute sourceName Value -> Nashif, Adam L
    07/06/24 22:31:29 Attribute selectFlag Value -> null
    07/06/24 22:31:29 Column SelectFlag is null
    07/06/24 22:31:29 ####################################
    07/06/24 22:31:29 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:29 Attribute sourceName Value -> Miranda, Miguel Angel
    07/06/24 22:31:29 Attribute selectFlag Value -> null
    07/06/24 22:31:29 Column SelectFlag is null
    07/06/24 22:31:29 ####################################
    07/06/24 22:31:29 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:29 Attribute sourceName Value -> Cameron, David B
    07/06/24 22:31:29 Attribute selectFlag Value -> null
    07/06/24 22:31:29 Column SelectFlag is null
    07/06/24 22:31:29 ####################################
    07/06/24 22:31:29 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:29 Attribute sourceName Value -> Aagaard, Jorleif
    07/06/24 22:31:29 Attribute selectFlag Value -> null
    07/06/24 22:31:29 Column SelectFlag is null
    07/06/24 22:31:29 ####################################
    07/06/24 22:31:29 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:29 Attribute sourceName Value -> Miranda, Miguel Angel
    07/06/24 22:31:29 Attribute selectFlag Value -> null
    07/06/24 22:31:29 Column SelectFlag is null
    07/06/24 22:31:29 ####################################
    07/06/24 22:31:29 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:29 Attribute sourceName Value -> Miranda, Miguel Angel
    07/06/24 22:31:29 Attribute selectFlag Value -> null
    07/06/24 22:31:29 Column SelectFlag is null
    07/06/24 22:31:29 ####################################
    07/06/24 22:31:29 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:29 Attribute sourceName Value -> Walsh, Terry
    07/06/24 22:31:29 Attribute selectFlag Value -> null
    07/06/24 22:31:29 Column SelectFlag is null
    07/06/24 22:31:29 ####################################
    07/06/24 22:31:29 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:29 Attribute sourceName Value -> Putman, Steven
    07/06/24 22:31:29 Attribute selectFlag Value -> null
    07/06/24 22:31:29 Column SelectFlag is null
    07/06/24 22:31:29 ####################################
    07/06/24 22:31:29 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:29 Attribute sourceName Value -> Miranda, Miguel Angel
    07/06/24 22:31:29 Attribute selectFlag Value -> null
    07/06/24 22:31:29 Column SelectFlag is null
    07/06/24 22:31:29 ####################################
    07/06/24 22:31:29 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:29 Attribute sourceName Value -> Miranda, Miguel Angel
    07/06/24 22:31:29 Attribute selectFlag Value -> null
    07/06/24 22:31:29 Column SelectFlag is null
    07/06/24 22:31:29 ####################################
    07/06/24 22:31:29 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:30 Attribute sourceName Value -> Kumasaka, Koby R
    07/06/24 22:31:30 Attribute selectFlag Value -> null
    07/06/24 22:31:30 Column SelectFlag is null
    07/06/24 22:31:30 ####################################
    07/06/24 22:31:30 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:30 Attribute sourceName Value -> Kumasaka, Koby R
    07/06/24 22:31:30 Attribute selectFlag Value -> null
    07/06/24 22:31:30 Column SelectFlag is null
    07/06/24 22:31:30 ####################################
    07/06/24 22:31:30 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:30 Attribute sourceName Value -> Hagan, Thomas J
    07/06/24 22:31:30 Attribute selectFlag Value -> null
    07/06/24 22:31:30 Column SelectFlag is null
    07/06/24 22:31:30 ####################################
    07/06/24 22:31:30 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:30 Attribute sourceName Value -> Hagan, Thomas J
    07/06/24 22:31:30 Attribute selectFlag Value -> null
    07/06/24 22:31:30 Column SelectFlag is null
    07/06/24 22:31:30 ####################################
    07/06/24 22:31:30 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:30 Attribute sourceName Value -> Aagaard, Jorleif
    07/06/24 22:31:30 Attribute selectFlag Value -> null
    07/06/24 22:31:30 Column SelectFlag is null
    07/06/24 22:31:30 ####################################
    07/06/24 22:31:30 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:30 Attribute sourceName Value -> Cortes, Gustavo
    07/06/24 22:31:30 Attribute selectFlag Value -> null
    07/06/24 22:31:30 Column SelectFlag is null
    07/06/24 22:31:30 ####################################
    07/06/24 22:31:30 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:30 Attribute sourceName Value -> Putman, Steven
    07/06/24 22:31:30 Attribute selectFlag Value -> null
    07/06/24 22:31:30 Column SelectFlag is null
    07/06/24 22:31:30 ####################################
    07/06/24 22:31:30 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:30 Attribute sourceName Value -> Taverner, Timothy
    07/06/24 22:31:30 Attribute selectFlag Value -> null
    07/06/24 22:31:30 Column SelectFlag is null
    07/06/24 22:31:30 ####################################
    07/06/24 22:31:30 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:30 Attribute sourceName Value -> Thibodeau, Paul J
    07/06/24 22:31:30 Attribute selectFlag Value -> null
    07/06/24 22:31:30 Column SelectFlag is null
    07/06/24 22:31:30 ####################################
    07/06/24 22:31:30 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:30 Attribute sourceName Value -> Miranda, Miguel Angel
    07/06/24 22:31:30 Attribute selectFlag Value -> null
    07/06/24 22:31:30 Column SelectFlag is null
    07/06/24 22:31:30 ####################################
    07/06/24 22:31:30 Fetching next row of GoalSheetResultGAVO
    07/06/24 22:31:30 ####################################
    07/06/24 22:31:30 Last row fetched, exiting loop

    Hi Shiv
    Following is page xml, and my controller is at query region level not page level, that should not be the reason, right?
    thanks
    Lei
    GoalSheetSearchPG.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <page xmlns:jrad="http://xmlns.oracle.com/jrad" xmlns:oa="http://xmlns.oracle.com/oa" xmlns:ui="http://xmlns.oracle.com/uix/ui" version="10.1.3_798" xml:lang="en-US" xmlns:user="http://xmlns.oracle.com/jrad/user" xmlns="http://xmlns.oracle.com/jrad" file-version="$Header: /opt/cvsroot/Repository/OAF/OIC/Goaling/src/oracle/apps/xxg2c/goaling/webui/GoalSheetSearchPG.xml,v 1.1.1.1 2007/06/08 18:02:07 lezhou Exp $">
    <content>
    <oa:pageLayout id="PageLayoutRN" windowTitle="Goal Sheet" amDefName="cisco.oracle.apps.xxg2c.goaling.server.GoalsheetSearchAM">
    <ui:corporateBranding>
    <oa:image id="corporateBrandingImage" source="/OA_MEDIA/FNDSSCORP.gif"/>
    </ui:corporateBranding>
    <ui:contents>
    <oa:query id="QueryRN" mode="autoCustomizationCriteria" dispSimple="true" dispAdvanced="false" dispCustomized="true" defaultPanel="customized" amDefName="cisco.oracle.apps.xxg2c.goaling.server.GoalsheetSearchAM" controllerClass="cisco.oracle.apps.xxg2c.goaling.webui.GoalSheetSearchCO">
    <oa:simpleSearchMappings>
    <oa:queryCriteriaMap id="SrpNameMap" criteriaItem="SearchSrpName" resultsItem="SrpName"/>
    <oa:queryCriteriaMap id="CompPlanNameMap" criteriaItem="SearchCompPlanName" resultsItem="CompPlanName"/>
    <oa:queryCriteriaMap id="GoalsheetStatusMap" criteriaItem="SearchGoalSheetStatus" resultsItem="GsStatusCode"/>
    <oa:queryCriteriaMap id="FiscalYearMap" criteriaItem="SearchFiscalYear" resultsItem="FiscalYear"/>
    <oa:queryCriteriaMap id="ShareNodeMap" criteriaItem="SearchShareNode" resultsItem="ShareNode"/>
    </oa:simpleSearchMappings>
    <oa:simpleSearchPanel>
    <oa:header text="Simple Search" id="SimpleSearchHdr">
    <ui:contents>
    <oa:messageComponentLayout id="CustomerSimpleSearch" rows="3" columns="2">
    <ui:contents>
    <oa:messageChoice id="SearchGoalSheetStatus" queryable="true" serverUnvalidated="true" initSortSeq="first" pickListViewDef="" pickListDispAttr="Meaning" pickListValAttr="LookupCode" selectiveSearchCriteria="true" prompt="Goal Sheet Status" pickListViewName="GsStatusLookupsVO1"/>
    <oa:messageLovInput id="SearchShareNode" queryable="true" selectiveSearchCriteria="true" prompt="Share Node" externalListOfValues="/oracle/apps/xxg2c/goaling/lov/webui/LookupLovRN" unvalidated="true" rendered="true">
    <lovMappings>
    <lovMap id="lovMap3" lovItem="LastUpdateLogin" resultTo="SearchShareNode" criteriaFrom="SearchShareNode"/>
    </lovMappings>
    </oa:messageLovInput>
    <oa:messageLovInput id="SearchSrpName" prompt="Resource Name" externalListOfValues="/cisco/oracle/apps/xxg2c/common/lov/webui/SalesRepsLovRN" unvalidated="true" queryable="true" selectiveSearchCriteria="true">
    <lovMappings>
    <lovMap id="lovMap1" lovItem="SrpName" resultTo="SearchSrpName" criteriaFrom="SearchSrpName"/>
    </lovMappings>
    </oa:messageLovInput>
    <oa:messageChoice id="SearchFiscalYear" queryable="true" serverUnvalidated="true" pickListViewDef="" pickListDispAttr="Meaning" selectiveSearchCriteria="true" prompt="Fiscal Year" pickListValAttr="LookupCode" dataType="NUMBER" pickListViewName="FiscalYearLookupsVO1" allowBlankValue="false"/>
    <oa:messageLovInput id="SearchCompPlanName" prompt="Comp Plan Name" externalListOfValues="/cisco/oracle/apps/xxg2c/common/lov/webui/CompPlansLovRN" unvalidated="true" queryable="false" selectiveSearchCriteria="true" warnAboutChanges="false">
    <lovMappings>
    <lovMap id="lovMap2" lovItem="CompPlanName" resultTo="SearchCompPlanName" criteriaFrom="SearchCompPlanName"/>
    </lovMappings>
    </oa:messageLovInput>
    </ui:contents>
    </oa:messageComponentLayout>
    </ui:contents>
    </oa:header>
    </oa:simpleSearchPanel>
    <ui:contents>
    <oa:advancedTable id="ResultsTable" viewName="GoalSheetResultGAVO1" width="100%">
    <ui:contents>
    <oa:column id="SrpNameCol">
    <ui:columnHeader>
    <oa:sortableHeader id="SrpNameHdr" prompt="Resource Name"/>
    </ui:columnHeader>
    <ui:contents>
    <oa:messageStyledText id="SrpName" viewAttr="SourceName" prompt="Resource Name" queryable="true"/>
    </ui:contents>
    </oa:column>
    <oa:column id="SourceEmailCol">
    <ui:columnHeader>
    <oa:sortableHeader id="SrpEmailHdr" prompt="Email Id"/>
    </ui:columnHeader>
    <ui:contents>
    <oa:messageStyledText id="SrpEmail" dataType="VARCHAR2" prompt="Email ID" viewAttr="SrpEmailId" maximumLength="2000"/>
    </ui:contents>
    </oa:column>
    <oa:column id="SrpEmpIdCol" width="10">
    <ui:columnHeader>
    <oa:sortableHeader id="SrpEmpIdHdr" prompt="Employee Id"/>
    </ui:columnHeader>
    <ui:contents>
    <oa:messageStyledText id="SrpEmpNum" dataType="NUMBER" prompt="eMPLOYEE id" viewAttr="SrpEmployeeNumber"/>
    </ui:contents>
    </oa:column>
    <oa:column id="CompPlanNameCol">
    <ui:columnHeader>
    <oa:sortableHeader id="CompPlanNameHdr" prompt="Comp Plan Name"/>
    </ui:columnHeader>
    <ui:contents>
    <oa:messageStyledText id="CompPlanName" dataType="VARCHAR2" prompt="Comp Plan Name" viewAttr="Name" maximumLength="30" queryable="true" selectiveSearchCriteria="true"/>
    </ui:contents>
    </oa:column>
    <oa:column id="SrpGoalHeaderIdCol">
    <ui:columnHeader>
    <oa:sortableHeader id="SrpGoalHeaderHdr" prompt="GS ID"/>
    </ui:columnHeader>
    <ui:contents>
    <oa:messageStyledText id="SrpGoalHeaderId" dataType="NUMBER" prompt="GS ID" viewAttr="SrpGoalHeaderId" maximumLength="15" queryable="true"/>
    </ui:contents>
    </oa:column>
    <oa:column id="GSStatusCol">
    <ui:columnHeader>
    <oa:sortableHeader id="GSStatusHdr" prompt="GS Status"/>
    </ui:columnHeader>
    <ui:contents>
    <oa:messageStyledText id="GsStatus" dataType="VARCHAR2" prompt="GS Status" viewAttr="Meaning" maximumLength="80"/>
    </ui:contents>
    </oa:column>
    <oa:column id="GSStartDateCol">
    <ui:columnHeader>
    <oa:sortableHeader id="GSStartDateHdr" prompt="GS Start Date"/>
    </ui:columnHeader>
    <ui:contents>
    <oa:messageStyledText id="GsStartDate" dataType="DATE" prompt="GS Start Date" viewAttr="GsStartDate" queryable="true"/>
    </ui:contents>
    </oa:column>
    <oa:column id="GSEndDateCol">
    <ui:columnHeader>
    <oa:sortableHeader id="GSEndDateHdr" prompt="GS End Date"/>
    </ui:columnHeader>
    <ui:contents>
    <oa:messageStyledText id="GsEndDate" dataType="DATE" prompt="GS End Date" viewAttr="GsEndDate"/>
    </ui:contents>
    </oa:column>
    <oa:column id="CreateNewCol">
    <ui:columnHeader>
    <oa:sortableHeader id="CreateNewHdr" prompt="Create New"/>
    </ui:columnHeader>
    <ui:contents>
    <oa:image id="CreateNewLink" dataType="VARCHAR2" prompt="CreateNewLink" viewAttr="Create New" source="adddocumenttolist_enabled.gif" rendered="true"/>
    </ui:contents>
    </oa:column>
    <oa:column id="CopyCol">
    <ui:columnHeader>
    <oa:sortableHeader id="CopyHdr" prompt="Copy"/>
    </ui:columnHeader>
    <ui:contents>
    <oa:switcher id="Copy" viewAttr="CopyFlag">
    <ui:case name="copy_enabled">
    <oa:image id="copy_enabled" source="duplicate_enabled.gif">
    <ui:primaryClientAction>
    <ui:fireAction event="Copy"/>
    </ui:primaryClientAction>
    </oa:image>
    </ui:case>
    <ui:case name="copy_disabled">
    <oa:image id="copy_disabled" source="duplicate_disabled.gif"/>
    </ui:case>
    </oa:switcher>
    </ui:contents>
    </oa:column>
    <oa:formValue id="FiscalYear" viewAttr="PeriodYear" dataType="NUMBER"/>
    <oa:formValue id="ShareNode" viewAttr="NodeId"/>
    <oa:formValue id="GsStatusCode" viewAttr="StatusCode"/>
    <oa:column id="column1">
    <ui:columnHeader/>
    <ui:contents>
    <oa:messageCheckBox id="item1" viewAttr="SelectFlag"/>
    </ui:contents>
    </oa:column>
    </ui:contents>
    <ui:tableActions>
    <oa:flowLayout id="region1">
    <ui:contents>
    <oa:submitButton id="Delete" text="Delete" prompt="Delete"/>
    <oa:exportButton id="Export" exportAllRows="true" text="Export"/>
    </ui:contents>
    </oa:flowLayout>
    </ui:tableActions>
    <ui:tableSelection>
    <oa:multipleSelection id="multipleSelection1" viewAttr="Checked"/>
    </ui:tableSelection>
    </oa:advancedTable>
    </ui:contents>
    </oa:query>
    </ui:contents>
    </oa:pageLayout>
    </content>
    </page>

  • Encrypting and Decrypting Data(Its Very Urgent, Please Help.)

    Hi,
    Can anyone tell me some idea in the below mentioned details.
    Iam creating a Function for Encrypting and Decrypting Data Values using
    DBMS_OBFUSCATION_TOOLKIT with UTL_RAW.CAST_TO_RAW by using
    Key Value as normal.
    But the problem, is it possible to have the key value more than 8.
    Its showing me error when i give the key value less than 8 or more than 8.
    Can u tell me why it happens, is that the limit of the key value or is any other way to do that.
    Its Very Urgent, Please Help.
    Thanks,
    Murali.V

    Is this what you're looking for?
    Usage Notes
    If the input data or key given to the DES3DECRYPT procedure is empty, then the procedure raises the error ORA-28231 "Invalid input to Obfuscation toolkit."
    If the input data given to the DES3DECRYPT procedure is not a multiple of 8 bytes, the procedure raises the error ORA-28232 "Invalid input size for Obfuscation toolkit." ORA-28233 is NOT applicable for the DES3DECRYPT function.
    If the key length is missing or is less than 8 bytes, then the procedure raises the error ORA-28234 "Key length too short." Note that if larger keys are used, extra bytes are ignored. So a 9-byte key will not generate an exception.
    C.

  • Hi guys urgent please help me ASAP my ipod touch 4g reboots/restarts over and over again and i cant enter DFU mode cause my home button is stuck/broken please help guys i cant enter itunes too cause it said it needs my passcode

    hi guys urgent please help me ASAP my ipod touch 4g reboots/restarts over and over again and i cant enter DFU mode cause my home button is stuck/broken please help guys i cant enter itunes too cause it said it needs my passcode the problem is i cant even enter my passcode in my ipod touch cause its rebooting over and over again help please guys

    - See if this program will place it in recovery mode since that erases the iPod and bypasses the passocode.
    RecBoot: Easy Way to Put iPhone into Recovery Mode
    - Next try letting the battery fully drain. The try again.

  • SAPscript Output Problem - Very Urgent - Please help

    Hi,
    I am having the following problem with SAPscript.
    In the Main Window, I have instructions to the printer in the ZPL2 language (For Zebra Printer).
    There are also several variables, which are highlighted in Gray and enclosed in the’&’.
    There are also several elements – all of them empty except for the one where this code is.
    Now, I received this program to modify in terms of code and the output.
    IF you have never done any work with Zebra Printing, the way it is done is that you create a label using the Zebra BarOne or Zebra Designer program, then output it to an ‘itf’ file, upload it into a standard text as .itf and copy the uploaded contents to the main window. When printing to a Zebra printer, the Zebra printer will read the instructions and will print the output.
    Here is the problem: The config for the output type is correct.
    When doing a printing test from SAPscript, I get the right output and the Zebra printer is able to print it.
    However, the real process for this task will go through MB02. There, if I create a spool request using the proper method (select output type and etc.), it will go the spool. However, if I print preview or output (doesn’t work with the Zebra printer, so I have to output to the Laser printer), it will output the following (none of the following includes any of the ZPL2 code/instructions. Instead, it seams to print the variables contents with the field name next to it – This isn’t whats it’s the Main window!!!)
    http://img244.imageshack.us/img244/6915/66052475zk2.jpg
    Please help. I have debugged but don’t know what to do and can’t find anything wrong.
    This is very urgent. Any help will be useful.
    Thanks,
    John

    Ok, maybe I have confused others in regards to the issue as well.
    We expect this label to be output from a Zebra Printer.
    When output through Sapscripts printing test, the preview from the spool shows the ZPL2 code in small font (non readible if a created a screenshot) and if sent to the Zebra Printer, it prints the label correctly.
    When output through MB02, the preview from the spool shows the code that I have attached to the 1st post in this thread. If I try to output to the Zebra Printer, nothing happens because the ZPL2 instructions are not even in the preview and therefore, the Zebra printer recieves no instructions. I should not have mentioned the laser printer, because it has nothing to do with this issue.
    I hope that this makes the issue a little more clear and understandable. Please help.
    Here is the ZPL2 coding before uploading to standard text (only difference is that once uploaded,  the '/' characters are removed.) However, I believe that the problem may lie in the print program and how it compiles but I debugged and haven't really seen where it comes from:
    /:NEW-PAGE
    / ^XA
    / DFNEW-RE-1FS
    / ^PRC
    / LH0,0FS
    / ^LL1830
    / ^MD0
    / ^MNY
    / LH0,0FS
    / FO244,854A0N,55,46CI13FRFB154,1,0,LFN999^FS
    / FO819,698A0N,55,46CI13FRFN998FS
    / FO245,477A0N,55,46CI13FRFB755,1,0,RFN997^FS
    / FO389,926A0N,55,46CI13FRFB654,1,0,RFN996^FS
    / BY3,3.0FO42,1072B3N,N,152,N,YFRFN995FS
    / FO276,1258A0N,55,46CI13FRFN995FS
    / FO484,774A0N,55,46CI13FRFN994FS
    / FO817,774A0N,55,46CI13FRFN993FS
    / FO611,556A0N,55,46CI13FRFN992FS
    / FO245,556A0N,55,46CI13FRFN991FS
    / FO397,117A0N,55,46CI13FRFN990FS
    / FO245,405A0N,55,46CI13FRFB880,1,0,RFN989^FS
    / FO244,698A0N,55,46CI13FRFN988FS
    / FO629,998A0N,55,46CI13FRFN987FS
    / FO244,623A0N,52,42CI13FRFN986FS
    / FO397,261A0N,55,46CI13FRFB404,1,0,RFN985^FS
    / FO819,854A0N,55,46CI13FRFN984FS
    / FO725,554A0N,55,46CI13FRFN983FS
    / FO397,189A0N,55,42CI13FRFB695,1,0,RFN982^FS
    / FO397,333A0N,55,42CI13FRFN981FS
    / FO638,333A0N,55,42CI13FRFN980FS
    / FO391,21A0N,63,63CI13FRFB433,1,0,CFN979^FS
    / FO36,698A0N,55,46CI13FR
    / FDWBS:FS
    / FO37,405A0N,55,46CI13FR
    / FDMATL:FS
    / FO37,478A0N,62,44CI13FR
    / FDDESC:FS
    / FO554,698A0N,55,46CI13FR
    / FDSUPPLIER:FS
    / FO32,625A0N,55,46CI13FR
    / FDTEXT:FS
    / FO35,1258A0N,55,46CI13FR
    / FDBATCH NO:FS
    / FO770,775A0N,63,51CI13FR
    / FD/FS
    / FO32,854A0N,55,46CI13FR
    / FDESHM:FS
    / FO37,556A0N,55,46CI13FR
    / FDQTY:FS
    / FO32,998A0N,55,46CI13FR
    / FDSAP MATERIAL DOC NO:FS
    / FO525,333A0N,55,46CI13FR
    / FDofFS
    / FO556,854A0N,55,46CI13FR
    / FDINSPECT:FS
    / FO32,926A0N,55,46CI13FR
    / FDUNLOADING:FS
    / FO37,117A0N,55,46CI13FR
    / FDSTOCK TYPE:FS
    / FO32,774A0N,55,46CI13FR
    / FDPURCHASE ORDER:FS
    / FO37,188A0N,55,46CI13FR
    / FDDELIVER TO:FS
    / FO37,260A0N,55,46CI13FR
    / FDSTORAGE LOC:FS
    / FO37,332A0N,55,46CI13FR
    / FDCONTAINERS:FS
    / FO1,1359GB1217,0,6^FS
    / FO594,1359GB0,474,6^FS
    / ^XZ
    /:NEW-PAGE
    / ^XA
    / ^XFNEW-RE-1.ZPL
    / FN999FD&ATWRT_HAZAMAT(6)&^FS
    / FN998FD&EKKO-LIFNR&^FS
    / FN997FD&MABDR-MAKTX&^FS
    / FN996FD&MSEG-ABLAD&^FS
    / FN995FD&MSEG-CHARG&^FS
    / FN994FD&MSEG-EBELN&^FS
    / FN993FD&MSEG-EBELP&^FS
    / FN992FD&MSEG-ERFME&^FS
    / FN991FD&MSEG-ERFMG&^FS
    / FN990FD&MSEG-INSMK(1)&^FS
    / FN989FD&MSEG-MATNR&^FS
    / FN988FD&MSEG-MAT_PSPNR&^FS
    / FN987FD&MSEG-MBLNR&^FS
    / FN986FD&MSEG-SGTXT(40)&^FS
    / FN985FD&MSEG-UMLGO&^FS
    / FN984FD&QALS-PRUEFLOS&^FS
    / FN983FD&V_BACKORDER&^FS
    / FN982FD&V_NAME3&^FS
    / FN981FD&WS_CNTR&^FS
    / FN980FD&WS_CON&^FS
    / FN979FD&WS_HEADER& &^FS
    / ^PQ1,0,1,N
    / ^XZ
    / ^FX End of job

  • Date format Problem in OAF R12 Urgent Please help!!!

    We have acustom application in OAF which was developed in 11i. Now we migrated the same to R12.
    In this there are two date fileds getting dispayed on the page and the query for the same is
    SELECT TO_CHAR (SYSDATE, 'dd-mm-yyyy') AS CURRENT_DATE, UPPER (TO_CHAR (SYSDATE - 10, 'mon-yy')) AS g_period, UPPER (TO_CHAR (SYSDATE + 5, 'mon-yy')) AS gnext_period, TO_CHAR (sysdate,'dd-mon-yyyy') as today_date, TO_CHAR (sysdate - 1,'dd-mon-yyyy') as yesterday_date FROM DUAL
    In 11i version the output is dispaying correctly but in R12 the current date is dispayed as
    Start Date 04-Nov-5242
    End Date 04-Nov-5241
    As per logic it should be
    Start Date 09-Feb-2012
    End Date 10-Feb-2012
    Please help..Urgent issue.

    Here are the answers to your problems :
    1. Once u restart , the oracle services and the database is not mounting automatically.That is because, when you install the Oracle Oracle8i Standard Edition Release (8.1.7), the two key services namely
    OracleOraHome81TNSListner and
    OracleService<your SID name>
    are configured as manual start ( check the NT --> start>setting>control panel>services. )
    For the database to start automatically the next time you start your machine, these two services will have to be put into "Automatic Start" mode.
    < for this double click on the respective service, select the "Automatic" radio button and click on ok>.
    Now when you restart the machine, your database will be automatically mounted.
    2. this as explained above is a corollory to the above problem. you can start or stop your database on NT using the "Services" window....
    hope this helps.
    bye.
    Hi All,
    I have installed Oracle Oracle8i Standard Edition Release (8.1.7) from technet site.
    I have installed it on windows NT 4.0 .
    Installation is fine.
    I can access or get into SQL prompt .
    I have created a database also.
    1st problem
    My problem is once I restart the Machine and try to access SQL plus .it gives me an error
    ORA-01034: Oracle not available
    ORA-27101: shared memory realm does not exist.
    2nd problem
    I dont know how to start and stop the database , as there is nothing to do that in the start menu of Oracle .
    How do i do this .
    This is very urgent please help.
    regards,
    Preeti

  • Kernel panics, message saying "You need to restart your computer.Hold down the Power..." I am in the middle of HSC very URGENT please help!! Mac keeps needing to restart!!

    Kernel panics, message saying "You need to restart your computer.Hold down the Power..." I am in the middle of HSC very URGENT please help!! Mac keeps needing to restart!!
    I looked in console and its saying that it may be because of Sophos Anti-Virus, i deleted and uninstalled all traces of Sophos but looked in console and this is some of the lines coming up:
    26/09/13 10:11:17.945 PM com.apple.launchd: (com.sophos.intercheck[6460]) posix_spawn("/Library/Sophos Anti-Virus/InterCheck.app/Contents/MacOS/InterCheck", ...): No such file or directory
    26/09/13 10:11:17.945 PM com.apple.launchd: (com.sophos.autoupdate[6461]) posix_spawn("/Library/Sophos Anti-Virus/SophosAutoUpdate.app/Contents/MacOS/SophosAutoUpdate", ...): No such file or directory
    26/09/13 10:11:17.945 PM com.apple.launchd: (com.sophos.notification[6462]) posix_spawn("/Library/Sophos Anti-Virus/SophosAntiVirus.app/Contents/MacOS/SophosAntiVirus", ...): No such file or directory
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.intercheck[6460]) Exited with code: 1
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.intercheck) Throttling respawn: Will start in 10 seconds
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.autoupdate[6461]) Exited with code: 1
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.autoupdate) Throttling respawn: Will start in 10 seconds
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.notification[6462]) Exited with code: 1
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.notification) Throttling respawn: Will start in 10 seconds
    26/09/13 10:11:18.291 PM Safari: self <TabContentView: 0x7f8d5dd1aa50>
    26/09/13 10:11:22.617 PM Safari: self <TabContentView: 0x7f8d5db7bb00>
    26/09/13 10:11:27.866 PM Safari: self <TabContentView: 0x7f8d5c331a70>
    26/09/13 10:12:19.939 PM com.apple.launchd.peruser.501: (com.sophos.uiserver[6487]) posix_spawn("/Library/Sophos Anti-Virus/SophosUIServer.app/Contents/MacOS/SophosUIServer", ...): No such file or directory
    26/09/13 10:12:19.939 PM com.apple.launchd.peruser.501: (com.sophos.uiserver[6487]) Exited with code: 1
    26/09/13 10:12:19.939 PM com.apple.launchd.peruser.501: (com.sophos.uiserver) Throttling respawn: Will start in 10 seconds"
    Looked all over computer and cant find anything of Sophos please help very urgent!

    That was all that there was in the most recent one, how long do you think it could take to fix?
    Here is the second most recent:
    Wed Sep 25 15:39:39 2013
    panic(cpu 0 caller 0xffffff80002c4794): Kernel trap at 0xffffff7f81757965, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0xffffff81acc397fe, CR3: 0x000000001e2b5025, CR4: 0x00000000000606e0
    RAX: 0x000000001d31a000, RBX: 0x0000000000000000, RCX: 0x0000000000000000, RDX: 0x0000000000000000
    RSP: 0xffffff80b0dbb710, RBP: 0xffffff80b0dbb820, RSI: 0x0000000000000000, RDI: 0x0000000000000001
    R8:  0x000000000000000a, R9:  0x0000000000000378, R10: 0x0000000000000128, R11: 0x0000000000000378
    R12: 0xffffff800c626400, R13: 0x0000000000000000, R14: 0x0000000000000000, R15: 0xffffff81acc39802
    RFL: 0x0000000000010246, RIP: 0xffffff7f81757965, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0xffffff81acc397fe, Error code: 0x0000000000000000, Faulting CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80b0dbb3c0 : 0xffffff8000220792
    0xffffff80b0dbb440 : 0xffffff80002c4794
    0xffffff80b0dbb5f0 : 0xffffff80002da55d
    0xffffff80b0dbb610 : 0xffffff7f81757965
    0xffffff80b0dbb820 : 0xffffff7f817667a0
    0xffffff80b0dbb840 : 0xffffff7f8173a58e
    0xffffff80b0dbb870 : 0xffffff7f8177fb6f
    0xffffff80b0dbb8a0 : 0xffffff7f81779632
    0xffffff80b0dbb8d0 : 0xffffff7f8177d7d5
    0xffffff80b0dbb900 : 0xffffff7f8177c6db
    0xffffff80b0dbb9e0 : 0xffffff7f817412b8
    0xffffff80b0dbba10 : 0xffffff7f81778684
    0xffffff80b0dbba30 : 0xffffff7f817449ce
    0xffffff80b0dbbb60 : 0xffffff7f81741a4c
    0xffffff80b0dbbbc0 : 0xffffff8000655f3e
    0xffffff80b0dbbbe0 : 0xffffff800065681a
    0xffffff80b0dbbc40 : 0xffffff8000656fbb
    0xffffff80b0dbbd80 : 0xffffff80002a3f08
    0xffffff80b0dbbe80 : 0xffffff8000223096
    0xffffff80b0dbbeb0 : 0xffffff80002148a9
    0xffffff80b0dbbf10 : 0xffffff800021bbd8
    0xffffff80b0dbbf70 : 0xffffff80002aef10
    0xffffff80b0dbbfb0 : 0xffffff80002daec3
          Kernel Extensions in backtrace:
             com.apple.driver.AppleIntelHD3000Graphics(7.3.2)[A2328231-E577-32FF-B20F-D08BDC FE9C51]@0xffffff7f81738000->0xffffff7f8179bfff
                dependency: com.apple.iokit.IOPCIFamily(2.7)[5C23D598-58B2-3204-BC03-BC3C0F00BD32]@0xffffff 7f80889000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[7C8672C4-8B0D-3CCF-A79A-23C62E90F895]@0xff ffff7f80d2e000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[D0A1F6BD-E66E-3DD8-9913-A3AB8746F422]@0 xffffff7f80cf5000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    11G63b
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    Kernel UUID: FF3BB088-60A4-349C-92EA-CA649C698CE5
    System model name: MacBookPro8,1 (Mac-94245B3640C91C81)
    System uptime in nanoseconds: 1866666823698
    last loaded kext at 480357661446: com.apple.filesystems.smbfs          1.7.2 (addr 0xffffff7f80795000, size 241664)
    last unloaded kext at 303348424187: com.apple.driver.AppleUSBUHCI          5.1.0 (addr 0xffffff7f80af7000, size 65536)
    loaded kexts:
    com.sophos.kext.sav          8.0.14
    org.virtualbox.kext.VBoxNetAdp          4.2.16
    org.virtualbox.kext.VBoxNetFlt          4.2.16
    org.virtualbox.kext.VBoxUSB          4.2.16
    org.virtualbox.kext.VBoxDrv          4.2.16
    com.logmein.driver.LogMeInSoundDriver          1.0.2
    com.Greatdy.driver.SystemAudioCapture          1.0.0
    com.apple.filesystems.smbfs          1.7.2
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.iokit.IOBluetoothSerialManager          4.0.8f17
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleHDA          2.2.5a5
    com.apple.driver.AppleMikeyDriver          2.2.5a5
    com.apple.driver.AGPM          100.12.75
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleSMCPDRC          5.0.0d8
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.3
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.driver.ApplePolicyControl          3.1.33
    com.apple.driver.ACPI_SMC_PlatformPlugin          5.0.0d8
    com.apple.driver.AppleIntelHD3000Graphics          7.3.2
    com.apple.driver.AppleBacklight          170.2.2
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleUSBTCButtons          227.6
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.8f17
    com.apple.driver.AppleUSBTCKeyboard          227.6
    com.apple.driver.AppleIRController          312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.iokit.SCSITaskUserClient          3.2.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCISerialATAPI          2.0.3
    com.apple.iokit.IOAHCIBlockStorage          2.1.0
    com.apple.driver.AppleUSBHub          5.1.0
    com.apple.driver.AppleFWOHCI          4.9.0
    com.apple.driver.AirPort.Brcm4331          561.7.22
    com.apple.driver.AppleSDXC          1.2.2
    com.apple.iokit.AppleBCM5701Ethernet          3.2.4b8
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleAHCIPort          2.3.1
    com.apple.driver.AppleUSBEHCI          5.1.0
    com.apple.driver.AppleACPIButtons          1.5
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.5
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          195.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.4
    com.apple.security.TMSafetyNet          8
    com.apple.driver.AppleIntelCPUPowerManagement          195.0.0
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.driver.DspFuncLib          2.2.5a5
    com.apple.iokit.IOSurface          80.0.2
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleHDAController          2.2.5a5
    com.apple.iokit.IOHDAFamily          2.2.5a5
    com.apple.iokit.IOAudioFamily          1.8.6fc18
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleGraphicsControl          3.1.33
    com.apple.driver.AppleSMC          3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy          5.0.0d8
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.IOPlatformPluginFamily          5.1.1d6
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleIntelSNBGraphicsFB          7.3.2
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.8f17
    com.apple.iokit.IOBluetoothFamily          4.0.8f17
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.5
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.5
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.5
    com.apple.driver.AppleUSBMultitouch          230.5
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.driver.AppleUSBMergeNub          5.1.0
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.2.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.1
    com.apple.driver.AppleThunderboltNHI          1.6.0
    com.apple.iokit.IOThunderboltFamily          2.0.3
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IOFireWireFamily          4.4.8
    com.apple.iokit.IO80211Family          420.3
    com.apple.iokit.IOEthernetAVBController          1.0.1b1
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.iokit.IOUSBFamily          5.1.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.11
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          331.7
    com.apple.iokit.IOStorageFamily          1.7.2
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4

  • By mistake I uninstalled my Acrobat someting, which gave me the opportunity to print .pdf and color-mark text. My licence key is [removed by moderator]. What is the name of the product? Where is the link for download and reinstall? Please help me r

    By mistake I uninstalled my Acrobat someting, which gave me the opportunity to print .pdf and color-mark text. My licence key is [removed by moderator - never disclose publicly]. What is the name of the product? Where is the link for download and reinstall? Please help me rapidly, Best regards / Stefan

    Sign in to your Adobe account online and look in the Plans/Products sections to see which program it might have been.

  • Set Page "HEIGHT" ---Very Urgent, Please Help me on this issue. Please.

    Hi all ,
    Very Urgent, Please Help me on this issue.
    when_now_form trigger i set set maximize the window and MDI. And my window and canvas is same height (1500). The formsweb.cfg also changed to 1500. But still I can not view full page on web. Where to I change the properties. Please help.
    Selvam

    Is your form running inside the browser window (with SeparateFrame=False)? If the browser is maximized, and your form is maximized, yet you cannot see the entire screen, you can run with SeparateFrame=True. You can do that on the browser line.

  • My appstore wont let me download anything. It says i have to agree to the terms and i agree and again it pop up the same thing over and over! Please help me

    My appstore wont let me download anything. It says i have to agree to the terms and i agree and again it pop up the same thing over and over! Please help me

    I thought i was the only one!! but its happening on my ipad! and i dont even want to try on my iphone uhhh its annoying!

  • "Connect to iTunes to Use Push Notifications" comes almost in every app that I open and it does not notify me when I got message in Whatsapp and Viber. Please help me to overcome it, it is becoming quite annoying!

    "Connect to iTunes to Use Push Notifications" comes almost in every app that I open and it does not notify me when I got message in Whatsapp and Viber. Please help me to overcome it, it is becoming quite annoying!

    Did you get any help on this? From what I can see from surfing this site, it's a BUG that no one has offered a solution to. It sometimes happens after a 'reset' and going to ITunes does not offer a way to 'set up push notifications'.

  • I have an itunes account on my home PC. I want to use my same account but on my laptop. How do i do this with out wiping out my phone and backing up all my Pictures and Apps? Please Help.

    I have an itunes account on my home PC. I want to use my same account but on my laptop. How do i do this with out wiping out my phone and backing up all my Pictures and Apps? Please Help.

    Copy everything from the old computer or your backup copy of your old computer to your new one.
    Type "move itunes library from pc to mac" or similar into the google search bar.

  • I'm having multiple crashes on my new 5s. I can't connect to my Mac Pro!! Power cord broken. How can I fix this without connecting to my MacBook? Very frustrating and disappointing. Please help!!!

    I'm having multiple crashes on my new 5s. I can't connect to my Mac Pro!! Power cord broken. How can I fix this without connecting to my MacBook? Very frustrating and disappointing. Please help!!!

    Hi there Rlong50,
    You may want to try force closing all open apps and resetting the device as an initial troubleshooting step. Take a look at the articles below for more information.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    -Griff W.

  • I have a problem with itunes when I sync the saved music and want to sync my iphone 5 ios 7.0.6 no longer passes the music thing is that just stays on "waiting for sync" and not worry please help are more than 400 songs that do not want to hear who are wi

    I have a problem with itunes when I sync the saved music and want to sync my iphone 5 ios 7.0.6 no longer passes the music thing is that just stays on "waiting for sync" and not worry please help are more than 400 songs that do not want to hear who are wi

    Plawexki wrote:
    ...  do you know if the contacts, photos, messages etc will be wiped?
    Yes... Everything will be Wiped and Replaced with what is currently on Your Mac.
    SYNCING with iTunes
    See here  >  http://support.apple.com/kb/HT1386
    From Here  >  http://www.apple.com/support/iphone/syncing/
    You may find this information of interest...
    Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha
    And See Here...
    How to Use Multiple iDevices with One Computer

  • Iphone 4 went into recovery mode when trying to restore, only option available now is to "restore and update" however this will not work, how can you restore from a backup once in recovery mode and only option is "restore and upgrade"? Please help!

    iPhone 4 went into recovery mode when trying to restore it. Now the only option iTunes allows is for "restore & upgrade", it is not offer an option to restore from a backup, says that must first do the upgrade, when attempting to do the upgrade the iPhone won't accept it.
    How can I restore from a back up in recovery mode when the only option is "restore and upgrade"?
    Please help.

    You don't you must restore your phone first and then you will have the option to restore from your backup.
    If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support

Maybe you are looking for

  • OBIEE 11g (11.1.1.5...)Column Selectors and Action Links

    All, I think we have bug - we have a column selector for 3 columns. One of them is configured to navigate to another analyses page (we have only one action link configured) . we have checked the option - "Do not display in a popup if only one action

  • ITunes can't see Aperture Library - iMovie can't see most videos in Aperture Library

    Issues: Nearly all of my videos in the Aperture/iPhoto library do not show up when I select iPhoto library option in iMovie and iMovie is unable to locate them in any other way.  iTunes does not recognize my Aperture library, and I get the following

  • Where do I see what recent purchases are made on my account?

    How do I find out what recent purchases are made to my account? I had an old email attached to it so I did not get the email receipt.  I have no idea what recent charges are for. I can't see anywhere that it lets me review all my purchases.  They may

  • Why my reader not beep

    hi friends, i'm working with smart card reader. my problem is i try to make my reader beeping. i just have to send a byte to the reader. but the reader still not working. i dont know either my program is wrong. its communicate used serial port rs232

  • Questions concerning basic bash scripting

    Good evening, at the moment we do bash scripting at university, but I seen to encounter some problems in understanding the functionality of bash. I would be very grateful if you guys could help me out with one or another question. First one: Task to