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

Re: SAPUI5 on eclipse

$
0
0

Yuval,


var oModel = new sap.ui.model.odata.ODataModel(  

                             "http://gw.esworkplace.sap.com/sap/opu/odata/IWBEP/RMTSAMPLEFLIGHT_2",

                                                  false,

                                                  "GW@ESW",

                                                  "ESW4GW");


I understand that this is the url of the odata service within sap server.

This URL is being referred in UI5 development , but not in Integration Gateway .

 

Integration Gateway comes into action , if we want to connect to non sap data sources, which is nt your case. The plugin of Integration gateway installed in eclipse and the component of Integration gateway in SMP 3.0 is not needed , since to connect to SAP backend only.

 

Look at this picture for the different options to develop mobile apps in UI5.

 

SAP Gateway and SAP IG.png

Regards

Virinchy


Re: Stock transfer from IM storage location to EWM

$
0
0

Hi,

the "code for initiator of a communication chain" (which is my most favrourite name in EWM ) helps simply to distinguish the business process.

There are limits in the determination of a delivery type in ERP. In that case the CICC is additionaly determined or assigned in order to know what exactly should happen. I can not describe all of the available codes, most of the processes I have also not worked with. But most of them you will understand when you have the specific business scenarios, like advanced returns management, merchandise distribution or production staging. In the above case, there is no CICC, at least to my knowledge. In case it would be - the system would tell you that it can not find a document type and show the CICC in the log.

Brgds

Juergen

Re: Modification my own sales report

$
0
0

I also added results from RIN1 table but i get all the time same result. Sales Report in SAP show something diffrent. I missed something?

 

select t0.DocNum,t0.cardcode, sum(t1.LineTotal) as 'Suma' from OINV t0

 

inner join INV1 t1 on t0.DocEntry=t1.DocEntry

 

WHERE t0.FatherCard = [%2] and t0.CANCELED = 'N' and t0.docdate between [%0] and [%1]

 

group by t0.DocNum, t0.cardcode

 

 

 

union all

 

 

 

select t0.DocNum,t0.cardcode, -sum(t1.LineTotal) as 'Suma' from OCSI t0

 

inner join CSI1 t1 on t0.DocEntry=t1.DocEntry

 

WHERE t0.FatherCard = [%2] and t0.CANCELED = 'N' and t0.docdate between [%0] and [%1]

 

group by t0.DocNum, t0.cardcode

 

 

union all

 

 

select t0.DocNum,t0.cardcode, -sum(t1.LineTotal) as 'Suma' from ORIN t0

 

inner join RIN1 t1 on t0.DocEntry=t1.DocEntry

 

WHERE t0.FatherCard = [%2] and t0.CANCELED = 'N' and t0.docdate between [%0] and [%1]

 

group by t0.DocNum, t0.cardcode

Re: Standard Dashboards

$
0
0

You can use all the versions of Dashboards for the Edge version of the BO server.

 

Dashboards departmental version includes all the features so this version is also available for BO edge version .

 

Other versions include personal edition etc

Re: Problema campo definido del usuario

$
0
0

HOLA ROSY

 

FIJATE QUE NECESITO REPLICAR EL INFORME DE ANÁLISIS DE VENTAS POR ARTICULO, Y DEMAS POQUE NECESITO AGREGARLE COLUMNAS

 

PERO:

 

TENGO EL SIGUIENTE QUERY PERO ME ARROJA DIFERENCIAS EN ALGUNOS ARTICULOS CUANDO  ESTOS TIENEN DESCUENTOS, FACTURAS DE ANTICIPOS, O ESTAN ABIERTOS.

 

EN FIN CUADRA EN UN 80 %, NECESITO EL 100% ME PODRIAN AYUDAR POR FAVOR

 

 

 

SELECT  ItemCode,  

        Sum(TotFac) - SUM(TotNC) as  'FacturadoNeto',  

        Sum(GBrutaFac)-SUM(GbrutaNC) as  'GBruta',  

        Round((Sum(GBrutaFac)-SUM(GbrutaNC))/case when  (Sum(TotFac) - SUM(TotNC))= 0 then 1 else (Sum(TotFac) - SUM(TotNC)) end  *100,2) as '% Margen'  

