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

Process Flow UI element and OData service change detection.

$
0
0

hello,

 

we have an automated process that takes a document from a third party and performs various actions on it, e.g. checks that the document is in the correct format, that the data is valid, etc. etc. There are about 5 steps involved and the process can take some time to complete.

 

we want to build an app to monitor the progress of the document through this process.

 

the automated process records info about each step in a table, e.g. start and end date of the step, errors encountered, etc . 

 

the table has been exposed as an oData service.

 

the app that we want to build will use the Process Flow UI element (is this the best solution?).

 

so, the problem is - how can we detect changes in the oData service so that the Process Flow UI element can be updated?

 

the Explored examples all seem to deal with static cases.

 

any thoughts/suggestions greatly appreciated.

 

cheers

 

Pas.


Re: RFC To file Interface

$
0
0

Pankaj,

 

can you explain more on this custom module ? how does it fetching the 3 output fields ? is the custom module calling ECC system or any webservice ?

 

Where is the custom module called sender or receiver channel ?

 

So if you want to send the file to the location depending on the output of the custom module then you need to use Dynamic configuration in the same custom module or mapping and then map the output to the required folder.

 

Br,

Manoj

Re: C4C custom BO odata service consume in HCP

$
0
0

Hi Naveen,

 

Have you created communication arrangement for your ODATA service. if yes, are you using the same user maintained in communication arrangement while calling the service.

 

Thanks, Pradeep.

Re: Mass Data Run Save Failed Problem

$
0
0

Hi Thu Thu,

 

As suggested by @Saurabh

You can set the flag when data is created and saved, so that next time the MDRO will pick the failed records.

 

Thanks, Pradeep.

Re: What is the best way to upgrade HANA from SPS 11 to SPS 12?

$
0
0

Hi Shinglon,

 

There are three methods for downloading an SAP HANA installation medium:

  1. Download from Service Marketplace (SMP)
  2. Use the Check for Updates functionality in the SAP HANA studio
  3. Use the Maintenance Optimizer (MOPZ) in the SAP Solution Manager

 

For updating, you can choose one of the following three method:

  1. Using the Graphical User Interface - hdblcmgui
  2. Using the Command-Line Interface - hdblcm
  3. Using the Web User Interface

 

For more information, please refer to Updating the SAP HANA System - SAP HANA Server Installation and Update Guide - SAP Library.

 

Regards,

Ning

Re: An Extra Column of Rate is required under purchase order history tab

Re: S/4 HANA Future Releases Roadmap

$
0
0

Hi Nagendra,

 

Thanks for that.

 

I understand the release cycles of S/4 HANA.

 

What I want to know is what are the functionalities coming up in the next release say On-premise 1610?

 

Is there any document for that?

 

Regards,

Subhasish

How to create Business partner with sales area company code using BAPI or FM

$
0
0

Hi,

 

I am trying to find the solution to create business partner with sales area and company all at once. I couldn't find any BAPI or FM or Class which does all these in one go. Any help will be great. I am looking solution for S/4HANA .


Re: Data issue in Recur. Payments/Deds.

$
0
0

Start by looking at the WT's characteristics in table T511.

Re: Native SQL Dynamic Insert

$
0
0

Thank you for your answers, but i need to insert data in remote Oracle database, not the local SAP system. Can I use the ADBC to access remote database ?

How to access remote Database with ADBC

$
0
0

My question is as above. Can you give me an example with ADBC. I need to know how to build a connection, execute a sql statement, and disconnected with ADBC. Thank you all.

How to create business partner with sales area and company all at once in S/4HANA

$
0
0

I am trying to find the solution to create business partner with sales area and company all at once. I couldn't find any BAPI or FM or Class which does all these in one go. Any help will be great. I am looking solution for S/4HANA .

Re: Stock in hand showing Double Qty for Some items in Query

$
0
0

Hi, Shahan...

 

Try this query:

 

