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

Help with IF Fomula

$
0
0

I have this fomula set for this condition. But it's not giving me right result. When Prior Amount is 0 I want it to show Prior Amount = 0 and not Blank or Zero.

 

=IF Sum([Prior Amount]) = 0 Then "Prior Amount = 0" Else Sum([Difference])/Sum([Prior Amount]).

 

All help appreciated in getting this to show "Prior Amount = 0" will be helpful.

 

Pls note I used the Sum to avoid multi value and it works but I need the Prior amount message to work. Thanks for all your help - much appreciated.


Re: SAPAPPL0,SAPSSEXC,SAPAPPL2 import package is interrupted with R3load

$
0
0

OKay, If I delete sapdir folder and start installation again, what about the mess installer created in the database, what about existing data in the database. The existing data, That first installation run created

Re: OOM issue

$
0
0

The note suggested by Hemanth is the one to start with.

You mentioned that the system is facing OOM dumps frequently. A quick question. Is the server sized and configured with enough memory for the BI system?

Is this a dual stack or a stand-alone Java stack?

How many server nodes does the Java system have?

What is the heap size assigned for the node(s)?

There is no point in increasing heap parameters when there is lack of physical memory.

The issue is pretty clear in the log you have supplied. The JVM is trying to allocate 600MB and it fails. To fix this issue you need to check if the JVM is updated and the parameter are set correctly.

Additionally based on the log the OOM happens during export operations. You should consider setting the safety belt in the BI system.

Check these notes/KBA.

2069568 - BI Java OOM dumps caused by export operations

1622134 - Safety belt: Results quantity is too large (Excel/PDF)

 

RB

Re: NSA for particular pay scale groups in Payroll

$
0
0

Hi,

You can change the 8th line (below OUTWPTRFGR) as given below:

 

1) Remove ****

2 )Create a Branch (sub tree) instead of line.

3)  **

      ADDWT *   

 

Please post the part of Output table.

 

regards,

Bala.

Re: SQL server doesn't exist or access denied || SAP NW 7.4 installation || Distributed environment

$
0
0

Assuming that you are doing a local installation and if yes your issue is most likely due to that. For distributed installations you need to do a domain installation. It appears to me that the systems are able to reach but fails to continue possibly due to access related issues. I would try to create or set the Administrator user with the same password like on the SAP node and see if that helps.

Re: NSA for particular pay scale groups in Payroll

$
0
0

shift_allow_sample.JPG

Hi,

refer the line below "OUTWPPERSB EE subgroup in v.key". In your case it should be "OUTWPTRFGR".

 

regards,

bala.

Re: Issue with passing variable to INSERT statement in the HANA xsjs file

$
0
0

Well, of course you need to adapt it to your code reality. Either way, this is what it would look like:

 

[...]
var pstmt = conn.prepareStatement("INSERT INTO \"SYSTEM\".\"LOOPS\" VALUES (?)");
for (i = 1; i < 100; i++)
{
pstmt.setInteger(1,i);
pstmt.execute();
}
[...]

Using the hdb namespace you could have the following:

 

[...]
var strQuery = "INSERT INTO \"SYSTEM\".\"LOOPS\" VALUES (?)";
var conn = $.hdb.getConnection();
var i = 1;
for (i = 1; i < 100; i++) {
conn.executeUpdate(strQuery,i);
}
conn.commit();
[...]

Get familiar with the XS JS API here:  JSDoc: Index

 

One last thing: "LOOP" is a SQL reserved word in HANA. Not sure how (or if) you managed to use it as a table. Anyhow: don't use it.

 

BRs,

Lucas de Oliveira

Re: COPI - printing of shopfloor papers using custom selection criteria?

$
0
0

Hello Mark,

 

I know this is a far fetched request considering it's quite a old thread.

I have similar (and bit complex scenarios) and would request any pointers which you can provide in this regard. Thanks in anticipation!

 

~Ashish


Re: Not able to get O/P from monTables

$
0
0

Do you get the same error if you run the query through the isql client?

Re: How can I entry multiple value into Function Module (RFC) with PHP?

$
0
0

Hi,

 

