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

Re: Mobilink client stops when remote DB is unreachable

$
0
0

The remote database is also a windows service.

The mobilink client does not always run on the same box as the DB server.

 

And restarting automatically does not help, because this only works, when service terminates unexpectedly. In this case, the service shutdowns automatically, but as far as the OS is concerned, the termination is normal. So the automatic restart never kicks in.


Use HRS function for find Planned Working Time hours in T550A

$
0
0

Hi Friends,

I want to use HRS function for find Planned Working Time hours in T550A(fiels SOLLZ).

I'm using HRS=IDAHRS now, but it does't use mentioned table and field.

 

I appreciate your help in advance.

Best Regards,

Leila

Re: Sendvkey not working, but Keyboard entry works fine

$
0
0

Hello Mike,

 

you can try this:

 

Dim wsh

Set wsh = CreateObject("WScript.Shell")

wsh.AppActivate("Title of your window")

wsh.SendKeys "{F2}"

 

to send a F2.

 

Let us know your results.

 

Cheers

Stefan

Re: Manual Repricing causes G/L issues

$
0
0

Hi,

Share the VTFL - screen shot also.

 

 

Regards,

SRK

Re: ¿como implementar una Nueva empresa?.

$
0
0

Hola Mauricio:

 

Me da gusto saludarte.

 

Me podrias apoyar enviandome el o los documentos para recabar informacion previa a la implementacion y si tienes algun otro o referencia para el proceso de implementacion paso te lo agradeceria .

 

Muy amable y gracias de antemano.

 

Luis Mantilla

--email removed--

 

Message was edited by: Paul Finneran

Re: Element send error

$
0
0

HI Dennis,

 

Thanks! last question

you put the text in the constructor as json model but let say I just need to get it from the constructor as input field how would you do it?

 

Thank you !

Stephane

Re: Java mapping to Edit Payload - Sender HTTP

$
0
0

Hi Anupam

 

Many thanks for your help so far i have now processed the  payload , but getting errors

 

Scenario is --> HTTP (SENDER)-PI-ECC

 

Please find below  HTTP post and pay load coming to PI via HTTP

 

POST Header

 

/sap/xi/adapter_plain?namespace=urn:stw:imi.imimobile.outSMS&interface=SMSRequest_Out&service=STW_IMI&sap-client=200&sap-l=En&sap-User=chet&sap-password=arora

Host: xx.xxx.xx.xxx

Content-Length: 699

charset: utf-8

Content-Type: application/x-www-form-urlencoded

 

PAYLOAD to PI

 

User=abc&password=def&TP_XML=%3C%3Fxml+version%3D%221.0%22+encoding%3D%22utf-8%22+standalone%3D%22no%22%3F%3E%3C%21DOCTYPE+WIN_TPBOUND_MESSAGES+SYSTEM+%22tpbound_messages_v1.dtd%22%3E%3CWIN_TPBOUND_MESSAGES%3E%3CSMSTOTP%3E%3CSOURCE_ADDR%3E%2B447557259949%3C%2FSOURCE_ADDR%3E%3CTEXT%3ESevtest+dwj%40imi+test+20151204+-+1%3C%2FTEXT%3E%3CWINTRANSACTIONID%3E017314492267648647%3C%2FWINTRANSACTIONID%3E%3CDESTINATION_ADDR%3E62277%3C%2FDESTINATION_ADDR%3E%3CSERVICEID%3E1%3C%2FSERVICEID%3E%3CNETWORKID%3E1%3C%2FNETWORKID%3E%3CARRIVALDATETIME%3E%3CDD%3E04%3C%2FDD%3E%3CMMM%3EDEC%3C%2FMMM%3E%3CYYYY%3E2015%3C%2FYYYY%3E%3CHH%3E10%3C%2FHH%3E%3CMM%3E59%3C%2FMM%3E%3C%2FARRIVALDATETIME%3E%3C%2FSMSTOTP%3E%3C%2FWIN_TPBOUND_MESSAGES%3E&RequestID=44141449227102300

 

step 1: I am using Java mapping for url decoder, first to decode encoded URL

 

 

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.InputStream;

import java.io.OutputStream;

import com.sap.aii.mapping.api.AbstractTransformation;

import com.sap.aii.mapping.api.StreamTransformationException;

