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

Re: Average Calculation in BEX

$
0
0

Hi,

 

try with the suman replay

other wise try the below option.

create the new formula -> define the existing formula definition -> hit the aggregation tab -> exception aggregation -> average -> browse the reference char as per your requirement.

 

Thanks,

Phani.


Re: FIFA World CUP 2014

Re: APO Data View Roles

$
0
0

Dear Kris,

 

 

 

You can use RSECADMIN transaction to control authorization at CVC level.

For Planning book and data view level control you can use following authorization objects"

 

C_APO_IOBJ "KEY FIGURE CONTROL

C_APO_PB   "PLANNING BOOK AND DATA VIEW

 

 

 

Regards,

Mukesh Pandey

Re: Link Between FI and PS

$
0
0

Hi

Can you please give more details on the code you are writing.

At which table selection it is failing? PROJ or PRPS or BSEG?

 

 

Thanks

Sri

Re: Inventory valuation simulation report

$
0
0

Hi,

 

None of reply is helpful or not getting any information?

 

Please don't close simply by assumed answer.

 

Thanks & Regards,

Nagarajan

Re: Scrap in orders

$
0
0

Hello,

I do not think you will get this captured in any material document so it would not be available in any standard transaction including MF12 also.

Check table AFRU for field GRUND if this is captured?

 

Br

KK

Re: Creating transfer order in background

$
0
0

Did you maintain palletization data in material master, WM View 2?

Re: Item not reflecting Item Cost for Inventory Opening balance posted with price source as Item Cost.

$
0
0

Yes, I have gone through the note. It is stating the reason for updating last purchase price which I have understood.

 

still I am not getting why with Last purchase price Item cost is not getting updated.

 

Thanks

Sonil


Re: Getting extra copies of list item in a drop-down box.

$
0
0

HI Amala

 

Will this work?

 

