venerdì 28 maggio 2021

Secretive adj

/ˈsiːkrɪtɪv/

Traducendo GEMJI ho imparato questo vocabolo.

English
Italiano
secretive adj(person: keeping secrets)riservato agg

He's so secretive he won't tell you anything unless you plead with him.

È così riservato che non racconta niente a meno che non lo si implori.

The legend says that in the year 2349 an adventurous young man hacked into the head of a Gemji prince - the most secretive and thriving high-class caste, unveiling a very well-kept secret.
La leggenda dice che nell’anno 2349 un giovane avventuroso ha hackerato la testa di un principe Gemji – l’alta casta più riservata e prospera – svelando un segreto molto ben custodito.

giovedì 20 maggio 2021

Da range a clausola where

  TYPES: BEGIN OF ty_range,
           tablename LIKE rsdstabs-prim_tab,
           frange_t TYPE ty_frange_t,
         END OF ty_range.
  TYPES: ty_range_t TYPE STANDARD TABLE OF ty_range.
  TYPES: ty_fields TYPE STANDARD TABLE OF rsdsfields.
  
  DATA: it_fields TYPE ty_fields.
  DATA: it_ranges TYPE ty_range_t.
  DATA: lv_selid TYPE rsdynsel-selid.
  DATA: lt_tables TYPE STANDARD TABLE OF rsdstabs.
  DATA: lt_where TYPE rsds_twhere.

  CALL FUNCTION 'FREE_SELECTIONS_INIT'
    EXPORTING
      kind         = 'T'
    IMPORTING
      selection_id = lv_selid
    TABLES
      tables_tab   = lt_tables.

  CALL FUNCTION 'FREE_SELECTIONS_DIALOG'
    EXPORTING
      selection_id    = lv_selid
      title           = 'Select WHERE criteria'
      as_window       = 'X'
      start_row       = 7
      start_col       = 10
    IMPORTING
      field_ranges    = it_ranges
    TABLES
      fields_tab      = it_fields
    EXCEPTIONS
      internal_error  = 1
      no_action       = 2
      selid_not_found = 3
      illegal_status  = 4
      OTHERS          = 5.

  CALL FUNCTION 'FREE_SELECTIONS_RANGE_2_WHERE'
    EXPORTING
      field_ranges  = it_ranges
    IMPORTING
      where_clauses = lt_where.

domenica 9 maggio 2021

L'anello di Salomone, Jonathan Stroud

L'anello di Salomone
di Jonathan Stroud
Editore: Salani


Lingua: Italiano | Numero di pagine: 407 | ISBN-13: 9788862564724 | Data di pubblicazione: 2011-04-07 | Traduzione di Riccardo Cravero | Genere: Narrativa & Letteratura - Umorismo - Fantasy

sabato 1 maggio 2021

SAPscript: testo legato alla valorizzazione della variabile

/EDATI_BANCA_P
*&t_banca-banka&
*&t_banca-stras&
*&t_banca-ort01&
/:IF &T_BANCA-BANKS& EQ 'IT '.
*&'Cod. ABI: 't_banca-abi& &'Cod. CAB: 't_banca-cab&
/:ELSE.
*&t_banca-str&&t_banca-bnklz&
/:ENDIF.