Quantcast
Channel: SCN: Message List
Viewing all 8746 articles
Browse latest View live

Re: BPC Legal Consolidation Roll Up in Group

$
0
0

Hola Siswono,

 

I would like to use the same solution like you.

Could you share us the BADI or the especification or a  direction to begin.

I mean, This could be a reference to use in all Projects.

Unless SAP has already created a solution for it.

Many thanks.

 

Best regards

Laura Colin


Create users in MDM console

$
0
0

HI,

 

I want to create some hundreds of users in console.Hence i dont want to create it manually.

 

Is there any procedure to load the users into console list.

 

Thanks

Sree

Re: how to copy internal table with header line in an internal without header

$
0
0

Hi,

 

Try this way.

 

loop at t_mytable

wa_mytable2-d = t_mytable-a.

wa_mytable2-c = t_mytable-b.

 

append wa_mytable2 to t_mytable2.

endloop.

Re: Post EHP7 upgrade "issues" (or things I just don't understand)

$
0
0

There are still some legacy tcodes used as parameters.

 

SE38 makes very little sense as it calls AUTHORITY_CHECK_TCODE on itself in the submitted program. SA38 is still in the easy access menu navigation and titled "ABAP reporting" so is harder to replace with alternatives as you dont know how many are actually using it and the navigation path.

 

But it can be done and works fine if you can work out who might be authorized for it and compare it to who is actually using it - then you know who you need to provide a better alternative for than using SA38 with backspace to find the favourites from memory IDs.

 

Cheers,

Julius

Re: Report Engine API 4.0 (upgrade to 4.1)

$
0
0

Hi Alfons,

 

As per the current situations Report Engines SDKs are still the same in BI 4.1 likewise in BI 4.0 all patches. You can perform the below functionalities with BI 4.x Report Engines SDK :

- Export Webi Report to some other format.

- View a Webi Report.

- Partial drilling.

- Save prompts in Webi reports etc.(Most of the functionalities are deprecated like schedule with prompts etc.)

 

On the other hand with Webi Raylight REST SDKs you can leverage the workflow of legacy functional parity of BusinessObjects XI 3.1 Report Engines SDKs.

 

By seeing as a future, it looks like most of the new development & enhancement are happens in the Webi REST world. So planning to rewrite the code in terms of REST SDKs is beneficial.

 

As you are talking about the compatability, Report Engines Java SDKs are same upto BI 4.1 Patch 4 release. But it might be possible that in future Report Engines Java SDKs are totally deprecated. You can also refer the Object Model Digram of Report Engines SDKs which gives you list of deprecated interfaces, classes & methods.

 

Hope it helps.

 

Thanks,

Shailendra

Re: Numeros de folio

$
0
0

Hola Sarah,

 

Actualmente los usuarios le dan click en la cerrar 'X' ya que solo se tiene el boton aceptar, durante ya 3 meses le dan a cerrar pero aun asi no desaparece lo que pide el folio, fui al campo que me mencionaste, y esta con las caracteristicas que me mencionaste, trate de quitarle que no sea un campo obligatorio, volvi a probar pero aun sigue pidiendo.  =(

 

Si tuvieras alguna otra solucion te lo agradeceria mucho.

 

Saludos

 

Cesar

Re: CALL_FUNCTION_REMOTE_ERROR

$
0
0

Hi Trond,

 

Have you solved this issue? I am encountering the same problem now. Hope you don't mind sharing the solution. It will help us a lot. Thank you!

 

Regards,

Charm

Re: Expert routine.

$
0
0

Hello,

 

Could you be a little more precise on what you're trying to do. What do you want to store in your target? Your transactional data and additional lines (the missing ones). If so, you can use a standard transformation and add entries in your source package in the start routine. If you don't feel at ease with ABAP it should be easier than using an expert routine.

 

Regards

Christophe


Re: to do coding in 00 abap

$
0
0

Hi,

 

Transaction SE24 is your friend. Create a class, and then its attributes and methods.

 

Debugging is the same as with any other ABAP code - just set a breakpoint in the relevant method.

 

cheers

Paul

Consolidacion de informes financieros entre compañias

$
0
0

Buenos dias:

 

Compañeros, alguien me puede indicar como puedo generar reportes consolidados financieros entre varias compañias, ejemplo balance, estado de perdias y ganacias o el balance provisional.

 

A espera de sus valiosos comentarios

Re: Data Dictionary tables not reflecting in Information Design Tool

$
0
0

Hello Mohammed,

 

direct access to the tables is not possible with the Universe at this point. If you really require the data from the tables then I would suggest you take a classic InfoSet and put the InfoSet on top of the tables.

 

regards

Ingo Hilgefort, SAP

Re: Issue In Sales Invoice DTW with down payment

$
0
0

Hi Gordon,

 

could you please check attached files

 

Thanks

Swapnil Vichare

Re: BO4.1 universe with hierarhies on BEx query

$
0
0

Hello Amarnath ,


when connecting Web Intelligence to SAP BW there is no need at all to create a Universe. When it comes to the data connectivity from Web Intelligence to SAP BW you can point Web Intelligence directly to a BEx query and use the elements from the BEx query in Web Intelligence.

 

Also keep in mind that Web Intelligence will always struggle when it comes to using hierarchies and you might want to take a look at SAP BUsinessObjects Analysis, edition for Microsoft office or Analysis, edition for OLAP

 

regards

Ingo Hilgefort

Re: Problem with Solution restriction in SOLMAN 7.1 MOPZ

$
0
0

Hello Jose

 

I hope you are fine.

 

Did you find any solution? I am facing same problem.

 

I will apprecite your Help.

 

Gracias

 

Jorge

Does the .NET SOAP engine have any known bugs?

$
0
0

We are using PB12.0.  Up until now we have been using the EasySOAP engine to consume a 3rd party's web service.  The 3rd party came out with a newer version of their webservice.  They recommended we try to switch to this new version which utilizes SOAP 1.2 (I believe). 

 

Problem #1: We cannot build a new web service proxy client with the EasySOAP engine.

Their old web service exposed the WSDL through a .asmx file.  The new web service exposes the WSDL though a .svc file.  From my understanding, (I'm not a web developer) .asmx was an older web service framework, and .svc uses newer .net framework and/or WCF.  Anytime I try to obtain the services from the URL to the .svc file, I get an 'Unknown Exception' error, or else PB crashes.

 

That's ok to me, I wanted to move up to the .NET SOAP engine anyway.  After learning how to adjust our structures to objects, and how to import the proper SOAP connection and exception objects from the correct .pbx files (Thanks Bruce A. and Paul H.!), and how to work with and null back out some complex nested object arrays, I thought I was in business.  But then came problem #2.

 

Problem #2: The .NET SOAP engine seems to have a problem passing some array data.

Various invoices we were passing to the web service were failing.  One piece of data (the SKU) is considered conditional...it's only required if another piece of data (a Product Group and Item) is null.  A web service exception was saying that we weren't passing the Product Group and Item, and as such, the SKU was required and the entire data set was invalid because neither was provided. To make matters worse, I found that this error was only happening when there were multiple line items in the invoice.  In terms of the proxy objects, the invoice object contains an array of line-item objects.  The problem is only occurring if the line-item array has more than one element.  The PB debugger clearly showed that the Product Group and Item WAS getting populated (whether 1 or more line-items) and existed right up to the call to the web service method.  The 3rd party's support team said the problem was not on their web service and suggested I install Fiddler and catch the http request being sent to the web service.  Great idea on his part, because Fiddler DID show that the Product Group and Item were nil any time there were multiple line-items on the invoice.

 

Since the PB debugger shows the array data having values, but Fiddler shows that the same data is nil in the SOAP envelope of the http request, I've jumped to the conclusion that the .NET SOAP engine has some sort of bug.  Has anyone else seen this problem?  Or have any suggestions?

 

Thanks,

Glenn


Moving BW from DB2 to HANA. Impact on BCS?

$
0
0

Hi all,

 

The client here is planning on moving the BW system from DB2 to HANA and whats to know what in BCS cannot be copied over to the new HANA environment.

 

The approach will be to take a copy of the current production (possibly development though) on DB2, and make it the development box of the new HANA environment.

 

Does anyone know what potential issues we may face in this? Will anything in BCS need to be reconfigured, like hierarchies, monitors, etc. All of the transactional and consolidation data in cubes, along with the objects will be copied over with no issues (per our BW team), its the BCS specific stuff they don't know about.

 

Any insight or experience with this is appreciated!

 

Thanks!

Re: Getting data from pcl4 in optimize way and optimization of code

$
0
0

Dear Amir,

 

If there are no LDBs or standard FMs to get this information which in fact do all the authorization checks which are requried, I would suggest you read the rest of this post.

 

First check if you can use the full composite key defined in the table to minimize the load on database.

 

Secondly, since this is a huge data table I would suggest you go for FETCH and OPEN CURSOR technique along with PACKAGE SIZE.

 

That should improve the performance by reducing the database load.

 

Thanks.

Re: to do coding in 00 abap

$
0
0

hi,

 

  Can anybody please suggest for the above query on how to do coding for private methods, best design practices in OO Abap.

 

Regards,

Vijay

Re: Salse order change alerts

$
0
0

Thank you everyone for the quick reply. I will test it out and post back my results.

Re: Incorrect column data loaded after initial load

$
0
0

Hi Steffi,

 

I'm running this from within SQL Server. I ran it against the mxmc_db database. Right place?

 

Cheers, Paul

Viewing all 8746 articles
Browse latest View live




Latest Images