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

Re: Automatic Release of Network Header when Activities are released

0
0

Hi Ramon,

 

Cannot comment on OSS notes, but it should be possible to fix with a User Status for the Network header.

 

Regards,

Paulo


IBPF - Planning Tab Disabled

0
0

Hi Experts,

 

I am working on IBPF solution for our latest system S/4 HANA -1511 E.

 

I am able to retrieve correct data from back end S/4 system  through Analysis for Excel by using Query.

But when i change planning data & try to save / recalculate/ Lock it in AO for Excel - Planning Tab is disabled.

i checked all the possibilities on Excel settings for Add -on Services - all are as per Config document but even i am not enabling Planning tab in AO for Excel as below screen

 

Can any one having the idea what was missing & how to enable this tab for planned data?

 

Capture.JPG

 

Thanks,

 

Br,

Chandar

Código Centro de Costos

0
0

Buenos días, se pueden ingresar dos codigos de centro de costos igual pero para distinta dimensión. Tengo configurado 2 dimensiones: unidad contable y centro de costos. Pero hay codigos que se repiten en ambas dimensiones, entonces no me deja ingresarlos.

Gracias.

Re: SAP PI 7.31 SP 17 - ODATA Adapter Unavailable

0
0

Thanks Praveen !! We will try it out and let you know. It seems that this will resolve the issue. Our SAP Basis team is the one which deals with installation.

How I can reduce package size of DTP

0
0

Hello!

 

At the moment I have a larger problem with DTP package size. I have some large PSA requests. One request has a size of arround 250 mio records. I know that is very large and it is recommend to redice the size before extraction in SBIW. But in this case I can't change this. But I think this is not the core problem. The single Datapackages have a natural size of 80k until 100k number of entries. After the PSA the data target (classical infocube) should be filled with DTP. The ETL process goes over a larger transformation process with 3 Info Souces and coresonding transformations. These different steps are my core problem because I have a temporary multiplication of data records per package.

 

This means one packae with 80k until 100k number of records will be enlarged until around 700k number of record because of transformation logic and after all transformation logic the package size will bereduces to 20k number of records per package and will be write into info cube.

 

The problem is now that I get a error message in ST22 and red request: TSV_TNEW_PAGE_ALLOC_FAILED

 

I can start the request again with manual process but it don't run without problems. Fact is that I can't create another ETL process. This enlargement is set because the data which are transfered from source system were reduces in the source and on BW side we need the enlargement because of monthly values for customer reporting. In source system we reduce the values from month to calenderyear so that we don't have so much data for transfering into BW.

 

If I set the DTP package size it has no effect because of the source package size in the PSA (so if i set 10k or 50k package size in the DTP it will be ignored). Now i'm looking for a possible solution to reduce the package size with coding or other possibilities to reduce the memory allaction.

 

Have anybody an idea for this case? I work with 7.4 on a HANA database.

 

BR

Jens

Is there a standar way to restrict input fields in VF11?

0
0

We want to restrict the user to add customers for only their sales organization to a condition type. For example if condition type is ZCDN and the user is dealing with Mexico we don't want the user by mistaking add this condition type to USA customer number.

 

Can this be done in standard configuration or it has to be done thru userexit?

 

With regular authorization checks it can only restrict top values (condition type/Sales organization) but not the input data (customer/material).

 

Regards,

JCS

How to use a CustomDataset for a PieChart inside a VizFrame?

0
0

Does anyone know how to use a CustomDataset for a PieChart inside a VizFrame?

I have some weird findings after some research, for details see below...

 

I know how to create a PieChart using a sap.viz.ui5.controls.VizFrame in combination with a sap.viz.ui.data.FlattenedDataset. The Explored app has a simple example using a sap.viz.ui.data.FlattenedDataset and I can reproduce it. However, I have an OData backend that gives me the data in a specific format which does not allow me to use the FlattenedDataset. Currently we have a workaround that executes an OData read and takes the response data in order to create a specific view model that is referenced in our XMLView using data binding expressions in the XMLView. That works perfectly, but I feel there must be a better way to do this...

 

Now I found the dataset aggregation of the VizFrame has the abstract typesap.viz.ui5.data.Dataset, and this abstract type has two implementations:

  1. sap.viz.ui.data.FlattenedDataset
  2. sap.viz.ui5.data.CustomDataset

 

