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

Re: DS 1.4 32Bit Java 7 -Crash on connection to BW "Browse" datasource

0
0

just to add here.

Since 1.4 release Design Studio is delivering SAP JVM, so no additional Java installation from Sun/Oracle is required any more. The SAP VM is located directly in the installation folder of Design Studio.


query problem

0
0

Dear Experts,

.

 

We have created query that is used to validate a  document.

 

It can't work as expected.

 

The query is a stored procedure transaction notification (SP_TN).

it is used to prevent the user creating the delivery order after release to pick list is done if there are some pending approval.

 

Please help to create the query.

 

Thank you.

 

Rgds,

Steve

Re: ZTL Reference?

0
0

Hi Jon,

 

ZTL is executed in Rhino Engine, which is a bit stripped JS engine - comparable to the JS engines in the browser, but some global statements are not working (eg. window). But basically you can use a lot of JavaScript features there, you can check in detail the links from Mustafa on it, especially the Debug Inspector code which goes deep into this area.

 

For reuse. You could create a shared library component, and call it from other components (like I have done this in the debug inspector tool, where I call the DEBUG.<method> from other ZTL methods. The problem is only, you have no chance that the library will be placed in the application this way...

 

So, the other option is to use inheritance of classes in ZTL, like this one which we use in the component model in the sdk community package, see here for the base class for community component, and then we just extend this component from all implementations. Then all implementations are able to access the base component methods (which can be also defined as private since 1.4 SP1).

 

Hope this explanations help you.

Karol

Re: How to reset SM configuration

0
0

A little bit late but, to reset SM configuration you have to delete Solution Manager system from LMDB.

 

Check SAP Note 2020955 (SOLMAN_SETUP has been reset and is in "grey" status)

 

Regards

Re: How to delete / reset a Solution Database Configuration

0
0

A little bit late but, to reset SM configuration you have to delete Solution Manager system from LMDB.

 

Check SAP Note 2020955 (SOLMAN_SETUP has been reset and is in "grey" status)

 

Regards

Re: Migration from SAP BPC 10 MS to BPC 10 NW

0
0

We did the same. In the past A program was created by SAP developer but for few many reason the transaction was removed.

 

It's better to create all again with NW you have more validation than MS

 

Which you success in your migration

Re: Showing parent in EPM based on base level member selected

0
0

Hi Hendry,

 

Are you using property to determine the override?

if that is the case then just make sure you have the same property for those parent nodes as well, then it will display the whole structure.

 

Andy

Re: How to run VS2005/CR on Windows 8.1?

0
0

Thanks to a reply on another forum (Sabre on Stack Exchange), the solution is to install the 64-bit version of Crystal Reports 2005 (cr_net_2005_x64.msi) on the (64-bit) Windows 8.1 machine.  The C++ runtime does not seem to be required.


Re: Dynamic image change in flavour in Personas 2.0

0
0

In general, you don't have access to controls' properties via scripting in Personas 2.0.

However, in this case, you can change the URL of the image that you are assigning to the HTML viewer covering the area where you want the image to show up.

 

Do this:

 

  • Create a (hidden) text field where you will build the URL of the image you want to show (without http:// or https://)
  • Assign the following URL to your HTML viewer: http://{1}
  • Point the {1} variable (with the plus sign) to the text field you just created
  • In your script, build the image URL and paste it into the text field, then refresh the HTML Viewer

 

This will make the image dynamic, depending on the URL you specify.

Re: How to check if SAP systen ECC6 has inbound mail server configured?

0
0

Hi Andy,

 

Run transaction SMICM and then display services by menu path GOTO->SERVICES.

Here check for SMTP. If activation has green check mark, then this means that inbound mail is set.

 

To check whom you can send the inbound mail in SAP, go to SICF. Check SAPConnect and check the logon data there.

 

Regards,

Richa

Re: how to change time formate in time bubble chart

0
0

Hi Roger,

 

If i understand the issue right, Current the date in x-axis is display as 09/2013 which you would like to display as 09.2013.

 

If yes then use formatter on value: '{Date}' to replace / with '.'

 

Hope this helps.

Re: Workflow event while updating USR02 & USH02

0
0

Hi Narendra,

 

Can you try using TMG(Table Maintenance Generator) events for this.

 

 

Regards,

Richa

Re: (MX) Contabilidad Electrónica - RME 2014 Anexo 24

0
0

Hi Miguel.

 

You file have the CodAgrup="101.01"  my file just  CodAgrup=101.01,  how can i solve this problema.

 

You file has been validated in SAT page?

ScreenHunter_2506 Mar. 23 16.45.jpg

HANA PAL (double exponential smoothing) multiple data sets and speed

0
0

Problem -

 

I'm attempting to implement multiple stactical forecasts across several data sets. Currently in SQLSCRIPT I am looping at my data sets and calling out to DoubleSmooth  implementation and returning the result, ideally what I would like to do is pass a single large data set 12 months for 12 different sets and get 12 different forecast results, is this possible ? should I be using a different PAL/BFL function to execute the forecast (that has this capability).

 

The intent of this is to;

1. Remove the loop that current marshals the data for the call into the PAL function.

2. Allow HANA to optimize / parallel the calls to increase speed of processing.

 

Any ideas would be greatly appreciated.

Re: how to change time formate in time bubble chart

0
0

Hi Kedar,

 

thanks for your reply. if you look into the code, you will find the {Date} is integer, not string. There must be some way to change the display format


Re: User decision step of WorkFlow in SAP CRM Webclient

0
0

Hi Yuliya,

 

The mandatory user decision note functionality is only released for SAP GUI; SBWP. It doesnt work for UWL or CRM worklist.

 

In your case, I suggest debug the action "Complete Decision" and look for a exit or enhancement implementation to check if the "Decision Text" is selected or not. If not, issue an error message and just exit.

 

Regards

Sandy

Re: PowerBuilder 11.5 & C++ DLL issue

0
0

I made some small test using Visual Studio 2010 Express and get it working by using a def file.

 

My function looks like this...

 

EASYDLL_API TCHAR * sayhello (void)

{

    return L"Hello PowerBuilder";

}

 

The .def file:

LIBRARY "easydll"

EXPORTS

sayhello

 

external function in PowerBuilder:

function string sayhello () library "easydll.dll"

 

hth

 

Arnd

 

easydll - Microsoft Visual C++ 2010 Express (Administrator)_2015-03-23_23-49-24.png

easydll-Eigenschaftenseiten_2015-03-23_23-53-22.png

Re: Pie chart questions

0
0

hi tammy,

 

thank you for letting me know that these pie chart options are not currently possible.

i just voted on the idea link that you sent.

thank you

tracy

Re: In usage decision(UD) if it is blocked,notification should  trigger

0
0

I have already suggested in my second post regarding sending the emails to SBWP sap inbox.

 

Refer below: make use of BOR BUS2045 and create a custom WF with Workflow mail sending step.

 

If you wanne use BOR object, then there is a BOR object for inspection lot BUS2045 and there is a event CREATED.

Switch on the trace in transaction SWELS and run the transaction for inspection lot creation. Then go to Transaction SWEL and check if you can find an event CREATED for BUS2045. If so create  a custom WF with triggering event BUS2045-CREATED and use check custom Function module in SWE2 to check if the Inpsection lot is blocked. If true then only trrigger the WF

 

In WF , use a mail sending step to User.

Regards

Sandy

Re: Adding custom fields to SRM UI Add-on

0
0

Hi,

 

1. The only difference I can see is appending custom fields under this path:

 

SRM Server Cross – Application Basic Settings Extension and Field Controls (Personalization) Configure Customer Fields Define Customer Fields on Item Level Append for Customer Cross-Document Item Database Fields.

 

 

2. Are you able to see this custom field in your existing Shopping cart WD UI (Portal / NWBC) ?

 

3.  TREX is mandatory for "Cross Catalog Search" in SRM UI.

 

4. You can use catalogs without TREX also - using the puchout functionality - SRM new UI also supports catalog punchout. But the main aim of SRM UI is to use the cross catalog search so that users get "Amazon" kind of shopping experience.

 

If you want to use the catalogs (w/o cross catalog search functionality), just assign the catalog to the user in the org structure.

 

 

Let me know how it goes.

 

 

Regards

Venkat

 

Viewing all 8851 articles
Browse latest View live




Latest Images