FROM (  

SELECT   

ItemCode = T1.ItemCode,

Marca = (Select T2.FirmName from OMRC T2 JOIN OITM T3 on T2.FirmCode = T3.FirmCode where T3.ItemCode=T1.Itemcode),

TotFac = Sum(T1.Linetotal),   

GBrutaFac = SUM(T1.GrssProfit),  

TotNc= 0,  

GbrutaNC = 0  

FROM OINV T0 (NOLOCK) INNER JOIN INV1 T1 (NOLOCK) ON T0.DocEntry = T1.DocEntry                                   

WHERE (T0.[DocDate] >='20140101' AND  T0.[DocDate] <='20141231')

  and T0.DocType  = 'I' -- solo facturas por articulos  

Group by  T1.ItemCode 

Union  

SELECT   

ItemCode = T1.ItemCode,  

Marca = (Select T2.FirmName from OMRC T2 JOIN OITM T3 on T2.FirmCode = T3.FirmCode where T3.ItemCode=T1.Itemcode),

TotFac = 0,  

GBrutaFac = 0,  

TotNc= Sum(T1.LineTotal),   

GbrutaNC = SUM(T1.GrssProfit)  

FROM ORIN T0 (NOLOCK) INNER JOIN RIN1 T1 (NOLOCK) ON T0.DocEntry = T1.DocEntry                                   

WHERE (T0.[DocDate] >='20140101' AND  T0.[DocDate] <='20141231')

  and T0.DocType  = 'I' -- solo NC por articulos  

Group by T1.ItemCode

Union

SELECT   

ItemCode = T1.ItemCode,  

Marca = (Select T2.FirmName from OMRC T2 JOIN OITM T3 on T2.FirmCode = T3.FirmCode where T3.ItemCode=T1.Itemcode),

TotFac = 0,  

GBrutaFac = 0,  

TotNc= Sum(T1.LineTotal),   

GbrutaNC = SUM(T1.GrssProfit)  

FROM ODPI T0 (NOLOCK) INNER JOIN DPI1 T1 (NOLOCK) ON T0.DocEntry = T1.DocEntry                                   

WHERE (T0.[DocDate] >='20140101' AND  T0.[DocDate] <='20141231')    

  and T0.DocType  = 'I' -- solo Fact Anticipos por articulos  

Group by T1.ItemCode

) T  

Group by  ItemCode, Marca

Re: Modificar Estatus de Facturas

$
0
0

HOPLA JAVIER QUIERO REPLICAR EL INFORME DE ANALISIS DE VENTAS PARA AGREGAR COLUMNAS PERO:

 

TENGO EL SIGUIENTE QUERY PERO ME ARROJA DIFERENCIAS EN ALGUNOS ARTICULOS CUANDO  ESTOS TIENEN DESCUENTOS, FACTURAS DE ANTICIPOS, O ESTAN ABIERTOS.

 

EN FIN CUADRA EN UN 80 %, NECESITO EL 100% ME PODRIAN AYUDAR POR FAVOR

 

 

 

SELECT  ItemCode,  

        Sum(TotFac) - SUM(TotNC) as  'FacturadoNeto',  

        Sum(GBrutaFac)-SUM(GbrutaNC) as  'GBruta',  

        Round((Sum(GBrutaFac)-SUM(GbrutaNC))/case when  (Sum(TotFac) - SUM(TotNC))= 0 then 1 else (Sum(TotFac) - SUM(TotNC)) end  *100,2) as '% Margen'  

