freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

1sapscriptforms-資料下載頁(yè)

2025-08-13 13:34本頁(yè)面

【導(dǎo)讀】稀世軟件系統(tǒng)(上海)有限公司1/56

  

【正文】 g the standard text ZHEXMACROLOGO and the window LOGO for the print output. If the pany logo should be displayed on the subsequent pages, you must copy the window LOGO to page NEXT. You have to repeat the following procedure for all defined pages: 15 17 SAP Script 編程指南 稀世軟件系統(tǒng)(上海)有限公司 24/56 1. In the administrative screen, choose the window LOGO. 2. Copy the window. 3. Choose page NEXT. 4. Insert the window. The position and size of the window LOGO defined for page FIRST apply to the other pages. 5. Activate the form. 注:關(guān)于如何在 PCL5 打印機(jī)中打印公司 logo,請(qǐng)參見相關(guān)資料,這里從略。 form中打印條形碼 StepbyStep Guide Task Define the material numbers on the sales order confirmation Z_9H_RVORDER01 as a “3 of 9” bar code with a check digit. 1. From the SAP main menu, choose Tools ? Word processing? Form. 2. In the Form field, enter Z_9H_RVORDER01, and in the Language field, enter EN. 3. Select Character formats. 4. Choose Change. 2 3 4 SAP Script 編程指南 稀世軟件系統(tǒng)(上海)有限公司 25/56 5. In the String field, enter B3. 6. In the Description field, enter Bar code 3 of 9 w/check. 7. Choose Enter. The new character format appears in the character formats frame. 8. In the Bar code field, press the F4 help key and choose the appropriate bar code from the list of available bar codes. Choose BC_CD39C. 9. Save the new character format. The bar code is now defined and can be used. Next, we have to adjust the output of the Main window. 10. Choose Layout. 11. In the Design Window activate the Main window and choose Edit window text. 5 6 7 8 9 10 11 SAP Script 編程指南 稀世軟件系統(tǒng)(上海)有限公司 26/56 12. In the text editor, scroll down until you see /E ITEM_LINE. 13. Place the cursor at the end of the first line under /E ITEM_LINE. 14. Choose Enter to create a new line. 15. In the new line, enter ,B3amp。VBDPAMATNRamp。/. 16. Choose Back. 17. Confirm all the subsequent popup windows. The two mas, for the first tab, position the bar code under the material number. B3 changes the current character string to B3, which defines the bar code. / ends the character string and returns to IL. Some of the bar codes are higher than one line, which may cause the previous lines to overlap. To avoid overlapping, add blank lines before the line with the bar code. Use an 12 13 15 16 SAP Script 編程指南 稀世軟件系統(tǒng)(上海)有限公司 27/56 appropriate paragraph for this blank line, so that the blank lines are not pressed. To check the paragraph settings, go to standard attributes and ensure that the No blank lines checkbox is deselected. In our example, notice the bar code, which reserves space for the entire material number field (this field is 18 characters long). If you do not use all 18 characters and do not want to waste space, delimit the field length by using the output length formatting option. The text editor line is ,B3amp。VBDPAMATNR(8)amp。/ In a numerical bar code, some scanners cannot read special characters. For these scanners, omit the special characters inserted by SAPscript during formatting. An example of a special character is the delimiter for “Thousands” that is used for some numerical fields. See appendix A for more information on formatting options. 18. Activate the form. Using Boxes, Lines, and Shading SAPscript 提供了在文檔中使用 Boxes, frames, lines, shading 的文本命令: ? BOX命令用來(lái)畫一個(gè)框或者是垂直、水平直線; ? POSITION 命令用來(lái)指定框或者線的起始點(diǎn); ? SIZE 命令用來(lái)指定框的高度和寬度。 下面分別加以說(shuō)明。 18 SAP Script 編程指南 稀世軟件系統(tǒng)(上海)有限公司 28/56 1) BOX 命令 語(yǔ)法 /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY] 作用:在指定的位置用指定的尺寸畫框 參數(shù):對(duì) XPOS、 YPOS、 WIDTH、 HEIGHT、 FRAME 中的每一個(gè),必須指定值以及度量單位;指定 INTENSITY為 0100 之間的百分比數(shù),比如 20。 ① XPOS、 YPOS 相對(duì)于 POSITION 命令設(shè)定的值而言,框的左上角。 缺省: POSITION 命令設(shè)定的值 下面的計(jì)算式用來(lái)計(jì)算 page 上的框的絕對(duì)位置: X(abs) = XORIGIN + XPOS Y(abs) = YORIGIN + YPOS ② WIDTH 框的寬度,缺省為 SIZE 命令所設(shè)定的寬度值 ③ HEIGHT 框的高度,缺省為 SIZE 命令所設(shè)定的高度值 ④ FRAME 邊框,缺省為 0,無(wú)邊框 ⑤ INTENSITY 框的灰度比,缺省為 100 度量值以及度量單位:度量值為數(shù)字,度量單位可以是 下面幾種之一: ? TW (twip) ? PT (point) ? IN (inch) ? MM (millimeter) ? CM (centimeter) ? LN (line) ? CH (character). 示例: /: BOX WIDTH 39。39。 CM HEIGHT 1 CM FRAME 10 TW INTENSITY 15 /: BOX WIDTH 39。39。 CM HEIGHT 39。39。 CM FRAME 10 TW /: BOX XPOS 39。39。 CM WIDTH 0 TW HEIGHT 39。39。 CM FRAME 10 TW /: BOX XPOS 39。39。 CM WIDTH 0 TW HEIGHT 39。39。 CM FRAME 10 TW 特別注意:如果度量值有小數(shù)位,必須用 ” 39。39。 ”號(hào)將度量值引起來(lái)。如上面的 39。39。等等。 SAP Script 編程指南 稀世軟件系統(tǒng)(上海)有限公司 29/56 2) POSTION 命令 語(yǔ)法: /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE] 作用:設(shè)置坐標(biāo)原點(diǎn), BOX 命令中的 XPOS, YPOS 參數(shù)會(huì)使用這個(gè)值。當(dāng) window第一次啟動(dòng)的時(shí)候, POSITION 值就是 window的左上角。 參數(shù): ① XORIGIN、 YORIGIN 坐標(biāo)系統(tǒng)原點(diǎn) ② WINDOW 設(shè)置左邊和上邊距匹配當(dāng)前 window ③ PAGE 設(shè)置左邊和上邊距匹配當(dāng)前輸出 page(XORIGIN = 0 cm, YORIGIN = 0 cm) 示例: /: POSITION WINDOW Sets the origin for the coordinate system to the upper left corner of the window. /: POSITION XORIGIN 2 CM YORIGIN 39。 CM39。 Sets the origin for the coordinate system to a point 2 cm from the left edge and cm from the upper edge of the output page. /: POSITION XORIGIN 39。39。 CM YORIGIN 1 CM Shifts the origin for the coordinates cm to the left and 1 cm up 3) SIZE 命令 語(yǔ)法: /: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE] 作用:設(shè)置在 BOX 命令中的 WIDTH、 HEIGHT 值,當(dāng) window第一次啟動(dòng)時(shí), SIZE 值與 window相同。 參數(shù): ① WIDTH、 WIDTH 矩形或者線的尺寸 ② WINDOW 設(shè)置寬度和高度值為當(dāng)前 window 的寬度和高度 ③ PAGE 設(shè)置寬
點(diǎn)擊復(fù)制文檔內(nèi)容
黨政相關(guān)相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1