- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 594 Articles for SAP Basis

256 Views
As per my understanding, CUID is a 35 characters and normally starts with A, B, C, F, K and M. To know formatting of different ID types, you can refer to this:SAP Note: 1285103: What are the different types of IDs used in the BusinessObjects Enterprise repository?CUID: CUIDs are Globally Unique Identifiers that uniquely identify an InfoObject, both within a single CMS cluster and across multiple CMS clusters. Because CUIDs are strings they are less efficient to use and slower to query for. Unlike an object’s ID, an object’s CUID stays the same when it is migrated to a new ... Read More

130 Views
You need to login to XM interface and there is different BAPI’s that you can use to read CCMS data.Function Module:BAPI_SYSTEM_ALERT_ACKNOWLEDGE BAPI_SYSTEM_ALERT_GETDETAILS BAPI_SYSTEM_MON_GETLIST BAPI_SYSTEM_MON_GETTEMPLATE BAPI_SYSTEM_MON_GETTREE You can refer this documentation to know more about Function Modules:SAP XM Interface

180 Views
Instead of using StandardListitem, you should use CustomListitem. With use of CustomListitem, you can add any kind of content.As per SAP documentation, CustomListitem has following use:This control with a content aggregation can be used to customize standard list items that SAP doesn't provide. List mode and ListItem type are applied to CustomListItems as well.Note: Even though the content aggregation allows any control, complex responsive layout controls (e.g. Table, Form) should not be aggregated as content.SAP CustomListItemnew sap.m.CustomListItem(sId?, mSettings?)Param Type Default Value DescriptionsId?String ID for the new control, generated automatically if no ID is givenmSettings? Object Initial settings for the new ... Read More

205 Views
This can be performed using Change and Transport system CTS. CTS can be used to move ABAP objects, Java objects in your SAP system landscape.Transport management is one of the key components in SAP system landscape and is used to perform the following activities −Defining Transport Domain Controller.Configuring the SAP system landscape.Defining the Transport Routes among systems within the system Landscape.Distributing the configurationManaging TransportTo open Transport Management System, use T-Code − STMSYou can also refer to this SAP documentation to know more about Change and Transport System −SAP Documentation- CTS

129 Views
In SAP system, you have an external BAPI that can be called to manage SAP jobs, check this FM: "BAPI_XBP_JOB". You can use BAPI_XBP_JOB* function modules to create/schedule a job to run the query. For more details, you can refer below link − BAPI_XBP_JOB There are various FM’s that can be used to start or stop a job immediately: BAPI_XBP_JOB_START_IMMEDIATELY BAPI_XBP_JOB_START_ASAP And many more.

114 Views
You can check SAP Business One installation using below code: Public Function isSapBusinesOneClientInstalled() As Boolean Try SAP Business One Application Dim type As Type = Type.GetTypeFromCLSID(New Guid("632F4591-AA62-4219-8FB6-22BCF5F60088")) Dim obj As Object = Activator.CreateInstance(type) Marshal.ReleaseComObject(obj) Return True Catch ex As COMException Return False End Try End Function

275 Views
I think you can delete it from Windows Services. You can use below steps to delete this service. Open Central Configuration manager (CCM) and stop the Server Intelligence Agent (SIA) to be deleted. Next is to go to Windows Start > Run and type in "services. MSc" without the quotes and press Enter key. In the Services applet, find the SIA service to be deleted say Server Intelligent Agent (BI40) as shown in first snapshot. Go to Properties of Server Intelligent Agent (BI40) and navigate to “General” tab -> Copy the Service name BOEXI40XXXXX to the clipboard. ... Read More

66 Views
I am not sure if you are running latest BO server or running older version of BOXI service. BCC option is available in later version of Business Objects.Refer SAP Note: 1369269 - Unable to Schedule reports through BCCSymptom − 'BCC" option not available while scheduling reports to email. Reproducing the Issue − Schedule a report with destination as email. Environment − Business Objects Enterprise XI 3.1 Resolution − The ‘BCC’ option is currently not supported by the product. As per SAP Note: 1626654 - How do you specify a BCC entry when scheduling documents to email? Reproducing the Issue Log on to ... Read More