FROM (  

SELECT   

ItemCode = T1.ItemCode,

Marca = (Select T2.FirmName from OMRC T2 JOIN OITM T3 on T2.FirmCode = T3.FirmCode where T3.ItemCode=T1.Itemcode),

TotFac = Sum(T1.Linetotal),   

GBrutaFac = SUM(T1.GrssProfit),  

TotNc= 0,  

GbrutaNC = 0  

FROM OINV T0 (NOLOCK) INNER JOIN INV1 T1 (NOLOCK) ON T0.DocEntry = T1.DocEntry                                   

WHERE (T0.[DocDate] >='20140101' AND  T0.[DocDate] <='20141231')

  and T0.DocType  = 'I' -- solo facturas por articulos  

Group by  T1.ItemCode 

Union  

SELECT   

ItemCode = T1.ItemCode,  

Marca = (Select T2.FirmName from OMRC T2 JOIN OITM T3 on T2.FirmCode = T3.FirmCode where T3.ItemCode=T1.Itemcode),

TotFac = 0,  

GBrutaFac = 0,  

TotNc= Sum(T1.LineTotal),   

GbrutaNC = SUM(T1.GrssProfit)  

FROM ORIN T0 (NOLOCK) INNER JOIN RIN1 T1 (NOLOCK) ON T0.DocEntry = T1.DocEntry                                   

WHERE (T0.[DocDate] >='20140101' AND  T0.[DocDate] <='20141231')

  and T0.DocType  = 'I' -- solo NC por articulos  

Group by T1.ItemCode

Union

SELECT   

ItemCode = T1.ItemCode,  

Marca = (Select T2.FirmName from OMRC T2 JOIN OITM T3 on T2.FirmCode = T3.FirmCode where T3.ItemCode=T1.Itemcode),

TotFac = 0,  

GBrutaFac = 0,  

TotNc= Sum(T1.LineTotal),   

GbrutaNC = SUM(T1.GrssProfit)  

FROM ODPI T0 (NOLOCK) INNER JOIN DPI1 T1 (NOLOCK) ON T0.DocEntry = T1.DocEntry                                   

WHERE (T0.[DocDate] >='20140101' AND  T0.[DocDate] <='20141231')    

  and T0.DocType  = 'I' -- solo Fact Anticipos por articulos  

Group by T1.ItemCode

) T  

Group by  ItemCode, Marca

Re: Obtener todos los SN con facturas de anticipos pendiente a arrastrar

$
0
0

Alesandro necesito tu ayuda para rteplicar erl informe de analisi de ventas para agregar campos pero:

 

TENGO EL SIGUIENTE QUERY PERO ME ARROJA DIFERENCIAS EN ALGUNOS ARTICULOS CUANDO  ESTOS TIENEN DESCUENTOS, FACTURAS DE ANTICIPOS, O ESTAN ABIERTOS.

 

EN FIN CUADRA EN UN 80 %, NECESITO EL 100% ME PODRIAN AYUDAR POR FAVOR

 

 

 

SELECT  ItemCode,  

        Sum(TotFac) - SUM(TotNC) as  'FacturadoNeto',  

        Sum(GBrutaFac)-SUM(GbrutaNC) as  'GBruta',  

        Round((Sum(GBrutaFac)-SUM(GbrutaNC))/case when  (Sum(TotFac) - SUM(TotNC))= 0 then 1 else (Sum(TotFac) - SUM(TotNC)) end  *100,2) as '% Margen'  

FROM (  

SELECT   

ItemCode = T1.ItemCode,

Marca = (Select T2.FirmName from OMRC T2 JOIN OITM T3 on T2.FirmCode = T3.FirmCode where T3.ItemCode=T1.Itemcode),

TotFac = Sum(T1.Linetotal),   

GBrutaFac = SUM(T1.GrssProfit),  

TotNc= 0,  

GbrutaNC = 0  

FROM OINV T0 (NOLOCK) INNER JOIN INV1 T1 (NOLOCK) ON T0.DocEntry = T1.DocEntry                                   

WHERE (T0.[DocDate] >='20140101' AND  T0.[DocDate] <='20141231')

  and T0.DocType  = 'I' -- solo facturas por articulos  

Group by  T1.ItemCode 

Union  

SELECT   

ItemCode = T1.ItemCode,  

Marca = (Select T2.FirmName from OMRC T2 JOIN OITM T3 on T2.FirmCode = T3.FirmCode where T3.ItemCode=T1.Itemcode),

TotFac = 0,  

GBrutaFac = 0,  

TotNc= Sum(T1.LineTotal),   

GbrutaNC = SUM(T1.GrssProfit)  

FROM ORIN T0 (NOLOCK) INNER JOIN RIN1 T1 (NOLOCK) ON T0.DocEntry = T1.DocEntry                                   

WHERE (T0.[DocDate] >='20140101' AND  T0.[DocDate] <='20141231')

  and T0.DocType  = 'I' -- solo NC por articulos  

Group by T1.ItemCode

Union

SELECT   

ItemCode = T1.ItemCode,  

Marca = (Select T2.FirmName from OMRC T2 JOIN OITM T3 on T2.FirmCode = T3.FirmCode where T3.ItemCode=T1.Itemcode),

TotFac = 0,  

GBrutaFac = 0,  

TotNc= Sum(T1.LineTotal),   

GbrutaNC = SUM(T1.GrssProfit)  

FROM ODPI T0 (NOLOCK) INNER JOIN DPI1 T1 (NOLOCK) ON T0.DocEntry = T1.DocEntry                                   

WHERE (T0.[DocDate] >='20140101' AND  T0.[DocDate] <='20141231')    

  and T0.DocType  = 'I' -- solo Fact Anticipos por articulos  

Group by T1.ItemCode

) T  

