SAP Archives

NAVIGASI #1

Dalam bagian ini kita akan belajar mengenai :

  • - Mengindentifikasi unsu-unsur dari standar window sistem
  • - Melakukan navigasi dalam system
  • - Menggunakan fungsi dasar dari help.

Pertama kali kita akan log in kedalam system melalui SAP logon Read the rest of this entry

Incoming search terms:

  • Favorites pada SAP easy access menu
  • pengertian sap
  • navigation pada sap
  • sap easy access menu
  • program raport
  • fungsi menu favorites pada SAP
  • perbedaan user menu dan sap standard menu dalam sap
  • scheduling agrement pada sap
  • pengolahan raport sd dengan excel
  • server qa sap adlah

ABAP Syntax (S-W)

S

SCROLL

Scrolls through lists

Syntax

SCROLL LIST FORWARD|BACKWARD [INDEX <idx>].

SCROLL LIST TO FIRST PAGE|LAST PAGE|PAGE <pag>
[INDEX <idx>] [LINE <lin>].

SCROLL LIST LEFT|RIGHT [BY <n> PLACES] [INDEX <idx>].

SCROLL LIST TO COLUMN <col> [INDEX <idx>].

Positions the current list or the list level <idx> in accordance with the additions specified. You can scroll by window, page, columns, or to the left- or right-hand edge of the list.

SEARCH

Searches for strings.

Syntax

SEARCH <f>|<itab> FOR <g> [ABBREVIATED]
[STARTING AT <n1>]
[ENDING AT <n2>]
[AND MARK]
[IN BYTE MODE|IN CHARACTER MODE]. Read the rest of this entry

Incoming search terms:

  • abap sintaks write read
  • attribute selection screen abap
  • abap syntax & commands alphabetically
  • massage error pada abap
  • select constant column abap
  • sap abap corresponding fields skip empty
  • makalah syntax analyser
  • Loop Descending pada abap
  • list_scroll_column abap
  • left scroll boundary in abap

ABAP Syntax (O-R)

O
ON CHANGE
Introduces a new branch.
Syntax
ON CHANGE OF <f> [OR <f1> OR <f2>...].
Opens an ON control structure, which ends with ENDON. The statement block is executed whenever the contents of the field <f> or one of the other fields <fi> has changed since the statement was last executed. Read the rest of this entry

Incoming search terms:

  • on change of syntax in abap
  • offset syntax in abap
  • syntax for page break using at syntax in abap
  • dataset replacement character abap
  • abap ac syntax
  • radio-button no-display syntax in abap
  • read dataset abap character replacement
  • sap abap OPEN DATASET INPUT IN TEXT MODE ENCODING UTF-8
  • sap abap output in text mode binary mode
  • select abap syntax p/ variable

ABAP Syntax (L-N)

L

LEAVE for Screens

Leaves a screen.

Syntax

LEAVE SCREEN.

Stops processing the current screen and calls the subsequent screen. The next screen can either be defined statically in the screen attributes or set dynamically using the SET SCREEN statement.

Syntax

LEAVE TO SCREEN <scr>.

Stops processing the current screen and calls the dynamically-defined subsequent screen <scr>*. Read the rest of this entry

Incoming search terms:

  • abap LOOP AT REFERENCE INTO
  • sap loop reference modify
  • ABAP leave LOOP
  • loop reference into abap
  • meaning of loop at
  • modify transporting kyeword in abap
  • modify transporting sintaxe
  • reference into abap
  • sap abap multiply by 0 1
  • sap loop at itab reference into

ABAP Syntax (G – I)

G

GET

Event keyword for defining event blocks for reporting events.

Syntax

GET <node> [FIELDS <f1> <f 2>...].

Only occurs in executable programs. When the logical database has passed a line of the node <node> to the program, the runtime environment triggers the GET event, and the corresponding event block is executed. You can use the FIELDS option to specify explicitly the columns of a node that the logical database should read.

GET BIT

Reads an individual bit.

Syntax

GET BIT <n> OF <f> INTO <g>.

Reads the bit at position <n> of the hexadecimal field <f> into the field <b>. Read the rest of this entry

Incoming search terms:

  • abap obj
  • abap sy-ftype
  • abap syntax val
  • bap get reference by name of variable
  • get reference abap
  • include a structure in types syntax in abap
  • insert with assigning <fs> in abap

ABAP Syntax (E-F)

D

DATA with Reference to Known Data Types

Declares variables with a previously-declared data type

Syntax

DATA <f>… [TYPE <type>|LIKE <obj>]… [VALUE <val>].

Declares a variable <f> with the fully-defined data type <type> or the same data type as another data object <obj>. The data type <type> can be D, F, I, T, a type defined locally in the program using the TYPES statement, or a type from the ABAP Dictionary. The data object <obj> is a data object or line of an internal table that has already been defined. The VALUE addition specifies a starting value.

