發表文章

SAP HANA參考資源

SAP MM (Material Management) Training Tutorial https://www.guru99.com/sap-mm-training-tutorials.html https://www.hanatutorials.com/p/home.html https://www.hanatutorials.com/p/enable-sql-trace-in-hana.html SAP HANA Tutorials for Beginners https://www.hightechnology.in/sap-hana-tutorials-for-beginners/   SAP HANA Tutorials http://www.hanaexam.com/p/sap-hana-tutorials.html http://www.hanaexam.com/p/sap-hana-books.html SAP-MM(采购管理模块)_ERP文库 https://blog.csdn.net/weixin_40672823/category_9597906.html SAP MM模組設定手冊 https://noahchou.wordpress.com/sap-mm%e6%a8%a1%e7%b5%84%e8%a8%ad%e5%ae%9a%e6%89%8b%e5%86%8a/

SAP MM_物料主數據:MM01(創建)、MM02(修改)、MM03(查詢)

  MM01 Tcode in SAP: How to Create Material Master in SAP MM https://www.guru99.com/how-to-create-material-master-data.html How to Change Material Master Data (MM02, MM03) in SAP https://www.guru99.com/how-to-change-material-master.html 物料主檔 建立物料   MM01 更改物料   MM02 顯示物料   MM03 標示待刪除物料 MM06 更改物料類型 MMAM 物料清單查詢 MM60 延伸儲存位置 MMSC 大量上傳物料主檔 ZMMT018

SAP MM_ME21N_採購訂單創建(Purchase Order)

  How to Create a Purchase Order ME21N in SAP https://www.guru99.com/how-to-create-a-purchase-order.html SAP S4 MM前台操作讲解-框架采购订单创建与发票校验 https://blog.csdn.net/weixin_40672823/article/details/106543910

SAP MM_ME31K_採購訂單合同(Contract)

 SAP S4 MM前台操作讲解-采购合同创建 https://blog.csdn.net/weixin_40672823/article/details/106551739 Outline Agreement in SAP: Contract & Scheduling Agreement ME31 https://www.guru99.com/all-about-outline-agreement.html

SAP MM相關T-code

請購 建立請購單 ME51N 更改請購單 ME52N 顯示請購單 ME53N 核發請購 ME54N 請購:列表顯示 ME5A 請購單(按科目指派) ME57 上傳MRP結果產生請購單 ZMMT014 採購 建立採購單 ME21N 更改採購單 ME22N 顯示採購單 ME23N 採購單核發 ME29N 列印採購單 ME9F 採購清單 採購單查詢(按供應商) ME2L 採購單查詢(按物料) ME2M 採購單查詢(按科目指派) ME2K 採購單查詢(按物料群組) ME2C 採購單查詢(按採購單號碼) ME2N 採購單查詢(按供應工廠) ME2W

SAP版本歷史

圖片
  https://blog.csdn.net/nkGavinGuo/article/details/88077793

.NET Core與Vue3組合開發技_第04天_使用vite創建後台管理系統專案part2.

圖片
  配置下載路由package npm install vue-router@next --save 在src目錄下建立相應目錄層級與程式檔案 src\router\index.ts 這裡配置路由 這邊會是一個array型態 1 2 3 4 5 6 7 8 9 10 11 12 import {createRouter,createWebHistory} from 'vue-router' import LoginPage from '../view/index/LoginPage.vue' const router = createRouter( { history: createWebHistory (), routes:[ {path: "/login" , component: LoginPage } ] } ) export default router; src\view\admin src\view\index\LoginPage.vue 1 2 3 <template> <div> Login Page </div> </template> src\main.ts 1 2 3 4 5 6 7 8 9 10 import { createApp } from 'vue' import './style.css' import App from './App.vue' import ElementPlus from 'element-plus' ; import 'element-plus/dist/index.css' ; import router from './router/index' ; createApp(App) .use(ElementPlus) .use(router) .mount( '#app' ) 再到App.vue添加 <route...

.NET Core與Vue3組合開發技_第03天_使用vite創建後台管理系統專案part1.

圖片
npm init vite@latest 專案目錄名稱 看要選typescript還是javascript 這邊選ts 當npm install完畢後 運行起來 就可看到運行起來的專案具有VITE+VUE顯示 補安裝sass npm install sass --save SASS有捨麼好處呢 舉個例子 比方這邊我們在App.vue中去新增一個div並設置相應class叫做main 當中包兩個span 各自class分別為left跟right 那如果我要進行相對html顏色樣式指定 左右側各自紅藍顏色 就會發現傳統css要寫重複兩階層的main App.vue Before版本 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 <script setup lang= "ts" > import HelloWorld from './components/HelloWorld.vue' </script> <template> <div> <a href= "https://vitejs.dev" target= "_blank" > <img src= "/vite.svg" class= "logo" alt= "Vite logo" /> </a> <a href= "https://vuejs.org/" target= "_blank" > <img src= "./assets/vue.svg" class= "logo vue" alt= "Vue logo" /> </a> </div...

Redhat8企業版使用筆記_確認版本與環境資訊

如何確認目前Linux是用ubuntu 還是redhat,centos? awk -F= '/^NAME/{print $2}' /etc/os-release 如何確認RedHat作業系統是用捨麼版本的redhat cat /etc/redhat-release Redhat確認相關OS資訊(RHEL 7.x or above) hostnamectl

Flutter_開發手機應用筆記3_SearchBar

圖片
  Code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 import 'package:flutter/material.dart' ; class HomePage extends StatefulWidget{ _HomePageState createState() => _HomePageState(); } class _HomePageState extends State<HomePage>{ @ override Widget build(BuildContext context) { // TODO: implement build return Scaffold( appBar: AppBar( title: Text( '首頁' ), actions: [ IconButton( icon: Icon(Icons.search), onPressed: (){ showSearch(context: context, delegate: CustomSearch()); }, ) ], ), body: Container(), ); } } class CustomSearch extends SearchDelegate{ List< String ...