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

Re: DATE SPECIFICATIONS DISPLAY

$
0
0

You need to write a simple generic service to do what you need. It will also give you flexibility to add/use whatever business logic you need for handling IT0041. Also, your rule is not going to really work as I think you are thinking it does. The "rule" simply asks as a "traffic cop" to decide IF the service/operation-of-service can be executed or not....not conditional like "if data_type = 42, then display it".


Re: Results Analysis with loss ("03" Cost-Based POC Method) EC&O

$
0
0

Look at your RA configuration (details under OKG3) and how it relates to the system statuses, REL, FNBL, TECO.  Standard (non-expert) RA config only cancels the balance sheet postings on TECO.

Re: UI Theme Designer => Preview cannot be accessed

$
0
0

Are you using a fully qualified domain name to access UI Theme Designer and the application that is being themed? FQDN such as server1.companyX.com? Looking at the second screenshot, the top level domain appears to be .de. Be aware of requirements for such country top level domains, see SAP note 654982 for details. I remember once helping a customer with a similar issue. They were accessing their external URL that had the form server1.xyz.fi. The problem was solved by adding a dummy part as the 4th part of the domain, like app1.server1.xyz.fi.

Re: Cannot Login using LDAP account after LDAP authentication Update

$
0
0

Hello Ambarish,

 

Thank you for the reply.

The users are been promoted to Dev2. Nobody are able to login to any client tools with the system ID of Dev2. it says Invalid user ID and password. When I try login to the BI launchpad

I get Account Information Not Recognized: Invalid username or password. If your account is under any root other than  xxxxxxxxxxxxxxxxxxxxxxx , you must enter your DN. (FWB 00007).

And I am not sure about the directory server.

 

Thank you,

Chan

Assign shipping point: SD_TRANSFERDATA_DETERMINE

$
0
0

Hello,

 

we would to use SD_TRANSFERDATA_DETERMINE in order to assign the shipping point based on storage location.

The problem is that there no reference to EKPO-Lgort in SD_TRANSFERDATA_DETERMINE.

Is there a way to get that variable?

Authorization to control standard fields

$
0
0

Hi Friends,

 

My requirement is create authorization object to control the standard SAP fields. (like UMWKZ, GDATU).

which will control the user can update or edit some approvals.

 

Kindly guide me anyone regarding this.

 

Thanks.

Viji.

Delete Transaction

$
0
0

Hi Expert,

    I want to delete transaction from some different roles in the same time?

Are this is available or not?

 

Regards

Said Shepl

Re: Line item tax rounding and header impact

$
0
0

Thanks for sharing this, Ravi. It also worked in similar scenario that Marcus described. Well done!


Re: Reservation quantity higher than PR qty

$
0
0

Are you running MRP?

 

also what stock type is specified on the Project Definition: No Stock, Non-Val Proj Stk, or Val Proj Stk?

Re: Loading from CSV files is successful only when file resides in "work" folder in latest HANA release?

$
0
0

Hi Shu

 

This is what you need to do. As shown in the attached screen shot do one of the following

1. set enable_csv_import_path_filter = false

OR 2. add the path /hana-2/exchange/AP1 to csv_import_path_filter

 

From SAP Notes

As of SAP HANA SPS 08 database revision 85, you can manage a restriction for the local and/or shared file accesses using two INI configuration parameters, named CSV import path filter.

1. Enable CSV import path filter via configuration tab of HANA Administration Console

  • File: indexserver.ini
  • Section: import_export
  • Key: enable_csv_import_path_filter
  • Value: true

(Note: this configuration is set to 'true' by default starting with HANA SPS 09)This configuration change will immediately affect IMPORT FROM command by reconfiguration so that IMPORT FROM is only accessible to CSV files stored under the specified directory paths. The following three paths are accepted by default without any additional path filter setting.

  • $DIR_INSTANCE/work
  • $DIR_INSTANCE/backup
  • $SAP_RETRIEVAL_PATH/trace

2. (Optional) If you would need to accept more file paths, you can specify them at the following INI configuration parameter. Multiple paths can be specified with a delimiter ';' (semicolon).

  • File: indexserver.ini
  • Section: import_export
  • Key: csv_import_path_filter
  • Value: <absolute directory path>[;<absolute directory path>]*

 

you will see a similar configuration for the nameserver.ini.

The nameserver only needs to be configured if you're using a

multi-tenancy database container.  Otherwise it is not required to be

modified.

Screen Shot 2015-01-28 at 2.15.05 PM (2).png

Re: Not able to add & Save new properties in QA

$
0
0

Hi,

 

As you mentioned its a QA system, please check the security settings in BW system.