DATA with Reference to Generic Data Types

Declares variables by completing the description of a generic type

Syntax

DATA <f>[(<length>)] TYPE <type> [DECIMALS <d>]… [VALUE <val>].

DATA <f> TYPE <itab>.

The data type <type> can be C, N, P, X, STRING or XSTRING. The <length> option sets the field length. If you omit it, the field length is set to the appropriate initial value. If <type> is P, you can specify the number of decimal places using the DECIMALS <d> addition. If you omit this, the number of decimal places is set to 0. If you do not use the TYPE addition, the system uses the default predefined generic type C.

Syntax

DATA <f> TYPE <itab>.

The data type <itab> is a standard internal table with generic key. The default key is automatically used in the DATA statement. Read the rest of this entry

Incoming search terms:

  • f type abap
  • abap catch describe field try
  • with defrault key keyword in abap
  • the declaration for key field Delete TABLE WITH TABLE KEY
  • text editor abap
  • structure module fonction buffer abap
  • ignore case in loop condition abap
  • how to divide two field value in abap
  • how to delete values from internal table using ranges in abap
  • how to delete range value abap

ABAP Syntax (A-C)

A

ADD for single fields

Adds two single fields.

Syntax

ADD <n> TO <m>.

The contents of <n> are added to the contents of <m> and the results are stored in <m>. This is equivalent to: <m> = <m> + <n>.

ADD for field sequences

Adds sequences of fields in storage.

Syntax

ADD <n1> THEN <n2> UNTIL <nz> GIVING <m>.

ADD <n1> THEN <n2> UNTIL <nz> ACCORDING TO <sel> GIVING <m>.

ADD <n1> THEN <n2> UNTIL <nz> TO <m>.

ADD <n1> FROM <m1> TO <mz> GIVING <m>.

If <n1>, <n2>,…, <nz> is a sequence of fields with the same distance to one another and if they have the same type and length, these fields are added and the result is stored in <m>. Different variants allow you to limit fields to a subsequence, to include <m> in the sum, and to perform the operation on a sequence of fields that directly follow one another.

ADD-CORRESPONDING

Adds subfields of structures.

Syntax

ADD-CORRESPONDING <struc1> TO <struc2>.

All the subfields of the structures <struc1> and <struc2> having the same name are added and the results are stored in <struc2>.

ALIASES

Defines class-specific alias names for an interface component in ABAP objects.

Syntax

ALIASES <alias> FOR <intf~comp>.

<alias> is defined within a class or interface as synonymous with the interface component <intf~comp>. Read the rest of this entry

Incoming search terms:

  • commit transaction call skip first screen wait
  • dynamic variable declaration abap
  • sap dynamic variable names
  • sap append data into a subfield of structures
  • sap abap field symbol dereference
  • sap abap assign increment
  • ranges abap keyword
  • range and increments in field symbols in abap
  • import xls index and length must refer to a location within the string parameter name: length
  • abap add then until

Report SAP tidak bisa transfer ke Excel

Jika report dari SAP tidak bisa transfer ke excel, cobalah masuk ke excel anda lalu pilih option-security

Read the rest of this entry

Incoming search terms:

  • Raport excel
  • Membuat raport dengan excel
  • belajar abap sap
  • sap tidak bisa transfer ke execl
  • excel raport sd
  • macro excel 2007 untuk raport
  • raport sekolah dasar
  • sap seperti excel
  • tips excell untuk membuat raport
  • raport program excel

Membuat Koneksi SAP GUI ke SAP Server

Pertama kali double klik ikon SAP Logon di desktop atau dari menu program files.
SAPLogon

Setelah itu akan tampil  seperti berikut :

SAPLogon1

[ad#adsense-468x60-baru] Read the rest of this entry

Incoming search terms:

  • sap logon
  • belajar sap gui dari awal
  • membuat SAP
  • sap logon adalah
  • SAP GUI ADALAH
  • SAP server
  • tutorial sap yaitu
  • www slotspiele net/enter html

SALES AND DISTRIBUTION OVERVIEW #7

7. Special Function

Adalah fungsi-fungsi yang menangani kondisi special dari penjualan, antara lain

1.    Scheduling Agreements

Adalah pengiriman (outbound Delivery) berdasarkan jadwal yang telah disepakati antara perusahaan dengan customer.

[ad#adsense-468x60-baru]
2.    Contracts

Release order dan pengirimannya sesuai kontrak yang disepakati dengan customer Read the rest of this entry

Incoming search terms:

  • fungsi debit note
  • credit note
  • Picking pada SAP
  • picking dalam sap
  • delivery based invoicing dalam SAP
  • sales and distribusi SAP
  • sap good issue
  • SAP SD blog
  • scheduling agreement adalah
  • www slotspiele net/clubdice html
 Page 1 of 3  1  2  3 »