onAfterRendering : function() {

   var items = myDropDownBox.getItems();

   if (items and items.length > 0) {

         var first = items[0];

         if (first.getKey() !== 'None') {

             myDropDownBox.insertItem(

                 new sap.ui.core.ListItem({text: "-Select-", key: "None"}),0);

         }

         myDropDownBox.setSelectedKey("None");

   }

 

-D

Re: Basic Start & Finshed Dates changed due to Factory Calenday - How can you Bypass the Factory Calendar

$
0
0

Greetings Darrin,

 

If you are using Intervals and Shifts, can you please check whether in your Capacity master data the Workdays key is set to the default "Working days according to the factory calendar"? See the screenshot here:

 

Capture.PNG

You may set if for the particular maintenance Work Centres (not the PP ones) to be all work days.

 

Further, the business function LOG_EAM_CI_1 can be activated in t-code SFW5 - but I am uncertain whether you need to activate that - check the documentation at sap.com Enterprise Asset Management Part 1 - Plant Maintenance - SAP Library

 

Lastly, about the user exits - check if they are active, as you might have some enhancement to influcence the selection of factory calendar and the scheduling -  for example,my Client determines the factory calendar from a z-table.

 

Go to SMOD and drill down into the Component, Function Module and Include for the user exits mentioned, if they're not active, then I'm barking up the wrong tree there

Re: BPC Input Schedule Limitations

$
0
0

Hi Xin,

we use some VBA in our input forms.

 

  • as first you need to do 2 things:

open developer(alt+F11)/ Tools references/ enable it

fmpxlm.jpg

in module declare epm functionalities:

Public EPM_function As New FPMXLClient.EPMAddInAutomation

 

  • you need to know these events, so you can run your code when it is needed:

before_contextchange

after_contextchange

before_refresh

after_refresh

before_save

after_save

- usually declared as functions (if there is a need to stop it with FALSE in case you want to abort)

 

  • then very important is to identify report position within a sheet using epm functionalities:
  • as example below, all variables are integers

top_report_cellRow1 = Range(EPM_function.GetDataTopLeftCell(ActiveSheet, "001")).Row

top_report_cellCol1 = Range(EPM_function.GetDataTopLeftCell(ActiveSheet, "001")).Column

bottom_report_cellRow1 = Range(EPM_function.GetDataBottomRightCell(ActiveSheet, "001")).Row

bottom_report_cellCol1 = Range(EPM_function.GetDataBottomRightCell(ActiveSheet, "001")).Column

 

  • very important is to faster your code using:

Application.Calculation = xlCalculationManual

Application.ScreenUpdating = False

Application.EnableEvents = False

 

  • then you can control when and where is VBA code executed.

 

For example:

you can control what user has selected in after_contextchange

you can control what is user saving in before_save

you can do silent refresh and save

you can even control user options, run packages using VBA and lot more.

 

tomas.

Timer management

$
0
0

Hi all,

 

I am currently working on a program which is really important. Well... it's a Pacman... (Well, time is quite long sometimes)

In fact, I created it using ALV Grid OO and it works quite well.

 

My characters are moving thanks to a timer (class CL_GUI_TIMER) but the problem is this timer is unable to make my charcaters move more than once per second.

Does anyone know about a preciser timer (which can be called every 0.25s I'd say)?

 

I have another problem, this is not the subject but if by fortune someone knows...

I would like to make my characters move with keyboards arrows, has anyone an idea about how to deal with it?

 

Thanks all for your help.

Re: Barcode -scanning

$
0
0

There are a couple of third-party tools which can directly read the data from the barcode and you can use it in the ABAP program.

 

Alternatively create a dialog screen. USe the barcode scanner and get the data as an input parameter and based on the input parameter do what ever validation you require and then based on the output of the validation trigger your relevant processing.

Re: Tablespace: PSAPTEMP # Tablespace files autoextend can cause file system overflow

$
0
0

Hi Yves,

 

BRTools is 720 patch level 37

 

We didn't upgrade to 721 cause we are simply upgrading systems to the same kernel levels.  So 720 was used.  We can't use 721_EXT because we need an OS upgrade we are running HP-UX 11.23 721_EXT needs 11.31 and we are also still running Oracle 10.2, we'd need to upgrade this also to 11.2.

 

Are we saying that this is intended, that note is a little vague as to the reason why.  Should this be deactivated then?  None of our tablespaces/files are set to autoextend so I don't understand why it's complaining.

 

Thanks

Craig

Re: Dynamic configuration bean in JMS Adapter

$
0
0


Hi Eng,

 

Next option is java mapping.Can u be provide me the java code for the filename transfer from JMS to file.No mapping in my scenario,so cant use UDF.

 

Please check if the below code is correct.

 

public class xxx extends AbstractTransformation {

private Map param;

  public void setParameter(Map param) {
      this.param = param;
  }

DynamicConfiguration conf = (DynamicConfiguration) param.get(
          StreamTransformationConstants.DYNAMIC_CONFIGURATION);


private static final DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/JMS","DCJMSMessageProperty6");
String MyFileName = conf.get(key);

         DynamicConfigurationKey key1 = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
        conf.put(key1,MyFileName);

}


Payment date of payroll 04.07.2014 later than period end of next payroll 30.09.2013 Message no. HRPAY99CALC744

$
0
0

hi sap experts,

 

while running off-cycle  payroll through puoc_40 i ma facing the

following error:-

 

Payment date of payroll 04.07.2014 later than period end of next payroll 30.09.2013

Message no. HRPAY99CALC744

 

 

regards,

 

prasad

Re: System changes status of preceding document

$
0
0

Hi Thomas,

 

I am also facing the same issue. I am also looking for the solution. will let you know if any success.

 

 

Best regards,

Dinesh.

Use calculated member to duplicate Crosstab Total Column as %

$
0
0

Hi there,

I am taking first steps with Calculated Members in Crystal 2011 and needed some guidance.

 

2014-07-05_09-10-11.jpg

 

From the above shot, you can see three date column and a grand total. What I need to do is insert a new column which essentially gives a percentage based from the SUM of each row / the total of row 0.

For example, the percentage of Total Hospital Deliveries will be the (SUM of (452, 460, 471) / 1414) *100 = 97.8%.

 

This needs to be continued down the cross tab for all fields.

 

The report is run automatically and updates month on month so I need this formula to adapt - next month it will feature data for 07/2014 for example and I don't want to have to manually amend it if possible.

 

You can probably point out that the sum of some rows is greater that row 0 (i.e. total births) - I need to potentially adapt the source of the denominator for the % calculation per row.

 

Any thoughts on how to do this? I have struggled to find how to SUM a row which is my biggest headache.

Thanks!

Re: SAP Business one users

$
0
0

Hi Romel ,

 

Please check the user code should be exactly same on both database.

From your mentioned Error it seems that there is a issue of License.

Please confirm the user code on both databases.

 

Hope This help!

 

 

Sudhir Sharma

Re: ABAP program to copy SQVI query from one user to another user

$
0
0

Hi

Anybody has solution to copy SQVI query from one user to another.

I don't want to convert through SQ01.

It could be abab program or standard function module.

Viewing all 9463 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>