How to get GUID of a milestone?

Hi,
In my requirement, I need to identify each and every milestone uniquely. I know that every milestone is assigned to a GUID.
How to find out a GUID for a milestone? Where these GUIDs for milestones are stored? 
Also, please tell me how to give our own number to a milestone at the time of it's creation?

Hi,
In my requirement, I need to identify each and every milestone uniquely. I know that every milestone is assigned to a GUID.
How to find out a GUID for a milestone? Where these GUIDs for milestones are stored? 
Also, please tell me how to give our own number to a milestone at the time of it's creation?

Similar Messages

  • How  to get GUID for a transaction

    How to get GUID of a transaction in solution manager support desk.
    pls help reg this.

    Hi Kalpanashri,
    I would suggest you to go for recording of the transaction. Then you can get to know the tables of the related fields which you have entered value during recording.
    OR
    For checking individual fields, you can go for the <b>WHERE-USED LIST</b>.
    For Ex:
    Please go to SE11 and enter data type with MATNR.
    Then click on where-used list button and check only table type (the first option) and click on continue.
    The system will show list of tables that store value of MATNR field. You can do double click on the field name and system will take you to detail screen of the table fields. Then from here ... you browse the data as well.
    Hope this resolves your query.
    Reward all the helpful answers.
    Regards

  • How to get GUID all of user in OU

    I have use exchang svr 2013 .
    How to get GUID of user all in OU ?
    currently i use scriptr exchange power shell
    $username = "username"
    $guid = (Get-Mailbox $username).ExchangeGUID
    $upn = (Get-User $username).UserPrincipalName
    $upnsuffix = $upn.Split("@")[1]
    $ServerName = "$guid@$upnsuffix"
    write-host $ServerName

    Store all mailboxes in that OU in a variable and use a foreach loop
    $mbx = get-mailbox -resultsize unlimited -organizationalunit "domain.com/OU"
    foreach ($m in $mbx)
    Your code
    How to apply in exchange power shell ?

  • How to get guid in oracle 8?

    Hi,
    how to get guid in oracle 8
    regards
    Dupont
    null

    Hi Anjum,
    You can try to read the current business transaction GUID in email view by reading global data context reference. Something like this:
    *- Data dictionary
      DATA lr_gdc            TYPE REF TO if_crm_ui_data_context.
      DATA lr_bt             TYPE REF TO cl_crm_bol_entity.
      DATA lv_guid          TYPE crmt_object_guid.
    *- Get current business transaction from global data context
      lr_gdc ?= cl_crm_ui_data_context_srv=>get_instance( ).
      CHECK lr_gdc IS BOUND.
      lr_bt ?= lr_gdc->get_entity( name = if_iccmp_global_data_cont_con=>gdc_currentbt ).
      CHECK lr_bt IS BOUND.
      lv_guid = lr_bt->get_property_as_string( 'CRM_GUID' ).
    Kind regards,
    Garcia

  • How to get Guid of all form libraries

    I have  a requirement where i should get guid of all form libraries so that i dont need to hardcode the Guid of form library in server object model.How can i achieve this..

    Hi Hemandra..
    Thanks for the response,I am looking to relink documents using the code below...Code is working well for single form library but i have 4 to 5 form libraries for which the code should be executed..how can i get this done.I am working with Infopath forms.
    protected
    void btnsubmit_Click(object
    sender, EventArgs e)
    if (RelinkDocuments())
    Label3.Text =
    "Success!!!";
    else
    Label3.Text =
    "Failure";
    private
    bool RelinkDocuments()
    try
    SPSite site =
    SPContext.Current.Site;
    SPWeb spWeb = site.OpenWeb();
    SPList spList = spWeb.Lists[new
    Guid("8E023C18-DAA3-4743-81B7-E034111544BC")];
    SPDocumentLibrary doclib = (SPDocumentLibrary)spList;
    string solutionUrl =
    SPHttpUtility.UrlPathEncode(spWeb.Url
    + "/" +
    doclib.DocumentTemplateUrl, true);
    foreach (SPListItem
    spItem in doclib.Items)
    //loop through the list items
    SPFieldCollection spFields = spItem.Fields;
    foreach (SPField
    spField in spFields)
    //loop through fields resetting them
    if (spField.Type !=
    SPFieldType.Computed &&
    spField.Type !=
    SPFieldType.Invalid && !spField.ReadOnlyField)
    try
    spItem[spField.InternalName] = spItem[spField.InternalName];
    catch (Exception
    e)
    SPContentType spContentType = spList.ContentTypes[(SPContentTypeId)spItem["ContentTypeId"]];
    if (spContentType !=
    null)
    //try to update the item with the content type's template url which is the updated one
    if (spContentType.DocumentTemplate.StartsWith("http://")
    ||
    spContentType.DocumentTemplate.StartsWith(
    "https://"))
    spItem[
    "TemplateUrl"] =
    SPHttpUtility.UrlPathEncode(spContentType.DocumentTemplate,
    true);
    else
    if (spContentType.DocumentTemplate.StartsWith("/"))
    spItem[
    "TemplateUrl"] =
    SPHttpUtility.UrlPathEncode(spWeb.Site.MakeFullUrl(spContentType.DocumentTemplate),
    true);
    else
    spItem[
    "TemplateUrl"] =
    SPHttpUtility.UrlPathEncode(spWeb.Url
    + '/' + spList.RootFolder
    + '/' + spContentType.DocumentTemplate,
    true);
    else
    //no content type found so default template url to solution Url
    spItem[
    "TemplateUrl"] = solutionUrl;
    spItem.Update();
    return
    true;
    catch (Exception
    ex)
    return
    false;

  • How to get GUID of nav predecessor in Breadcrumb navigation

    Hello,
    we have implemented a Z-Component in which we can navigate from other standard components via i.e. follow-up transaction.
    I have the requirement to get the GUID of the transaction from which we came from.
    For example we are working at an offer and now navigate to the Z-Component via follow-up. I would now need the GUID of the offer we were working on, before we navigated away.
    I suppose that somewhere in the framework the navigation stack is saved, because a click on the back button within the webclient brings me back to exactly the offer I had opened before.
    Any idea how to get to that navigation information?
    Thanks in advance
    Best regards
    Victor

    Hello Victor,
    I think the best to share information between components is to bind to component controller or pass data via outbound/inbound plugs. Playing with breadcrumb history (in my opinion) won't help too much but if you want to investigate a bit in this area, take a look at interface if_bsp_wd_history_manager_disp, the reference to which you can get via
    lr_history_access = me->view_manager->get_history_manager_display( ).
      CALL METHOD lr_history_access->get_history
        IMPORTING
          values = lt_history.
    Best Regards,
    Yevgen

  • How to get GUID in DO_INIT method

    Hi All,
    I have a requirement to default the CC mail id's when a follow up email is created from complaint i am trying to acheive this
    by redefining DO_INIT method and created a new method set_CCmailid where i am trying to call order_read to get the partner
    functions and their mail id's.Plz let me know how should i get the guid to pass to order_read and attend functionality.
    Thanks.

    Hi Anjum,
    You can try to read the current business transaction GUID in email view by reading global data context reference. Something like this:
    *- Data dictionary
      DATA lr_gdc            TYPE REF TO if_crm_ui_data_context.
      DATA lr_bt             TYPE REF TO cl_crm_bol_entity.
      DATA lv_guid          TYPE crmt_object_guid.
    *- Get current business transaction from global data context
      lr_gdc ?= cl_crm_ui_data_context_srv=>get_instance( ).
      CHECK lr_gdc IS BOUND.
      lr_bt ?= lr_gdc->get_entity( name = if_iccmp_global_data_cont_con=>gdc_currentbt ).
      CHECK lr_bt IS BOUND.
      lv_guid = lr_bt->get_property_as_string( 'CRM_GUID' ).
    Kind regards,
    Garcia

  • How to get Guided procedures DC into track

    Hi All,
    I am trying to implement the functionality mentioned in the thread
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50d74ada-0c01-0010-07a8-8c118d408e59?overridelayout=true
    But it says in order to implement that I need to import Guided Procedures related DCS  and I dont know which Software component consists of all the DCS which i need to check in and import into track so that when i open sap.com_SAP-EU_1 component i can see all the GP related dcs.
    Plz let me know the solution
    Thanks
    Bala Duvvuri

    Hi Bala,
    SAPPCUI_GP is the SCA which contains the related GP dc's.
    Regards
    Sreedhar

  • How to get the guid of currently opened page programatically

    Hi,
    Can any one of you please let me know how to get the guid of a page at database level which is opened currently?
    The requirement is I need to grab the url of a page which is currently opened by the user.
    Is there any way to get it from accessing the tables like wwv_things or wwpob_page$.
    Please suggest me how to get it.
    Thanks,
    Ravi.

    Hi Ravi,
    You may wanna explore the two API's (wwsbr_all_folders and wwsbr_all_items) and make a bridge to get the name of the portlets that appear on the page.
    something of the following nature should be enough to take you where you want to go. here c.name is the GUID of the item you are looking for.
    SELECT DISTINCT c.display_name,c.name,c.updatedate
    FROM portal.wwsbr_all_folders a, portal.wwsbr_all_items c
    WHERE a.LANGUAGE = 'us'
    AND a.id = c.folder_id
    AND a.caid = c.caid
    AND c.itemtype = 'baseportletinstance'
    AND a.Name LIKE 'MY_PAGE_NAME'
    order by 3 desc
    this will work in the portal but not in the sqlplus or any querying tool. for that purpose, it will work once you establish the context of user.
    hope that helps!
    AMN

  • How to get current/present version guid from CRMD_ORDERADM_H ?

    Hi,
    Can any one tell me  how to get the current version guid value from CRMD_ORDERADM_H table for Business Object type 'BUS2000113' .
    For example for one contract if we have more than one version then how to get the latest version guid from this table?
    If I use FM ' BBP_PD_CTR_GETDETAIL'  and in version table how to know which one is the latest/current version?
    Need information for versions.
    Thanks a lot.
    Kevin.

    Hello Kevin,
           In FM  <b>' BBP_PD_CTR_GETDETAIL'</b> look at version table <b>E_VERSION</b> - Here you can check 'VERSION_' or there is another field 'CREATED_AT' - by using these you will get latest version.
    Regards,
    Shiv

  • Hey there! well i from india and i m facing problem connecting my debit card to the itune store ,as the very option is not there, can someone guide me how to get it connected , i have a mastercard debit card with me .please help me

    hey there! well i from india and i m facing problem connecting my debit card to the itune store ,as the very option is not there, can someone guide me how to get it connected , i have a mastercard debit card with me .please help me

    if you are signed in to iTunes with your AppleID, click on the AppleID > view account > payment information > enter in your information

  • How to get project GUID from project name?

    How to get project GUID from project name in Campaign mgmt ?

    hello,
    have a look in table CGPL_PROJECT.
    regards,
    Frédéric

  • How to get the values and attributes of Longlived processes by using ProcessID.

    Hi Experts,
    For  every process we creates, LC ES2 creates processID.
    we know that if you creates  a long lived process, all  the  values which are in proces will be stored some where  in DB.
    Here my requirement is by using  processID I need to get all/some values/variables stored in database.
    I am not able to get values using processID. Here I don't have clue on  how to get the values.
    Please tell me  how to get the same by using  Process Management. Link/guide would be helpful
    Thanks
    Praveen.

    Searchable means you can put a filter criteria on it (e.g. where amount > 50000)
    Visible means you can add have this column returned as an output (and therefore you can add it as column in listview and see it in Task Details).
    These two attributes were provided so that queries could be done against the process variables, but the exact contents of the variables are not allowed to be seen.

  • How to get system status and user status of service order

    Hi,
    I want to show user status and system status for service order in my report and i am using CRM_ORDER_READ function module to read the status, but it is returning lot of status records, could anyone please suggest how to get the system status and user status for service order.
    I did not find any clue for how to get user status, i can see the user status when i open the transaction using CRMD_ORDER.
    Regards,
    Kamesh Bathla

    Hi,
      Go to CRM_JEST table give your service order guid and get the status, pass this status into TJ02. You will get the status of your order.
    Regards
    Srinu

  • How to get Item-Code wise stock quantity and value for a previous date

    Dear Sir,
    As per the government legal requirement , we are required to furnish a list for items having stock as on a date ( date is not the current date but it is some past date)  and  in the list we need to provide material wise stock quantity and value .
    We can generate a list  for the current date , but do not know how to get it for a previous date .
    We request you to kindly guide us about such a list .
    With Thanks and Regards
    Sonia Agarwal

    hi,
    might be this reports will be help full for your requirement.
    MMBE
    MB53
    MB52
    MB5M
    MB5B
    MB5T
    MBLB
    MBBS
    MB54
    ME56
    Thanking you

Maybe you are looking for