Found 822 Articles for Business

How many companies did Flipkart acquire before it was sold to Walmart?

Om Sharma
Updated on 30-Jul-2019 22:30:23

48 Views

In December 2010, Flipkart acquired its first company named weread.com, which is a book review website. In October 2011, Flipkart acquired a digital music store called 'Mime-360'. Along with cash deal, Flipkart did a stock deal as well here. In November 2011, it took over a Bollywood news website 'Chakpak.com'. In February 2012, Flipkart obtained the then biggest online electronics retailer 'Letsbuy.com'. In May 2014, it acquired the online lifestyle retailer 'Myntra' at $30 Crore. In September 2014, it obtained the large chunk of a payment platform named 'NHPay'. November 2014, Flipkart bought a great number of shares of 'Jeeves', ... Read More

Do you think it is fine to waive off farmers’ loans by the government of India?

Om Sharma
Updated on 30-Jul-2019 22:30:23

53 Views

The moment I opened today’s newspaper, the first news that I came across was really sort of disturbing for me. The news was this, “The Government of Rajasthan is to waive off the loan of 29 Lakh farmers.” Now, many of you might bash me for titling this news as “DISTURBING” and call me an anti-farmer, anti-national, favorer of opposition, a snag for the welfare of this deprived and poor community. But my dear friends, you have all the rights to adorn me with the aforementioned appellations, but I request you to first go through the followings at least and ... Read More

What do you know about the train with no engine India just launched?

Arjun Thakur
Updated on 27-Apr-2022 11:55:32

84 Views

Indian railway has recently launched a high-speed train, which has no engine. It’s named Train 18 or T18. Its first journey was from Delhi to Bhopal. T8 is the first high-speed Indian train, which ran with a speed of 160 km/h.The manufacturing of this train has been done in Chennai’s Integral Coach Factory through the ‘Make In India’ program. The cost of T18 is 100 crores.

Getting an error invalid Object Name in SAP Business One

John SAP
Updated on 30-Jul-2019 22:30:20

361 Views

It would be easy to guess if you have shared the full query. It seems you have not defined #temp_table. You might need to define temp table as global but it could sum up to other issues.

Can I export CSV by using REST API in SAP Business Objects?

Anil SAP Gupta
Updated on 13-Dec-2019 06:17:44

426 Views

Yes, it is feasible and I have done something similar in one of my previous projects. But you need to be little clear on what you need to export. There are two options regarding the content of export:Raw Data ( it is basically the query)Formatted Data ( it is your report)I will provide you help for both. In case, if you are looking for just exporting the raw data then you can the following call and you should be able to fetch the raw data.http://:6405/biprws/raylight/v1/documents//dataproviders//flows/Also as will require the response in CSV, set the ACCEPT to ‘text/plain’ so that the ... Read More

How to avoid memory leakage in SAP B1 DI API

SAP ABAP Expert
Updated on 12-Dec-2019 10:18:50

324 Views

The thumb rule goes like this, if you instantiate a DI API object, you have to release it. if you don't release it explicitly, it will result in memory leaks.You can use a ReleaseComObject method to release the object memory. In case if you try to release a null object, it will throw an exception.So, it will be better to have a null check before you try to release the object.Sample snippet:if (obj != null) System.Runtime.InteropServices.Marshal.ReleaseComObject(obj);

Controlling close events in SAP Business One Screen Painter

Amit Sharma
Updated on 30-Jul-2019 22:30:20

182 Views

You can make use of SP_TransactionNotification, which is one of the most common way of receiving notification of data-driven events. With the use of SP_TransactionNotification, you can edit error code returned by Transaction notification, and also prevent transaction to committed.This shows how to prevent a purchase order from adding when the base document is not provided. You can make use of SBO_SP_TransactionNotification for Screen Painter forms in SBO to avoid null values.

Using method getBPLIST() to get list of all orders in SAP Business One

Govinda Sai
Updated on 14-Feb-2020 10:01:47

399 Views

I would suggest using recordset with DI API −SAPbobsCOM.Recordset rs = ((SAPbobsCOM.Company)oCompany.GetDICompany()).GetBusinessObject(BoObjectTypes.BoRecordset); rs.DoQuery("SELECT DocEntry, DocNum, DocDate, TaxDate, CardCode, CardName, DocTotal    FROM OPOR ORDER BY DocDate ASC"); while (!rs.EoF) {    int DocEntry = rs.Fields.Item("DocEntry").Value;    //OR    DocEntry = rs.Fields.Item(0).Value;    rs.MoveNext(); }

Invalid Connection String in SAP Business One

Lakshmi Srinivas
Updated on 30-Jul-2019 22:30:20

372 Views

The answer lies within the exception message itself. The connection string that you are using to connect to the Business object server is wrongly configured. Check for each parameter, you will find something must be wrong and hence why you are receiving this error message.

Recovery database SBO-COMMON in SAP Business One

Sai Subramanyam
Updated on 30-Jul-2019 22:30:20

743 Views

In SAP Business One, SBO-Common is only used in functionality handling or following your company database. Normal day to day business functions happens entirely in the company database. You can create a new set of sample database SBO-COMMON by reinstalling SAP B1 server. SBO-Common database holds this information − DB List (DB's which having SAP DB Structures) DB Details like Version, Upgrade Details License Details For more details about SBO-COMMON database, you can refer below link − https://archive.sap.com/discussions/thread/1447063

Advertisements