Mostrando las entradas con la etiqueta ABAP. Mostrar todas las entradas
// //

ST03N y STAD

Esto lo tengo que comprobar, pero existen dos transacciones en SAP que loguean -segun explican- las veces que se usan, en un periodo de tiempo determinado, las transacciones en el sistema..


En Vistas de Análisis --> Perfil Transacción.
(...)
...las transacciones que se utilizan son ST03N y STAD...Aunque dudo mucho que guarden un control de un período tan largo como una año...


Leer más ...
// //

FAQ: SAPScripts

How do I create Boxes in SAPScript?
You can create Boxes in the SAPScript using the BOX command specifying the x,y co-ordinates and the width and the height
BOX XPOS '0' CM YPOS '0.5' CM WIDTH '9.2' CM HEIGHT '3.5' CM FRAME 8 TW.

How do I set tabs between the fields in display?
In the Paragraph Format tab, create a new paragraph format. In the "Tabs" Tab, enter the tab position and the alignment for the fields.

How do I create standard texts for the scripts?
You can create standard texts using the transaction SO10. Then to insert these standard texts in the SAPScript choose the menu, Insert->Text->Standard and choose the standard text that you want to choose.
Leer más ...
// //

Screen exit for standard trans

Introduction

SAP provides standard transactions to enter data into database. But a client may want to maintain some additional information in SAP other than what is provided.

To make provisions for this, additional screens have to be provided and additional fields must be added into appropriate database table.

Leer más ...
// // 2 comentarios

Funciones Obsoletas

Para obtener la lista de funciones obsoletas:

  1. Ingresamos a la transacción SE16 o SE16N (debemos contar con las autorizaciones correspondientes)
  2. Ponemos nombre de la tabla RODIR
  3. Tipo de Objeto "FUNC"
  4. Ponemos una "X" en el campo "Obsolete"
  5. Ejecutamos
Nos devolverá la lista de "Function Modules" del SAP que son obsoletas para nuestra versión de SAP.

Si tienes dudas, o problemas, recuerda que estamos respondiendo a todas las consultas en nuestro foro de Ayuda SAP en español.
Leer más ...
// //

Debugging a popup window

To debug a popup, create a text file on your local computer with below texts
[FUNCTION]
Command=/H
Title=Debugger
Type=SystemCommand

Place file on your desktop. To debug a popup drag and drop this file over the popup.

<source>
Leer más ...
// // 3 comentarios

Campos de una transacción

Un usuario en la comunidad oficial de SAP preguntó:
Estoy tratando de buscar todos los campos q tiene una transaccion. Hay alguna manera de saber todos los datos que tiene una transaccion sin tener que ir uno por uno y viendo su info.

El tema es que hay respuestas muy interesantes por este tema...
Leer más ...