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

Re: Mapping Builtin function does not work as before

0
0

Great. Thanks for getting back to us with the update. Will be useful info for others who faced this in the future. If your testing yields positive results, then please proceed to close the thread with your reply as the correct answer.


Re: How to Import Opening Balances

Re: Cannot create application 'hello1' in account 'p...trial'

0
0

Hello Heiner,

 

I had the same problem as yours. As an alternative, I created a WAR file from Eclipse. You can then follow the steps at

SAP HANA Cloud Platform

 

and deploy the solution on HANA.

 

Hope this helps !

 

-Vivek

Re: Process chain fails everytime

0
0

Hi Hiren

 

I suggest you to run Planning Area Initialization and Consistency Check for Source and Target Planning Version

/SAPAPO/TS_PAREA_INITIALIZE

/SAPAPO/TS_LCM_CONS_CHECK

 

This is a good practice and should help prevent any issue during version copy.

 

Hope this will help.

 

Thank you,

Satish Waghmare

Re: Error for ODBO while Installing HANA studio

0
0

Hi Gregory. How can I check that?

Re: How much memory do I need for one SQL Server.

0
0

Hi Sir Andakondaramudu,

 

do you have a separate server for RDP, SQL, and SAP b1 Server?

How many GB of memory needed for RDP?

Re: How to add a tooltip to a TableView header Column

0
0

Hi Rama,

 

I tried with changes to GET_HEADER_BEES method of class CL_THTMLB_CELLERATOR in debug mode and it worked. I haven't implemented the change yet.

The above changes mentioned by Ritu also works. Just check the correct Controller id.

 

Thank you

Anji

Re: How much memory do I need for one SQL Server.

0
0

Hi Sir,

 

if its not that confidential, can you post the hardware and software specs of your client on their SAP b1 server and SQL server,

 

we are also having the same problem and we only 1 server that handles SAP b1, RDP and SQL and with a 12GB memory. I will use this discussion as proof that we need an hardware & software upgrade.

 

thanks!

 

Carlo


Restitution configuration

0
0

Dear GTS Experts

I have checked for Restitution configuration document in forum but I have not at all found please could you tell me the settings what needs to be done.

 

Thanks a lot

Re: pi sftp adapter

0
0

Hi Rahul

 

Unfortunately, the SFTP adapter is just a client. It can get files and put files to an SFTP server. But it cannot act as a server.

 

Rgds

Eng Swee

Re: How to enable Negative Quantity in PSM/ASM of SAP PLM7

0
0

Thanks. I figured it out. You have to set up the product as secondary output.

Best regards,

 

-Oscar Fernando Bello

Re: SNP optimizer performance

0
0

Hi Vladimir

 

Please do specify reasonable Maximum Runtime in Solution Method Tab in Optimizer Profile.  I have experience with similar issue when Optimizer user to take close to 7-8 hours to complete without doing much(feasible solution not optimum) for Product deco iteration which used to run for longest amount of time.

 

Once we reduced the Max runtime from 720 mins to 180 mins, we were able to achieve quicker completion of optimizer and without much impact on quality of solution.

 

We tracked Service Levels, Number of fulfilled and Unfulfilled demands, Number of Product Deco iterations, Number Optimal solutions and Number of feasible solution by using Optimizer log.(/SAPAPO/SNPOPLOG).  If you decide to go with this option, please do track these key indicators for 8-10 runs to know the impact of this change.

 

Hope this will help

 

Thank you

Satish Waghmare

Re: Need help on addrSearchDialog popup on click of To button in email from SR in IC

0
0

Hi,

Any help on this,,,

 

Regards^

Venkat

Re: Loans from ESS from NWBC

0
0

only applicable for india, you need copy the WD and make it generic for other countries as we typically check for Viekn of the employee in Pa0003 to determine the country specific screens But the standard ones are in JAVA WD only

Re: No roles seen in access request

0
0

Hi Melvin, were you able to resolve this issue and if yes, could you please share the resolution. I'm faced with the same issue and unable to fix it. Appreciate if you could share your experience.