import com.sap.aii.mapping.api.TransformationInput;

import com.sap.aii.mapping.api.TransformationOutput;

 

 

public class Java_Url_Decoder extends AbstractTransformation{

  

   @Override

   public void transform(TransformationInput arg0, TransformationOutput arg1)

   throws StreamTransformationException {

   // TODO Auto-generated method stub

   execute(arg0.getInputPayload().getInputStream(),arg1.getOutputPayload().getOutputStream());

   }

     public void execute(InputStream in, OutputStream out) throws StreamTransformationException

     {

     try

     {

         String url = in.toString();

            String s = java.net.URLDecoder.decode(url, "UTF-8");

         System.out.println(s);

        in.close();

        out.close();

     }   

     catch(Exception e)

     {

          e.printStackTrace();

          throw new StreamTransformationException(e.getMessage());

     }

     }

  }

 

Next step, I using a parser to convert values to target structure (shown below), but getting an error Error when parsing an XML document (Premature end of file.)

 

Please help me in getting correct code to implement the scenario i.e. decode, removing values shown in red and parsing please(capturing values shown in green in target structure) for the payload above

 

 

Source Raw XML (For understanding only)

USER=abc&Password=def&TP_XML=<?xml version="1.0" encoding="utf-8"

standalone="no"?><!DOCTYPE WIN_TPBOUND_MESSAGES SYSTEM

"tpbound_messages_v1.dtd">

<WIN_TPBOUND_MESSAGES>

<SMSTOTP>

<SOURCE_ADDR>+447740630138</SOURCE_ADDR>

<TEXT>bulktesth2</TEXT>

<WINTRANSACTIONID>357614643</WINTRANSACTIONID>

<DESTINATION_ADDR>82222</DESTINATION_ADDR>

<SERVICEID>2</SERVICEID>

<NETWORKID>2</NETWORKID>

<ARRIVALDATETIME>

<DD>19</DD>

<MMM>NOV</MMM>

<YYYY>2004</YYYY>

<HH>11</HH>

<MM>4</MM>

</ARRIVALDATETIME>

</SMSTOTP>

</WIN_TPBOUND_MESSAGES>&RequestID=1_5838512

 

Target structure

 

<SMSRequesstDt>

<SMSREQUEST>

<SOURCE_ADDR>+447740630138</SOURCE_ADDR>

<TEXT>bulktesth2</TEXT>

<TRANSACTIONID>357614643</WINTRANSACTIONID>

<DESTINATION_ADDR>82222</DESTINATION_ADDR>

<SERVICEID>2</SERVICEID>

<NETWORKID>2</NETWORKID>

<ARRIVALDATETIME>

     <DD>19</DD>

     <MMM>NOV</MMM>

     <YYYY>2004</YYYY>

     <HH>11</HH>

     <MM>4</MM>

</ARRIVALDATETIME>

<USER>abc</USER>

<Password>def</Password>

<RequestID>1_5838512</RequestID>

</SMSREQUEST>

</SMSRequesstDt>

 

And three captured values to be added to refined xml as shown above

Re: Update rule : Single date issue

$
0
0

Hello Ahmed,

 

I faced the same problem as yours.

In previous verstions i didn't noticed such behaviour of ERP.

 

 

I entered template below as single dates.

The system didn't deleted first line (31.01.2015)

1. excel.jpg

 

But the systems has recalculated the first line.

2. cash flow.jpg

 

First line is calculated as it is 30 days per month because "Calculation to" date is exclusive.

1000 BYR - for 31 days.

X BYR - for 30 days

 

X = 967.74 = 968.

3. cash flow.jpg

 

What you can do is to change your condition: First period parameter.

 

Calculation method for first period of condition item

The amount for the period is dependent on the following methods:

  • Pro rata temporis calculation

Amount = Condition amount * days in calculation period / days in period

  • Include fully

Amount = Condition amount

  • Do not include

Amount = 0

4..jpg

5.jpg


Re: Fiori: Fixed asset Factsheet implementation error

$
0
0

Dear Kawana,

 

Have you got the answer already?

May I know how did you solve it?

 

Cause we are stuck with similar issue, with front end "could not open app" error and F12 cannot read property XX of null.

UIEAAP01 is on SP08 and SAP_UI on SP13

 

Thank you indeed!

Chloe

