IB52: FM for adding partner to the Install Base

Hi,
My requirement is to add Service Contact (partner) on the Installed Base - IB52
How to add a Partner on to the Installed Base - which Function Module to use?
Thanks
Rajeev

Using following FMs:
ls_comp_det-OBJECT_GUID = ls_comm_product-product_guid.
CALL FUNCTION 'CRM_IBASE_COMP_FIND'
CRM_IBASE_COMP_CHANGE
BAPI_IBASE_SAVE
BAPI_TRANSACTION_COMMIT

Similar Messages

  • I installed Mountain Lion so that I could sync my notes with my iPhone that already syncs notes with a specific email address I use for school, but during the install it automatically set up Notes to sync w the wrong email addy. How can I fix it?

    I installed Mountain Lion so that I could sync my notes with my iPhone that already syncs notes with a specific email address I use for school, but during the install it automatically set up Notes to sync w the wrong email addy. It looked in Mail, which had 5 email accounts set up in it, and for some reason picked the only one that I no longer use because it is for a school that I no longer attend. How can I fix it so that it syncs with the correct email account for notes and calendar? There don't seem to be any settings available other than to check if you want to use the basic features. It also said during the set up that it was setting up 'find my mac' but if I look on the iCloud website there is nothing showing there for finding my mac.
    At this point I feel like I wasted my money paying for this supposed upgrade. I got nothing for it but frustration. It even automatically set my security settings to allow only downloads from the Mac store so the first time I went to download something I had to stop what I was doing and go correct settings first. I feel like there should be a security setting to block downloads from the Mac store so I don't accidentally end up clicking the wrong thing and being charged.

    iCloud isn't syncing them on your phone.  You simply added the email account to your phone and enabled calendar and notes syncing with the email provider, and the calendar and notes appear in the calendar and notes apps on your phone.  You can do this with Gmail, Yahoo and other IMAP account.  iCloud email is just another IMAP account, but syncs notes with Apple's iCloud server just as Gmail syncs notes and calendars with Google's server.
    iCloud didnt' set up a non-iCloud account on your Mac.  When you check Mail in System Preferences>iCloud, it only creates an iCloud email account.  You can also add other email accounts to your Mac by going to System Preferences>Mail,Contacts,Calendars and clicking on the "+" sign on the bottom of the left sidebar.  If you added these other email accounts to your Mac before you upgraded to Mountain Lion, these were simply maintained on your Mac after you upgraded.

  • Is there a way for a SR Task to update the Install Base Status instance to Active

    Release 12.1.3
    When a field service install task is closed is there anyway for the Install Base instance on the SR to have its status updated to "Installed"?

    Thanks Shachar. 
    I had tried using AEGP_GetEffectParamUnionByIndex and forgot to mention that in the original post, oops!
    After you suggested it, I looked over it once again, but still couldn't find any promising/useful attributes.
    It seems that the structs returned within the union don't have a parking spot for the ui_flags.  I double checked this in AE_Effect.h, and it matches up with what I'm seeing in the xcode debugger.
    Heres one example (Checkbox rom AE_Effect.h):
    /** CheckBox -- PF_Param_CHECKBOX
    typedef struct {
      /* PARAMETER VALUE */
      PF_ParamValue value;
      /* PARAMETER DESCRIPTION */
      PF_Boolean dephault;
      A_char reserved; /* padding */
      A_short reserved1;
      union {
      const A_char *nameptr;
      } u;
    } PF_CheckBoxDef;
    So, they have a few attributes (name, default values, and current value) but no ui_flags.  Bummer!
    -Andy

  • Query for Software Updates Reports Install Date for only Some of the Installed Updates

    We use the following query to retrieve a list of software updates for a specific collection and software update group.  There are many cases where the installation status of a software update is 'installed' but there is no corresponding 'install
    date'.  Can anyone tell me why?
    declare   @AuthListLocalID as int
    declare @CollID as varchar(8)
    Select @CollID=CollectionID
    from v_Collection
    WHERE CollectionID='ZSV0000A'
    select @AuthListLocalID=CI_ID from   v_AuthListInfo
    where    CI_UniqueID='ScopeId_EAD5EB80-CC39-4EA2-B08F-A45BB84F1D76/AuthList_4DEAD110-5740-495E-8BD8-467A55C50A0C'
    select
    rs.Name0 as ServerName,
    catinfo.CategoryInstanceName as Vendor,
    catinfo2.CategoryInstanceName as   UpdateClassification,
    ui.BulletinID as BulletinID,
    ui.ArticleID as ArticleID,
    Case ui.Severity WHEN 10 THEN 'Critical' WHEN 8 THEN 'Important' ELSE LTRIM(ui.Severity) END as Rating,
    ui.Title as Title,            
    Targeted=(case when ctm.ResourceID is not   null then '*' else '' end),
    Installed=(case when css.Status=3 then   '*' else '' end),
    IsRequired=(case when css.Status=2 then   '*' else '' end),
    Deadline=cdl.Deadline,            
    CAST(CASE   IsNull(AddRem.InstallDate0,CAST('1/1/1900' as smalldatetime)) WHEN   CAST('1/1/1900' as smalldatetime) THEN AddRem64.InstallDate0 ELSE   AddRem.InstallDate0 END as Date) as 'Install Date',
    ui.InfoURL as InformationURL
    from v_UpdateComplianceStatus css
    inner join v_UpdateInfo ui on   ui.CI_ID=css.CI_ID
    inner join v_CIRelation cir 
    on ui.CI_ID=css.CI_ID and cir.ToCIID =   ui.CI_ID -- add this
    inner join v_CICategories_All catall on   catall.CI_ID=ui.CI_ID 
    inner join v_CategoryInfo catinfo on   catall.CategoryInstance_UniqueID = catinfo.CategoryInstance_UniqueID and   catinfo.CategoryTypeName='Company' 
    inner join v_CICategories_All catall2 on   catall2.CI_ID=ui.CI_ID 
    inner join v_CategoryInfo catinfo2 on   catall2.CategoryInstance_UniqueID = catinfo2.CategoryInstance_UniqueID
    and   catinfo2.CategoryTypeName='UpdateClassification'
    left outer join v_CITargetedMachines ctm   on ctm.CI_ID=css.CI_ID
    and ctm.ResourceID = css.ResourceID
    left outer join v_GS_ADD_REMOVE_PROGRAMS   AddRem on css.ResourceID = AddRem.ResourceID and ui.Title =   AddRem.DisplayName0
    left outer join   v_GS_ADD_REMOVE_PROGRAMS_64 AddRem64 on css.ResourceID = AddRem64.ResourceID   and ui.Title = AddRem64.DisplayName0
    left outer join (select atc.CI_ID
    ,CreationTime=min(a.CreationTime)
    ,ExpirationTime=min(a.ExpirationTime)
    ,StartTime=min(a.StartTime)
    ,EnforcementDeadLine=min(a.EnforcementDeadLine)
    ,LastModificationTime=min(a.LastModificationTime)
    ,Deadline=min(a.EnforcementDeadline)
    from v_CIAssignment a
    inner join v_CIAssignmentToCI atc on   atc.AssignmentID=a.AssignmentID
    group by atc.CI_ID) cdl  
    on cdl.CI_ID=css.CI_ID
    left outer join v_R_System rs ON   css.ResourceID=rs.ResourceID
    where    css.ResourceID in (
    Select vc.ResourceID
    FROM v_FullCollectionMembership vc
    WHERE vc.CollectionID=@CollID)
    and cir.FromCIID=@AuthListLocalID
    and cir.RelationType=1  
    order by
    catinfo.CategoryInstanceName
    , catinfo2.CategoryInstanceName
    , ui.ArticleID

    Hi Mate,
    Its really difficult to do get the installed date of the patches as there is no table available in SCCM  DB to pull this info i had a requirement in the past but i was unable to do had done it via work around.
    This can be done after editing of sms_def.mof file or else using the power-shell script in windows server 2008 where the powershell is a feature by default.
    H/W inventory: 
    For the 2000 servers this has to be installed but if we enable this its mentioned it may utilize upto 100 % of the Memory during the h/w inventory you can check that in your SMS_DEF.MOF  -
    QuickFixEngineering you can see the warning.uickFixEngineering
    http://support.microsoft.com/kb/279225/en-us
    Powershell script:
    http://msmvps.com/blogs/richardsiddaway/archive/2011/10/23/1760058.aspx
    the warning for the quick fix engineering is not there on 2012 but there on 2007 hope the info help you to achieve your output.
    Kamala kannan.c| Please remember to click “Mark as Answer” or Vote as Helpful if its helpful for you. |Disclaimer: This posting is provided with no warranties and confers no rights

  • Adding a "In Relationship" install base instance to a Repair Order

    Hi,
    When we try to add an install base instance to a Repair Order in Depot Repair, I'm not able to add a line for a unit that has an usage of "In Relationship". I checked the SQL and Depot Repair is not able to add such units.
    We're able to return a unit that has an usage of "In Relationship" from Order Management as well as Service Request. Is there a way this can be done in Depot Repair.
    Any help is very much appreciated.
    Thanks,
    Madan

    I'm not sure the need is as obvious as you suspect.
    The first problem I come to is "which user?". If the Service Request has 10 activities steps, from 10 different users, which of them is the Service Request Completed user? The only way this would be informative would be the rare service requests that have
    no processes and must be handled manually, in which case the real fix is to create processes for these service requests so they don't need to be handled manually.
    As to setting this: there's two big options:
    the way this is set for Incidents is by the form controls. If you were to replicate that behavior, you'll probably want to add a custom control to the form that sets the completed user to the current console if the status has changed to completed during
    that session, which is a lot of real SDK development work.
    Alternatively, you could use a workflow that triggered on the status being changed from anything else to completed, and set this value based on the last user to edit this SR. I'd recommend doing this with a
    custom workflow in PowerShell, but you could use Orchestrator, C# workflows, patrol scripts, etc.

  • How to remove the installed base view from the IC web client?????

    Hello All
    I am working on CRM 6.00 IC webcilent
    In the interaction center view there two views called installed base and objects, i want to remove these two views as we donu2019t need them I removed the there fields using BSP WD workbench but still the view is there, is there a way to remove them without enhancements?
    Regards
    Jacopo Francoise

    Hi,
    Just check if it works for you??
    Go to:
    SPRO->IMG->CRM->Interaction Center WebClient->Define Account Identification Profiles
    Select your account identification profile and go to Object Components.
    Remove the entry of ICCMP_IBASE from here.
    Thanks and Regards,
    Rohit

  • Can we swap serial Numbers for an item instance in Install Base

    Hi,
    Can anyone please let me know if we can swap/replace serial number of an item instance in Install Base. If so, please let me know how to do it.
    Thanks in Advance.

    Oh, I did find where it is defined. It's a form function under Setup in Oracle Install Base Admin responsibility. I think you would have had it if you had CMRO installed.
    Following are the values in the form:
    Application Name: Complex Maintenance Repair and Overhaul
    Transaction Typa: ITEM_SERIAL_CHANGE
    Transaction Name: Item Serial Change
    Description: Item Number and or Serial Number Change
    In Out: Checked
    Alka

  • Suggestions for Added features on the SW2

    Hi
    Just thought i would ask for a some features to be added 
    you never know someone could listen hehe
    1. Turn on the Backlight by a flick of the wrist, 
        At night the only way to view the time is to press the button , the Pebble can do it so i'm sure Sony can
    2. A decent Digital watchface
        The watchfaces shown all over the web before release look ok , something you can see the date on and not just the time
    3. A music control app
        Again the app shown everywhere but for some reason didnt make it into the final build
    4. Arrange plugins how you want to
         I know that you can arrange plugins by Favourite or a-z but i need the ability to place the apps into the order that i want
    as at least 2 apps i need immediate acces to are not the most used and dont begin with A so i have to scroll to use them.
    5. Not having press the button
         I would like to be able to use the watch without having to press the button first and then press home
         Maybe you could implement a swipe across the 3 bottom buttons to wake , that would be a lot easier
    and fina;lly please dont let this become another Liveview or smartwatch where the only firmware upgrades break functions and then instead of fixing then Sony just release another watch, It's happened twice now and with all the competition now it will not go well if it happens again
    Also if anyone has anything too add then feel free
    Thanks
    www.smartwatchnews.co.uk

    Hi, I'm glad to see that others also would like to have the date shown on the watch face.
    I would purchase a SW2 if it had a digital watch face that showed the time and date.  I would like it to have a face with the following: 
    12:00 00 PM
    Tue 10-29-2013

  • Powershell command for adding permissions in the "winrm configsddl wmi" menu

    Hello,
    I was wondering if there was any powershell command that would be the equivalent of adding a user in the menu brought up by typing
    winrm configsddl wmi
    I want to be able to add Read permission for users.
    Thanks,
    Brian

    Hi Brian,
    You can try to create and add the user to the local group which has been set as the read permission of the "http://schemas.microsoft.com/wbem/wsman/1/wmi".
    To add local users to local group in powershell, please refer to this thread:
    Adding local user accounts to Local administrator group:
    http://powershell.com/cs/forums/t/6369.aspx
    I hope this helps.

  • Is there a way to create different groups for my contacts using the installed contact app

    I am trying to make a group on my contacts. So that it's easier to just make messages to people and not having to make group messages every single time. For example, making a group for a sports team so that I can just message everyone in the group at once.

    No not possible but you can create contact groups at www.icloud.com and if you have contact synced thru cloud the groups you make at www.icloud.com will appear on your phone

  • What username and password is used for a Mac on the Install of Adobe Reader,  (Step 8 in procedure)

    Is it a Mac or Adobe password used for installing Reader to a Mac OS? Doesn't. Say in step 8 of procedure.  We cannot. Get past this point.  Thanks.

    See https://forums.adobe.com/thread/1619850

  • BAPI for adding text in the delivery Header Text Tab?

    Dear All,
    We are using the SAP standard BAPI to create the delivery Document by inputing sales order number.
    The issue is that the customer is maintaining the Truck number in the delivery Header Level Text Tab, now he wants that he will give the sales order number and truck number as inputs the BAPI as to create the Delivery document and the truck number should appear in the Deliver header level text tab ("Truck No" text object maintained)
    Please suggest asap.
    Regards,
    Javal;

    Dear Javali,
    Have you tried the function module 'CREATE_TEXT' ?
    Check and revert back.
    Thanks & Regards,
    Hegal

  • Business partner(Consumer) install base creation

    hi guys,
    Can anybody have an idea how to create an install base data for the business partner(consumer).
    Is there any function module which will create the install base data in crm.
    visu

    Hi Viswa,
    Use the following function modules to create the IBASE.
    1. BAPI_ECRMISUTO_INIT : Initialize IBASE
    2. BAPI_ECRMISUTO_CREATEMULTIPLE : Create IBASE
    3. BAPI_TRANSACTION_COMMIT : Commit the transaction
    Note that after creating IBASE if you want to assign the Partner to the IBASE then use the CRM_IBASE_COMP_CHANGE function module to achieve the same.
    <b>Reward points if it helps.</b>
    Regards,
    Amit Mishra

  • Hierarchy Category for Installed Base creation

    Hi All,
    We are implementing service management using CRM 5.0 and R/3. We have created some custom material types in R/3 and downloaded to CRM. In CRM configuration "Assignment per Product Type for application Product" the HierarchyID R3PRODSTY is assigned to Product Type "Material". Now, I want to assign the Object family 0401 to a category to be able to create Installed Base records. I cannot modify the Hierarchy R3PRODSTY since it came from R/3. So I created a new hierarchy "IBase" and assigned the Object family and I assigned this hierarchy to Product Type "Material". With this I am able to create a Ibase but not a product because I changed the assignment. Is there straight forward way to have object family in the Hierarchy “R3PRODSTYP" or to be able to create products and Installed Bases simultaneously? Any Input will be greatly appreciated.
    Thanks,
    Uday.

    Hi Ankit ,
    There is some SAP F1 Help. FROM SPRO
    That may answer your question.
    Activate Partner and Address Inheritance
    Use
    In this activity, you can make the following settings for each installed base category:
    Activate partner and adress inheritance for a specified number of installed base hierarchy levels
    The inheritance of partners and addresses is a logical rather than a physical inheritance.
    Activate calculation of geographical coordinates from address information when address data is created or changed
    Enable changes to an installed base for a validity date that is earlier than the system date.
    Partner assignment or address assignment is used during the search for components to take partner inheritance and address inheritance into account.
    For example, this means that in the interaction center or service processes, all components can be found using the business partner.
    Default Settings
    No standard settings are provided.
    The settings are optional. If you do not enter any data, the function is not used.
    Activities
    To activate partner and adress inheritance, select the PInherit. or AdrInherit. checkbox, respectively, and specify the number of levels in the installed base hierachy that should inherit partners or addresses.
    Note: If want partners or addresses to be inherited by all lower-level components in the hierarchy, enter 0 (zero).
    Regards
    Logu

  • Need to make Partner maintanance mandatory in installed base.

    Dear CRM Folks,
    My requirement is..I need to make partner data mandatory at installed base if not maintained system should give error.
    Currently we can save installed base without Partner data maintained. I have checked all the BADI's given in IMG but dont know how to  use them. Kindly help me to achieve this functionality.
    Regards
    Raju Landge.
    IBM India.

    Hi,
    please check in SPRO the used partner schema.
    Here set for your partner functions the "mandatory" flag.
    Kind regards
    Manfred

