CRM7 table that links Service ticket to a Problem ID

Hello,
What table in CRM7 stores the link between a service ticket ID and a Problem ID?
Trying to do analysis on service tickets that have an attached (TR#)
Thanks
Phil

Hi Philip,
What do you mean by RFC calls? Do you want this information outside CRM?
If not, then CRM_ORDER_READ FM is enough. You just need to look into the values in returned table ET_DOCFLOW.
It will list all the related transaction GUIDS in OBJKEY_B including your problems and solutions.
Thanks
Vishal

Similar Messages

  • Looking for table that links a PM Reservation to a MM Purchase Requisition

    Looking for table that links a PM Reservation to a MM Purchase Requisition

    Hi,
        Typically the way most SAP systems are configured, there are two scenarios here:
    1. The component reserved in the PM order is item category 'N'. This is a non inventory item and must be directly procured for consumption against the PM order at the point of goods receipt. In this case no reservation is created and instead a requisition is directly created (in table EBAN) and the requisition is account assigned directly to the PM order (in table EBKN - field AUFNR).
    2. The component reserved in the PM order is item category 'L'. In this case no requisition is directly created, instead a reservation is created against the item in stock (in table RESB). If there is sufficient stock of the item already then the item is consumed when it is goods issued to the PM order from stock using MIGO and there is no requisition created. In the event that there is not sufficient stock of the item for the reservations that exist, when MRP is run, a requisition will be created to replenish the stock, but this requisition will not be assigned to a specific PM order as it could be replenishing stock of the item for several reservations which are all for different orders. So in this scenario there is no direct link from the reservation generated by the PM order to the requisition.

  • Table that links vendor and customer

    hi
    is there any table that links vendor and customer, for example theres a vendor zz400, he can be a customer as well
    do you know in which table we can find that?

    Hi
    Go through the link given below :
    Configuration for vendor as well as customer
    With Regards
    Sandeep

  • Table that links bills with delivery

    Hi experts,
    I Amb searching a table that links bills with deliverys, can someone help me with this please?
    Thanks!
    Artur.

    Hi Arthur,
    You can check table VBRP. You will have both the billing doc number (VBELN) and the reference doc number (delivery/order - VGBEL) in this table.
    Regards,
    Mike

  • Table that links country tax code and jurisdict.code

    Which is the table that links country, tax code and jurisdict.code.

    This could be one way of finding what countries are using the tax codes:
    1. Determine all the countries where the calculation procedure TAXEUR has been assigned to
    2. Execute report "S_ALR_87012365"
    3. Enter Country code in the selection screen and hit execute
    4. The report will display all the tax codes created for the country
    5. Manually check if the tax code exists in the list
    An other way to do this which you might already know is to use FTXP and view the tax codes in the drop down list.
    I hope this helps.
    kiran

  • How to share and Access DB (.accdb) with global tables that link to SQL Server tables without having to define ODBC connections on each client PC?

    I have an Access DB with quite a few Linked Tables that point to a SQL Server backend db.  Currently I am using an ODBC connection defined on my pc, but I want other users to be able to download the .accdb file from a share and run.  Will I have
    to define this odbc connection on each client's pc?  Is there a better way to do this without having to have each client manually set this up on their PC?

    I have an Access DB with quite a few Linked Tables that point to a SQL Server backend db.  Currently I am using an ODBC connection defined on my pc, but I want other users to be able to download the .accdb file from a share and run.  Will
    I have to define this odbc connection on each client's pc?  Is there a better way to do this without having to have each client manually set this up on their PC?
    Hi Jason,
    I think you can automate that process. In each application I use a one-record-table in the FE with a field Connected. Connected is default False.
    Starting a database in the development mode ignores this flag. Starting a database in production mode starts, if Not Connected, a procedure to RefreshLink the tables to the BE, and makes Connected = TRUE, so a next startup does not
    result in a new RefreshLink.
    Instead of a Boolean you could also use a string containing the path, or whatever you want.
    Imb.

  • Table which links Service PR and PM Order

    Dear All,
    Can anyone help me to find the Table name where i can find Link Between Service PR number generated automatically for External Service Orders with the Order number.
    Thanks in advance.
    Shailesh Panchal

    Hi Shailesh,
    I would suggest you to check the fields
    EBKN-BANFN /-BNFPO,
    EBKN-AUFNR,
    EBAN-ESTKZ
    AFVGD-BANFN
    Regards,
    Edit

  • Table that link Contract and FI doc

    Hello Guru:
    when display Contract condition, each cash flow line will show status "POSTED" and we can double click to see FI doc.
    which table link this together please.
    Thanks in advance.

    To add to what Jagannath has provided. 
    To find out the A/c document for a posted condition I have done the following.
    VICNCN - Select the RE KEY [INTERNO]
    VICDCFPAY  Field INTERNO = VICNCN INTERNO gives you the cashflow.
    VICDCFPAY -REFGUID - Select this value and then link it to VIRADOC - DOCGUID.   [ For posted / processed payment conditions this column will not be blank ]
    Select VIRADOC - REFDOCID  and provide it as input to BKPF - AWKEY  which provides you with FI-document details.

  • Service ticket table

    HI ,
    Can i get some tables related to service ticket , where this data will store .
    Thanks,
    Aravind.

    Hi Aravind
    Your Service Ticket is nothing but the Service Order Less the Item Level hence it is the same as your service Ticket transaction type in Online System .The table where you will find this transaction data is hence CRM_ORDERADM_H.
    Plz reward if it helps
    Cheers!
    Raj

  • CRM CIC table for service ticket

    Hi experts,
    I need to find the table for the service ticket due time in CRM IC.
    Can you please help me out?
    Thanks,
    Mohit.

    Hi Mohit,
    Better use function module CRM_ORDER_READ, and pass the objecct name your are interested in, in the above example, i believe these objects are more then sufficient.
    data:         lt_object_name TYPE crmt_object_name_tab,
            ls_object_name LIKE LINE OF lt_object_name.
      ls_object_name = 'APPOINTMENT'.
      INSERT ls_object_name INTO TABLE lt_object_name.
      ls_object_name = 'STATUS'.
    CLEAR ls_object_name.
      INSERT ls_object_name INTO TABLE lt_object_name.
    CLEAR ls_object_name.
      ls_object_name = 'ORDERADM_H'.
      INSERT ls_object_name INTO TABLE lt_object_name.
      CLEAR ls_object_name.
      CALL FUNCTION 'CRM_ORDER_READ'
    EXPORTING
       it_header_guid                    = tb_header_guid_exp
         it_requested_objects              = lt_object_name
    IMPORTING
       et_orderadm_h                     = tb_orderadm_h
       et_status                            = tb_status
       et_appointment                  = tb_appointment.
    Hope it will solve your query.
    Regards,
    Kamesh Bathla

  • Service Order as follow up document for Service Ticket

    Hi,
    we are using CRM 2005 and the IC-Webclient for the service callcenter.
    Is it somehow possible to create a service order as follow up document out of a service ticket in IC-Webclient?
    Thanks a lot.
    Best regards
    Manfred

    Hi,
    The Service Ticket itself is Service Order. The difference between them is that the Service Ticket does not have Item Category which is present in the Service Order.
    Between your transaction code maintian the copy controls.
    Hope it helps.
    Regards,
    Rajiv

  • Service tickets - User and system status

    Hi guys
    This is the scenario, there was a complaint raised by our resolver groups saying that they were unable to open any service tickets logged through to them from our Contact Centre Agents. All this happened in a space of 5 hours only
    Under the Header Overview of these service tickets, when I view the changes to this document, i saw that every service ticket that was logged user status shows CLOSED and system status shows COMPLETED
    Please advise what could have caused this?
    Ravi

    Hi Arden
    Went through a few of those cases and picked up this
    The last system status entered shows TO BE DISTRIBUTED - by the Interaction Agent user
    Responsible Group deleted - and new value shows the new responsible group
    But the time frame bewteen the old value and new value is what concerns me. Theres a gap of about 45 minutes on average from the time the case is logged "open" till the time the case is "in process" by the resolver
    But as per the resolver groups, they could not access these cases once they were logged. So it seems these cases were all "locked" basically and could only be access minutes later
    Ravi

  • Create a follow-up of a Service Ticket

    Hi,
    I need to implement a script to create a follow-up of a Service Ticket to a service contract. Therefore I need to implement an Action Class to run in the ICWebClient.
    I'm facing some problems and I didin't managed to find a suitable class / function to automate it.
    I've tried:
    Method: EH_ONCREATEFOLLOWUP of the class CL_CRM_IC_SRVTFOLLOWUP_IMPL, from the view SrvTFollowUp. I've adapted the the requested custom_controller but without sucess - somewhere during the process I was catching a missing handler exception.
    I also tried to use the functions:
    'CRM_IST_COPY_ORDER_TO_CONTRACT'
    'COM_PCAT_COPY_DOCUMENTS'
    'CRM_ORDER_READ' -> 'CRM_COPY_EXTERNAL_ORDER_OW'
    and some others but with no luck as well.
    Did anyone had the same problem before? I would apreciate some new ideas!

    Hi,
    The Service Ticket itself is Service Order. The difference between them is that the Service Ticket does not have Item Category which is present in the Service Order.
    Between your transaction code maintian the copy controls.
    Hope it helps.
    Regards,
    Rajiv

  • Link action profile generated mails to Business context of service ticket

    Hi,
    how to link action profile generated mails to business context of service ticket.
    The business context links emails sent manually from the e-mail function on the navigation bar, but automated emails that are sent using email actions (post processing frame work u2013 actions and action profiles), donu2019t get linked to the service ticket.
    Thanks in advance
    Madhav.

    Alternatively, if we could send all file attachments that would be a start, but ideally we'd like to send all the contents of the Business context as separate attachments.
    Thanks!
    Andrew G.

  • I wanted a solution to the problem I was having on Win 7 Pro Service Pack 1 in that links on an open Adobe Acrobat file will not open in my Firefox Browser 33.0.2. The Error I receive is "Acrobat could not run the web browser.  Unknown Error. (123)"

    I want a solution to the problem I was having on Win 7 Pro Service Pack 1 in that links on an open Adobe Acrobat Pro 10.1.12  file will not open in my Firefox Browser 33.0.2. The Error I receive is "Acrobat could not run the web browser.  Unknown Error. (123)"

    Change browsers. See what happens.
    Be well...

Maybe you are looking for

  • AppleTV plays one song at a time

    Apple TV 2 works for me as advertised. I've used it to play music and films off my iPad and desktop. However, when I use the AppleTv remote or the Remote app on the iPad to play albums off my desktop iTunes library, it will play only one song at a ti

  • Lost Recovery key & sold my iPhone

    Hi, I have lost my recovery key & have sold my iPhone,but I still have access to my Apple ID, I want to know how can i regain access to my account, as I don't want to recreate an other Apple ID. kindly plz help

  • I can login by hostname but can't by ip

    Hi, There is a strange problem. After some updates on DC and adding new Exchange server 2013 to domain I can't login with Remote Desktop Connetion (RDP) to another PC in local network by IP address and AD account and if remote PC is Win 7, 8.1 or Ser

  • How to find control,  jListBox with checkBoxs

    Hello Everyone Using Jclient/Swing application i want to use listbox with checkBoxs. Suppose listbox display list of items along with these checkboxs.And these checkbox varies according the items aviable in listbox. whether this type control availabl

  • TS3274 Ipad is hanged, how to restore it

    Hello My ipad is hanged. Applications are not opening .Its neither shutting off Kindly help to resolve the problem