Existence Column in General Attribute (CRM) Change - PPOMA_CRM

Hi,
By no means a CRM expert as I generally deal with authorisations, but something has cropped up which has just caught my interest.
Previously we have always created business partners via BP in the CRM client and then carried out the position assignment in PPOMA_CRM. However we are now integrating the CRM org structure with the HR org and so the user is hired, their ID is associated with IT0105, PFAL is run and the sync programme carries out the relevant business partner into CRM and is then assigned.
All well and good and working perfectly well. However I now notice that in the 'Existence' column in the 'Hit List' in PPOMA_CRM some records have a diagonal arrow and some don't. Hovering the mouse over the arrow gives the test 'Object to be removed'. Any ideas what this is?
Thanks,
Nick.

Hi,
Follow the steps
1 change the attribute Lesse Code'(CHAR) length 2 to 5 in the Develop ment system.
2 check the consistancy if the info object and activate.
3 do not worry about the Master data inside the Infoobject
4 after doing soo find the master datasource in the BI system
5 right click on the master datasoure replicate Metadata
6 By this time the data gets syncronize with the existing data
7 now give a full load to the infoobject Vehicle
8 now go to the transport connection collect all the necesseary objects into a trnasportable request and import the same into quality
9 now the changes done in development will replicate the same in the Quality system.
10before  loading the Quality sysstem for Vehicle data soure , Replicate the Metadata once again ibn Quality after transport and the data will matches as exactly the same in the quality
Regards
Santosh

