EBS 印表機設定——PASTA
按照Oracle的說法,PASTA解決的是通過CM直接列印到印表機的問題。換句話說如果不想通過CM直接列印到印表機,可以不使用PASTA;這個和PS中文輸出沒有關係。
確實如此,從執行過程看,我覺得完全可以這樣理解:PASTA是作業系統lp命令的擴充套件!
PASTA的可執行程式是FNDPSTAX,具體引數請看PASTA User Guide 3.0(目前最高版本)。這裡提供一個例子:FNDPSTAX -fSCFTEST.ps -o1.ps -np
或者FNDPSTAX -fSCFTEST.txt -o1.ps -np
或者FNDPSTAX -fSCFTEST.pdf -o1.ps -np
這3個例子也是PASTA目前支援的檔案型別
-f是輸入檔名
-o是輸出檔名
-np是說不用列印
-F是配置檔案,這裡沒用,預設是pasta.cfg
注意,和上面的IX雖然用的是同一個配置檔案,但不要搞混淆了。PASTA也有IX
Printing功能,到底是用6i的還是自己的就無所謂了。
前面講過,FNDPSTAX本身不用IX_PRINTING環境變數。
實際上PASTA的功能是把CM輸出的.out檔案,按照pasta.cfg(實際上可能用其他檔案)的指示做格式檔案轉換,然後呼叫作業系統列印命令列印到印表機。作業系統打
印由配置檔案指定,如:
% for UNIX platform
printCommand=lp -c -d{printername}
% for Windows platform
ntPrintCommand=print /D:{printername}
PASTA格式轉換說明
印表機不認PDF檔案,所以在呼叫作業系統列印命令之前需要轉換格式,PASTA就是處理這種情況的解決方案之一。
從目前看,PASTA支援下面幾種格式的輸入檔案:PDF,PS,ASCII。
當然PASTA是自動檢測檔案型別的,和副檔名沒有關係,實際CM傳給FNDPSTAX的都是.out檔案。
轉換邏輯
PS檔案:不轉,直接送給印表機
ASCII:看配置檔案的outputFormat引數,該引數預設是ps,所以會轉成PS格式,這個時候就要用配置檔案裡面指定的字型了;轉換完畢,再送給印表機。注意這裡的PS
檔案和我們請求的PS輸出是兩碼事!
PDF:PASTA本身沒有能力處理,需要送給其他外部程式處理,這個由preprocess引數決定,如:
% You can get a list of output devices available in Ghostscript
% at:
% http://www.gnu.org/software/ghostscript/devices.html
; preprocess=gs -q -dNOPAUSE -dBATCH -sDEVICE=pxlmono -sOutputFile={outfile}
{infile}
……
; preprocess=ps2pdf {infile} {outfile}
轉換完畢,再送給印表機。
這裡的結果檔案是臨時檔案,用完預設就刪除了,不影響我們的.out檔案。
我在Windows平臺用的是Xpdf,測試OK。
PASTA配置檔案說明:
直接看pasta.cfg檔案的說明即可。這裡提一下重點:[DEFAULT]區域的Font.Default.Plain和Font.Default.Bold 設的是預設字型。
語言區域如[AMERICAN]或者[SIMPLIFIED CHINESE](當然可以設定在一起用逗號隔開,還可以設定Territory)設定的是根據使用者當前NLS_LANG做判斷選擇的字型。
字型ADUOSC.ttf(普通)和ADUOSCB.ttf(粗體)支援中文。所以有人乾脆把它作為[DEFAULT]設定以解決中文問題,這個不是地道的做法。
PASTA印表機設定說明
看系統管理員文件即可。很簡單,向系統註冊支援Postscript的作業系統印表機(名字
要一樣),型別選擇--PASTA Universal Printer Type;當然也可以參照這個自定義
了。
PASTA配置檔案:
路徑:$FND_TOP/$APPLRSC/pasta.cfg
/* $Header: pasta.cfg 120.0 2005/05/07 16:44:37 appldev noship $ */
%%
%% pasta.cfg -- Pasta configuration file
%%
% Hisory
%
% Initial - Copied frommmm pasta.cfg in Pasta 2.5.1
% Removed multiple font support, which only works for IX Library. ——只有IX Libary支援多種字型
%
% This is the main Pasta configuration file.
%
% If this is the first time you have modified this file, please read the
% notes at the end of this file first.
%
%%%% ================= Overview ======================================= %%%%
% Pasta is a product that is part of the E-Business Suite's Application
% Object Library (FND). It is provided as an executable named FNDPSTAX
% and enables you to print a text report that contains any characters
% from any language.
%
% You can use the same configuration file for both Pasta and IX
% Library, or you can use separate ones.
%
% Any line that starts with a % (percent) or a ; (semi-colon) is a
% comment and is ignored. In this sample file we are using a % for
% commentary and a ; for options that you may want to enable.——以%開頭的是解釋,以 ;開頭的是可能設定的選項
%
% Any variable that starts with a < (less-than) and ends with a >
% (greater-than) in fontpath, boldfontpath, errorlogfile and outfile
% parameters will be transalted into an environment variable. You can
% specify any environment variable. Pasta will replace the environment
% variable with the actual value at runtime.
%
% You can use either a / (slash) or a \ (backslash) as the delimiter in
% a file path, regardless of the platform. Pasta will use an
% appropriate delimiter automatically according to platform.
%
% The configuration options are grouped into sections. A section
% starts with a [ (left square bracket) and ends with a ] (right square
% bracket). Section names are case insensitive. The [DEFAULT] section
% is mandatory. The language and territory sections are optional. If you
% want to override the options in the [DEFAULT] section according to
% languages and territories, you can add multiple language and territory
% sections. Each language section is specified by [{NLS_LANGUAGE}] where
% {NLS_LANGUAGE} is the Oracle language name. Each territory section is
% specified by [_{NLS_TERRITORY}] where {NLS_TERRITORY} is Oracle
% territory name. Also, you can specify both {NLS_LANGUAGE} and
% {NLS_TERRITORY} at the same time as [{NLS_LANGUAGE}_{NLS_TERRITORY}].
% One section name can contain multiple languages and/or territories
% separated by commas.
%
%% The following notes apply only to Pasta, not to the IX Library.
%
% If you have multiple printers registered and you need a specific setup
% for each printer, it is very easy to have a specific configuration file
% for each printer. This is an example for supporting a PCL printer.
%
% 1. Copy $FND_TOP/resource/pasta.cfg to
% $FND_TOP/resource/pasta_<yourprinter>.cfg where <yourprinter>
% will be the printer name you define on the operating system and
% in the E-Business Suite (both should be the same name).
%
% 2. Edit the configuration file to meet your requirement.
% For example, if you need to print in PCL then uncomment the
% preprocess option for PCL printing and make necessary changes
% for the parameters of Ghostscript if needed.
% Regarding Ghostscript, please refer to http://www.ghostscipt.com.
%
% 3. PASTA will try to read $FND_TOP/resource/pasta_<yourprinter>.cfg
% first and if the file is not found then will try to read
% $FND_TOP/resource/pasta.cfg.
%
% The default name of the configuration file is "pasta.cfg". You can
% override it by using the '-F' (configuration file) command line option.
% For example, if you specify "-Fpcl.cfg" in the command line, Pasta
% will search for the file named "pcl_<your printer>.cfg" first and then
% search for "pcl.cfg".
%
% Parameters indicated as "IX Library compatible" work for IX Library too.
% All options affect to character mode reports.
%
% Please note that most of the options will not affect to pass through
% mode such a case that input file format is PostScript or PDF printing.
% The option that will take affect are:
% printCommand, printCommandOption, ntPrintCommandOption and preprocess
%%%% ================= Default settings ============================ %%%%
%% The options in this default section can be overridden by the options
%% in the language and territory sections below.
[DEFAULT]
%% ============== Output Format ============================ %%
% Output Format [ps|text.<charset|auto>]
%
% Currently, Pasta supports two output formats: Postscript and
% text. If you have a Postscript Level 2 (or higher) printer,
% please set this option to "ps". If the input is a text file,
% Pasta will convert it to a Postscript file. If the input is
% already a Postscript file, Pasta will send it to a printer as
% is. Whether a file is Text or PS is automatically sensed on
% input.
%
% If you don't have a Postscript printer and want to send a
% text file to your printer, please set this option to "text".
% You can specify the output character set by the Oracle
% character set name (e.g. text.WE8ISO8859P1). You can use
% "auto" as the output character set (e.g. text.auto). In that
% case, Pasta will convert the data from the original character
% set to an appropriate one according to the NLS_LANGUAGE setting.
%
% In the case of text output, only the thai_space_compensation
% and preprocess options are effective. Other options are ignored.
%
% If you set this option to "text" and want to send printer-
% specific escape sequences to your printer with text, you
% must keep the escape sequence settings in "Initialization"
% and "Reset" in the printer driver.
outputFormat=ps
%% ============== Preprocessing Command ==================== %%
% Pasta can use a preprocessing command to invoke any executable
% that supports an input file and an output file (a filter program).
% You can use redirection. Pasta will invoke the filter program
% to preprocess the Pasta output before passing it to the printing
% command. By using the preprocess option, you can generate output
% formats other than the formats Pasta currently supports. For
% example, you can generate PCL output.
% You can use {infile} and {outfile} in this option.
% {infile} is the output file generated by Pasta. You can use
% it as input for the preprocessing command. It is a temporary
% file and will be deleted after being passed to the
% preprocessing command. {outfile} is the output file generated
% by the preprocessing command. Pasta names it temporarily and
% it will be deleted after being passed to the printing command.
% If you want to keep it, you can name it by using the '-o'
% command line option. Pasta will copy {outfile} to the file you
% specify.
% Preprocess for PCL printing
% This is an example for PCL printing. In this example, "gs" is
% Ghostscript and "pxlmono" is a device used with HP black and
% white PCL XL printers (LaserJet 5 and 6 family).
% Ghostscript is a tool that can convert a Postscript file to
% a PCL file.
% You can get the latest version of Ghostscript at:
% www.ghostscript.com.
%
% You can get a list of output devices available in Ghostscript
% at:
% http://www.gnu.org/software/ghostscript/devices.html
; preprocess=gs -q -dNOPAUSE -dBATCH -sDEVICE=pxlmono -sOutputFile={outfile} {infile}
% Preprocess for PDF output
% This is an example for PDF output. ps2pdf is a shell script
% bundled with Ghostscript. ps2pdf can convert a Postscript
% file to a PDF file. In most cases, you cannot send a PDF
% file to the printer command because the printer command
% cannot understand PDF. Set the noPrint option to "y" or use
% the '-np' (no print) command line option if you do not want
% to have Pasta send the PDF file to a printer. Use the outFile
% option or the '-o' (output file name) command line option to
% store the output file wherever you like. You can use {inputfile}
% in the outFile option. Pasta will replace it with the actual
% input file name (without the path) specified by the '-f'
% (input file) command line option.
; preprocess=ps2pdf {infile} {outfile}
; noPrint=y
; outFile=<APPLTMP>/{inputfile}.pdf
%% ============== Paper Size (in inches) =================== %%
% You can specify the paper (page) size in inches. Pagewidth
% specifies width and pageheight specifies height. If you want
% to use a different paper size for a particular language or
% territory, please override this value in the language and/or
% territory sections.
% [A4]
pagewidth=8.27
pageheight=11.69
% [Letter]
% If you want to use Letter as the default paper size, comment
% the A4 settings above and uncomment the following lines:
; pagewidth=8.5
; pageheight=11
%% ============== Space Size ============================== %%
% You can increase the space between characters by increasing
% the value of widthScaleRate and between lines by increasing
% the value of heightScaleRate.
widthScaleRate=1.0
heightScaleRate=1.0
%% ============== Margins (in inches) ====================== %%
% These settings should be changed to suitable values for your
% printer.
topMargin=0.25
leftMargin=0.25
rightMargin=0.25
bottomMargin=0.25
%% ============== Tab Size (in spaces) ===================== %%
% Pasta replaces a tab with a specified number of spaces. You
% can alter the number of spaces using this option.
tabsize=8
%% ============== Font Size (in points) ==================== %%
% This value affects all of the fonts you use in your reports.
% You can specify any number (e.g. 10.5).
fontsize=9
%% ============== Font Name ================================ %%
% You can use any TrueType fonts on your middle tier server.
% If you specify a TrueType font, Pasta will subset and embed
% the font in the Postscript output file and send it to your
% Postscript printer. Your printer does not need to have any
% fonts installed. Oracle provides Andale fonts (ADUO*.ttf)
% for printing. Also, if your printer has a font installed that
% is suitable for the language of your report, you can utilize
% the printer font.
%
% The form of this option is:
% Font.<Face>.<Style>=<TrueType font file name>
% or
% Font.<Face>.<Style>=printer:<Printer font name>
%
% The <Face> must be either "Default" for Pasta.
%
% The <Style> must be either "Plain" or "Bold".
%
% Font options are IX Library compatible.
Font.Default.Plain=<FND_TOP>/<APPLRSC>/ADUO.ttf
Font.Default.Bold=<FND_TOP>/<APPLRSC>/ADUOB.ttf
% Uncomment the following if you want to use printer fonts as a
% default. All printers have the Courier font installed by default.
% Courier has glyphs for Western European characters.
; Font.Default.Plain = printer:Courier
; Font.Default.Bold = printer:Courier-Bold
%% ============== Printing Command ========================= %%
% You can specify the printing command and options you want
% to use to print your report. Pasta will pass the final output
% to this command. {printername} will be replaced by the
% actual printer name passed through the command line option
% (-pn), so in most cases you don't have to change these
% options.
% for UNIX platform
printCommand=lp -c -d{printername}
% for Windows platform
ntPrintCommand=print /D:{printername}
%% ============== Printing Options ========================= %%
%
% Embed number of copies [y|n]
%
% You can embed the number of copies to be printed in a
% Postscript file. However, some other printers do not support
% the command. In that case, please set this option to "n".
% Pasta will send the report multiple times up to the number of
% copies. By embedding the number of copies, you can eliminate
% the header page normally printed between reports.
embednumcopies=y
% Collate [y|n]
%
% If you set "embednumcopies" to "y" above, you can choose to
% have the copies collated (e.g. 123123) or uncollated
% (e.g. 112233) by setting the "copysort" option. If you set
% "embednumcopies" to "n", the order is always 123123.
% For example, if you want to print two copies of a report
% that has 3 pages, the output will be:
%
% | embednumcopies
% | y n
% ------------------------------
% copysort y | H123123 H123H123
% copysort n | H112233 H123H123
%
% where "H" stands for a header and "123" stands for 1st page,
% 2nd page and 3rd page.
copysort=y
% Duplex printing [y|n|default]
%
% You can specify duplex or not. "default" means that it depends
% on the printer-side setting.
duplex=default
%% ============== BiDi Specific Options ==================== %%
% The following options work only for Bi-Directionallanguages
% such as Arabic or Hebrew.
% Global direction [ltr|rtl|default]
%
% ltr: Left-To-Right
% rtl: Right-To-Left
% default: It depends on NLS_LANGUAGE. If NLS_LANGUAGE is
% Arabic or Hebrew, it is rtl. Otherwise, it is ltr.
%
% <IX Library compatible>
direction=default
% Do string layout [y|n]
% <IX Library compatible>
dolayout=y
% Do Arabic shaping [y|n]
% <IX Library compatible>
doshaping=y
% numerals [arabic|hindi|context]
%
% arabic: To always use Arabic numerals
% hindi: To always use Hindi numerals
% context: To use Arabic or Hindi depending on the context
% <IX Library compatible>
numerals=context
% Bidi layouting algorithm [oracle|unicode]
%
% If you set this option to "unicode", Pasta follows the
% Unicode BiDi algorithm. For information about the Unicode BiDi
% algorithm, please refer to the following site.
% http://www.unicode.org/unicode/reports/tr9/index.html
%
% For backward compatibility, Pasta still supports Oracle's
% original algorithm. If you want to use it, please set
% this option to "oracle".
% <IX Library compatible>
bidi_algorithm=unicode
%% ============== Thai Specific Options ==================== %%
% Space compensation for Thai [y|n]
%
% In the Thai language, some characters are combined into one
% glyph. If thai_space_compensation is set to "y", Pasta will
% align your report by adding spaces at the end of any string
% that includes combined characters. This option works only for
% Thai characters. Pasta can automatically detect Thai characters,
% so it is safe to set this option to "y" for languages other
% than Thai. However, it may affect performance because Pasta
% checks whether space compensation is necessary or not for all
% characters. In this configuration file, this option is set to
% "y" only in the Thai section below, which overrides the setting
% here.
thai_space_compensation=n
%% ============== Error Log File =========================== %%
% This tells Pasta to create a log file. The default error
% output is stderr.
;errorlogfile=pasta.log
%%%% ================= Language Specific Settings ================== %%%%
%%%% Each language section is specified by [{NLS_LANGUAGE}] where
%%%% {NLS_LANGUAGE} is the Oracle language name.
%%%% One section name can contain multiple languages separated by
%%%% commas.
%% For Western European (Latin-1) languages
[AMERICAN,CATALAN,GERMAN,DANISH,SPANISH,LATIN AMERICAN SPANISH,FRENCH,CANADIAN FRENCH,ENGLISH,ITALIAN,ICELANDIC,NORWEGIAN,DUTCH,PORTUGUESE,BRAZILIAN PORTUGUESE,SWEDISH,FINNISH]
Font.Default.Plain = printer:Courier
Font.Default.Bold = printer:Courier-Bold
%% For Simplified Chinese
[SIMPLIFIED CHINESE]
Font.Default.Plain=<FND_TOP>/<APPLRSC>/ADUOSC.ttf
Font.Default.Bold=<FND_TOP>/<APPLRSC>/ADUOSCB.ttf
%% For Traditional Chinese
[TRADITIONAL CHINESE]
Font.Default.Plain=<FND_TOP>/<APPLRSC>/ADUOTC.ttf
Font.Default.Bold=<FND_TOP>/<APPLRSC>/ADUOTCB.ttf
%% For Japanese
[JAPANESE]
Font.Default.Plain=<FND_TOP>/<APPLRSC>/ADUOJ.ttf
Font.Default.Bold=<FND_TOP>/<APPLRSC>/ADUOJB.ttf
%% For Korean
[KOREAN]
Font.Default.Plain=<FND_TOP>/<APPLRSC>/ADUOK.ttf
Font.Default.Bold=<FND_TOP>/<APPLRSC>/ADUOKB.ttf
%% For Thai
[THAI]
thai_space_compensation=y
% If you need text output for Thai, please uncomment the
% following line.
; outputFormat=text.TH8TISASCII
%%%% ================= Territory Specific Settings ================= %%%%
%%%% Each territory section is specified by [_{NLS_TERRITORY}] where
%%%% {NLS_TERRITORY} is the Oracle territory name.
%%%% One section name can contain multiple territories separated by
%%%% commas.
%% For America and Canada regions
[_AMERICA,_CANADA]
% [Letter]
pagewidth=8.5
pageheight=11
相關推薦
EBS 印表機設定——PASTA
按照Oracle的說法,PASTA解決的是通過CM直接列印到印表機的問題。換句話說如果不想通過CM直接列印到印表機,可以不使用PASTA;這個和PS中文輸出沒有關係。 確實如此,從執行過程看,我覺得完全可以這樣理解:PASTA是作業系統lp命令的擴充套件! PASTA的可
C++ 印表機設定
我在網上已不斷看到一些網友關於自定義紙張列印的問題,基本上還沒有較完美的解決方案,我在這裡提供一個WindowsNT/2000/XP下的解決辦法,供廣大同仁參考。Windows9x/Me下也有解決辦法,有興趣者可共同探討。 該方法的主要思想是在程式開始時新增自定義紙張並設為預設紙張,程式結束前刪除該自定義紙
獲取印表機設定的紙張引數
PrintDialog BS = new PrintDialog(); int x = BS.PrinterSettings.DefaultPageSettings.PaperSize.Width;//印表機預設紙張大小
Win10和Win7共享印表機設定方法
Win10和Win7如何共享印表機呢?當局域網中同時存在Win10和Win7系統,同時區域網中只有某一臺計算機連線有印表機時,我們可以通過區域網印表機共享操作來實現印表機共享。下面就與大家分享一下區域網電腦共享印表機的具體設定方法。
列印過程中修改印表機設定orientation等
使用ResetDC & DEVMODE 特別注意: 1)Note that a call to ResetDC resets all device context attributes back to default values. 2)The s
如何修改使用 DocumentProperties() 函式的印表機設定
LPDEVMODE GetLandscapeDevMode(HWND hWnd, char *pDevice) { HANDLE hPrinter; LPDEVMODE pDevMode; DWORD dwNeeded, dwRet; /* S
如何使用 SetPrinter 修改印表機設定
// MySetPrinter // // Demonstrates how to use the SetPrinter API. This particular function changes the orienation // for the printer specified in pPrint
C#獲取本地印表機列表,並將指定印表機設定為預設印表機
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.W
針式印表機設定字號大小
我的印表機是GP-76針式印表機,使用谷歌瀏覽器測試。 使用css設定列印字號程式碼: <styletype="text/css"> @mediaprint{ .chrome_adjust{ font-size:9px; -webkit-transform:s
共享印表機 設定
https://jingyan.baidu.com/article/37bce2be40b6921002f3a2c0.htmlhttps://jingyan.baidu.com/article/b907e627a38aa546e7891c22.html
Oracle EBS 如何設定事務處理分配行金額、成本和資源費率等等數字小數點位數?
通常事務處理的分配行金額、採購單價、成本和資源費率等等數字的小數點位數,在想設定新增小數點位數時候,往往誤認在Oracle EBS配置檔案中設定,其實與賬薄的設定本位幣有關係。 例如下圖,當Resource Cost的Resource Unit Cost的小數點超過5位提
物流面單 標籤紙印表機設定
最近在做跟圓通、中通快遞做對接的專案,需要自己根據物流公司提供的物流面單規格設定出合適的列印面單。 其中最麻煩的就是設定印表機(因為之前沒有碰過印表機)。 其實設定印表機很簡單,就那麼點東西。 每種印表機有對應的驅動程式,安裝好驅動之後,在我的電腦中的裝置和印表機中可以看到
佳能鐳射印表機設定無線網路
1.檢查問題 (1)usb介面連線是否正確 (2)IP地址設定是否正確 (3)檢查印表機的ip是否在一個網端上2.IP設定 (1)進入印表機光碟安裝頁面,選擇“啟動程式”->選擇"USB連
如何設定印表機?
1.取消禁用Guest使用者,因為別人要訪問安裝印表機的按個電腦就是以guest賬戶訪問的。 點選【開始】按鈕,在【計算機】上右鍵,選擇【管理】,如下圖所示: 在彈出的【計算機管理】視窗中找到【Guest】使用者 雙擊【Guest】,開啟【Guest屬性】視窗,確保【賬戶已禁用】選項沒有被勾選
用列印指令設定Zebra Printer的IP地址(適用於GK888T帶列印伺服器的條碼印表機)
^XA ^ND2,P,128.30.2.45,255.255.0.0,128.30.1.1 ^NBC ^NC1 ^NPP ^NNLABEL(A1-AREA) ^XZ ^XA ^JUS ^XZ 備註一下, NSP有三段內容, 分別是印表機新的IP地址/subnet/gat
Win10共享印表機所需要的設定(無需密碼訪問實現印表機共享,共享不要密碼)
升級到Win10系統後,很多朋友在印表機共享方面遇到了問題,如Win10共享印表機,別的電腦不能訪問,訪問要密碼,XP訪問需要憑據,輸入密碼也無法連線等種種情況,下面小編分享下Win10共享印表機所需要的一些設定,通過連線測試。可以幫助使用者實現印表機共享無需密碼連線,有興趣的朋友不妨看看。 推薦
XP訪問win10印表機拒絕訪問無法連線的設定技巧
印表機是我們常見的外部輸出裝置,每個公司都會安裝它,有很多使用者使用Win10安裝印表機,會共享給WinXP使用者使用,卻發現提示“拒絕訪問無法連線”,那麼當你遇到XP訪問win10印表機拒絕訪問無法連線的問題,怎麼辦?有使用者遇到此問題的使用者,請來看看XP訪問win10印表機拒絕訪問無法連線的設定技巧
EBS 資料夾 堆疊畫布長度設定
做檔案時,form會自動調整堆疊畫布的長度,導致最右邊的滾動條被蓋住了。 這個時候直接設定堆疊畫布的長度不起作用。崩潰有木有。。。 試試在表單級觸發器FOLDER_RETURN_ACTION中寫如下程式碼。驚喜有木有。。 IF:global.folder_action = 'VIEW-S
Oracle EBS無法啟動 錯誤資訊 您的安全設定已組織自簽名的應用程式使用已過期的Java版本執行
com.sun.deploy.security.BlockedException: 您的安全設定已阻止自簽名的應用程式使用已過期的 Java 版本執行。 at com.sun.deploy.security.SandboxSecurity.showBlockedDialog(Unknown Sourc
如何在sap裡設定印表機引數
1、關於列印函式參見sap的函式模組SPRI,對於列印引數常用函式有:GET_PRINT_PARAMETERSSET_PRINT_PARAMETERS2、申明變數 begin of g_ty_s_tests, select_amount