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

Re: Mass Planned Order creation with BAPI or Function module

$
0
0

Hello,

 

What do you mean when you said that BAPI_PLANNEDORDER_CREATE can not be used to create a planned order on the working day of workcenter?

Can you clarify this comment?

 

I have made a program to upload planned orders massivelly using this BAPI and it works ok. I don't know how would be the performance for 100,000 orders, since we never load such number of orders.

 

Kind Regards,

Mariano


Re: Heartbleed bug in Relay Server

$
0
0

Hi Klaus,

 

The version indicated in that note include fixes for all the components.  In this case, utilizing the Relay Server version included with SMP 3.0 SP03 PL01 & SMP 2.3 SP04 PL01 will include patches for the Heartbleed issue.

 

As a side note, the Relay Server is part of the SQL Anywhere platform so we can also use those value from the note as well.  The SP level can be a bit difficult to compare against your actual version but you can use the following:

SQL Anywhere 16.0.0 SP 11 - > 16.0.0.1824  (This is the version shipped with SMP 2.3 SP04 PL01)

 

Hope this helps,

Edgar

EWA analysis dates are too old

$
0
0

For an EWA report available on our Solution Manager on Aug 2nd, analysis dates are Jul 23rd - Aug 2nd.

 

Is that expected EWA behavior?

 

What would be proper procedure to get an EWA for this week, or last week?

 

Regards,

Re: Tax rate up to 4 decimals places

$
0
0

Paulo thanks for the answer, what I asked should be applied not only for customer invoices and starting the process from SD,  it should be applied for FI supplier invoices or supplier invoices and starting from MM.

 

 

Is this workaround works for all those cases?

 

 

Thanks

Re: using 'while printing records'

$
0
0

SELECT "OEIND94"."IDDOCD" AS INV_DATE,

             "OEIND94"."IDORD#" AS ORD_NUM,

             "OEIND94"."IDORDT" AS ORD_TYPE, 

             "OEIND94"."IDPRLC" AS PROD_FAMILY,

             "OEIND94"."IDPR$C" AS PRICE_CODE,

             "OEIND94"."IDCOM#",

             MAX("OEIND94"."IDPRT#") AS ITEM_REF,

             "ICPRT1"."IARCC4" AS PROD_TYPE,

             "ICPRT1"."IARC11" AS PROD_CLASS,

             "ICPRT1"."IACMQC" AS ***_CODE,

             SUM("OEIND94"."IDSHP#") AS NUM_UNITS,

             SUM("OEIND94"."IDSHP#" * "OEIND94"."IDCSU$") AS TOT_COST,

             SUM("OEIND94"."IDSHP#" * "OEIND94"."IDNTU$") AS TOT_SLS

             ,"ICPRT1"."IA101"

FROM   "SN4M"."ASTDTA"."OEIND94"

              "OEIND94" INNER JOIN "S1047N4M"."ASTDTA"."ICPRT1"

              "ICPRT1" ON "OEIND94"."IDPRT#"="ICPRT1"."IAPRT#"

WHERE  "OEIND94"."IDCOM#"='001' AND 

                "OEIND94"."IDDOCD" >= {?FromDate} AND

                "OEIND94"."IDDOCD" <= {?ToDate} AND

              "ICPRT1"."IARCC4"='FIN'

GROUP BY "OEIND94"."IDDOCD",

                   "OEIND94"."IDORD#",

                    "OEIND94"."IDORDT",

                    "OEIND94"."IDPRLC",

                    "OEIND94"."IDPR$C",

                    "OEIND94"."IDCOM#",

                    "ICPRT1"."IARCC4" ,

                    "ICPRT1"."IARC11",

                    "ICPRT1"."IACMQC",

                    "ICPRT1"."IA101"

ORDER BY  "OEIND94"."IDDOCD",

                   "OEIND94"."IDORD#",

                    "OEIND94"."IDORDT",

                    "OEIND94"."IDPRLC",

                    "OEIND94"."IDCOM#"

Re: using 'while printing records'

$
0
0

hi Paul,

 

since you're using a Command object you may not wish to use the Record Selection Formula at all due to performance reasons. the filter should be applied in the Command itself in the WHERE or HAVING clause depending on the situation.

 

can you post the entire Command?

 

 

here's an example of a Command where there is Group Selection based on a HAVING clause. the following returns only companies with net sales greater than 75000000. the Command is also grouped by company in order to have the aggregation done on the company level.

 

SELECT

DC.COMPANYNAME,

SUM(FC.NETSALES) AS NETSALES,

COUNT(FC.QUANTITY) AS QUANTITY,

AVG(FC.COST) AS COST

FROM  

STS.DIMCUSTOMER DC

INNER JOIN STS.FCTCUSTOMERORDER FC

ON DC.CUSTOMERID=FC.CUSTOMERID

GROUP BY

DC.COMPANYNAME

HAVING

SUM(FC.NETSALES) > 75000000

ORDER BY

DC.COMPANYNAME

 