Group by  ItemCode, Marca

Re: Deteccion de Usuario (Rendimiento)

$
0
0

HOLA IVAN

 

REQUIERO DE TU APOYO PARA REPLICAR EL INFORME DE ANALISIS DE VENTAS PARA AGREGARLE UN PAR DE CAMPOS PERO:

 

TENGO EL SIGUIENTE QUERY PERO ME ARROJA DIFERENCIAS EN ALGUNOS ARTICULOS CUANDO  ESTOS TIENEN DESCUENTOS, FACTURAS DE ANTICIPOS, O ESTAN ABIERTOS.

 

EN FIN CUADRA EN UN 80 %, NECESITO EL 100% ME PODRIAN AYUDAR POR FAVOR

 

 

 

SELECT  ItemCode,  

        Sum(TotFac) - SUM(TotNC) as  'FacturadoNeto',  

        Sum(GBrutaFac)-SUM(GbrutaNC) as  'GBruta',  

        Round((Sum(GBrutaFac)-SUM(GbrutaNC))/case when  (Sum(TotFac) - SUM(TotNC))= 0 then 1 else (Sum(TotFac) - SUM(TotNC)) end  *100,2) as '% Margen'  

FROM (  

SELECT   

ItemCode = T1.ItemCode,

Marca = (Select T2.FirmName from OMRC T2 JOIN OITM T3 on T2.FirmCode = T3.FirmCode where T3.ItemCode=T1.Itemcode),

TotFac = Sum(T1.Linetotal),   

GBrutaFac = SUM(T1.GrssProfit),  

TotNc= 0,  

GbrutaNC = 0  

FROM OINV T0 (NOLOCK) INNER JOIN INV1 T1 (NOLOCK) ON T0.DocEntry = T1.DocEntry                                   

WHERE (T0.[DocDate] >='20140101' AND  T0.[DocDate] <='20141231')

  and T0.DocType  = 'I' -- solo facturas por articulos  

Group by  T1.ItemCode 

Union  

SELECT   

ItemCode = T1.ItemCode,  

Marca = (Select T2.FirmName from OMRC T2 JOIN OITM T3 on T2.FirmCode = T3.FirmCode where T3.ItemCode=T1.Itemcode),

TotFac = 0,  

GBrutaFac = 0,  

TotNc= Sum(T1.LineTotal),   

GbrutaNC = SUM(T1.GrssProfit)  

FROM ORIN T0 (NOLOCK) INNER JOIN RIN1 T1 (NOLOCK) ON T0.DocEntry = T1.DocEntry                                   

WHERE (T0.[DocDate] >='20140101' AND  T0.[DocDate] <='20141231')

  and T0.DocType  = 'I' -- solo NC por articulos  

Group by T1.ItemCode

Union

SELECT   

ItemCode = T1.ItemCode,  

Marca = (Select T2.FirmName from OMRC T2 JOIN OITM T3 on T2.FirmCode = T3.FirmCode where T3.ItemCode=T1.Itemcode),

TotFac = 0,  

GBrutaFac = 0,  

TotNc= Sum(T1.LineTotal),   

GbrutaNC = SUM(T1.GrssProfit)  

FROM ODPI T0 (NOLOCK) INNER JOIN DPI1 T1 (NOLOCK) ON T0.DocEntry = T1.DocEntry                                   

WHERE (T0.[DocDate] >='20140101' AND  T0.[DocDate] <='20141231')    

  and T0.DocType  = 'I' -- solo Fact Anticipos por articulos  

Group by T1.ItemCode

) T  

