Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Creating Attribute and Analytic view as persistent model in SAP HANA

Can we create attribute views and analytic views as persistent models in HANA? I regenerated attribute and analytical views in new project and when I activate it, .attributeview file creates a.....
Anil SAP Gupta
Answered on 6th Dec, 2017

This is possible as all views can be created as persistent in SAP HANA. You need to get XMS representation creating attributeview, .analyticview, .calculationview file and activate it.In your case I think you need to check details of your Analytic view and if there is some path that you need ... Read More

Accessing SAP Web Dynpro page within an application using NSURL

I have an application in which I am trying to access SAP Web Dynpro page using NSURL request. It returns the below message: "This Browser is not Supported". I can access the same page using ot.....
Anil SAP Gupta
Answered on 6th Dec, 2017

You need to pass browser identification string otherwise Web Dynpro application won’t take browser and will show an error message as mentioned by you.You can refer below link for more details:Apple NSURL Link

Converting BLOB to Char in SAP HANA using SQL

I need to cast a BLOB to varchar format in HANA database using SQL query. Below is my code: select  cast("DESCRIPTION" as varchar) "D" from "DESC" I get an error message: “Inconsist.....
SAP Expert
Answered on 6th Dec, 2017

You can perform varchar casting using following query:SELECT TO_ALPHANUM(col) FROM ......

Moving BAPI, Function Module, and Business Object from one SAP system to other

I have ZBAPI structure and I develop a custom application on same server. Now I want to use same application and other objects of BAPI on other system. Is it possible to move structure, Functi.....
SAP Expert
Answered on 6th Dec, 2017

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 ... Read More

In SAPUI5, how two add two icons in StandardListItem

I have to add two icons on a StandardListItem. Below is my XML code: <List             id="nameList"              select="se.....
SAP Expert
Answered on 6th Dec, 2017

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 ... Read More

Fetching monitoring data in an application using SAP FM's

I have an application where I want to fetch CCMS data however I am not able to get details using BAPI. Do we have any FM’s that can be used for this purpose?
SAP Expert
Answered on 6th Dec, 2017

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_ACKNOWLEDGEBAPI_SYSTEM_ALERT_GETDETAILSBAPI_SYSTEM_MON_GETLISTBAPI_SYSTEM_MON_GETTEMPLATEBAPI_SYSTEM_MON_GETTREE You can refer this documentation to know more about Function Modules:SAP XM Interface Read More

CUID format in SAP BO Server Repository

I have to pass CUID in Web Service as input and I want to know the format of CUID to make my code more generic. I have checked few of CUID and it seems it starts with “A” and then .....
SAP Expert
Answered on 6th Dec, 2017

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 ... Read More

Getting information from pooled tables in SAP system

We are running SAP on Oracle 11 database and E1 on Oracle 11 database to run different units. We are also managing Data Warehousing using SQL Server system.  Now I want to get information.....
SAP Expert
Answered on 6th Dec, 2017

Note that you can’t access Pooled tables directly and it should be accessed via Application server. When a pooled table is created, it involves creation of a suitable transparent table with a suitable delivery class and then it is changed to a pooled table.A pooled table can be flagged as ... Read More

Generating an IDoc file to generate orders in SAP R/3 system

As per requirement, I have to generate IDoc file to make shop orders available to R/3 system. I can’t use Web Service or BAPI and data should be available only via files. Is [BELNR] requ.....
SAP Expert
Answered on 6th Dec, 2017

BELNR is not required however it is useful. Let us say a customer place an order and as he is not sure he place the order again. Now there are 2 orders you are not sure if there are two IDocs for same order.With BELNR, it has order number of ... Read More

SAP PI messaging service is JMS compliant or not

I want to know if messaging service in SAP PI is JMS compliant or not. I tried to check on various SAP forums but couldn’t able to find this. Anyone can help?
SAP Expert
Answered on 6th Dec, 2017

As per my knowledge, SAP PI Messaging Server 7.4 AEX is compatible with JMS 1.02 and JMS 1.1. Using Java Messaging Service, you can connect messaging systems to the Integration Engine.You can refer to SAP Note: 856346 - J2EE JMS AdapterThis note says common FAQ’s about JMS and I have ... Read More

No error while inserting record in child table with no match in master table in SAP

I have two table in SAP system- master table and child table. While using an ABAP program to insert record in child table with no matching record in master table, record is entered in database.....
SAP Expert
Answered on 6th Dec, 2017

Note that when you perform an insertion using an ABAP program, there is no check on foreign key constraint.  Even when you define checks in data dictionary SE11 still there is no check at database level.When you execute using an ABAP code, this checks consistency at application level and not ... Read More

IN statement in SQL doesn’t accept a wild character (SAP)

Check out the below SQL: SELECT *  FROM Test1 t INNER JOIN TEST2 s ON t.ID = s.RID WHERE t.sdate >= ?1 AND t.edate <= ?2 AND  t.id LIKE ?3  AND t.afdeling IN (?4) AND s.si.....
SAP Expert
Answered on 6th Dec, 2017

Note that IN statement in SQL doesn’t accept a wild character. You have to use OR/AND to make it work as mentioned below:select *from Test1 t INNER JOIN Test2 s ON t.ID = s.RIDwhere t.sdate >= ?1AND t.edate <= ?2AND t.id LIKE ?3AND ('%' = ?4 OR t.afdeling IN (?4))AND ... Read More

Specifying working directory while executing FM SXPG_COMMAND_EXECUTE in SAP system

Is there a way to specify current working directory while executing command by FM SXPG_COMMAND_EXECUTE. I checked T-code: SM69 and SE37 but couldn’t able to find any parameter specific fo.....
SAP Expert
Answered on 6th Dec, 2017

I thought it can be done using a script in SM69 T-code defined as a call to sh with parameters of -c 'cd <dir> && /path/to/command.However it doesn’t accept wildcards and && is converted to & and script is not working. As per SAP Note 401095 - Wildcards in external ... Read More

Sorting Prompt values in SAP BO Webi report

I am using a prompt in my Webi report- “Fiscal Month”. How can I custom sort it so that months start with April, May, June…..?
SAP Expert
Answered on 6th Dec, 2017

In Business Objects 4.1, this can be done by following below steps in Universe:Navigate to Parameters and LOVNext is to go Edit SQL option -> write query with order by to get the order.

Attach data from SAP system using Oracle Web Logic and Oracle Enterprise Service Bus

In my application, i have to attach data from SAP system using Oracle Web Logic and Oracle Enterprise Bus. My application is a Windows based app developed in JAVA and this requirement seems tou.....
SAP Expert
Answered on 6th Dec, 2017

As per my knowledge, Oracle Bus Service has a SAP adapter that you can use to get data via queries. With 10.3.1 release of the Oracle Service Bus, you have the following adapters for use within Oracle Service Bus:Oracle AQDatabaseOracle ApplicationsSAPJ.D. Ewards OneWorldSiebelPeopleSoftYou can refer to this link to know ... Read More

Advertisements
Loading...
Unanswered Questions View All

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.