Select DISTINCT x.DocDate,x.Itemcode ,ItemName,GroupName,x.[Whse], sum([GRPO_QTY]) [GRPO_QTY] ,SUM([Retrun_QTY])[Retrun_QTY]  , sum ([P.CreditNote_QTY])[P.CreditNote_QTY], sum([GR_Qty])[GR_Qty], SUM([GI_Qty])[GI_Qty],SUM([ST_Qty])[ST_Qty]  , SUM ([Del_qty])[Del_Qty],SUM([Del_RET_Qty])[Del_RET_Qty],SUM([S.CreditNote_Qty])[S.CreditNote_Qty]  , TA.OnHand WhseOnHand
from
(  select Distinct OPDN.DocDate AS 'DocDate',OITB.ItmsGrpNam as 'GroupName',PDN1.ItemCode AS 'ItemCode', PDN1.Dscription AS 'ItemName',PDN1.WhsCode as 'Whse' ,sum(PDn1.Quantity)[GRPO_QTY] ,'0' [Retrun_QTY] ,'0'[P.CreditNote_QTY],'0'[GR_Qty] ,'0'[GI_Qty],'0'[ST_Qty] ,'0' [Del_Qty] ,'0'[Del_RET_Qty],'0'[S.CreditNote_Qty]from PDN1  Inner join OPDN on PDN1.Docentry = Opdn.docentry  inner join OITM on PDN1.ItemCode = OITM.ItemCode                                                                       --GRPO--  Inner join OITB on OITM.ItmsGrpCod = OITB.ItmsGrpCod  where OPDN.CANCELED = 'N'  group by PDN1.Itemcode,PDN1.WhsCode, OPDN.DocDate,OITB.ItmsGrpNam,PDN1.Dscription  Union all  select Distinct  ORPD.DocDate AS 'DocDate',OITB.ItmsGrpNam as 'GroupName',RPD1.Itemcode,RPD1.Dscription,RPD1.WhsCode as ' whse','0' [GRPO_QTY],sum(RPD1.Quantity)[Retrun_QTY] ,'0'[P.CreditNote_QTY],'0'[GR_Qty] ,'0'[GI_Qty] ,'0'[ST_Qty],'0' [Del_Qty] ,'0'[Del_RET_Qty],'0'[S.CreditNote_Qty]from RPD1  Inner join ORPD ON RPD1.DocEntry = ORPD.DocEntry                                                              --GRPO-Retrun--  inner join OITM on RPD1.ItemCode = OITM.ItemCode  Inner join OITB on OITM.ItmsGrpCod = OITB.ItmsGrpCod  Where ORPD.CANCELED = 'N'  group by RPD1.ItemCode,RPD1.WhsCode, ORPD.DocDate,OITB.ItmsGrpNam,RPD1.Dscription  union all  select Distinct  ORPC.DocDate AS 'DocDate',OITB.ItmsGrpNam as 'GroupName',RPC1.Itemcode,RPC1.Dscription, RPC1.WhsCode as ' whse' ,'0'[GRPO_QTY],'0' [Retrun_QTY],sum(RPC1.Quantity)[P.CreditNote_QTY],'0'[GR_Qty],'0'[GI_Qty] ,'0'[ST_Qty],'0' [Del_Qty] ,'0'[Del_RET_Qty],'0'[S.CreditNote_Qty]from RPC1  Inner Join ORPC on RPC1.DocEntry = ORPC.DocEntry                                                          --Purchase . CN--  inner join OITM on RPC1.ItemCode = OITM.ItemCode  Inner join OITB on OITM.ItmsGrpCod = OITB.ItmsGrpCod  Where ORPC.CANCELED = 'N'  group by RPC1.Itemcode,RPC1.WhsCode,ORPC.DocDate,OITB.ItmsGrpNam,RPC1.Dscription  union all  select Distinct  OIGN.DocDate as 'DocDate',OITB.ItmsGrpNam as 'GroupName',IGN1.Itemcode,IGN1.Dscription, IGN1.WhsCode as 'whse' ,'0'[GRPO_QTY],'0' [Retrun_QTY],'0' [P.CreditNote_QTY] ,Sum(IGN1.Quantity)[GR_Qty],'0'[GI_Qty] ,'0'[ST_Qty],'0' [Del_Qty] ,'0'[Del_RET_Qty] ,'0'[S.CreditNote_Qty]from IGN1  inner join OIGN on IGN1.DocEntry =OIGN.DocEntry  inner join OITM on IGN1.ItemCode = OITM.ItemCode                                                                                                 --GR--  Inner join OITB on OITM.ItmsGrpCod = OITB.ItmsGrpCod  Where OIGN.CANCELED = 'N'  group by IGN1.Itemcode,IGN1.WhsCode,OIGN.DocDate,OITB.ItmsGrpNam,IGN1.Dscription  union all  select Distinct  OIGE.DocDate as 'DocDate',OITB.ItmsGrpNam as 'GroupName',IGE1.Itemcode,IGE1.Dscription, IGE1.WhsCode as 'whse' ,'0'[GRPO_QTY],'0' [Retrun_QTY],'0' [P.CreditNote_QTY] ,'0' [GR_Qty] ,sum(IGE1.Quantity)[GI_Qty],'0'[ST_Qty],'0' [Del_Qty] ,'0'[Del_RET_Qty] ,'0'[S.CreditNote_Qty]from IGE1  Inner Join OIGE on IGE1.DocEntry = OIGE.DocEntry                                                                            --GI--  inner join OITM on IGE1.ItemCode = OITM.ItemCode  Inner join OITB on OITM.ItmsGrpCod = OITB.ItmsGrpCod  Where OIGE.CANCELED = 'N'  group by IGE1.Itemcode,IGE1.WhsCode,OIGE.DocDate,OITB.ItmsGrpNam,IGE1.Dscription  union all  select Distinct  OWTR.DocDate as 'DocDate',OITB.ItmsGrpNam as 'GroupName',WTR1.Itemcode,WTR1.Dscription,WTR1.FromWhsCod  as 'whse','0'[GRPO_QTY],'0' [Retrun_QTY],'0' [P.CreditNote_QTY] ,'0' [GR_Qty] ,'0' [GI_Qty] ,SUM(WTR1.Quantity)[ST_Qty],'0' [Del_Qty],'0'[Del_RET_Qty],'0'[S.CreditNote_Qty] from WTR1  Inner join OWTR on WTR1.DocEntry = OWTR.DocEntry                                                                    --ST--  inner join OITM on WTR1.ItemCode = OITM.ItemCode  Inner join OITB on OITM.ItmsGrpCod = OITB.ItmsGrpCod  Where OWTR.CANCELED = 'N'  group by WTR1.Itemcode,WTR1.FromWhsCod,WTR1.WhsCode,OWTR.DocDate,OITB.ItmsGrpNam,WTR1.Dscription  union all  select Distinct  ODLN.DocDate as 'DocDate',OITB.ItmsGrpNam as 'GroupName',DLN1.Itemcode,DLN1.Dscription,DLN1.WhsCode  as ' whse' ,'0'[GRPO_QTY],'0' [Retrun_QTY],'0' [P.CreditNote_QTY] ,'0' [GR_Qty] ,'0' [GI_Qty],'0'[ST_Qty] ,SUM(DLN1.Quantity)[Del_Qty],'0'[Del_RET_Qty] ,'0'[S.CreditNote_Qty] from DLN1  Inner Join ODLN on DLN1.DocEntry = ODLN.DocEntry  inner join OITM on DLN1.ItemCode = OITM.ItemCode                                                                --Delivery--  Inner join OITB on OITM.ItmsGrpCod = OITB.ItmsGrpCod  Where ODLN.CANCELED = 'N'  group by DLN1.Itemcode,DLN1.WhsCode,ODLN.DocDate,OITB.ItmsGrpNam,DLN1.Dscription  union all  select Distinct  ORDN.DocDate as 'DocDate',OITB.ItmsGrpNam as 'GroupName',RDN1.Itemcode,RDN1.Dscription,RDN1.WhsCode  as 'whse' ,'0'[GRPO_QTY],'0' [Retrun_QTY],'0' [P.CreditNote_QTY] ,'0' [GR_Qty] ,'0' [GI_Qty],'0'[ST_Qty],'0'[Del_Qty] ,SUM(RDN1.Quantity)[Del_RET_Qty] ,'0'[S.CreditNote_Qty]from RDN1  Inner Join ORDN on RDN1.DocEntry = ORDN.DocEntry  inner join OITM on RDN1.ItemCode = OITM.ItemCode                                                            --Delivery Return--  Inner join OITB on OITM.ItmsGrpCod = OITB.ItmsGrpCod  Where ORDN.CANCELED = 'N'  group by RDN1.Itemcode,RDN1.WhsCode,ORDN.DocDate,OITB.ItmsGrpNam,RDN1.Dscription  union all  select Distinct  ORIN.DocDate AS 'DocDate',OITB.ItmsGrpNam as 'GroupName',RIN1.Itemcode,RIN1.Dscription,RIN1.WhsCode  as 'whse' ,'0'[GRPO_QTY],'0' [Retrun_QTY],'0' [P.CreditNote_QTY] ,'0' [GR_Qty] ,'0' [GI_Qty],'0'[ST_Qty],'0'[Del_Qty] ,'0'[Del_RET_Qty],SUM(RIN1.Quantity)[S.CreditNote_Qty] from RIN1  Inner Join ORIN on RIN1.DocEntry = ORIN.DocEntry                                                                                  --Sales C.N--  inner join OITM on RIN1.ItemCode = OITM.ItemCode  Inner join OITB on OITM.ItmsGrpCod = OITB.ItmsGrpCod  Where ORIN.CANCELED = 'N'  group by RIN1.Itemcode,RIN1.WhsCode,ORIN.DocDate,OITB.ItmsGrpNam,RIN1.Dscription
) as X  Inner join OITW TA on x.Whse = TA.WhsCode and x.Itemcode = TA.ItemCode  and X.ItemCode = 'OTH000005418'  AND X.Whse = 'MN-WH'  AND DocDate BETWEEN '2015-08-01 00:00:00.000' AND '2016-08-31 00:00:00.000'
group by x.DocDate,x.Itemcode,x.[Whse],GroupName,ItemName, TA.OnHand

