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

Re: license audit

$
0
0

Deepak is right, the license policy starts immediately and isn't tied to a GoLive date. Normally you will be audited annually, and although the time of year may vary, it will typically be in the fall, assuming your contract year follows the calendar year (you may have a different contract arrangement).

 

Every developer user counts, although sometimes the contract may read that developers who are SAP employees can be exempted. Your consultants count, however, if they use an SSCR key and/or access the Developer Workbench. If they are not on the project for the whole duration, but only for a short while, then be sure to not only lock the account, as Deepak suggests, but also to invalidate it in the date range. Locked accounts that are still valid are still counted in the audit. The audit does flag recently invalidated accounts, and if you are in the habit of trying to fool it by invalidating accounts ahead of the audit, then re-enabling them afterwards, that will become fairly obvious, so don't do that. However, if the invalidation is justified because they have actually left the project and are not coming back, then it is the right thing to do.

 

If you are worried about a brief surge of extra developers, then discuss it with your Account Rep.

 

Regards,

Matt


How to retrieve data in XML view/ getProperty in controller from a XML Model?

$
0
0

I have a problem in dealing with the XML model, I can't retrieve the model data in the XML view and I can't get any property from the controller.

Here is the XML document retrieved from the URL:

<GetUsersResponsexmlns="http://tempuri.org/">

          <a:User>

 

 

               <a:Age>22</a:Age>

 

               <a:Id>2</a:Id>

               <a:Name>Ahmad</a:Name>

          </a:User>

 

          <a:User>

 

 

               <a:Age>24</a:Age>

 

               <a:Id>3</a:Id>

               <a:Name>Hussam</a:Name>

          </a:User>

</GetUsersResult>

</GetUsersResponse>

Here is the Code:

var oModel=new sap.ui.model.xml.XMLModel();

  var aData = jQuery.ajax({

            type : "GET",

            contentType : "text/xml; charset=\"utf-8\"",

            url : "http://localhost:8745/UsersService/users",

            dataType : "text",

            async: false,

            success : function(data,textStatus, jqXHR) {

                oModel.setXML(data);  

            }

});

The XML was set to the Model correctly but I can't deal with it I also used oModel.loadData("http://localhost:8745/UsersService/users","",false); but it didn't work. I was trying to get a property using oModel.getProperty("/User/Name"); also tried "/User/Name/text()" but neither of them worked.

 

I tried to bind the model data in to a list in the XML view using the following code:

<List  id="list"  mode="{device>/listMode}"  select="handleListSelect"  items="{/User}" >

  <ObjectListItem  type="{device>/listItemType}"  press="handleListItemPress"  title="{Name}" >

  </ObjectListItem>

</List>

I also tried "{Name/text()}", but also it didn't worked for me.

I would be grateful if anyone could help me to get this done.


Regards,

Ahmed ElManawy,

Re: variables reportes nativos SAP

$
0
0

si en el menú vista activas la opción de información del sistema, y luego te posicionas sobre el campo que quieres añadir, en la parte inferior de la pantalla a la izquierda, te dice el número de variable que representa ese dato. Lo distinguirás por la etiqueta variable, justo antes de la tabla y campo que representa el dato.

Ojo, eso no quiere decir que esa variable la puedas usar en el PLD. El uso de variables es limitado.

Re: Crosstab subreport additional calculations

$
0
0

Unfortunately, this time I can't.  It contains confidential patient information.

 

I can give you screenshots of design/formulas, etc. if that is helpful.

Re: SAP HANA Cloud Connector - no connection due to SSL issue

$
0
0

Hi Markus,

 

it's a SAP JVM from a CE.

Exact version:

 

SAP Java Server VM (build 6.1.037 19.1-b02, Jan  3 2012 23:55:54 - 61_REL - optU - linux amd64 - 6 - bas2:164951 (mixed mode))

 

Is it preferred to use a default JRE, or is SAP JVM fine?

 