Group by  ItemCode, Marca


Re: sap.designstudio.sdk.Component

Contabilidad Electrónica (México )

$
0
0

Buenas tardes.

 

Existe una nueva versión de Ley en México para la contabilidad que involucra enviar XML de tres cosas al SAT (Balanza, Catálogos y Pólizas).

SAP BO ya tiene la solución para Balanza y Catálogos. Al parecer ya esta por sacar la solución para las pólizas.

 

Tengo una duda con respecto a 2 cuentas en el Código agrupador del SAT, las cuales no se como se van a configurar en SAP, ya que no se pueden registrar ventas a crédito y ventas de contado actualmente.

 

Por lo que entiendo el SAT requiere que separe mis ventas que son a crédito y las que son de contado, mi pregunta es ¿Como configurar esto en SAP?


Les adjunto el código agrupador de estas cuentas:


401.05 Ventas y/o servicios gravados al 0% de contado

401.06 Ventas y/o servicios gravados al 0% a crédito

 

De ante mano les agradezco.

 

Saludos y excelente tarde!!!!

Search using multiple material numbers

$
0
0

Hi,

 

This is related through the search using material material numbers.

 

 

I would like to perform a search for Multiple material number's(Ex: 10 material numbers) and get the results for the same.

 

 

Can I copy and add all the Material numbers into the search criteria and perform a search? I tried but couldn't copy all the 10 material numbers in the material  field but doesn't give me the result. I tried adding comma in between the material numbers and still no result.

 

 

This is the similar way of how we achieve in SE16n (Multiple Selection by Field) where I can copy n material numbers in one step and execute the process.

 

Can this be achieved it in anyways in MDG Search mechanism?

 

Thanks

Bala

Re: Method/Query to identify receipt from production is from return component or normal receipt from production

$
0
0

Hi Karthik,

 

FYI : It is not base entry, should be Base type.

 

Thanks & Regards,

Nagarajan

Re: Distribution Rules on G/L Account type Expense not relate to Journal Entry

$
0
0

Hi Gordon,

 

Payment has same amount on payment means and document selected: IDR 20.000

no payment on account.

 

FYI, I use payment means Credit Card so I can select Expense G/L Account and post it on Debit JE.

 

Thank you. Regards,

Christfanie

Re: MBEW Material valuation but in group currency

$
0
0

Hello Jayapal,

 

Thanks for the answer!

 

I could not manage to use this transaction but I do not want to change anything on the system either. So this looks to me a kind of consolidation thing which seems not available for our erp.

Anyway I'm searching a kind of display table that can be used in customizing reports such as mbew, ckmlcr.

 

BR

Jonathan

Re: Serial Number Error During Goods Receipt of Refurbishment Order.

$
0
0

Please do not ignore moderation.. Your discussion was rejected just one hour ago.. Ignoring moderation and posting the same question again is not a smart way to achieve the solution of your problem.. Just spend some time to search about your query.. You've already got the search result in the reason section. If you are not able to understand about how to find the reason of rejection discussion and what to do next, then please have a look into the blog post Why my Discussion got rejected and what to do next ?


Re: Wrong Pin error while renewing SAprouter certificate

$
0
0

Hi Mamta,

 

Did you goted the solution as mark issue.

If yes kindly share the solution, i am getting same issue.

 

Waiting for ur reply.

 

Thanks

Santosh

Re: Serial Number Error During Goods Receipt of Refurbishment Order.

$
0
0

Please click the Actions icon on top right and then go to the Notifications tab. The moderator left you a message.

 

By the way you are invited to the 2015 blog contest " why did I ignore moderation"

Re: DBA question: "sticky" statistic?

$
0
0

Such as...

 

use PRD

 

sp_modifystats "PRD.SAPSR3.ALCLASTOOL", SETNAME, REMOVE_STICKINESS

 

is it correct?

 

Thank you.

Re: How to read long text for Inspection Characteristic from QE13 ?

$
0
0

Hi

 

Please check the details from the table STXH and then use it in the FM - READ_TEXT.

Re: PCR Action

$
0
0

Dear Remi,

 

Many thanks for your helpful answers and advises. The schema is working perfectly now.

 

Regards,

Viewing all 8713 articles
Browse latest View live




Latest Images