thanks,

jamie

Re: Application type Agentry is missing from Management cockpit in SMP 3.0

$
0
0

Hi All,

 

Any suggestions please?

 

Looks like the device is not even hitting the server as even after removing the server certificate it keeps giving me the same error as above "Safari could not open the page because the server stopped responding".

 

Awaiting responses.

 

Thanks,

Gourav

Re: Copy transport request in SAP BI?

$
0
0

Hi Kool,

 

I think Include is the option from which you can add objects from one transport request to the other.

 

Copy -I think not possible include objects is doing copy only.

still wait for other's reply.

 

Regards,

Ganesh Bothe


Re: Work status rule violation

$
0
0

Dear Melanie

 

Could you solve these issue?

 

Regards

Ariel

Making a dynamic image appear blank

$
0
0

I am putting some dynamic images in some reports.  Some records do not include an image file path.  So instead of the default image I used to set it up, the client would like nothing to appear.

 

I have tried the code below in the Graphic Location formula to use a path that does not exist and I tried "" instead of the temp path, but it still shows the default I set it up with.

If {CustomerInvoices.CompanyLogoPath} = "" then

    "c:\temp\temp.bmp"

else

    {CustomerInvoices.CompanyLogoPath}

 

 

The only solution I have come up with is to use an actual image of a blank, hopefully transparent canvas as a png file as the default so it will not show at all and not show as a white background on colour paper.

 

Does anyone else have any ideas?

 

TIA, rasinc

Re: EH_GUID to EVT_GUID

$
0
0

Thanks You for all answers.

 

I am extraction 0SCEM_01 Data extractor in BW, so as per line data comes in BW..EH_GUID field is major key..

 

Question:

in 0SCEM_01 Datasource, Event GUID (NOT EH_GUID) is part of datasource?

if Not then how to assign event guid for this particular eh_guid..

 

I try evm_hdr table using..different field like event code,partner code etc..but still could not reach to unique or 1 event guid assign to particular eh_guid.

 

is inbuild event guid for this eh_guid in 0SCEM_01 datasource..

 

Thanks

chan

Re: SAP en iphone desde cualquier parte

$
0
0

Hola Antonio,

 

Debes hacer un redireccionamiento en el router de la dirección ip pública con la privada.

 

De esta forma cuando te vayas a conectar desde afuera, vas a poder acceder sin ningún problema a la aplicación.

 

Normalmente esta solicitud se le hace al personal de TI del cliente.

 

Espero haberte ayudado.

 

Saludos

Re: Making a dynamic image appear blank

$
0
0

Never mind.  I'm not thinking straight.  A Suppression formula works just fine.

Re: SAP en iphone desde cualquier parte

$
0
0

Otro punto importante es tener el puerto 8443 abierto en tu router.

 

Existen varias páginas en internet para verificar si un puerto está abierto o no.

 

Saludos

Re: How to run a job on last day of every month

$
0
0

Just a little side note: You can schedule the job every day, but whether the program runs can be controlled by the program.

 

So create a selection screen variant for it with dynamic date calculation, and if that date is the last date of any month, then continue. Else exit.

 

You can do quite a few funky things with selection screen dynamic fields to send runtime information to the parameters instead of coding it all yourself.

 

Downside is that folks might be able to run the program, so you might want to check sy-batch and also that it is only running that variant and protect the variant (see transaction VARCH). You can also create it in client 000, then it can only be changed there as a system variant. Then it does only that.

 

Cheers,

Julius


Re: SQLCMD Question

$
0
0

You can use CASE in your SELECT statement.

 

CASE WHEN T2.OnHand - T2.IsCommited > 10 THEN 'Y' ELSE 'N' END

Re: remove privileges not allowed

$
0
0

When we add it in IDM it apply on the back end system, for the privileges that has GRC integration and others that not, the standard mx privileges I can do remove withouth problems.

the comunication user has the Sap_all and sap_new profile and also the integrations roles, this problem beguns after the upgrade to sp9

SLD services

$
0
0

Hi Guys,

Our client is using SAP 9.0 PL 11 and randomly SLD breaks without giving us any error message.

We created a script to refresh the services every 12 midnight, but still we encounter random issues with SLD.

If you check SLD status, it says "started" but when we restart the service--it doesn't start at all and it returns a status of “stopping”.

 

The only solution is to restart the server and we all know that this is not a good solution. Any ideas or any log file that we can use to debug this issue?

 

Thanks in advance!

Regards,

Darius

Re: Measuring the Success of Design Thinking?

Re: RE: Replication of Customer master data from ERP to Cloud

$
0
0

Rohan,

 

By now you should be hopefully be further ahead in the integration.

 

QQ:

 

If you brought over all those account group types (Sold-to, Ship-to, etc), they become just another C4C account and may even be redundant.

 

Did the project accept that result of multiple accounts that are simliar ?

Or did you scale back and just send Sold-tos only ?

Viewing all 8667 articles
Browse latest View live




Latest Images