Regards,

 

JC.

Re: ADS Installation guide for 2004

$
0
0

Document is not released/SNO/CORE_ERROR_MSG/037 for note 682619.QQ截图20160904095234.png

QQ截图20160904095247.png

how to install?


Re: Solution Manager 7.2 Information

$
0
0

Can you post screenshots of you ABAP and JAVA stacks versions here so I can take a look in to it.

 

Thanks in advance

Yogesh


Re: Receiving HTTP 400 bad request when create content repository

$
0
0

Have you checked from the easyware side and made sure it accepted the certificate.

 

Regards,

David

Unexpected dutbound and dependent location demand

$
0
0

Even though there is consensus demand , heuristics still calculates the outbound location demand as well as dependent location demand.

 

Please refer the screen print attached and suggest  the possible reason for the heuristics behaviour.

Re: error 'ledger group 0L may not be used' in TBB1

$
0
0

Hi Noor,

 

Check report  FMGL_CHANGE_APPL_IN_LEDGER described in note 1766739 - Ledger group 0L disappears during upgrade.

 

This note can fix this issue.

 

Regards, Feng

Re: How to run a job for specified period

$
0
0

Hi Ujjwal

Did you try as below

 

Go to Period Values >> Other Period >. 15 mins and then save

In NO start After specify time 11 :31 so it will not run after 11:31 Am

 

It should work if you do this. Check the attached doc

 

Regards

Vinita

Re: Join between OIGN/IGN1 and OSRN

$
0
0

Hi Marli,

 

The tables you will need are OSRN, OITL, ITL1

Viewing all 1065 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>