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

Re: SAP upgrade path


Display the decimal places of a Quantity key figure in BEx Analyzer correctly

$
0
0

Hi experts,

 

I´m using a key figure with the data type (Quantity).

 

What are the setting to display the key figure in the second line correctly in the BEx Analyzer? In the BW InfoProvider (e.g. DSO) it´s correctly displayed.

BEx_DSO.png

Thanks and regards,

Michael

Re: LOAD_VERSION_LOST dump occurs while SGEN?

$
0
0

SGEN is required when you do an SP update, EHP update, system upgrade, R3load based system copies and when there is a change in the SAP kernel release (Eg: 7.00 to 7.20).

Re: Error in component quantity while exploding a multi level bom cs12

$
0
0

Hi Varam,,

 

I sent to you the first note (OSS Note 556149) in my first response. Does not has any sence if I review the note.

Did you check if that old note is relevant for your system? What is your SAP version?

 

The second note (OSS Note 533303) is only relevant for AFS. Is this your case?

 

You can try to find a relevant note in the SAP Support Portal.

https://websmp209.sap-ag.de/notes

 

Kind Regards,

Mariano

Re: setting up the logical system - "you have no authorization for this action"

$
0
0

Hi Radim,

 

Please close the thread and post the solution, if any other than the one replied by SCN members. It will help to get a solution for others.

 

Regards,

Sachin Dhingra

XS Admin Tool - Complete Lockdown

$
0
0

Hello

 

I manage to complete lockdown my access to all Hana Web Services, and SAP Hana XS Admin Tool. Now I can't access the tool to change settings, and all services are unavailable.

 

I was configuring the SSO with a Gateway (the gateway issuing the logon tickets), and in XS Admin tool I changed the settings of all Web Services to Logon Tickets (and disabled the User/Password option). The configuration of SSO was not finished. This change was obviously thoughtless...

 

So now I can't access the Admin tool with SSO (because the configuration was not correct), but also neither with User/Pass, because i disabled it.

 

I cannot end the configuration because, as I understand it, I need to update the user store inside the XS Admin tool (something not done).

 

How can I change the configuration of the XS Tool to accept the User/Pass without entering the tool itself (maybe via SAP HANA Studio).

 

This is a catch 22, and Monday people are going to try the Web Services... and they are all down.....

 

 

Thanks for the help

(points will be awarded)

Re: Production finish date is later base date finish

$
0
0

Hi Leandro

 

One possibility is that another factory calendar is assigned to your work center, where saturday is a working day.

 

Another possibility is that the last operation of your order is not relevant to scheduling. In this case, the production dates may fall on a non-working day. See the note below for more details:

 

http://service.sap.com/sap/support/notes/1895951

 

regards

Caetano

Re: 403 Forbidden issue in SMP 3.0 (new error)

$
0
0

As per Jitendra’s suggestion, I have updated SMP 3.0 to SP6.


Server calls work fine if I use the Advanced Rest Client.


First I register:



The response contains the X-SMP-APPCID, and then I can make a GET call:

The response contains the X-CSRF-Token, and then I can make a GET call:


For the app itself, the rest client extension will not suffice. I made a simple HTML file for testing purposes. It is attached (I had to rename HTML to TXT, since it was blocked to upload attachment).


My current issues are:

- if I make the calls using OData.request and OData.read, I am not receiving the response headers. This was working with my previous SMP 3.0 SP3 - I was setting the request headers. I’m not able now to read the X-CSRF-Token.

- I tried to make a JQuery call, but I now I’m not able to register. I have a CORS issue, even if I set the very same request readers.


Thanks


Luciano


Re: Multiple cost centers for a single work center

Re: Problem with Crystal Report out of dBase 5.7 due to installation of a new printer

$
0
0

About the time stamp of my copy of CRYSTAL.VBX: many of the older files on my PC have date Dec.19 in 2004 (often at ~ 6:44, but some like this one ~ 2 hours earlier) - this must be due to my copying of files from the hard disk contained in the PC I used between 1999 and Nov.2004 to the one I purchased end of Nov.2004 and installed during Dec.2004 (which I had until early 2008 - before what I have now): the copied files got the date/time of copying as time stamp instead of that of the originals.

 

At that time (Dec.2004) most of my developments (in which I adapted my applications from dBase IV for MS DOS to dBase 5.7 / Windows) were finished, later I mainly completed the applications to make them usable without the development tools and environment of dBase5.7, plus realisation of a few extras.

 

In a file containing infos from Rainald Taesler produced apparently on Sept.11 of 2000 - which I keep on my PC - it says that the delivered CRYSTAL.VBX is Version 4.0.0.4 and that this was the latest he could find, usable in VdB 5.7 . He also mentions a file CRPE_All.zip which he qualifies as a "master piece by Bowen Moursund" + some apparently less important files. I could - if desired - add a copy of this info-file of Rainald Taesler (a text file of 3195 bytes) ... it is written basically in German

