Author Archive fjourneau

Get your development access key

It is stored into table DEVACCESS.

Search tag: dev access, clé de dev

Program to check TO

Program: /SDF/CMO_TR_CHECK

/!\ It is delivered in updates of ST-PI component. You can run this program in the normal system or from SAP solution manager.

Search tag: TR, OT, transport order, transport request

Check missing authorization objects

Just after your authorization error, launch transaction SU53.

Send mail using BCS class

This is a basic example to sent mail using BCS class.

Read More

Values for TRTYP (transaction type)

Main values :
A : Display (Afficher)
V : Change (Modifier)
H : Add/Create (Ajouter/Créer)
Read More

Demo programs for ALV Tree

Check theses programs using class CL_GUI_ALV_TREE:

SAPTLIST_TREE_CONTROL_DEMO
BCALV_TREE_DEMO
Read More

EXIT at check/save on purchase order (ME21n/ME22n)

Exit triggered at check, and before SAVE on ME21n/ME22n : EXIT_SAPMM06E_012.
Exit triggered after save on ME21n/ME22n : EXIT_SAPMM06E_013.

Search tag: sauvegarder, commande, achat, PO, PReq, requisition

Change paragraph text width

Convert table text to another lenght :


  CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
    EXPORTING
      line_width_src              = 79
      line_width_dst              = 255
    TABLES
      content_in                  = li_input_text_79
      content_out                 = li_input_text_whished_at_255
    EXCEPTIONS
      err_line_width_src_too_long = 1
      err_line_width_dst_too_long = 2
      err_conv_failed             = 3
      OTHERS                      = 4.

 

Convert string char to table :


  CALL FUNCTION 'SO_STRING_TO_TAB'
    EXPORTING
      content_str = lw_string
    TABLES
      content_tab = li_input_text_whished_at_255.

 

Search tag: convert, conversion, text, texte

 

Test/Play with regular expressions (regex)

Launch program : DEMO_REGEX_TOY.

Read More