How to create an acitivty inside a Case

Dear All,
Sorry to bother. We are using CRM 7.0 SAP GUI for Case Management and Activity Management. Use t-code SCASE to enter Case Management, to create a new case, save it. Now we are trying to create a new activity inside that case. How can we do that? Or if we have an existing activity, how do we link that to an existing case?
Your input is much appreciated!
Leon

Hi Leon,
In order to link an existing activity to the case, choose the button 'Linked Objects'.
Choose the link Business transaction inorder to link and create an activity.
Wish this helps.
Regards,
Shalini Chauhan

Similar Messages

  • How to create a table inside a table in the dictionary

    I need to create a table in the dictionary that one of the components has to be a table.
    Someone known how to do it.
    Thanks.

    Hi
    U cannot create a table inside another table.
    The data storage is not supported in that manner.
    If you need multiple fileds based on a single line entry then , first figure out the relationships between these tables.
    Then create a second table with a part of the primary key as the first and a unquie primary key to be defined for adding all the rest of the entries in the second table.
    Also maintain the foreign key relationships between these tables.
    This is the way to have multiple entries for a single line of a table entry.
    Regards,
    Radhika.

  • How to create Table Popins inside a table using Java Webdynpro

    Hi All,
    I am working on a Java Webdynpro project and one of our requirements is to create Table popins inside the Table. I need to popin data beneath the row based on a value selected from the DropDown Box which is one of the  column in the Table.
    Also, I need to display vertical scrollbar instead of  Table Footer to scroll thru the table rows. Any ideas.........
    I would appreciate if you can let me know how can I do this. I am working on the 7.0 version of Java Webdynpro.
    Thanks for your time and consideration!
    Regards,
    Madhavi

    Hi,
    Please refer the following link:
    Re: Table popins
    step by step procudure to create table popin on lead select.
    thanks & regards,
    Manoj
    Edited by: Manoj Kumar on Apr 1, 2008 10:17 AM

  • Plz help! how to create a LinkedList inside each element of ArrayList

    how do i create a LinkedList inside each element of ArrayList

    how do i create a LinkedList inside each element of
    ArrayListYou really should read the API documentation and if you would you would see that you can construct a new ArrayList like this:
    ArrayList list = new ArrayList();and you can add to it like this
    list.add(new LinkedList());and now your list contains a new LinkedList at position 0 wich of course would be a LinkedList with some purpose not just a new empty one like in the example above. You could do something like this:
    ArrayList list = new ArrayList();
    LinkedList linkedList1=new LinkedList();
    // add something to linkedList1
    list.add(linked);
    LinkedList linkedList2=new LinkedList();
    // add something to linkedList2
    list.add(linked);
    LinkedList linkedList3=new LinkedList();
    // add something to linkedList3
    list.add(linked);and so one..
    bopen, hope this helps

  • How to create 'Please Wait' inside of CFWINDOW?

    Folks,
    I'm trying to figure out how to create a 'please wait'
    display while the contents of a cfwindow loads. Any suggestions?
    Samples highly appreciated.
    thanks,
    /r

    Hello,
    According to your question this would be a progress style form. The first link shows an example for copying files (and there are some builtin methods and this is not meant to replace them) while the second link shows how to work with loading a database on
    form load.
    I did both with specific things in mind but you can go in other directions too.
    https://code.msdn.microsoft.com/Copy-files-while-keeping-da349a4f
    https://code.msdn.microsoft.com/Practical-Asynchronous-ebd00ae1
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.

  • How to create a condition inside a flow to execute or not a mapping

    Hi everybody, I'm quite new on OWB and I don't know how to build a flow to do the following things:
    Scenario
    1. the flow (three mappings in series) has to run every day, but ONLY the first two has to run every day, while the third (used for the fact partitioning) has to run ONLY on the last day of the month (practically 12 times a year), to capture the last fact's image and put all the data inside a backup table.
    So, only when the flow runs on the last day of each month, the third mapping is executed. If we are not at the end of the month, the third mapping has to be bypassed and the flow has to stop.
    To do this, I need a condition that compares two values
    a) select RUN_DATE
    from DW_CONTROL_TABLE
    where PROCEDURE_NAME = 'OTE_DW_LAST_RUN' --> that retrieve the date when the flow runs (every day I have the current sysdate)
    b) select TRUNC(LAST_DAY(sysdate)) from dual --> that retrieve the last day of each month
    ONLY when these two dates are the same, the third mapping has to run
    I tried to use the WHILE_LOOP activity, combined with the ASSIGN but It doesn't work properly......
    How can I achieve this result ?? Which activities I need to create this flow ?
    I repeat..I'm a very beginner, so if somebody can give some hint or example, I'll appreciate it very much.
    Thanks in advance
    Alessandro

    although you did not say if these mappings are to run in parallel or not try something like this:
    -- create procedure that determines whether or not to the mapping should run.
    -- bind output of procedure to variable run_map
    -- use fork operator and an OR operator and put in connection directly to OR operator and one to mapping and then to OR operator.
    -- use conditional access test in the two connections from fork
    -- one that says run_map = 'Y' and connects to mapping, mapping connects to OR operator
    -- leave the other condition open, meaning all other conditions will pass tru this one and connect to OR operator directly
    this should work
    Edited by: MichaelR64 on 22-mrt-2011 8:40

  • How to create table field inside the dynamically created table?

    Hi, All!
    I have created dynamic internal table (using field catalog and CALL METHOD cl_alv_table_create=>create_dynamic_table )
    and put this table  into FM REUSE_ALV_GRID_DISPLAY. ALV grid work. Now I need to color rows of my ALV, therefore  I have to insert new column with name "COLORS" and type lvc_t_scol. I  see three ways to do it , but all ones are unsuccessful:
    1. Insert column into field catalog. FM REUSE_ALV_FIELDCATALOG_MERGE does not return info about "COLORS" I guess because COLORS is a table.
    2. Insert column into field catalog manually. It provides a short dump during dynamic table creating or during call of REUSE_ALV_GRID_DISPLAY.
    3. Create dyn table first, then add new field . I could not find a way how to do it :(((((((
    Can somebody help me?
    Tatiana

    Hi,
    Here is the solution for this problem, Sample code:
    *& Report  ZCHA_ALV_GRID_CELL_COLOR                                    *
    REPORT  ZCHA_ALV_GRID_CELL_COLOR                .
    TABLES:MARA.
    DATA: W_CONTAINER         TYPE SCRFNAME VALUE 'ALV_CONTAINER',
          W_GRID              TYPE REF TO CL_GUI_ALV_GRID,
          W_CUSTOM_CONTAINER  TYPE REF TO CL_GUI_CUSTOM_CONTAINER.
         W_EVENT_RECEIVER    TYPE REF TO LCL_EVENT_RECEIVER.
    *layout
    DATA: WA_LAYOUT           TYPE LVC_S_LAYO.
    *field catalog
    DATA: IT_FIELDCAT_WRT_OFF TYPE LVC_T_FCAT,
          WA_FIELDCAT_WRT_OFF TYPE LVC_S_FCAT.
    DATA:BEGIN OF IT_MARA OCCURS 0,
         MATNR LIKE MARA-MATNR,
         MAKTX LIKE MAKT-MAKTX,
         CELLCOLORS TYPE LVC_T_SCOL,
         END OF IT_MARA.
    SELECT P~MATNR
           Q~MAKTX
           INTO CORRESPONDING FIELDS OF TABLE IT_MARA
           FROM MARA AS P INNER JOIN
                MAKT AS Q ON
                PMATNR = QMATNR.
    CALL SCREEN 100.
    *&      Module  STATUS_0100  OUTPUT
          text
    MODULE STATUS_0100 OUTPUT.
      SET PF-STATUS 'STATUS'.
    SET TITLEBAR 'xxx'.
      IF NOT W_CONTAINER IS INITIAL.
        CREATE OBJECT W_CUSTOM_CONTAINER
                 EXPORTING CONTAINER_NAME = W_CONTAINER.
        CREATE OBJECT W_GRID
                 EXPORTING I_PARENT = W_CUSTOM_CONTAINER.
      ENDIF.
      CLEAR IT_FIELDCAT_WRT_OFF.
      REFRESH IT_FIELDCAT_WRT_OFF.
      WA_FIELDCAT_WRT_OFF-FIELDNAME = 'MATNR'.
      WA_FIELDCAT_WRT_OFF-COL_POS   = '1'.
      WA_FIELDCAT_WRT_OFF-OUTPUTLEN = '35'.
      WA_FIELDCAT_WRT_OFF-SCRTEXT_L = 'Material No'.
      APPEND WA_FIELDCAT_WRT_OFF TO IT_FIELDCAT_WRT_OFF.
      CLEAR WA_FIELDCAT_WRT_OFF.
      WA_FIELDCAT_WRT_OFF-FIELDNAME = 'MAKTX'.
      WA_FIELDCAT_WRT_OFF-COL_POS   = '2'.
      WA_FIELDCAT_WRT_OFF-OUTPUTLEN = '45'.
      WA_FIELDCAT_WRT_OFF-SCRTEXT_L = 'Material Desc'.
      APPEND WA_FIELDCAT_WRT_OFF TO IT_FIELDCAT_WRT_OFF.
      CLEAR WA_FIELDCAT_WRT_OFF.
      DATA LS_CELLCOLOR TYPE LVC_S_SCOL.
      READ TABLE IT_MARA INDEX 5 .
      LS_CELLCOLOR-FNAME = 'MATNR'.
      LS_CELLCOLOR-COLOR-COL = '3'.
      LS_CELLCOLOR-COLOR-INT = '1'.
      APPEND LS_CELLCOLOR TO IT_MARA-CELLCOLORS.
      MODIFY IT_MARA INDEX 5.
      WA_LAYOUT-CTAB_FNAME = 'CELLCOLORS'.
      CALL METHOD W_GRID->SET_TABLE_FOR_FIRST_DISPLAY
        EXPORTING
          IS_LAYOUT       = WA_LAYOUT
        CHANGING
          IT_FIELDCATALOG = IT_FIELDCAT_WRT_OFF
          IT_OUTTAB       = IT_MARA[].
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
          text
    MODULE USER_COMMAND_0100 INPUT.
      CASE SY-UCOMM.
        WHEN 'BACK'.
          LEAVE TO SCREEN 0.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    Try to assign appropriate points.
    Regards,
    Suman

  • How to create a table inside JSON View

    Hi All,
    I am trying to create a UI5 app inside which i want to fetch the data using SAP gateway service which i want to embed into JSON view to be displayed inside a table. I am totally new to JSON & UI5 so please let me know where i am incorrect:
    Index.html code:
    <!DOCTYPE HTML>
    <html>
      <head>
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>
      <script src="resources/sap-ui-core.js"
      id="sap-ui-bootstrap"
      data-sap-ui-libs="sap.ui.commons,sap.ui.table"
      data-sap-ui-theme="sap_bluecrystal">
      </script>
      <script>
      sap.ui.localResources("ui5trial");
      var view = sap.ui.view({id:"idSalesOrder1", viewName:"ui5trial.SalesOrder", type:sap.ui.core.mvc.ViewType.JSON});
      view.placeAt("content");
      </script>
      </head>
      <body class="sapUiBody" role="application">
      <div id="content"></div>
      </body>
    </html>
    JSON view file code:
      "Type":"sap.ui.core.mvc.JSONView",
      "controllerName":"ui5trial.SalesOrder"
    var oTable = new sap.ui.table.Table({
      title: "Sales Order Table Details",
      id: this.createId("MyTable1"),
      selectionMode:sap.ui.table.Table.SelectionMode.Single });
    oTable.addColumn( new label: new sap.ui.commons.Label({text: "Sales Order No."}),
       template: new sap.ui.commons.TextField().bindProperty("value","OrderId"));
    oTable.addColumn( new label: new sap.ui.commons.Label({text: "Document Type"}),
       template: new sap.ui.commons.TextField().bindProperty("value","DocumentType"));
    oTable.addColumn( new label: new sap.ui.commons.Label({text: "Document Date"}),
       template: new sap.ui.commons.TextField().bindProperty("value","DocumentDate"));
    oTable.addColumn( new label: new sap.ui.commons.Label({text: "Customer Id"}),
       template: new sap.ui.commons.TextField().bindProperty("value","CustomerId"));
    Controller file code:
    jQuery.sap.require("util.Func");
    sap.ui.controller("ui5trial.SalesOrder", {
    * Called when a controller is instantiated and its View controls (if available) are already created.
    * Can be used to modify the View before it is displayed, to bind event handlers and do other one-time initialization.
    * @memberOf ui5trial.SalesOrder
      onInit: function() {
      var oModel = new sap.ui.model.json.JSONModel(serviceUrl);
      var oData = oModel.getJSON();
      oTable.setModel(oModel);
      oTable.bindRows(oData);
    Func.js file code:
    jQuery.sap.declare("util.Func");
    function getUrl(sUrl){
      if (sUrl == ""){
      return sUrl;
      if (window.location.hostname == "localhost"
      || window.location.hostname == "https://sapes1.sapdevcenter.com"){
      return 'proxy' + sUrl;
    //Service Root URL
    // "https://sapes1.sapdevcenter.com:443/sap/opu/odata/sap/ZGWSAMPLE_SRV/?sap-client=520";
    //Extract the relative URL to use this application for deployment on any Web Server
    var serviceUrl = getUrl("/sap/opu/odata/sap/SALESORDERXX/?sap-client=520");

    Hi,
    If SAPUI5 / Javascript is completely new to you, I *strongly* suggest you train yourself in Javascript first. Without prior knowledge of Javascript it really makes no sense learning SAPUI5, since it involves quite a bit of Javascript programming.
    (The reason I'm mentioning this: You started out with a JSONView, but the code you provided is Javascript. Either create a JSONView and construct your table in a JSONView manner, or create a JSView with Javascript code to build your table. On a sidenote, I have never seen anyone using JSONViews anyway, so if you have the choice, use XMLViews (recommended) or Javascript Views)
    If you're already familiar with Javascript, I strongly advise to try some simple exercises first before deep-diving into OData connectivity. Just try and understand the basics of SAPUI5 (The MVC concept, databinding, etc)
    But if you really want to, have a look at this excellent blog : Consume NetWeaver Gateway services via SAPUI5 - Part 1

  • How to create inline function inside a test script

    i ahve a test script. i want to create a inline function that will do some stuff. how can i do it syntatically.
    declare
      -- Local variables here
      i integer;
    begin
      -- Test statements here
      -- have a function spec and body how?
    end;

    Hi,
    You can define a function in the DECLARE section and use it in the BEGIN section, like this:
    declare
      -- Local variables here
      i integer;
         -- Defining successor function
         FUNCTION successor (in_num  IN NUMBER)
         RETURN      NUMBER
         IS
         BEGIN
              RETURN     in_num + 1;
         END     successor;
    begin
         dbms_output.put_line ( successor (1) || ' = successor (1)');
    end;
    /

  • How to create a sequence inside a select statement

    I have the following query
    select
    t.id_trato2 as DEAL_ID, --
    1 as SEQ_NO
    from treats t
    order by id_trato2, seq_noIt will return for example
    id_trato2 seq_no
    3 1
    3 1
    4 1
    4 1
    4 1
    I need it to return
    id_trato2 seq_no
    3 1
    3 2
    4 1
    4 2
    4 3
    ¿how can I do this?

    I need to get it as a sequence for every key (in this case id_trato2).
    Results without ordering could be in this order
    4
    3
    4
    2
    1
    3
    2
    2
    I need to get results in this way
    4 1
    3 1
    4 2
    2 1
    1 1
    3 2
    2 2
    2 3
    if I invoke the order statement should return this
    1 1
    2 1
    2 2
    2 3
    3 1
    3 2
    41

  • How to create replacement variable in my case?

    I have one time info in my cube call datefrom, now I want to calculate the days after I input date data into pop-up window, system will automatically calculate the days namely input date data minus datefrom data from cube. So how to handle this case. Pls give info step by step. Thanks!

    Hi,
    Try this:
    http://www.sd-solutions.com/documents/SDS_BW_Replacement%20Path%20Variables.html
    Rgs,
    I.R.K

  • How to create a loop in this case?

    Hi! I'm trying to use the if statement, but the code is only read once.
    How do I get this code to be read several times?
    For example, when the car passes the detector the number goes to 10.
    So the code does not detect the if statement because the code is only read once.
    Code:
    var score: Number = 9;
    if (score == 10)
    gotoAndPlay (3);

    you could put that code in a function and use a loop (like enterframe to call it) or, even more efficent, call the function whenever score could be changed.

  • How to create a message inside BPM

    I am using interface mapping inside BPM in order to check source message. This mapping produced new interface (I have declared container with that type) then I have swith block that check countainer with new intrface.
    In SXI_CAHCHE I get an error VALUE is not a component of data object 'PAYLOAD'
    I have SP15
    Does it mean that I cannot work with containers that are not   messages? Is it a bug?
    Message was edited by: Denis Ivanov

    Hi,
    CHeck this SAP Note- 890760
    Regards,
    Moorthy

  • How to create new users inside of a zone...?

    So I've set up my first zone, got it up and running and logged into the console as root. It responds to remote connect protocols (ssh, telnet, etc) however since logging in as root is generally frowned upon I was going to create myself as a standard user within the zone but can't. The useradd command fails because there is no local home directory for that user and whenever I try to create one the command fails with the error "operation not permitted" or something like that. What am I doing wrong? Yes this is a sparse zone so most everything is inherited but that's about where I lose what's happening.
    Any help on this would be great as I have lost too much sleep over it already.
    Thanks!

    The issue may not be zone related. You are probably trying to create home directories under /home which is normally automounted.
    Try putting the home dir somewhere else or taking /home out of /etc/auto_master and rerunning automount

  • How to create rewrite rule to accept only mail pass from antivirus server

    I want to set JES messaging 6.0 to accept only mail that scaned from antivirus server. If clients send direct to messaging server it will forward that mail to antivirus server. After mail was scaned it is sent to messaging server and messaging server accept it.
    How to create rewrite rule for this case?

    Please read this technical note, for setting up such a configuration:
    http://ims.balius.com/downloads/AlternateConversion.pdf
    Please note, this site contains some other very useful information for Messaging Server, but IE browsers are NOT supported. You must use some other browser.

Maybe you are looking for

  • Cost of goods not populating

    hello while doing billing cost of goods is not populating  ,the unit amount appears but the condition base value which is the quantity itself is coming as zero for some items ,but the quatity is not zero then why it is showing as zero in condition ba

  • I cannot open or remember pass to get into PhotoMgrPro, help please?

    I have used too many different codes to get into so many different programs and stuff and now I cannot get into PhotoMgrPro on my iPad...

  • Override the storage section check for manual entries

    Hi All, I am facing a issue on Storage section search.While creating To system is giving correct Storage section according t the settings but if I would like  to change the storage section to different storage section system is not giving any error m

  • ADF-FACES-EA16: internal server error after migrating process train

    java.lang.NoSuchMethodError: void oracle.adfinternal.view.faces.taglib.core.nav.CoreProcessTrainTag.setVar(java.lang.String)      at newContract2e_jspx._jspService(newContract.jspx:26)      [newContract.jspx]      at com.orionserver[Oracle Containers

  • Automate batch - can't find pictures

    I have taken a lot of pictures(time lapse) and want to apply the same effect to every pictures. I recorded an action, and started automate batch. After the process was done I went to my destination folder, but there are none pictures there. Did this