Activities without Relationship

We have around 2000 activities in project. How to identify activities with missing relationship?

Oh..I am sorry, I could have executed CN49N thinking that it is CN47N.
I would suggest another way, execute CN41N, you will find all activities but for activities with relationship, you will another row below to that activity showing relationship icon. If the activity is without any relationship then you wont find that row for that particular activity. So you can easily differentiate the activities with relation and without relation easily from this report.

Similar Messages

  • Connect a Date Dimension to a cube without relationship

    Hi everybody,
    I would like to answers to one business requirements.
    I create a cube that models the following event : a customer send a product from an agency to another customer who receives it in another agency.
    So I have a fact table with only two measures
    Amount
    Count
    which is connected to these dimensions
    Product
    Sending Date
    Receiving Date
    Sender (Customer)
    Receiver (Customer)
    Sender (Agency)
    Receiver (Agency)
    The users would like to analyse the following KPI, at a specific date :
    Number of transactions sent, the amount
    Number of transactions received, the amount
    Number of transactions pending, the amount
    To answer this business requirement, I have added a new date dimension in the cube with no relation, so that the user can select a date from this independent dimension and get the different KPIs. 
    But I don't get any results.
    Is it a good model ? How to make it possible for the user to use the independent Date Dimension to perform analyzes of different KPI ?

    Is it a good model ? How to make it possible for the user to use the independent Date Dimension to perform analyzes of different KPI ?
    Hi Meal,
    According to your description, you want to know if is it possible for the user to use the independent Date Dimension to perform analyzes of different KPI, right?
    As per my understanding, we cannot do this without relationship between dimension tables and the independent Date table. However, we can add the relationship between the added date table and the fact table Sending Date and Receiving Date column. Please refer
    to the link below to see the details.
    http://msdn.microsoft.com/en-us/library/ms175427.aspx
    Regards,
    Charlie Liao
    TechNet Community Support

  • List of standard template without relationship defined

    Hi, please give me way to generate list of standard templates without defined relationship in its activities.

    go to Txn CN49N
    choose db profile 0000.........1
    change db profile to incude std structures
    tick the std structures box woth * in project def field
    set filter on rel type field
    you need no rel means the field should be null

  • How to archive contact persons without relationship

    Hello,
    if in ERP a contact person of an customer (VD02) is deleted a BDOC is created for CRM.
    This BDOC deletes the relationship from the contact person to the account in CRM.
    In the meantime we have a lot of contact persons without any relationship in CRM because our CRM system is already 5 years in production.
    How could i flag this contact persons for deletion and archive them in the next step?
    Sorry for this maybe low-level question but i never did this in CRM.
    Our CRM Version is CRM70 SP05.
    Thanks a lot.
    Kind regards
    Manfred

    Hi Mandred,
    I would use t-code BUPA_PRE_DA, to mark them massively for archving.
    To find the contact persons without relations, you can first collect all contact persons in the system at BUT100 by querying business partners with contact person role, and the check in table BUT050 to collect the ones that have relationships.
    Then I would compare with first list (BUT100), and obtain the ones that doesn't have a relationship.
    Kind regards,
    Garcia

  • Booking time for different activities without involving costs

    Hi Friends,
    one of my requirement is,i need to define defferent activity types like Lunch time and driving time to capture the time for the different operations and infact it should not involve any cost related stuff,how can we acheive this in standard config.
    Regards,
    Srinika

    Hi,
    Create a work center and create various activity type like
    Transport time
    Waiting time for gate pass
    Waiting time for PTW
    Idle time in lunch etc.
    Assign all the activity type to the work center.
    Don't define the CO activity rate for the above activity
    When you use this work center, you can refer any of these activities and book man hours with out associate cost booking.
    Hope it will help!
    Cheers,
    Raj

  • Activities without transport requests

    Hi Friends,
    There are few activities in the configuration which we have to do in each client server for which transport requests can not be generated. I could have found few as mentioned below.
    1. Number range assignment
    2. Characteristics creation (For Release purpose)
    3. Class creation (For Release purpose)
    4. G/L assignment in OBYC
    5. Split valuation
    6. Tax codes( related to FTXP Txn Code)
    Is there any other activities apart from those mentioned above which I need to do manually in QA and PROD server also?
    Please provide the list of such activities.Please explain in detail for each activity.
    Edited by: GAURAV MITTAL on Dec 3, 2009 4:16 AM

    Hi,
    Apart from this
    condition records for Pricing, Outputs are also need to be maintained Manually &
    Any Table entries which are not maintained using  SM30
    regards,
    santosh

  • Removing all activity relationships

    Hi all,
    Please help me with a solution on how to remove all activity relationships from my schedule.
    I have tried:
    Creating User Defined Fields (unable to create predecessor "then" command, as this is not on the list)
    Exporting to Excel, deleting relationships, then re-importing (receive error log as "Failed to find a matching object for Activity Relationship")
    Using the "Fill Down" option in activity table view
    All above are not successfull!
    Do you have any more ideas?
    Much appreciated,
    Sam

    sam
    i think you have not tried the easy option here.
    just copy all the activites for which you want to remove the relationships then paste it
    during the pasting option untick the RELATIONSHIP Tag and paste it.
    you will get the all the activities without relationship.now you can delete the original activities with relationships.
    Cheers

  • How to retrieve detached @ManyToOne entities with relationship

    Hi All,
    I am having difficulty retrieving all the Zipcode, Zipname records which have successfully been deployed on Glassfish v2r2, JDK1.6.0_06, MySQL 5.0, Netbeans 6.1 on Windows XP platform.
    Below are the relevant EJBs snippets:
    package domain;
    @Entity
    @Table(name="ZIPCODE")
    public class Zipcode implements Serializable {
        @Id
        @Column(name="ID")
        private int id;
        public int getId() {
            return id;
        @OneToMany(cascade={CascadeType.ALL}, mappedBy="zipcode", fetch=FetchType.EAGER, targetEntity=Zipname.class)
        private Collection<Zipname> zipnames = new ArrayList<Zipname>();
        public Collection<Zipname> getNames()
         return zipnames;
    package domain;
    @Entity
    @Table(name="ZIPNAME")
    public class Zipname implements Serializable {
        @Id
        @Column(name="ID")
        private int id;
        public void setId(int id) {
            this.id = id;
        @ManyToOne(fetch=FetchType.EAGER)
        @JoinColumn(name="ZIPCODE_ID")
        private Zipcode zipcode;
        public Zipcode getZipcode() {
            return zipcode;
    package ejb;
    @Stateless
    public class ZipcodeBean implements ZipcodeRemote {
        @PersistenceContext(unitName="GeographicalDB") private EntityManager manager;
        public void createZipcode(Zipcode zipcode)
           manager.persist(zipcode);
        public Zipcode findZipcode(int pKey)
           Zipcode zipcode = manager.find(Zipcode.class, pKey);
            zipcode.getNames().size();
            return zipcode;
        public List fetchZipcodesWithRelationships()
          List list = manager.createQuery("FROM Zipcode zipcode").getResultList();
          for (Object obj : list)
             Zipcode zipcode = (Zipcode)obj;
             zipcode.getNames().size();
          return list;
    @Stateless
    public class ZipnameBean implements ZipnameRemote {
        @PersistenceContext(unitName="GeographicalDB") private EntityManager manager;
        public void createZipname(Zipname zipname)
         manager.persist(zipname);
        public Zipname findZipname(int pKey)
            Zipname zipname = manager.find(Zipname.class, pKey);
            zipname.getZipcode().getNames().size();
            return zipname;
        public List fetchZipnamesWithRelationships()
          List list = manager.createQuery("FROM Zipname zipname").getResultList();
          for (Object obj : list)
             Zipname zipname = (Zipname)obj;
             zipname.getZipcode().getNames().size();
          return list;
    public class ZipcodeApplicationClient {
        @EJB
        private static ZipcodeRemote zipcodebean;
        private static ZipnameRemote zipnamebean;
        public ZipcodeApplicationClient() {
        public static void main(String[] args) {
            try {
                Zipcode zipcode_1 = new Zipcode();
                zipcode_1.setcode(9001);
                Zipname zipname_1 = new Zipname();
                zipname_1.setName("Harbour Cove");
                zipcode_1.getNames().add(zipname_1);
                zipname_1.setZipcode(zipcode_1);
    //          zipnamebean.createZipname(zipname_1);
                zipcodebean.createZipcode(zipcode_1);
                //fetch detached entity without relationship
                Zipcode zipcode_2 = zipcodebean.findZipcode(0);
                System.out.println("zipcode_2.getId(): " + zipcode_2.getId());
                System.out.println("zipcode_2.getCode(): " + zipcode_2.getCode());
                Iterator iterator = zipcode_2.getNames().iterator();
                while (iterator.hasNext())
                    System.out.println(iterator.next().toString());
                // output of fetching detached entity without relationship
                zipcode_2.getId(): 0
                zipcode_2.getCode(): 2010
                domain.ZipName@107e9a8
                zipcode_2.getLatitude: -33.883
                zipcode_2.getLongitude(): 151.216
                zipcode_2.getLocality(): Sydney
                //fetch detached entity with relationship
                List list =  zipcodebean.fetchZipcodesWithRelationships(); // line 76         
                // output of fetching detached entity with relationship
                           Caught an unexpected exception!
                           javax.ejb.EJBException: nested exception is: java.rmi.MarshalException: CORBA BAD_PARAM 1330446342 Maybe; nested exception is:
                           java.io.NotSerializableException: ----------BEGIN server-side stack
                           at client.ZipcodeApplicationClient.main(ZipcodeApplicationClient.java:76)
                           -------------------------------------------------------------------------------------------------------------------------------------------( i ) As a result, please advice on how to utilise both fetchZipcodesWithRelationships() & fetchZipnamesWithRelationships() in ZipcodeApplicationClient() to retrieve collections of Zipcodes & Zipnames without encountering this issue?
    (ii) I also like to utilise the zipnamebean.createZipnamez(zipname_1) to properly create this entity.
    The local firewall has been de-activated. All components reside on the same host.
    I have tried various approaches and googled without success.
    Your guidances would be very much appreciated.
    Many thanks,
    Jack

    Hi All,
    When trying to add multiple Zipnames with the following additional statements at the beginning of ZipcodeApplicationClient:
                Zipcode zipcode_1 = new Zipcode();
                zipcode_1.setcode(9001);
                Zipname zipname_1 = new Zipname();
                zipname_1.setName("Harbour Cove");
                zipcode_1.getNames().add(zipname_1);
                Zipname zipname_2 = new Zipname();
                zipname_2.setName("Fairyland");
                zipcode_1.getNames().add(zipname_2);
                Zipname zipname_3 = new Zipname();
                zipname_3.setName("Wonderland");
                zipcode_1.getNames().add(zipname_3);
                zipname_1.setZipcode(zipcode_1);
                zipname_2.setZipcode(zipcode_1);
                zipname_3.setZipcode(zipcode_1);
                zipcodebean.createZipcode(zipcode_1); // line 49
    The whole persistence step (line 49) failed altogether with these output:
    Caught an unexpected exception!
    javax.ejb.EJBException: nested exception is: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
            java.rmi.RemoteException: null; nested exception is:
            javax.persistence.EntityExistsException:
    Exception Description: Cannot persist detached object [domain.Zipname@1a6eaa4].
    Class> domain.Zipname Primary Key> [0]
    at client.ZipcodeApplicationClient.main(ZipcodeApplicationClient.java:49)Any ideas on why this occur?
    Thanks,
    Jack

  • Assign multiple relationships at once

    Hi everyone...I am working in Primavera P6 Project Management Release: 7.0 Service Pack 3 (Build #: 00033036)
    When trying to assign multiple relationships at once, my computer will not allow me to capture multiple activities that have been assigned as either a predecessor or successor. I can highlight them, but when I click the assign button they all briefly flash as being captured then the assignment only shows the first activity in my complete schedule?
    I am able to log into a co-workers machine with my credentials and perform this task, but not on my machine. Do you have any suggestions?
    Thanks

    Hello,
    I assume this is all in the same project? It sounds like your project profile security settings could be different than your co-workers. I would see if there is a conflict between your settings from the admin perspective.
    Check these two lines in project security profile.
    Edit Project Activity
    Relationships
    Create, edit, and delete a project’s activity
    relationships.
    Add/Edit Project
    Activities Except
    Relationships
    Create and edit a project’s activity information, except
    activity relationships. To edit activity IDs, a user must
    also be granted the Edit Activity ID project privilege.

  • How to get Next/Previous activities?

    Hi
    Is there any API's or any other ways to know the subsequent(next) activities from a current activity of a process.
    TIA
    honnur

    Thanx for the reply.
    But my requirement is to know the sequence of activities without actually starting the workflow process.
    I understand the sequence of activities stored in the table WF_ACTIVITY_TRANSITIONS, is it recommended to access this table directly to know the sequence of activities from a program without using workflow monitor pages.
    TIA
    honnur

  • Error When Loading Activities DTW

    Hi,  I am currently trying to add activities via DTW.  I have SAP B1 8.8.
    Problem I have is that when I try to enter start and end time I get an error message "The Namespace of element schema must be from schema namespace."
    I can load the activities without the start or end time fields populated and they will load, but as soon as I put in the time it errors out.
    I assume this must be because of format.   Does anyone know the correct format to enter the time in.

    Hi,
    You may use 331 in case of 03:31 AM and 1531 in case of 03:31 PM.
    Also note that:-
    1. CntctTime = StartTime
    2. EndTime = StartTime + Duration (Preferably enter duration in minutes and calculate EndTime accordingly)
    For example :-
    StartTime = 115
    CntctTime = 115
    Duration = 30
    Duration Type  = you may leave blank in case of minutes
    EndTime = 145
    Hope it works!

  • Activity without date type "Actual Date"

    Hi experts,
    Does anybody use activities without date type "Actual Date"(000000000002)?
    I created a new date profile and assigned it to a transaction type,
    then warning message "Date type "Actual Date" does not exist in the activity
    " (CRM_APPOINTMENT062) occurs.
    The message was origninally created by note 428436.
    The note describes "certain date types are required in the reporting and for the index update".
    I don't know what is "the reporting and for the index update".
    I'm afraid if something bad happens without the date type.
    Regards,
    Fukuhara Yohei

    Hi,
    Whenever activity (or any other one oder document) is created, an entry will be made in CRMD_ORDER_INDEX table. When system looks for the transactions, it first checks if a corresponding entry is there in this or not. That's why indexing is improtant for effective search to happen.
    So the note means that in absence of Actual  Date date type, system may lead to improper update of the index table and also reporting of activities may be affected.
    Regds,
    Raghu

  • Relationship connection is wrong

    HI,
    In WBS the date entered is Basic start 19.05.2011 and Basic Finish 31.03.2012 
    I created two activities
    first activity - 30 DAY               second activity -30 DAY        
    Activity Bar code extending upto 22.06.2011 in one colour and upto 31.03.2012 in another colour
    After completion of first activity only i need to do second activity so in planning board i connected two activities with RELATIONSHIP
    But it is not connecting from 22.06.2011
    It is connecting the second activity from 31.03.2012. 
    Why ? 
    Thanks
    Edited by: M.Alagesan on May 18, 2011 3:27 PM

    Check Settings>General>Date & Time>Set Automatically>On. Make sure that the time zone setting is also set correctly.
    If that didn't solve the problem, restart your iPad and try again. If that fails, reset your iPad and try again.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Confirmation of activity (restriction by system)

    dear gurus,
    kindly tell how can i restrict confirmation of successor activity. Example in my Network structure diagram their is only one netwrok and three internal activities and relationship is finish start for all three activity.
    1. activity ===>fs===> 2.activity ===>fs ===> 3.activity
    As all can see the flow, i want is when i confirm activity 2 or 3 without confirming activty 1 the system should not confirm the successor activities.
    kindly help its urgent
    saqib usman

    Hi,
    Please use Tcode :SMOD
    Use: Enhance ment as CONFPS02.
    I never tried it still, the
    help is pasted below for your quick referal.
    Thanks.
    Please reward if helpful.
    CONFPS02    PS confirmation: Customer-specific input checks 1
    The enhancement CONFPS02   contains the following components:
    Function exit:
    EXIT_SAPLCORF_007  PS confirmation: Customer-specific input check without changes
    You can use this enhancement to subject the confirmation to your own checks, after the SAP standard checks have run. The confirmation can no longer be changed.
    As well as the activity (AFVGD), the complete network header (CAUFVD) and the confirmation  (AFRVD) are transfered in the interface.
    Activities
    1. Create the enhancement
    Either create a new project or use an existing project.
    2. Activate the project.
    Your enhancement can only take effect after you have activated the project.
    Further notes
    Enhancements are, in contrast to modifications, release-insensitive, since they are not in the original SAP system, but in a name range that is reserved for customers.
    You can find information about the general procedure for creating enhancements by choosing Utilities -> Documentation ->  Onlinemanual

  • Progress Analysis, Plan/actual % comparision based on activity confirmation

    hello guyz,
    I have to monitor the project progress based on activtiy confirmation, can anyone guide how can i see progress of project based on percentage with plan/actual dates comparison.
    The business scenario is:
    One top level WBS under which 2 WBS assign, each 2nd level WBS have one network assigned. The  second level WBSE represent individual site where i have to perform various internal activities without cost involvements, only dates and number of durations to be maintained in each internal activity with finish start relationship.
    The structure is:
    Root WBS (level 1)--SITE 1 WBS (level 2)--
    SITE 2 WBS (level 2)
    > (Network 001) -
    > (Network 002)----
    > 001 0010 (1st Internal activity 2 days) -
    > 002 0010 (1st Internal activity 2 days)-
    > 001 0010 (2nd Internal activity 4 days) -
    > 002 0010 (2nd Internal activity 4 days)-
    > 001 0010 (3rd Internal activity 1 days) -
    > 002 0010 (3rd Internal activity 1 days)-
    > 001 0010 (4th Internal activity 3 days) -
    > 002 0010 (4th Internal activity 3 days)-
    In the above project structure i have entered the start planed dates for each network / site. The system automatically calculate the planned end dates after scheduling.
    In execution phase, i have also maintained actual dates on activity confirmation only.
    Now i need assistance to see the project progress for each network site.
    Regards
    Saqib Usman

    the problum is still there kindly provide assistance...
    I have to monitor the project progress based on activtiy confirmation, can anyone guide how can i see progress of project based on percentage with plan/actual dates comparison.
    The business scenario is:
    One top level WBS under which 2 WBS assign, each 2nd level WBS have one network assigned. The second level WBSE represent individual site where i have to perform various internal activities without cost involvements, only dates and number of durations to be maintained in each internal activity with finish start relationship.
    The structure is:
    Root WBS (level 1)--SITE 1 WBS (level 2)--
    SITE 2 WBS (level 2)
    > (Network 001) -
    > (Network 002)----
    > 001 0010 (1st Internal activity 2 days) -
    > 002 0010 (1st Internal activity 2 days)-
    > 001 0010 (2nd Internal activity 4 days) -
    > 002 0010 (2nd Internal activity 4 days)-
    > 001 0010 (3rd Internal activity 1 days) -
    > 002 0010 (3rd Internal activity 1 days)-
    > 001 0010 (4th Internal activity 3 days) -
    > 002 0010 (4th Internal activity 3 days)-
    In the above project structure i have entered the start planed dates for each network / site. The system automatically calculate the planned end dates after scheduling.
    In execution phase, i have also maintained actual dates on activity confirmation only.
    Now i need assistance to see the project progress for each network site.
    Regards
    Saqib Usman

Maybe you are looking for