The sap.viz.ui5.data.CustomDataset sounds exactly like what I want. So I started searching on the web. Guess what: there is not even a single example using the CustomDataset! Not even in the SDK, testsuite, and nowhere else. But maybe I'm just too stupid too google. I agree with Michael Klopf (see here)! The documentation of anything related to the VizFrame (including the CustomDataset and the FlattenedDataset) has always been horrible.


So the big question is: how do I use the CustomDataset to draw a PieChart using the VizFrame?

 

In the CustomDataset api for getData there is one interesting hint: "Data containing dimensions and measures. The format and structure of this data is depends on the chart."

 

That hint is very interesting, but is does not help at all as it does not tell me how or where to find the relevant information. I have checked the VizDocs aka CVON Visualization docs , but there is absolutely no relevant information to find.

 

Of course, I have tried out a few more things. I have also debugged the VizFrame itself to find out how to use the CustomDataset. Unfortunately, there is no hint in the code related to the CustomDatset. So I had to go with "trial and error":

 

 

<viz:VizFrame     id="myVizFrame"     uiConfig="{applicationSet:'fiori'}"     vizType="pie"     height="100%"     width="100%">         <viz:dataset>          <viz.data:CustomDataset               data="{                    path : '/MyEntity(...)',                    formatter : '.formatData'               }" />     </viz:dataset>                                            <viz:feeds>          <viz.feeds:FeedItem               uid="size"               type="Measure"               values="Revenue" />          <viz.feeds:FeedItem               uid="color"               type="Dimension"               values="Categories" />      </viz:feeds></viz:VizFrame>

 