I'm not sure what your question is. Are you asking if that works? You would know that better than us.

 

But yes, that is (basically) how multiple entries in a table parameter should look, when passed to an RFC.

 

cheers

Paul

Re: SAP ERP to EWM Transactional data issue- Inbound Del.document showing in inbound queue in ERP

$
0
0

Hi Yogi

 

 

Process is create IBD in ecc >> system picks wh no and find , is it decentralised ? via customisation flag for WM, then it gose to distribution model and find program to send to ewm logical system.

 

if queue is in SMQ2 ecc then it issue of save replica program is not picked for wh via distribution model.

 

check bd64 for dist and distribution model you have created for WH and does it has programs,

 

Regards

Suraj

Re: Libros Legales Peru (SUNAT)

$
0
0

Hi,

 

Facing same issue. Any news on how to get those fiscal reports from SAP to integrate in SUNAT ?

 

Best Regards.

Re: Failed to open the connection: Details [Database Vendor Error Code 17] Failed to open connection

$
0
0

13.0.2 is always the assembly version that shows in the GAC.  13.0.9 is the file version - if you navigate to the folder where the SDK is installed and look at the properties of the assembly .dll files, you should see 13.0.9 there.

 

-Dell

Re: Passing a parameter value from BPC to BW DTP filter

$
0
0

Hi Sreekanth,

 

We've had this requirement several times, and have tried many different methods over the years.

 

What we've found worked best is:

 

* store the date selection as a dimension property. E.g. we usually have a dimension called "version" and we create a property called "current_period" or something similar. This has the advantage that only administrators can change the value. Also each version (or dimension member) can have a different date selection.

 

* for the actual extraction:

  - use APD with Bex query variable to read the dimension property to filter results. If data volumes are large, APD may not work due to olap/memory limits.

  - use a BW generic datasource (function module extractor) which calls BPC classes to extract data from BPC cube. This has the advantages of not having to refer to the technical name of the BPC InfoProvider (which can change after full optimisation), as well as the ability to split the extraction into several packages to work within memory limits for large data volumes.

 

Note: from experience there are risks with building transformations directly on BPC InfoProviders. We've found that changes to the BPC application that causes cube/multiprovider to be re-generated (e.g. adding a new property to a dimension used in the application) will cause BW transformations to be deactivated.

 

Regards,

Carlton.

Re: exceed value in Service Entry sheet against invoice

$
0
0

Hi

Thanks for your reply ,but what I mean  how sys  accepted to in second entry sheet  the full value  although we already posted the 50% of po value

 

 


Re: Trigger SAP PO process from PO

$
0
0

Hi Arvind,

yes we do. the default request message from SOAP(axis) sender could not be recognized by our web service unfortunately. I wonder there is a place, like adapter module, to configure the request message type.

Re: Trigger SAP PO process from PO

$
0
0

Hi Raghuraman,

can you add this part to your blog? thank you very much. ;-)

Re: BPC10 single sign-on and launching input forms

$
0
0

Hi Prashant,

 

Thanks for your feedback.

 

By SSO for BPC, did you mean using a separate product/licence?

 

Thanks,
Carlton.

Re: Seasonal PM for Equipment

$
0
0

Thank you Jogeswara Rao, Tim Cheah, Sunil and Khayyam! Appreciate the quick response!

 

The logic definitely makes sense when using different Factory Calendars. The challenge is to get the Governance approval to create additional Factory Calendars.

 

Thank you again!

 

Regards,

Sajeev

Re: Use of GET_CALENDAR --> BRF Application Exit in a WF

$
0
0

Hello

 

If you are looking for a BRF+ approach then refer to blog below

 

Solving impossible date &amp;amp; time calculations... | SCN

 

OR

 

 

If you are interested to use a FM in background workflow task then use following FM to get holiday info.

 

HOLIDAY_CHECK_AND_GET_INFO - Check whether or not a date is a holiday. Give the function

a date, and a holiday calendar, and you can determine if the date is a holiday using parameter HOLIDAY_FOUND.

 

Regards

Sandy

Viewing all 8798 articles
Browse latest View live




Latest Images