The code comes from the profit center accounting document for tracking FB03 accounting voucher.
First stick to the code
DATA:
lw_awtyp TYPE acchd-awtyp,
lw_awref TYPE acchd-awref,
lw_aworg TYPE acchd-aworg,
lt_documents TYPE STANDARD TABLE OF acc_doc.
lw_awtyp = 'BKPFF'.
lw_awref = ls_alv-belnr.
CONCATENATE ls_alv-rbukrs ls_alv-ryear INTO lw_aworg.
CALL FUNCTION 'AC_DOCUMENT_RECORD'
EXPORTING
i_awtyp = lw_awtyp
i_awref = lw_awref
i_aworg = lw_a...
First of all, as long as you can make good use of Baidu bidding is a good thing, it can be said that all these years, I have been eating this meal Baidu, so I am very grateful to Baidu. This article is not to say that Baidu is not good. It is just a matter of fact. Only by understanding it can we make good use of it.
Here refers to the operation of the account, the other does not say, Baidu bidding in those unknown rules and cat greasy, many, give a few examples to illustrate briefly:
First, click the price formula. Many people know the formula, but who dare...
How to build high availability redis architecture?
Wen GuobingArchitect’s Secret circleYesterday
Author:Wen Guobing, who worked in cool dog music, is now 37 mutual entertainment DBA. Current major areas of concern: database automation operations and maintenance, high availability architecture design, database security, mass data solutions, and open source technology in the Internet applications
1 notes preceding the text of a book or following the title of an article
Redis It is an open source, network-enabled, memory-based and persistent log-based, Key-Value database written in A...
public class base64Change {
/**
* @param imgStr base64Coded string*@param path Image path - specific to file*/
public static boolean generateImage(String imgStr, String path) {
if (imgStr == null)
return false;
BASE64Decoder decoder = new BASE64Decoder();
try {
// Decrypt
byte[] b = decoder.decodeBuffer(imgStr);
// Processing data
for (int i = 0; i < b.length; ++i) {
if (b[i] < 0) {
b[i] += 256;
}
}
OutputStream out = new FileOutputStrea...
Linear feedback shift register (LFSR)
In practice, the selection of random seeds determines the difference of pseudo-random sequences, which means the selection of random seeds is very important.
The most common way to generate pseudo-random numbers is to use a linear feedback shift register (LFSR).nA D trigger and several XOR gatesThe following pictures are made:
Where GN is the feedback coefficient, the value can only be 0 or 1, take 0 to show that there is no feedback path, take 1 to show that there is a feedback path; where the feedback coefficient determines the different al...
P1502″ stars
Title Description
In the evening, Ka looked out from the balcony and said, “Wow, lots of stars.” But he didn’t have a window for the other rooms. The naive Ka always wanted to see the brightest stars at night, but the window was fixed in size and the sides had to be parallel to the ground. At that time, the card used superpower (perspective).You know the position and brightness of each star behind the wall, but the little card gets tired after superpowering, so please tell him that there are at most a total number of bright stars that can appear in the wi...
Use in C#Stopwatch
Namespace: System.Diagnostics;
System.Diagnostics.Stopwatch stopwatch = new System.Diagnostics.Stopwatch();
stopwatch.Start();
// Here: Computation time consuming process / method
stopwatch.Stop();
stopwatch.Elapsed.TotalSeconds //Here is the total number of seconds to run, accurate to milliseconds.
OracleUser creation and permission settings
Jurisdiction:
create session Allow users to login to database privileges
create table Allows users to create table permissions
unlimited tablespace Allows users to build tables in other table spaces.
Role:
connect
resource
dba
CONNECTRole: –It is a typical right to end-users, the most basic power.Ability to connect to the ORACLE database and do SELECT, UPDATE, INSERTT, etc. when you have access to other users’tables. ALTER SESSION –Modify the session ...