Need of the datasource for the CRM Table CRMD_MKTATTR_SET

Hi Experts,
I have a field name in CRM but I couldn't able to find out the datasource in which that field exists
CRM Field Name                CRM Table Name
ATTRIBUTE_SET               CRMD_MKTATTR_SET
Now I need the Datasource(DS) for the above mentioned field, so that I can do the extraction from CRM to BW.
And can anyone provide me the information fo how to find out the relavant Datasource in CRM for a particular field in CRM
Could anyone please help me in the above issues.
Thanking you in Advance.
ARUN

Hi Arun,
Duno whether this is what you need:
CAMP_TYPE  CRM Marketing Planning - Campaign Type CRM_MKTPL_ATTR  CAMP_TYPE:
http://help.sap.com/saphelp_nw70/helpdata/en/a0/e98d3b24e50656e10000000a114084/frameset.htm
Alice

Similar Messages

  • Need to extract the data from the CRM table : SCAPPTSEG

    Hi BW Experts,
    I want to extract the Data from CRM Table "SCAPPTSEG" to BW. The dates are stored in UTC Format.So for getting the date in CET format, we have used the Function Module "IB_CONVERT_FROM_TIMESTAMP".
    I want to create a datasource for extracting the data from "SCAPPTSEG" table and i need to use the function module for getting the date in CET Format.
    Can i achieve this action through Generic Extraction.
    please provide me the steps to achieve this.
    Thanks,
    Shahina.A

    not answered

  • Lookup field to connect the CRM tables With 2LIS_11_VAITM

    Dear Gurus,
    Greetings for the day...!!!
    In CRM system I have two tables
    1.CRMD_ORDERADM_H
    *Object Id* is the field
    and the next table is
    2.SCAPPTSEG
    Fields in tht table are TST_FROM
                                    TST_TO
    I have to link this two tables with datasource 2LIS_11_VAITM
    I have tried to connect with a lookup field from the tables to the datasource,but I didnt find a common field.
    Even I tried to connect the datasource thru some other table but I couldnt
    Pls help me out in this...!!!
    Points will be awarded
    Regards
    Lucky

    This is standard behavior. Custom fields do not trigger delta.
    You can try several options -
    - If it is a standard SAP field coming from one of those VB* tables, try to name your custom field the same (SAP gives a warning, but you can ignore it). SAP sends the complete structures (eg VBAK, VBAP) for delta recording, and if this field is part of these structures, it may trigger the delta.
    If that is not applicable, consider extending the LIS comm structure underlying this extractor and use an LIS exit to populate this field. This field will then be available in LBWE to transfer to extract structure and will trigger the delta. The appropriate exit is mentioned in Roberto Negro's weblog on extractors here on SDN (am not on system so cant give you the LIS exit name).
    If that is also out of question, try what is described <a href="http://www.ko-india.com/content/weblogs/weblog_custom_fields_1.pdf">here</a>.

  • A partition tab is needed in the schema-table browser and it's missing

    After a first sight with the product, I couldn't find a partition tab in the schema-table browser.
    For those having partitions it is absolutely essential.

    It's easy to add,
    create a file that has the following content
    <?xml version="1.0" encoding="UTF-8"?>
    <items>
    <item type="sharedQuery" id="PartSubPartkeys">
    <query minversion="9">
         <sql>
         <![CDATA[ select 'PARTITION KEYS' PARTITION_LEVEL,substr(sys_connect_by_path(column_name,','),2) "PARTITION KEYS"
                   from (select column_name, column_position
                   from all_part_key_columns
                   where owner = :OBJECT_OWNER
                   and name = :OBJECT_NAME
                   and object_type='TABLE' )
                   start with column_position=1
                   connect by column_position=prior column_position+1
                   union all
                   select 'SUBPARTITION KEYS' ,substr(sys_connect_by_path(column_name,','),2)
                   from (select column_name, column_position
                   from all_subpart_key_columns
                   where owner = :OBJECT_OWNER
                   and name = :OBJECT_NAME
                   and object_type='TABLE' )
                   start with column_position=1
                   connect by column_position=prior column_position+1]]></sql>
         </query>
         </item>
    <item type="sharedQuery" id="PartSubPartkeysFI">
    <query minversion="9">
         <sql>
         <![CDATA[ select 'PARTITION KEYS' PARTITION_LEVEL,substr(sys_connect_by_path(column_name,','),2) "PARTITION KEYS"
                   from (select column_name, column_position
                   from all_part_key_columns
                   where owner = :OBJECT_OWNER
                   and name = (select table_name
                             from all_indexes
                             where index_name=:OBJECT_NAME
                             and owner=:OBJECT_OWNER)
                   and object_type='TABLE' )
                   start with column_position=1
                   connect by column_position=prior column_position+1
                   union all
                   select 'SUBPARTITION KEYS' ,substr(sys_connect_by_path(column_name,','),2)
                   from (select column_name, column_position
                   from all_subpart_key_columns
                   where owner = :OBJECT_OWNER
                   and name =(select table_name
                             from all_indexes
                             where index_name=:OBJECT_NAME
                             and owner=:OBJECT_OWNER)
                   and object_type='TABLE' )
                   start with column_position=1
                   connect by column_position=prior column_position+1]]></sql>
         </query>
         </item>
    <item type="sharedQuery" id="Partitions">
    <query minversion="9">
         <sql>
         <![CDATA[ select partition_name,  num_rows,AVG_ROW_LEN, blocks ,LAST_ANALYZED from all_tab_partitions where table_owner = :OBJECT_OWNER and table_name = :OBJECT_NAME order by partition_position]]></sql>
         </query>
         </item>
    <item type="sharedQuery" id="SubPartitions">
    <query minversion="9">
         <sql>
         <![CDATA[ select subpartition_name, partition_name,  num_rows,AVG_ROW_LEN, blocks ,LAST_ANALYZED from all_tab_subpartitions where table_owner = :OBJECT_OWNER and table_name = :OBJECT_NAME order by partition_name,subpartition_position]]></sql>
         </query>
         </item>
    <item type="editor" node="TableNode" >
    <title><![CDATA[Partitions/SubPartitions]]></title>
    <query id="PartSubPartkeys" />
    <subquery>
    <title>Partitions/SubPartition</title>
    <query>
    <sql><![CDATA[select partition_position, partition_name "Partition/Subpartition",  tablespace_name,high_value,compression,num_rows,AVG_ROW_LEN, blocks ,LAST_ANALYZED from all_tab_partitions where table_owner = :OBJECT_OWNER and table_name = :OBJECT_NAME and 'PARTITION KEYS'=:PARTITION_LEVEL
             union all
             select subpartition_position, partition_name||'/'||subpartition_name, tablespace_name,high_value,compression,num_rows,AVG_ROW_LEN, blocks ,LAST_ANALYZED from all_tab_subpartitions where table_owner = :OBJECT_OWNER and table_name = :OBJECT_NAME and 'SUBPARTITION KEYS' =:PARTITION_LEVEL
             order by 2]]></sql>
    </query>
    </subquery>
    </item>
    <item type="editor" node="MViewNode" >
    <title><![CDATA[Partitions/SubPartitions]]></title>
    <query id="PartSubPartkeys" />
    <subquery>
    <title>Partitions/SubPArtition</title>
    <query>
    <sql><![CDATA[select partition_position, partition_name "Partition/Subpartition",  tablespace_name,
             high_value,compression,num_rows,AVG_ROW_LEN, blocks ,LAST_ANALYZED
             from all_tab_partitions where table_owner = :OBJECT_OWNER and table_name = :OBJECT_NAME and 'PARTITION KEYS'=:PARTITION_LEVEL
             union all
             select subpartition_position, partition_name||'/'||subpartition_name, tablespace_name,high_value,
             compression,num_rows,AVG_ROW_LEN, blocks ,LAST_ANALYZED
             from all_tab_subpartitions where table_owner = :OBJECT_OWNER and table_name = :OBJECT_NAME and 'SUBPARTITION KEYS' =:PARTITION_LEVEL
             order by 2]]></sql>
    </query>
    </subquery>
    </item>
    <item type="editor" node="IndexNode" >
    <title><![CDATA[Partitions/SubPartitions]]></title>
    <query id="PartSubPartkeysFI" />
    <subquery>
    <title>Partitions/SubPArtition</title>
    <query>
    <sql><![CDATA[select partition_position, partition_name "Partition/Subpartition",  tablespace_name,high_value,compression,
             Leaf_Blocks, Distinct_Keys, clustering_factor ,LAST_ANALYZED
             from all_ind_partitions where index_owner = :OBJECT_OWNER and index_name = :OBJECT_NAME
             and 'PARTITION KEYS'=:PARTITION_LEVEL
             union all
             select subpartition_position, partition_name||'/'||subpartition_name, tablespace_name,high_value,compression,
             Leaf_Blocks, Distinct_Keys, clustering_factor ,LAST_ANALYZED
             from all_ind_subpartitions
             where index_owner = :OBJECT_OWNER
             and index_name = :OBJECT_NAME
             and 'SUBPARTITION KEYS'=:PARTITION_LEVEL
             order by 2]]></sql>
    </query>
    </subquery>
    </item>
    <item type="editor" node="TableNode">
    <title><![CDATA[Unabridged SQL]]></title>
    <query>
    <sql><![CDATA[select :OBJECT_OWNER OOWNER, :OBJECT_NAME ONAME, 'TABLE' OTYPE from dual union all select owner,index_name,'INDEX' from all_indexes where table_owner= :OBJECT_OWNER and table_name=:OBJECT_NAME ]]></sql>
    </query>
    <subquery type="code">
    <query>
    <sql><![CDATA[select dbms_metadata.get_ddl(:OTYPE,:ONAME, :OOWNER) "SQL Statements" from dual]]></sql>
    </query>
    </subquery>
    </item>
    <item type="editor" node="TableNode">
    <title><![CDATA[Partition Columns Statistics]]></title>
    <query id="Partitions" />
    <subquery>
    <query>
         <sql>
         <![CDATA[ select COLUMN_NAME, NUM_DISTINCT, LOW_VALUE, HIGH_VALUE, DENSITY, NUM_NULLS
             from all_part_col_statistics where owner = :OBJECT_OWNER
             and table_name = :OBJECT_NAME
             and partition_name= :PARTITION_NAME
             order by column_name]]></sql>
    </query>
    </subquery>
    </item>
    <item type="editor" node="TableNode">
    <title><![CDATA[SUBPartition Columns Statistics]]></title>
    <query id="SubPartitions" />
    <subquery>
    <query>
         <sql>
         <![CDATA[ select COLUMN_NAME, NUM_DISTINCT, LOW_VALUE, HIGH_VALUE, DENSITY, NUM_NULLS from all_subpart_col_statistics where owner = :OBJECT_OWNER and table_name = :OBJECT_NAME and subpartition_name=:SUBPARTITION_NAME order by column_name]]></sql>
         </query>
    </subquery>
    </item>
    <item type="editor" node="MViewNode">
    <title><![CDATA[Partition Columns Statistics]]></title>
    <query id="Partitions" />
    <subquery>
    <query>
         <sql>
         <![CDATA[ select COLUMN_NAME, NUM_DISTINCT, LOW_VALUE, HIGH_VALUE, DENSITY, NUM_NULLS
             from all_part_col_statistics where owner = :OBJECT_OWNER
             and table_name = :OBJECT_NAME
             and partition_name= :PARTITION_NAME
             order by column_name]]></sql>
    </query>
    </subquery>
    </item>
    <item type="editor" node="MViewNode">
    <title><![CDATA[SUBPartition Columns Statistics]]></title>
    <query id="SubPartitions" />
    <subquery>
    <query>
         <sql>
         <![CDATA[ select COLUMN_NAME, NUM_DISTINCT, LOW_VALUE, HIGH_VALUE, DENSITY, NUM_NULLS from all_subpart_col_statistics where owner = :OBJECT_OWNER and table_name = :OBJECT_NAME and subpartition_name=:SUBPARTITION_NAME order by column_name]]></sql>
         </query>
    </subquery>
    </item>
    <item type="editor" node="SchemaFolder" minversion="10.1">
    <title><![CDATA[Sessions]]></title>
    <query>
    <sql><![CDATA[select sid,serial#,program,last_call_et,machine, status, sql_hash_value shv,sql_child_number scn
             from v$session
             order by 1]]></sql>
    </query>
    <subquery>
    <query>
    <sql><![CDATA[select * from table(dbms_xplan.display_cursor(:SHV,:SCN))]]></sql>
    </query>
    </subquery>
    </item>
    </items>
    and add the following line to your ide.conf file (in jdev/bin directory in the sqldev install dir)
    AddVMOption -Draptor.user.editors=fullpathofthefile(dir and name)
    and restart, you'll get several additional tabs to the ones displayed for tables.
    enjoy

  • Help needed in EXPLAIN PLAN for a partitioned table

    Oracle Version 9i
    (Paste execution plan in a spreadsheet to make sense out of it)
    I am trying to tune this query -
    select * from comm c ,dates d
    where
    d.active_period = 'Y'
    and c.period = d.period;
    Operation     Object Name     Rows     Bytes     Cost     Object Node     In/Out     PStart     PStop
    SELECT STATEMENT Optimizer Mode=CHOOSE          5 M          278887                     
    HASH JOIN          5 M     5G     278887                     
    TABLE ACCESS FULL     SCHEMA.DATES     24      1 K     8                     
    PARTITION LIST ALL                                   1     8
    TABLE ACCESS FULL     SCHEMA.COMM     6 M     5G     277624                1     8
    However, I know that the dates table will return only one record. So, if I add another condition to the above query, I get this execution plan. The comm table is huge but it is partitioned on period.
    select * from comm c ,dates d
    where
    d.active_period = 'Y'
    and c.period = qd.period
    and c.period = 'OCT-07'
    Operation     Object Name     Rows     Bytes     Cost     Object Node     In/Out     PStart     PStop
    SELECT STATEMENT Optimizer Mode=CHOOSE          1           8                     
    MERGE JOIN CARTESIAN          1      9 K     8                     
    TABLE ACCESS FULL     SCHEMA.DATES     1      69      8                     
    BUFFER SORT          1      9 K                         
    TABLE ACCESS BY LOCAL INDEX ROWID     SCHEMA.COMM     1      9 K                    7     7
    INDEX RANGE SCAN     SCHEMA.COMM_NP9     1                          7     7
    How can I make the query such that the comm table does not have to traverse all of its partitions? The partitioning is based on quarters so it will get its data in one partition only (in the above example - partition no. 7)
    Thanks in advance for writing in your replies :)

    You need to specify period = 'OCT-07', otherwise there is no way the optimizer can know it needs to access only one partition.
    Alternatively, partition the DATES table in exactly the same way on "period", and partition-wise joins should kick in, and effectively accessing only the active partition.

  • Standard Datasource for Excise related tables in R/3

    Hi Experts,
        We are developing BI Reports for the Custom Reports in R/3 .
        In one of the ZReports in R/3 the data is coming from 12 tables.
        The data is coming from the tables EKBE,EKPO,EKKO,ADRC,MKPF,BKPF ,MAKT,
        J_1IPART1,J_1IPART2,J_1IEXCDTL,J_1IMOVEND,J_1IMTCHID.
        The tables J_1IPART1,J_1IPART2,J_1IEXCDTL,J_1IMOVEND,J_1IMTCHID are Excise Related.
        Please suggest me if any standard Datasource is available for these tables .
    Regards,
    Chakradhar

    Hi,
    There is no Standard DS for Excise.
    I created the Generic Dss on those tables with delta enabled in my last project. And they are running successfully.
    I created 2 DSs on the same table , one with delta enabled on Created date and  another one with delta enabled on Changed date ( Wherever this field is there in the base table). And used Lower limit as 1 as safty delta so that I was able to do delta loads multiple times in a day.
    Regards,
    Anil Kumar Sharma .P

  • Need to identify Datasource for master data 0CRMVERSION

    Dear Experts,
    I required to load master data for 0CRMVERSION (CRM Plan Version). However could you please help to get suitable datasource for this object.
    Thanks in advance!
    Best Regards,
    Khader

    Hi,
    Any master data source will exist with its name(i.e with name _ attr/text).
    So you can search at your source side at RSA5 and look for data source 0CRMVERSION_ATTR or TEXT.
    As my guess there won't be data source. because 0crmversion is plan indicator,
    If exist data source then you will find at source side RSA5 other wise you may need to go with custom data source. About source table of 0CRMVERISON you can check with CRM team.
    Thanks

  • Need to change datasource for the existing Planning application.

    Can I change the datasource to point to different relational database and recreate the same application. Please help me..I am on 11.1.1.3.
    Thanks,
    Vince

    Hi,
    Pointing to an existing application to a new database means you are going to lose your forms, security, task lists etc. Instead, I suggest 2 options:
    1. first make a duplicate of your app, use LCM to export everything, deploy duplicated app and import exported LCM profile back into this app. It's very straight forward.
    2. Simply migrate & deploy the existing application to a new one. (right click on app in app library, select migrate). Although this is even simpler, this only applies to epma apps.
    Cheers,
    Alp

  • About the CRM table mapping

    Hi Everyone,
    I want to create ABAP report giving details of Business partner and there opportunity, sales transaction(like quotation, sales order) along with contact person details.
    Now for these details I want to have complete details of tables and there relationships.
    Though I know the tables CRMD_SALES contains details of Business transaction
    But how to find out the relationship with the business partner. In this table the field with name 'GUID' comes.. now what is the significance of these field.
    It means the mapping of these table starting from
    basically 'BUT', 'CRMD'.
    thanks in advance.
    regards,
    Dhanraj.

    Hai,
         CAN any One Send me Those DATA Model Files please.
    Thanks,
    [email protected]
    Message was edited by:
            Sreekanth Ratakonda

  • Profit Center Accounting - Need an appropiate DataSource for reporting

    We have a report which gives us debit-credit info based on Business Area for given G/L accounts. Modeling is as follow:
    0FI_GL_1 -> 0FIGL_C01 then report is based on virtual cube 0FIGL_VC1(logic is based on 0FIGL_C01 only)
    now we need a report which will be giving us Profit center wise debit/credit for given account numbers...
    so we moved to Profit center accounting---> used the cube 0PCA_C01,,modeling is as follow:
    0EC_PCA_1 -> 0PCA_C01
    we extracted the datasources 0FI_GL_1 and 0EC_PCA_1 in R/3 whose debit/credit info is not matching for the given G/L accounts.
    Please let me know which datasource will be suitable to get profit center wise o/p instead of using 0EC_PCA_1
    thanks
    Edited by: Alok Kashyap on Mar 26, 2009 7:56 AM

    Yes you are right...
    but as of now table GLT0 is throwing 0 record whereas relevant data is available in table FAGLFLEXT, same has been discussed with FI consultant ,,,anyways its okay...
    my second worry is on Fiscal variant...
    we need historical data which is based on V3 (apr to Mar)---->present in old R/3
    however in new R/3 we have implemented K4 (Jan to dec)---> present in New R/3
    >
    Data modeling is done for both to new BI ,means:
    BI7 is talking to old R/3 and New R/3
    so we have historical data till mar09(coming from old R/3 (V3)) and fresh data coming from New R/3 (K4) since apr09
    >
    now the problem is we have data for all periods but due to difference in fiscal yr variants we will be having data in BI as follow:
    Mar 09 - 12/2009 (V3) - data available
    Apr 09 -  04/2009 (K4) - data avaiable
    here we are seeing data avaiable for both mar and apr but due to difference in fiscal yr variants we are not getttin data since 01/2009 till 03/2009 nevertheless its present ...reports are based on fiscal period/year so if user wants to view report for the period 01/2009 - 03/2009 then it cant be viwed....
    lets know yr opnion on this

  • BW Datasource for R/3 Table

    I have field "KNKLI" in table VBAK.  I want to know the datasource that is bringing data from this field into BW.  Is there a table that gives me this information in R/3?  I need to be able to see any or all the datasources that are extracting data using this field.

    HI,
    Check the table ROOSFIELD in the R3 side, Just give the field name in the selection and excute you will get the Data sources names.
    Khaja

  • Need screen shot documentation for mySAP CRM

    Hi
    all
    Greetings,
    I am looking for every ones help out here & need the screen shot documentation for the following;
    1.Mysap crm Overview.
    2.Base customization
    3.Partner processing
    4.pricing & actions
    It would be really appreciated & i would be very greatfull to each one of you present here
    My E-mail id: [email protected]

    Hi
    You can get all the config building blocks in the link below
    http://help.sap.com/bp_crmv250/CRM_DE/index.htm
    Links to CRM Documentation
    http://help.sap.com/saphelp_crm50/helpdata/en/1a/023d63b8387c4a8dfea6592f3a23a7/frameset.htm
    Do reward points if helpful
    Regards
    Dinaker vikas

  • Need to alter maxvalue for one Partition table

    Hi Guru's,
    We have a table xyz with monthly partitions but tablespaces are in yearly basis.
    we created the required partitions using exchange partition. Now the Partition for Dec 2007 is having range of MAXVALUE.
    But our requirement is to add partition for 2008 now.
    So we want to create 12 monthly partitions for 2008 and with a tablespace for that.
    but how to change the MAXVALUE to 2008010100 for the partition DEC2007.
    Appreciate any quick help !!

    You can split the last partition to change the partition boundaries.
    SQL> r
      1  create table t(a date)
      2  partition by range(a)(
      3  partition p1 values less than (to_date('01.12.2007','dd.mm.yyyy')),
      4* partition p2 values less than (maxvalue))
    Table created.
    SQL> alter table t split partition p2 at (to_date('01.01.2008','dd.mm.yyyy'))
      2  into (partition p2,partition p3);
    Table altered.
    SQL> set lines 200
    SQL> r
      1  select PARTITION_NAME,HIGH_VALUE from user_tab_partitions
      2* where table_name='T'
    PARTITION_NAME                 HIGH_VALUE
    P1                             TO_DATE(' 2007-12-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIA
    P2                             TO_DATE(' 2008-01-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIA
    P3                             MAXVALUE

  • Logical table with data restrictions from the physical table

    Hello, I have a question about the relationships between the Logical Tables in Business Model and Mapping and The Physical table in the physical layer. The problem is the next one:
    I have a Physical Table named T1 that contains the attributes: Id, DateChangeState, State,…
    T1
    DateChangeState| ID |State     | Other columns….
    01/01/2011 | 1 | 03 |     …
    02/01/2011 | 1 |     11 |     …
    03/01/2011 | 1 |     02 |     …
    02/02/2011 | 2 |     01 |     …
    03/02/2011 | 2 |     02 |     …
    I need filter this table and extract only one row per ID. The row that I need is the row who contains the Max(DateChangeState) per ID. I don’t know how extract only the rows selected from the physical table to the Logical Table.
    I need that the logical table contains the next rows:
    T1_Logical
    DateChangeState |ID |     State     Other columns….
    03/01/2011 | 1 | 02 |     …
    03/02/2011 | 2 | 02 |     …
    How can I extract only the rows with the Max(DateChangeState) grouped by ID in the BMM?
    I thought put this condition in the column mapping (CASE WHEN DateChangeState=Max(DateChangeState)) but the Max(DateChangeState) was not grouped by ID.
    Any idea about how solve this problem?
    I can not use the group by in the answer and I can not change the physical layer.
    Thank you,
    Best Regards.

    Hi Rajeevagrl your solution is very good but I dont´t know why obiee is applying twice the max condition, The select is the next one:
    select distinct D1.c1 as c1,
    D1.c2 as c2,
    D1.c1 as c3
    from
    (select D1.c1 as c1,
    D1.c2 as c2
    from
    (select D1.c1 as c1,
    D1.c2 as c2,
    max(D1.c3) over () as c3
    from
    (select T379.ID as c1,
    T379.DATE as c2,
    max(T379.DATE) as c3
    from
    T1 T379
    group by T379.ID, T379.DATE
    ) D1
    ) D1
    where ( D1.c2 = D1.c3 )
    ) D1
    order by c2
    Edited by: 848497 on 14-abr-2011 3:58

  • CRM Tables and Relationships needed!

    HI experts,
    I am a part of CRM and BW implementation.
    As iam new to crm Can anybody send me the CRM Tables and Relationships at <removed by SDN Forum Moderator>

    Hello,
    please have a look to the Topic Links to CRM Documentation there you find instructions how to order the CRM Tables and Relationships documents.
    Regards
    Gregor Wolf
    SDN CRM Forum Moderator

Maybe you are looking for

  • Ideas for a car stereo/gps/Bluetooth for a 2006 honda accord

    I need some ideas on how to get Bluetooth in my 2006 honda accord. I've been looking at car systems with gps and Bluetooth but it seems too expensive. I've also been looking at a Bluetooth device to install in the car. I just don't know how to instal

  • Unable to check logfiles in Application Server Control

    I use oc4j_extended with a seperate oc4j_home: java -jar "%OC4J_INSTAL%\oc4j.jar" -userThreads -verbosity 10 -config %OC4J_HOME%\config\server.xml This means I had to change some paths in server.xml. Now I am able to use ascontrol from my seperate ho

  • Field that is Calculated - Read Only - Capturing output in XML after?

    Hello: I have defined a Calculated - Read Only field but I have not successfully bound it or captured its value in XML. In my Object Palette I do not have a Binding tab, so how do I capture its value in XML after? Thanks, Newbie in Adobe

  • Safari not displaying pages correctly after upgrade to Mavericks

    Hi, I just upgraded my macbook pro (mid 2010) to Mavericks and safari now displays web pages as if I was really zoomed in. When I load a page I will see it correctly for a second and it will then zoom in (no amount of pinch on my trackpad solves the

  • How to manage photo stream?

    Hello, I have photostream enabled on my 4S with iO 5.1 and also on my MBP with iPhoto'11. I want to manage my photos efficiently but there seems to be too many albums. Let me explain... On my iPhone there is a 'camera roll' album and a 'photostream'