The formatter in the controller should actually return the data in the correct format so that it can be visualized by the VizFrame as a PieChart (well, I don't know the right format, see above...). Interestingly, this code helped me to find something that looks like a bug in the VizFrame implementation:

 

VizFrame-in-debugger.png

 

As you can see in the screenshot, the dataset is a sap.viz.ui5.data.CustomDataset. However, in the VizFrame code there is an explicit call to the function ds.getVIZFlatDataSet(). This (by the way undocumented/private API) only works for sap.viz.ui5.data.FlattenedDataset, but not for sap.viz.ui5.data.CustomDataset! That's why I always get an error here... On the other side, according to the VizFrame API the dataset aggregation must be anything extending sap.viz.ui5.data.Dataset, so it must also work with an sap.viz.ui5.data.CustomDataset - but it does not as you can see in the screenshot above!

 

Any idea? Doesn't this look like a bug? And how can I use the CustomDataset?

 

 

Thanks, Nabi

Re: How to create Dynamic Calculation Views?

0
0

Not sure if the scenario you are sharing is focussed on more number of rules, instead of creating calculation views dynamically, may be you can use HRF? did you check?

 

Getting started with HANA Rules Framework

 

Regards,

Krishna Tangudu


Re: Access Design with Fiori-only (avoiding Enterprise Portal)

0
0

Shaji,

Is this achievable?  or do I have to introduce an Enterprise Portal?

Yes, it is achievable. EP is not required. We (my employer) did it earlier and doing with many customers right now.

 

Regards

Krishna

Re: Withholding Tax

0
0

HI Madhu,

 

Before Migration, can we Assign WH Tax Types to CWT company codes or not?

 

In WTMG I Have 3 options to go head

 

1. Choose Company code

2. Type/code Assignment

3. Master data settings

 

where is the option  - to convert 1000 vendor open invoices

where is the option -  to convert vendor cleared items


 

After entering all this details - whether i have to save the WTMG or Execute

 

Kindly suggest

 

Anil

Re: Is there some documentation for using the bullet charts in design studio 1.6?

0
0

Hi - you need to have enough measures to make the bullet chart.  See below - my guess is you do not have enough measures to fulfill requirements of the bullet chart

sit.png

Re: Hora en Sap

0
0

Hola Ingeniero,

 

¿El campo DocTime no te es de utilidad?

Re: Setting BI launch pad preferences for a user group - 4.2 SP02

0
0

Hi Emmanuel, have you made any progress with this? I am experiencing the same behaviour.

 

Thanks

EA-APPL missing?

0
0

Hello,

 

I just installed a new ERP 6.0 EHP8 from installation export.

But when I tried to patch it I can't: I'm getting an error message from MOpZ that EA-APPL 600 is missing, and he will not calculate a queue.

And the Solution Manager is totaly right: there is no EA-APPL in the installation.

Is it obsolete with EHP8?! Is the installation export from SAP portal broken?

Re: Do we have alternate function for "POPUP_GET_VALUES" ?

0
0

POPUP_GET_VALUES does allow multiple values. Just supply multiple entries in FIELDS table.


Re: Date of BP Update

Re: Reverse dunning charges

0
0

Amlan/Hasna:

 

I don't see event 396 as useful here - that is only called when dunning is reversed, which I don't think is the case based on the description.  A new dunning level is achieved and the activity from a previous level is to be cancelled. In that case 396 is not used.

 

regards,

bill.

Errors with CDS Views after Migration to S/4HANA 1511

0
0

Hi during a Migration of an ERP System to S/4HANA 1511 FPS1, we are experiencing issues during this phase

 

When all these views are being created, some of them a very long time running in the HANA Database, maybe around 8 hours to complete or even more.

 

Monitoring the threads in HANA DB Studio, you can see the process is active but It seems to never complete, and under the alerts it shows that its running too long and ask for terminate the session.

After terminate a few session, this phase completed although some CDS views are missing.

 

Later, after downtime and during post-processing (step RUN_RSDB02CK_END_DMO), show an error message stating these views could not be created

 

 

 

2EETG002 View "ACMAUT08BE773A05" does not exist in the database
2EETG002 View "ACMAUT5AF500F8D3" does not exist in the database
2EETG002 View "ACMAUT5CF0ACED61" does not exist in the database
2EETG002 View "ACMAUTBFDD9B23EE" does not exist in the database
2EETG002 View "ACMAUTCDAC2DAB2F" does not exist in the database
2EETG002 View "CPOREFTOPCON" does not exist in the database
2EETG002 View "PASCPOITMPCONITM" does not exist in the database

 

  1. Tried to manually create them in DB02 à Missing Objects

 

It was able to manually create four views, but those detailed below  could not be created due some missing Basis Objects

 

 

 

ACMAUT5AF500F8D3

Request: Create View ACMAUT5AF500F8D3 (MSIMOIS/04.05.16/14:02)

Process: STKAZS4HANA_7_108480

Basis object FAAVD_AMWL does not exist or is not active

Error generating the program for ACMAUT5AF500F8D3

   Code for creating view ACMAUT5AF500F8D3 could not be generated

Compare module DD_DECIDE ended with error(s)

Request for ACMAUT5AF500F8D3 could not be executed

 

 

ACMAUT5CF0ACED61
  Request: Create View ACMAUT5CF0ACED61 (MSIMOIS/04.05.16/14:03)

Process: STKAZS4HANA_5_157796

Basis object I_COMMODITYPRICEEXP does not exist or is not active

Error generating the program for ACMAUT5CF0ACED61

Code for creating view ACMAUT5CF0ACED61 could not be generated

Compare module DD_DECIDE ended with error(s)

Request for ACMAUT5CF0ACED61 could not be executed

 

ACMAUTCDAC2DAB2F

Request: Create View ACMAUTCDAC2DAB2F (MSIMOIS/04.05.16/14:04)

Process: STKAZS4HANA_2_216760

Basis object I_COMMODITYPRICEEXPRP110 does not exist or is not active

   Error generating the program for ACMAUTCDAC2DAB2F

Code for creating view ACMAUTCDAC2DAB2F could not be generated

Compare module DD_DECIDE ended with error(s)

Request for ACMAUTCDAC2DAB2F could not be executed

 

 

Anyone experienced the same issue during a Migration to S/4HANA 1511 FPS1?

 

What action should I take to create these views, and also how can I determine why CDS views took so long to complete during downtime phase.

Re: Unncaught TypeError: Cannot read property 'initialize' of undefined

0
0

Thank you All by response, the problem was, controlId "App", it was not  set at rootview.

ERROR: File usr/sap/TRX/ZZZ.csv does not exist / cannot be read.

0
0

Hello Experts

 

I'm having an error in the High Volumen Segmentatioin for File Upload functionality.

 

I've configured my data source

 

I also have my .csv file uploaded

 

I´ve run the program

CRM_MKTTG_FDS_LOAD_FILE_UI

 

and the job finishes correctly

 

however when I look at the trace file on the SES_ADMIN

 

I always gethe the message that tie file does not exist / cannot be read. I´ve tried having less than 25 characters as was mentioned on thread  TREX File upload not working in High volume segmentation but I still get the same messaje. Also I´ve looked in the crmd_mktds to see if by chance the attriute list was created, but it was not.

 

Anyone know what could be wrong or if Im missing anything else so that the file can be found / read?

Viewing all 8746 articles
Browse latest View live




Latest Images