BPC security settings may allow changing dimensions, but for the corresponding /CPMB/ objects to get adjusted, the BW system must be open for development.

 

Regards,

Bindu

Re: POWL Query Custom Views - No longer available ?

$
0
0

Thanks Kiran, tried to implement this note but the application runs into syntax error.when applied.

Re: DB2 10.5 BLU support

$
0
0

Hello Jay
As of now there isn't any update regards BLU for SOLARIS OS.

Only supported OS platform Solaris 11 on SPARC: Minimum DB2 versions are DB2 10.1 FP4, DB2 10.5 FP4. No support  for 9.7. No support planned for Solaris 11 on x86.
There aren't any planned dates yet.

Thanking you
Regards
Venkat.

Re: Fiori My Benefits Error

Automated Testing of Workflows

$
0
0

Hi all,

we try to do automated testing of Workflows to ensure ongoing development does not break things.

On the ABAP side, we have ABAP OO and Unit Tests.

However, we are looking for ways to automatically test the complete flow for possible binding issues, conditional routes based on direct or indirect input (i.e. container variables, persistent data, etc.).

Does anyone of you have done something like this before?

What would be an efficient way to do this?

Best regards,

Frank.


Using Singleton Class during Suspend - Resume functionality

$
0
0

Hi Experts,

 

I have an OVP application from within which the user clicks on a button to be navigated onto a GAF application. I need to share some information in the form of object references & internal tables in between the 2 FPM applications. I had so created a Singleton class & was trying to set my data onto it within my OVP application before Suspending the OVP & navigating onto the GAF. I was expecting to be able to retrieve the earlier data within the GAF. However when I try to retrieve the current instance within the GAF it does keep returning me a new object reference. Please suggest if a singleton class cannot be used in such a scenario.

 

Regards,

Uday

 

Below is the code that I use for the navigation after having set the values onto my Singleton class:

 

DATA: ls_webdynpro_fields TYPE        fpm_s_launch_webdynpro,

           lo_fpm_nav_to         TYPE REF TO if_fpm_navigate_to,

           ls_add_fields           TYPE        apb_lpd_s_add_wd_parameters,

           et_message            TYPE        fpm_t_t100_messages,

           ev_error                  TYPE        boole_d.

 

  lo_fpm_nav_to = lo_fpm->get_navigate_to( iv_instance_sharing = abap_true ).

 

  ls_webdynpro_fields-wd_namespace = 'sap'.

 

  ls_webdynpro_fields-wd_application = 'ZWD_RE_GEN_NEEDS_CONF_3423'.

 

  ls_webdynpro_fields-wd_configuration = 'ZWD_RE_GEN_NEEDS_APPL_CONF_3424'.

 

  ls_webdynpro_fields-system_alias      = 'DUMMY'.

 

  ls_add_fields-navigation_mode    = 'INPLACE'.

 

  ls_add_fields-use_suspend_resume = abap_true.

 

  CALL METHOD lo_fpm_nav_to->launch_webdynpro_abap

    EXPORTING

      is_webdynpro_fields      = ls_webdynpro_fields

      is_additional_parameters = ls_add_fields

    IMPORTING

      et_messages              = et_message

      ev_error                 = ev_error.

Re: Fiori My Benefits: Error while fetching Confirmation statement

$
0
0

Hi Harry,

 

Put a breakpoint in the method GET_CONF_STMT_PDF in class CL_SRA007_BENEFITS_DATA_SRV and check what the function Module HR_BEN_ESS_RFC_CONF_FORM returns.

 

Best Regards

Pankaj

Re: Fiori My Benefits: Error while fetching Confirmation statement

$
0
0

Thanks Pankaj,

 

Here is the output of FM

 

FM_Error.PNG

 

ET_Error - Infotype 0171 could not be read for person 00000000 on 20150122.

 

Regards,

Harry

Re: Fiori My Benefits: Error while fetching Confirmation statement

$
0
0

Hi Harry,

 

The PERNR is not getting passed to this function module. In Benefits that comes from the global structure which are set in the FM before this. You could check that why the PERNR is not set. You are not getting the PDF statement since the PERNR is 00000000.

 

Best Regards

Pankaj

Re: Fiori My Benefits: Error while fetching Confirmation statement

$
0
0

Hi Pankaj,

 

Issue fixed. It was due to incomplete data. My benefit is working fine on latop/desktop.

 

But we are getting issue on IPAD  &  IPhone. We are getting As Of NaN-NaN-0Nan date instead of actual date.

 

Any suggestion.

 

Regards,

Harry

Viewing all 8851 articles
Browse latest View live




Latest Images