Re: Services History Tracking

$
0
0

Try This:

 

SELECT top 10 HOST, SERVER_TIMESTAMP, round(INSTANCE_TOTAL_MEMORY_USED_SIZE/1024/1024/1024, 2) as "Used Memory GB"

from _SYS_STATISTICS.HOST_RESOURCE_UTILIZATION_STATISTICS

where hour(SERVER_TIMESTAMP) = 7 and minute(SERVER_TIMESTAMP) = 0 order by SERVER_TIMESTAMP desc;

Re: SAP BW custom data source

$
0
0

Hi Nayab,

 

Just one query like if I use timestamp UTC for Timestampl would it make any difference.

The thing why I am asking is in ECC standard time is in UTC.

 

What is the difference it makes if I select timestamp utc or local?

 

Regards,

Ankie

Re: Manually maintain the Interest rate instrument conditions/repayment

Re: How do i bind a template to a list where no model is present

Re: ByDesign Excel AddIn with Win 10 and Office 2016

$
0
0

Is there an estimated timeline of when this should be ready? This is incredibly inconvenient for people who utilized this tool in the past/rely on it but now can't access it because their company upgraded their software!

Re: Using Append in GUI_DOWNLOAD in format DBF

$
0
0

It would be easier to upload an existing DBF file into an internal table and then append the new internal table, but GUI_UPLOAD doesn't support a filetype of 'DBF'.

 

Rob


Re: How the scheduled Activity quantity arrived in KSPP

$
0
0

Venkatesh,

 

The LTP does the following by using CM38 - report.

 

1) Capacity requirements are calculated based on the process orders, planned orders and simulated plan orders by Work Centers.


2) The total of  Work Center / Cost center and Activity types will be transferred to CO plan version as scheduled activities. CM38 will shows capacity requirements by material  / week .


is that clear?

regards,

Dave

SAP UI5 application on RF device

$
0
0

Dear All,

 

 

Anyone tried to use SAP UI5 application on RF devices?

 

If yes, SAPUI5 supports which RF devices and bar code types?

 

Ideally RF device is browser base only, SAP UI5 application should work???

 

 

Please give your suggestions..

 

 

 

Thanks,

Kiran.

Re: Rapid Content Delivery CSU_INFO.XML error

$
0
0

well, after applying central note v24, things magically almost work.  The new content got applied before I could run the IMport Analysis report.    Good thing this was on Sandbox. 

 

Now trying it on our dev box - applied the RCD notes, still had to run the manual upload.  Then the Preimport Analysis link came active.  Pressed that, and BOOM.

 

Category               ABAP Programming Error

Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED_NO

Except.                CX_SY_REF_IS_INITIAL

Web Dynpro Component   WDC_MAI_IMPORT_ANALYSIS

ABAP Program           /1BCWDY/1G4V5KRLXPX69ZWTZGQP==CP

Application Component  SV-SMG-MON-ALR-CFG

 

back to the drawing board.  Guess I'll be updating central note here now too.  oh well...  another Friday shot. 

How to Prepare for HANA Certification (C_HANAIMP151) ?

$
0
0

I am preparing for SAP HANA Application associate certification - C_HANAIMP151 using:


-HA100

-HA300

-HA200 (for further content).


However i am finding the material in these manuals in less to understand HANA and prepare for certification according the subtopics for e.g


- Modelling Function

- SAP HANA Architecture

- Data provisioning

 

Hence I need guidance on which material sources to prepare for HANA ??


I am planning to take SAP HANA E-academy - HAIMPE, I have 3 months time to prepare.

 

Re: how to change sybase character set to UTF8

$
0
0

The steps that are missing from the various replies in this thread is how to figure out the value to specify for 'default character set id' and 'default sortorder id'.

 

To see the available character sets, run this query:

   

    select id,  name, description from master..syscharsets where type < 2000

     (if the desired charset is not shown, use the 'charset' client program to load it)

 

To see the available sort orders:

 

    select id, csid, name, description from master..syscharsets where type >= 2000

     (here, csid is the 'id' value from the previous query which you specified for 'default character set id'

 

In my ASE server, I'm using character set ID = 190 and sort order id = 24 for UTF8 with utf8bin sort order. Make sure to verify the correct values in your server.


Viewing all 8713 articles
Browse latest View live




Latest Images