Similar Messages

  • How to change general attribute of text element

    hi
    who now how to change general attribute of text element on screen dinamically? I wish to change text value dinamically for example.

    Hi Denis,
    I am not too sure on what you want.
    If you require that the text value be different based on some conditions you can declare as many text elements as conditions and call the relevant text element.
    But I dont think that you can assign dynamic texts to a single text element.
    Regards,
    Saurabh

  • Crystal didn't show the BEx query Attributes description changes/Values

    We experiencing the BEx query attributes/crystal report  issue.
    I create a crystal report using BW- BEx query. Bex query displays the attributes values. But in crystal report side it didn;t show up the values as well as description changes.
    But If I change the display properties of attributes (different from one attribute to another) the crystal report reflect the values. But crystal report didn't show the Attribute description changes , the one i did it in BEx query side.
    Example:
                         Bex has a Masterdata as well as attribute Field1, Field2 etc.. I changed the description like Field_Test1 and Field_Test2. Also I changed the display property for Field_Test1 is Key and text and long , Field_Test2 is Text & LOng text.
    I  got the attribute values is crystal report Xi R2. But crystal didn't reflect the description changes?
    Suggestions Please?

    Post your question to the Business Object Integration Kits forum

  • Error giving a default value to a date column in the attribute settings.

    When im giving a default value to a date column in the attribute settings i get this error when im running my jsp page (bc4j web application):
    Error Message: JBO-25009: Cannot create an object of type:oracle.jbo.domain.Date with value: 31-dic-2099
    How can i fix that?
    Thank u

    The default date format for oracle.sql.DATE which oracle.jbo.domain.Date extends is "YYYY-MM-DD"

  • Mapping 3 columns to 3 attributes in the same element

    Hi,
    I have 3 columns which are not in a collection as part of my result set. I need to map these 3 columns to an attribute in my result xsd in the transformer.
    eg on the left I have :
    addrline0, addrline1, addrline2. On the right I have an element called ADDR with an index attribute, so I want the right to display
    <ADDRESS>
    <ADDR index="0">my address1</ADDR>
    <ADDR index="1">my address 2</ADDR>
    <ADDR index="2">my address 3</ADDR>
    </ADDRESS>
    this seems not possible in the transformer out of the box - is there a way I can achieve this ? I know that addrline0 will always map to index 0 and addrline1 always map to index 1 etc.
    thanks

    The way to do it would be:
    Assign the first one normally:
    <assign name="first">
    <copy>
    <from variable="addrlin0" query="pVariable"/>
    <to variable="ADDR" query="/tns:ADDRESS"/>
    </copy>
    </assign>
    then assign the following using :
    <bpelx:assign>
    <bpelx:append>
    <from variable="addrlin1" part="return" query="/pVariable"/>
    <to variable="ADDRESS" query="/tns:ADDRESS"/>
    </bpelx:append>
    </bpelx:assign>
    Instead of append you can also use InsertAfter or InsertBefore.
    hth,
    Mike van Alst

  • How to map table columns to xml attributes?

    With a table like this : Column1, Column2,...
    I try to obtain it :
    <?xml version = '1.0'?>
    <ROWSET>
    <ROW num="1" key="column1">
    <NAME>SMITH</NAME>
    </ROW>
    <ROW num="2" key="column1">
    <NAME>ALLEN</NAME>
    </ROW>
    </ROWSET>
    And i find this but it isn't enough :
    SELECT empno "@EMPNO", ename, job, hiredate
    FROM emp
    ORDER BY empno
    <?xml version = '1.0'?>
    <ROWSET>
    <ROW num="1" EMPNO="7369">
    <ENAME>SMITH</ENAME>
    <JOB>CLERK</JOB>
    <HIREDATE>12/17/1980 0:0:0</HIREDATE>
    </ROW>
    <ROW num="2" EMPNO="7499">
    <ENAME>ALLEN</ENAME>
    <JOB>SALESMAN</JOB>
    <HIREDATE>2/20/1981 0:0:0</HIREDATE>
    </ROW>
    </ROWSET>
    how to known the column name?

    I do not know what columns you are talking about, but in HTML you can merge two columns with the attribute COLSPAN="2".
    DickDral

  • Converting result column elements to attributes in xml in PL/SQL

    I need to create a stored proc that returns an xml string that has the columns represented as attributes rather than elements. I don't want the result in this format:
    <ROW>
    <my_id>561</my_id>
    <my_desc>Something</my_desc>
    </ROW>
    <ROW>
    <my_id>250</my_id>
    <my_desc>Something else</my_desc>
    </ROW>
    But need to have it in this format:
    <ROW my_id = "561" my_desc = "Something"/>
    <ROW my_id = "250" my_desc = "Something else"/>
    I can get a similar result to the above by typing in a "@" prefixed alias for each column in the select list using:
    select dbms_xmlgen.getxml('select my_id as "@my_id", my_desc as "@my_desc" from My_Table') my_xml from dual
    Is there any way to set some property on dbms_xmlgen that would default to this format of mapping columns to attributes in the result automatically? So, without having to add the @ alias.
    If not, would the preferred method be the use of the xmlattributes function like this:
    select xmlelement("ROW", xmlattributes( menu_id, menu_name)) my_xml from My_Table
    Thanks,
    Steve

    Hi,
    HTP HTF UTL_FILE OWA OWA_UTIL UTL_HTTP
    are packages of the Oracle Application server.
    In 8.1.7 they are included in the DB.
    In the releases before you need the OAS 4.0.8
    to get the packages.
    HTH
    Detlev

  • Error occurred while determining attribute (CRM - PME)"" Message no. COM_

    Hi
    I am getting the following the following Error while creating Technical Master Data i.e. Connection Objects from CRM UI.
    "u201CError occurred while determining attribute (CRM <-> PME)u201D" Message no. COM_PRCAT111
    We are not using any concept of Configurable products in our system .Is there any way to disbale PME check from CRM so that it does not hits PME and try to search for attribute values .
    Thanks
    Zing

    Hi all,
    In rare cases, the system may generate the attributes, which were
    delivered by SAP, for the set types again. As a result, the table CO
    MC_SETTYPE_ATTR contains duplicate entries. These trigger the error
    message mentioned above.
    Solution is to delete the duplicate entries.
    Solution is to run report ECRM_ISU_CLEAR_DOUBLE_ENTRIES
    SAP Note No. 561238 is useful for IS-U connection objects and PoDs
    Regards
    Ullas Saffarulla

  • "Error occurred while determining attribute (CRM - PME)"

    Hi
    I am getting the following the following Error while creating Technical Master Data i.e. Connection Objects from CRM UI.
    "u201CError occurred while determining attribute (CRM <-> PME)u201D"  Message no. COM_PRCAT111
    We are not using any concept of Configurable products in our system .Is there any way to disbale PME check from CRM so that it does not hits PME and try to search for attribute values .
    Thanks
    Zing
    Moderation: Locked. Duplicated from[ this thread|Error occurred while determining attribute (CRM <-> PME)”" Message no. COM_]
    Edited by: Joaquin Fornas on Nov 17, 2011 8:48 AM

    Hi all,
    In rare cases, the system may generate the attributes, which were
    delivered by SAP, for the set types again. As a result, the table CO
    MC_SETTYPE_ATTR contains duplicate entries. These trigger the error
    message mentioned above.
    Solution is to delete the duplicate entries.
    Solution is to run report ECRM_ISU_CLEAR_DOUBLE_ENTRIES
    SAP Note No. 561238 is useful for IS-U connection objects and PoDs
    Regards
    Ullas Saffarulla

  • I am facing problem zooming and in slide as i think there is some general setting got changed help to rectify.

    i am facing problem zooming and in slide as i think there is some general setting got changed help to rectify.

    If the screen appears zoomed in then try double-tapping the screen with 3 fingers (with zoom 'on' you need to use 3 fingers to drag around the screen), and then go into Settings > General > Accessibility and turn Zoom 'off', and possibly also change what Triple-Click Home is set to.

  • ORA-14402: updating partition key column would cause a partition change

    Hi,
    When I am trying to execute an update statement where i am tring to update date values emp_det from 11-oct-2010 to 12-nov-2010.
    Oracle throws an error :
    ORA-14402
    updating partition key column would cause a partition change
    I think that this is because emp_det is a partitioning key of a partitioned table.
    Oracle documentation says that
    "UPDATE will fail if you change a value in the column that would move the
    row to a different partition or subpartition, unless you enable row
    movement" .
    alter table t enable row movement;
    I did not understand what is meant by "enable row movement".
    I cannot drop the partitions and recreate it after updating the table and also i don't have proper priviliges for enale row movement syntax
    because of the lack of privileges. How to solve this is issues with out row movement and recreate partition.
    Can this be done by a developer or is there any other way to execute update in this case? its urgent.. pls help..
    thanks in advance..
    By
    Sivaraman
    Edited by: kn_sivaraman on Nov 1, 2010 2:32 AM

    kn_sivaraman wrote:
    I did not understand what is meant by "enable row movement". Each partition in partitioned table is physically separate segment. Assume you have a row that belongs to partition A stored in segment A and you change row's partitioning column to value that belongs to partition B - you have an issue since updated row can't be now stored in segment A anymore. By default such update is not allowed and you get an error. You can enable row movement and Oracle will move row to target partition:
    SQL> CREATE TABLE SALES_LIST(
      2                          SALESMAN_ID NUMBER(5,0),
      3                          SALESMAN_NAME VARCHAR2(30),
      4                          SALES_STATE VARCHAR2(20),
      5                          SALES_AMOUNT NUMBER(10,0),
      6                          SALES_DATE DATE
      7                         )
      8    PARTITION BY LIST(SALES_STATE)
      9    (
    10     PARTITION SALES_WEST     VALUES('California', 'Hawaii'),
    11     PARTITION SALES_EAST     VALUES('New York', 'Virginia', 'Florida'),
    12     PARTITION SALES_CENTRAL  VALUES('Texas', 'Illinois'),
    13     PARTITION SALES_OTHER    VALUES(DEFAULT)
    14    )
    15  /
    Table created.
    SQL> insert
      2    into sales_list
      3    values(
      4           1,
      5           'Sam',
      6           'Texas',
      7           1000,
      8           sysdate
      9          )
    10  /
    1 row created.
    SQL> update sales_list
      2    set  sales_state = 'New York'
      3    where sales_state = 'Texas'
      4  /
    update sales_list
    ERROR at line 1:
    ORA-14402: updating partition key column would cause a partition change
    SQL> alter table sales_list enable row movement
      2  /
    Table altered.
    SQL> update sales_list
      2    set  sales_state = 'New York'
      3    where sales_state = 'Texas'
      4  /
    1 row updated.
    SQL> SY.

  • Updating partition key column would cause a partition change

    while i am executing this query in sql i am getting an error message saying
    that
    updating partition key column would cause a partition change
    SQL> update questionbnkmaster set sectionid=23 where qno=19;
    update questionbnkmaster set sectionid=23 where qno=19
    ERROR at line 1:
    ORA-14402: updating partition key column would cause a partition change
    what can do to update the table without changing to the other fields
    tyhanx in advance
    cinux

    try this
    ALTER TABLE questionbnkmaster ENABLE ROW MOVEMENT
    /Cheers, APC

  • Display of general attributes in Org Model

    Hi Experts,
    In my Org Model, in attributes tab the general attributes like division,distribution channel etc are not existing. What is the procedure for them to get displayed in the attributes tab of org model.
    Regards,
    Aielneni Lakshith Rao

    There are two possible solutions to your question:
    1.  A simple solution:  in the attributes tab, make sure that you have selected 'SALE' in the attribute maintenance scenario.  If you still do not see the attributes, click the button BELOW the 'Object permitted..' selection field, (a little + sign),  to open all the attributes.  You should then be able to see all the attributes determined for the Sales scenario.
    If the above solution does not work, then
    2.  use t-code: /nOOATTRCUST and check if those attibutes exist.  For this select 'SCENARIOS' in the dialog structure and select 'SALE'.  Then open scenarios and in the list of attributes check if distribution, division... exist.
    In a normal situation, the first solution should solve your problem.  If you need further assistance, please post a followup to this response.
    --Venky
    Edited by: javlin-ga on Oct 13, 2011 5:07 AM

  • Table for log of attribute/hierarch change run

    Hi Guys,
      Can someone please tell me the table name where all the attribute/hierarchy change run log is stored? Early reply is highly appreciated. Thanks in advance.

    hi Joseph,
    what are you going to do with the log ?
    attribute/hierarchy change run has no special log table,
    it used the same one like other application log, BALDAT and other BAL* tables.
    if you want to check the log, you can click 'log' in attr/hier change run screen ? (rsattr)
    or view with SLG1, object RSSM, sub object MON.
    specify date.
    to delete log, you can use SLG2.
    hope this helps.

  • Attribute /hierarchy change run

    Hi,
    I have to run the Attribute/Hierarchy change run for only one infoobject. When I click on "Infoobject list", the list is empty even though some changes were made in the hierarchy. How can I get the infoobject list?
    Thanks.

    Hi.......
    The easiest method is ........use the Program : RSDDS_AGGREGATES_MAINTAIN.........there give the infoobject name.........Then in the top Program tab >> Execute in background...........then u can monitor the Job in SM37........the job name will be RSDDS_AGGREGATES_MAINTAIN..........
    But logically if changes has done to the Master data......Transaction RSA1 --> Tools --> Apply Hierarchy/Attribute Change... --> InfoObject List & Hierarchy List ............this List should contain the list of infoobjects.............if nothing is there..............it means no changes has been done.............and there is nothing to be activated............So also check whether the changes hav been done properly or not.....................then use this program............it should be done........
    Regards,
    Debjani......

Maybe you are looking for