Maybe you are looking for

  • Adding custom text to a notification having Embedded Region

    Hi All, Could you please help us in the following situation. We have a requirement to add a custom message (pulled from Database) to a notification which was build on &HR_NTF_EMBEDDED_REGION. When I tried the HTML body of the notification as below: <

  • Quicktime - ASF - Flip4Mac - OSStatus error -19160

    Hello. I was previously unable to play any ASF programmes on Quicktime until I downloaded Flip4Mac version 2.2.11.1 a month ago. More recently I downloaded the recommended Mac Updates (possibly also including one for Quicktime, but my Installation lo

  • Segmented Control "Touch Inside" event is not firing?

    I think that Xcode has yet another bug as I don't know how in the world this event does not fire especially after doing everything by the book. I laid out the segmented control, turned on Assistant editor, right clicked the control, dragged the "touc

  • B-Series Network Connections

    I know that there are advantages to using the vNIC capabilities of the VIC M81KR along with the 2100 IO Module up to the 6100 series Fiber Interconnect. But If the customer was not convinced of the management advantages of the 6100 and the UCS Manage

  • Can't format SSD to GUID Partition Scheme

    I can't format my SSD to GUID Partition Scheme with Mac OS Extended(Journaled) but Master Boot works fine. When i try, it stucks even i tried Recovery HD. You can see issue in picture. What should i do? MBP Mid 2012 OS X Yosemite 10.10.2 SSD is Samsu