Re: MRP NEUPL

$
0
0

First of all. ¿Is it possible that a material can be deleted automatically from the MRP list due for any reason?

I'm not sure if these material have never been in the MRP list or, for any reason, have been deleted of it.

 

 

Thanks

 

Regards.

 

MRP1.jpg

MRP2.jpg

MRP3.jpg

Binding Issue - sap.m.Dialog to buttons aggregation

$
0
0

Hi All,

 

I’m writing to you with a problem that’s annoying me since I found it and I cannot come up with a solution. So I was wondering, if someone can actually see the where the problem is hidden.

I'm somehow not able to bind the model to a factory function. Here you can find a very simple example of my problem.


This one works, but isn't what I'm actually looking for, since the aggregation should depend on the model:


var oDialog = new sap.m.Dialog({

title: '{i18n>sap.im.ui.datasource.browse.title}',

content: [

new sap.m.Text({

text: 'content'

})

    ],

    buttons: [

new sap.m.Button({

text: 'test1'

}),

new sap.m.Button({

text: 'test2'

})

    ]

});

oDialog.open();


This one never calls the factory (there's no aggregation at all):


var oDialog = new sap.m.Dialog({

    title: '{i18n>sap.im.ui.datasource.browse.title}',

    content: [

new sap.m.Text({

text: 'content'

})

    ],

    buttons: {

path: '/myPath',

factory: function (){

return [

new sap.m.Button({

text: 'test1'

}),

new sap.m.Button({

text: 'test2'

})

]

}

    }

});

oDialog.open();


And this one doesn't work either:


var oDialog = new sap.m.Dialog({

title: '{i18n>sap.im.ui.datasource.browse.title}',

content: [

new sap.m.Text({

text: 'content'

})

    ]

});

oDialog.bindAggregation('buttons', '/myPath', function(){console.log('res')});

 

oDialog.open();



Does anyone of you have an idea what's going on here?

Re: Invoice block due to decimal places rounding

$
0
0

Hi Jurgen, thanks for this.  Yes, we have looked at using the 'per' column in the PO but for some of our users, this provides some confusion if they use different values in that column. So we were trying to find another solution out there that will make it simpler for our most basic users. 

Re: MRP NEUPL

$
0
0

Hi Oscar,

 

Depending on how you create the materials, the material could not be updated in the planning file entry.

It is convenient to set up a job to generate the planning file entry. Use tcode MDAB. The check in MD21 to ensure the material was added in the planning fike.

 

Kind regards

Mariano

Re: Invoice block due to decimal places rounding

$
0
0

Unbelievable that those guys create orders to purchase for some thousand dollars and are not able to understand the use of "per" field.

You wont find any more alternatives.


Re: SAP BPC 7.5 SP5 , EVDRE encountered an error retrieving data from Web server

$
0
0

Hi Venkat,

there are several notes about this error, so please see the SAP notes writing the error and selecting MS version.

Only one is difficult to find by searching, this because it's related with multiserver, if this is your case you will see that the error appears if you process one or more dimension and after you refresh a report. The error is caused by a desynchronization between application multiserver and DB server and normally this disappear the next day, if you dont want to waite the next day a workaround is to enter in the .dep files on both application server and save these without changes so you will force an alignement, see please 1372498 - Sync the member access security on multi appserver env

 

Regards

     Roberto

Re: DI API oCreditNote change BOM child warehouse V8.8

$
0
0

Do you simply use an oDraft or is there a document for oCreditNote drafts?

Checkbox Group Alignment

$
0
0

Hello All,

 

As you all know Checkbox Group was introduced with 1.4 release and it seems to be useful for multi-select option.

 

While I was trying to use it, I see there is an alignment issue for text (may be it is by design? I dont know). It aligns the text in middle, which I think is not the best way display on dashboard.

 

I cannot find a way to change it either.

 

Let me know if anyone sees this an issue and know how to align it to left.

 

CheckboxGroup.PNG

 

Also another thing I have noticed is that it does not have select-all / unselect-all option, which is necessary.

 

Thanks,

Rajan

Re: DI API oCreditNote change BOM child warehouse V8.8

$
0
0

Hi Graham,

 

All marketing documents use the same drafts object in the DI API but there is a property called DocObjectCode that you need to set to the appropriate value for the type of document you are using (eg 14 for AR credit).

 

Kind Regards,

 

Owen

Re: DI API oCreditNote change BOM child warehouse V8.8

Viewing all 8902 articles
Browse latest View live




Latest Images