As mentioned, initially there was no .keystore file available on any of the users on the system (neither root, nor the <SID>adm user of the CE system. So I imported the certificate for both root and the home directory of sccadmin (which is /opt/sap/scc).

 

BR Timo

Re: Reporte de Ventas e Inventario

$
0
0

Hola Juan,

 

Gracias por tú respuesta, tenias razón ahora ahora el query ya me trae el numero de artículos por almacén.

 

Sólo que ahora tengo otro problema, tengo el campo stock total que es la suma del articulo en todos los almacenes, pero necesito la suma de artículos por almacén,  como cambie el query para resolver el problema 1, ahora el query me multiplica filas cuando mando traer el OnHand por almacén.

 

Anteriormente traía el stock total y el stock por almacén de forma correcta pero si antes traía 5 columnas ahora me manda 25, no se porque sucede esto.

 

el query quedo de está forma:

 

SELECT T0.ItemCode as IDArticulo, T0.Dscription Articulo, T0.OnHand AS 'Stock Total', T0.DistNumber Lote,

     T0.WhsCode IDAlmacen, T0.WhsName Almacen,

     T1.Onhand as Stock,

     T0.ItmsGrpCod IDGrupo,T0.ItmsGrpNam Grupo, T0.U_UnidadNegocio UnidadNegocio, T0.[Vendido],

     T0.U_Color Color, T0.U_Fabric Fabricante, T0.U_Modelo Modelo, T0.U_SeasonPr TemporadaPr ,

     T0.U_Year Año, T0.LastPurPrc UltimoPrecioCompra, T0.Price Precio

FROM

( SELECT T10.ItemCode, T10.Dscription, T11.OnHand, T12.DistNumber, T11.ItmsGrpCod, T13.ItmsGrpNam, T11.U_UnidadNegocio,

  T11.U_Color, T11.U_Fabric, T11.U_Modelo, T11.U_SeasonPr, T11.U_Year, T11.LastPurPrc, T14.Price, T16.WhsCode, T16.WhsName, t15.Onhand as Stock,

     'Vendido'=(SELECT Sum(OutQty) as Vendidos FROM OINM  WHERE TransType = '13'

               AND ItemCode = T10.ItemCode and Warehouse = T16.WhsCode GROUP BY OutQty)

     FROM INV1 T10 INNER JOIN OITM T11 ON T10.ItemCode = T11.ItemCode

     INNER JOIN OBTN T12 ON T12.ItemCode = T11.ItemCode

     INNER JOIN OITB T13 ON T13.ItmsGrpCod = T11.ItmsGrpCod

     INNER JOIN ITM1 T14 ON T14.ItemCode = T11.ItemCode

     INNER JOIN OITW T15 ON T11.ItemCode = T15.ItemCode AND T15.OnHand > 0

     INNER JOIN OWHS T16 ON T16.WhsCode = T15.WhsCode

     WHERE T11.Onhand > 0 and T14.PriceList = '1'

     GROUP BY T10.ItemCode, T10.Dscription, T11.OnHand, T12.DistNumber, T11.ItmsGrpCod, T13.ItmsGrpNam,

   T11.U_UnidadNegocio, T11.U_Color, T11.U_Fabric, T11.U_Modelo, T11.U_SeasonPr, T11.U_Year,

   T11.LastPurPrc, T14.Price, T16.WhsCode, T16.WhsName, T15.OnHand) T0

  INNER JOIN OITW T1 ON T0.ItemCode = T1.ItemCode AND T1.OnHand > 0

WHERE T0.ItemCode = '50644582059'

ORDER BY T0.ItemCode

 

Agradezco su apoyo.

Re: tremble in the windows taskbar

$
0
0

Patch level is 8. Yes you understood correct.

The description on the task is nothing else than the field label

 

I just found the root cause.

It is in the GUI Options > Interaction Design > Notifications 

Tooltip delay was set to Medium 0.5 seconds.

I changed it to No Tooltip and this behavior disappeared.

Re: Abap program to control status of process chain

$
0
0

I think that should be enough. Also you can create a custom table too to store the logs whenever you send the email or if there is any errors. This will be helpful in auditing purpose.

 

Thanks

Amit


Re: While trying to add authproxy plugin(in kepsal) through Cordova CLI, it gives following error.

Re: Visual Studio 2012

$
0
0

Hi  Alessandro Petrone.

 

 

I was read this post and I read other post that says that I must install first Visual Studio after SAP but my partner was installed first SAP and after I was installed VS.

 

 

And now I want to know how can I have the SAP template without reinstall.

 

 

Thanks and regards Pedro Lladó.

64bit Deploy with RTE control

$
0
0

Community:

 

 

According to the documentation (table 35-6) , These files are needed for RTE support:

pbrtc126.dll, tp15.dll, tp15_bmp.flt, tp15_css.dll, tp15_doc.dll, tp15_gif.flt, tp15_htm.dll, tp15_ic.dll, tp15_ic.ini, tp15_jpg.flt, tp15_obj.dll, tp15_pdf.dll, tp15_png.flt, tp15_rtf.dll,
tp15_tif.flt, tp15_tls.dll, tp15_wmf.flt, tp15_wnd.dll, tp4ole15.ocx

 

 

I created two MSI files to see what files are needed for 64bit deploy with RTE control

 

 

2014-10-14 11_39_34-PowerBuilder Runtime Packager.png

I have a MS SDK tool called ORCA that allows you to look inside a MSI file.

  

In the 32 bit deploy with RTF option checked -  PBCLTRT126.msi  Both PBRTC126.dll and all the affiliated files in the RTC folder (dlls and ocx) are packed into the MSI

32msi.png

 

BUT

 

In the 64 bit deploy with RTF option checked – PB64RT126.msi ONLY PBRTC126.dll is packed into the MSI – all the supportive files are NOT packed

.

64msi.png

 

I have not tried this out yet on a deployment machine – but – Am I smelling an ingredient messing from the Runtime soup?

 

Are these supportive files only available for 32 bit?

 

Are they not needed in 64 bit?

 

OR ……(is it an SAP deployment design flaw)?

 

Yakov

Re: copy of assignment field

$
0
0

Hi Mukthar,

thank you for your response.

Regards,

Shivaji

Re: Reverse Fixed Term Deposit Flow Type 1100

$
0
0

Hi Jain

 

You have reason, to reverse the flow 1100, the steps are the following:

 

 

1. In transaction FTR_EDIT I revesed the transaction.

 

2. Then the next step, in transaction TPM10 I can reversed the posting for the flow 1100.

 

Thats all.

 

Thanks a lot.

 

Best Regards

 

Adriana Rivera

Re: Change KPI status manually in SSM 10.0

$
0
0

Thank you Collin. I know it goes against the principle of KPIs in SSM but it has been very difficult to convince our client of this principle, as they want anyhow some KPIs to be evaluated manually. I will try the Subjective Assessment option.

 

Best regads,

Angel

Re: Lumira 1.19 bw connection to bex does not change visualization

$
0
0

Hi Antoine,

 

I have checked the my tow installations and the unique difference is the description of saplogon.

 

Incredible, but the problem appears only when is present the pipe character "|" in the description.

 

Thank for support and sharing

 

Claudio


Re: GRC Access Approver mobile Application

$
0
0

Love to install GRC Approval App at my company.

My question is: What is require for prototype? Can we do that out of box?

Re: Custom Code City Model “No SVG support”

$
0
0

Oh, and I forgot to mention; I even tried it from within the new NWBC 5.0 that comes with the 7.4 GUI.

Re: URGENT : ENV restore thru UJBR - Garbage charcaters - Could not view/run script???

$
0
0

Thanks, Vadim.

 

Source is BPC 10.0 system. I do not have the SP details. Due to the politics at the work place, access to source system is no more available. So, I have no access to source BC system.

 

Target is BPC 10.0 is HANA based. It is a 801 SP 5 box.

 

I do not have exact information about sourceversion other than that is is a BPC 10.0 box. I was told that it is a HANA box. But, I do not have any other information.

 

Now, I am at a situation whereby, I need to write everything from scratch. Need to redo the work for which I spent more than a year :-(

 

Regards,

Peri

Re: Error While creating massive storage bins

$
0
0

Hi Cathy,

 

Please use the below format

 

Template    CCCCCCACCC

Structure                 A

Start Value DR.03.A.06

End Value  DR.03.E.06

Increment   DR.03.1

how to create Transfer requirement with storage unit type ( SUT )

$
0
0

Hi ,

I meet a serious problem,in the storage type 030 there has two SUT (L,box).When i creat a transfer requirement from storage type 030 to 150 by PK23. It always automatically create TO with SUT 'L',but i want TO with box every time.And i found the TR's item has SUT information,but i don't know how to input it because of it couldn't input.

1123.png

 

I think if the TR with SUT 'box',the automatically create TO will be right.

Viewing all 8713 articles
Browse latest View live


Latest Images