Thanks.


Re: Payroll Schema Calculating double pay for unpaid leave

0
0

Hi All,

 

The issue is solved..I've move the PCR to be calculated after ZVAL and the amount is deducted correctly now.

 

Thanks for the advice.

Re: Why the SB partner is not selected during PGI

0
0

Hi,

However, it does not seems to be working. it does not seems to work in multiple shipto environment.

Do I need to add some customized coding in any of the user exit?

 

Please assist.

PB 12.5.1 WCF Webservice Error 415

0
0

Greetings all,

 

I’m developing a WCF webservice in PB.net 12.5.1. I can execute the webservice using the WCF Test Client, but when my customer tries to call it, we get an http 415 error. The incoming call is a straight XML call, no soap, hence the WCF service. I’ve tried several iterations of changes in the web.config file to no avail.

 

The actual error that we see using WireShark is:

 

29  4.423768 192.168.0.204     11.111.11.111     HTTP      HTTP/1.1 415 Cannot process the message because the content type 'application/xml;charset=utf-8' was not the expected type 'text/xml; charset=utf-8'.  (text/html)

 

According to some documentation on msdn, this means the following: “in my hosting code it turned out that I was using ServiceHost instead of WebServiceHost to host my WCF WebHttp service”. I have no idea what this means, or where to look for, or correct this setting. Here’s my web.config for the service. Any help would be much appreciated.

 

Thanks!!

 

Paul

 

 

 

<?xml version="1.0" encoding="utf-8"?>

<configuration>

  <system.serviceModel>

    <bindings>

      <webHttpBinding>

        <binding name="webHttpBindingConfig">

          <security mode="None">

          </security>

        </binding>

      </webHttpBinding>

    </bindings>

    <services>

      <service name="Sybase.PowerBuilder.WCFNVO.directconnect" behaviorConfiguration="ServiceNameBehavior">

        <endpoint address="" binding="webHttpBinding" contract="Sybase.PowerBuilder.WCFNVO.directconnect" bindingNamespace="http://rti.flytetymelimo.com/_WCFService" bindingConfiguration="webHttpBindingConfig" behaviorConfiguration="web" />

        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>

      </service>

    </services>

    <!--For debugging purposes set the includeExceptionDetailInFaults attribute to true-->

    <behaviors>

      <serviceBehaviors>

        <behavior name="SimpleServiceBehavior">

          <serviceMetadata httpGetEnabled="True" policyVersion="Policy12" />

          <serviceDebug includeExceptionDetailInFaults="True" />

        </behavior>

        <behavior name="ServiceNameBehavior">

          <serviceMetadata httpGetEnabled="True" />

          <serviceDebug includeExceptionDetailInFaults="True" />

        </behavior>

      </serviceBehaviors>

      <endpointBehaviors>

        <behavior name="web">

          <webHttp />

        </behavior>

      </endpointBehaviors>

    </behaviors>

  </system.serviceModel>

</configuration>

Re: Draft for Process Start in E-Recruiting

0
0

Looks like you are not using FPM based OVP configuration and current entry is incorrect.

 

Try to change the SWFVISU entry with :

 

      APPLICATION     ASR_PROCESS_EXECUTE

      DYNPARAM        WI_ID=${item.externalId}

      NAMESPACE      sap

 

 

  • WF template " WS17900404" is activated in Tx - SWDD
  • Re-register the Task configuration on UWL

Registering a custom Task in UWL - Workflow - SAP NetWeaver BPM Troubleshooting Guide - SCN Wiki

  • Also Check SAP notes 1436836 and  1338043


Regards

Sandy

Re: External Debugging a sap gateway service

0
0

Hi Ashwin

 

So you mean to say i need to declare functional output parameter(lt_return) in create_entity and call my function module in create_deep_entity and implement get_entity_set method

 

am I correct Ashwin?

 

Thanks

Vamsi

Viewing all 8902 articles
Browse latest View live




Latest Images