20 FI配置-财务会计-定义税务科目(OB40-Define Tax Accounts)

业务背景:定义税务科目

事务码: OB40

SPRO路径:SPRO->财务会计->财务会计全局设置->销售税/采购税->过账->定义税务科目

第1步,SPRO路径进入

第2步,选择需要维护的项目(VST-进项税/MWS-销项税)双击进入

第3步,维护账户并保存

配置完成!

2021年12月24日 写于芜湖

2024年配置练习如下:

备注:VST用于进项税的配置,MWS用于销项税的配置,上面的只是VST的配置。

配置完成!

2024年1月22日 写于上海

2024 SAP FI module configuration practice recording as following:
Configuration Subject: Define Tax Accounts
SPRO Path: Financial Accounting->Financial Accounting Global Settings->Tax on Sales/Purchases->Posting->Define Tax Accounts

#1 Configure for VST-Input Tax 

Saved First and then Accounts.

Before maintain the Tax Accounts and we must maintain G/L Account first in foreground through T-Code: FS00 to update the table SKA1.

T-Code FS00

If there is one error pop-up about P&L statement account type and we can find the solution through links: 31 SAP报错:损益报表科目类型在科目表 BN01 中未定义(No P&L statement account type is defined in chart of accounts BN01)_sap 损益表科目类型在 没有定义-CSDN博客

SKA1-G/L Account Master (Chart of Accounts)

Continue to do the configuration as following:

#2 Configure for MWS-Output Tax 

Tips: Need to define Output Tax Account first through T-Code: FS00 as following:

SKA1-G/L Account Master (Chart of Accounts)

Continue to do the Output Tax Account configuration as following:

Done.
Created on 30rd March, 2024

FI 模块目录(FI Module Catalogue): 0 FI配置-财务会计-配置清单(FI Module SPRO Config List)
上一篇(Previous Article): 19 FI配置-财务会计-定义销售/采购税代码(Define Tax Codes for Sales and Purchases)
下一篇(Next Article): 21 FI配置-财务会计-为非征税事务分配税务代码(Assign Tax Codes for Non-Taxable Transactions)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是一个基本的 ESP32 Wi-Fi 配置的 IDF 完整代码示例: ```c #include <stdio.h> #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "esp_log.h" #include "esp_wifi.h" #include "esp_event.h" #include "nvs_flash.h" #define WIFI_SSID "your_SSID_here" // 替换为您的 Wi-Fi 热点名称 #define WIFI_PASS "your_PASSWORD_here" // 替换为您的 Wi-Fi 热点密码 static const char *TAG = "wifi station"; static esp_err_t event_handler(void *ctx, system_event_t *event) { switch(event->event_id) { case SYSTEM_EVENT_STA_START: esp_wifi_connect(); break; case SYSTEM_EVENT_STA_CONNECTED: ESP_LOGI(TAG, "Wi-Fi connected"); break; case SYSTEM_EVENT_STA_DISCONNECTED: esp_wifi_connect(); ESP_LOGI(TAG, "Wi-Fi disconnected, try to reconnect..."); break; case SYSTEM_EVENT_STA_GOT_IP: ESP_LOGI(TAG, "Got IP address: %s", ip4addr_ntoa(&event->event_info.got_ip.ip_info.ip)); break; default: break; } return ESP_OK; } void wifi_init_sta(void) { ESP_LOGI(TAG, "Initializing Wi-Fi..."); tcpip_adapter_init(); ESP_ERROR_CHECK(esp_event_loop_init(event_handler, NULL)); wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); ESP_ERROR_CHECK(esp_wifi_init(&cfg)); wifi_config_t wifi_config = { .sta = { .ssid = WIFI_SSID, .password = WIFI_PASS, }, }; ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_STA)); ESP_ERROR_CHECK(esp_wifi_set_config(ESP_IF_WIFI_STA, &wifi_config)); ESP_ERROR_CHECK(esp_wifi_start()); } void app_main() { ESP_ERROR_CHECK(nvs_flash_init()); wifi_init_sta(); } ``` 代码中的 `WIFI_SSID` 和 `WIFI_PASS` 分别为您的 Wi-Fi 热点名称和密码,需要您自行替换。 在 `event_handler` 函数中,我们处理 Wi-Fi 连接和断开事件,并在连接成功后打印获取到的 IP 地址。 在 `wifi_init_sta` 函数中,我们初始化 Wi-Fi,并设置 Wi-Fi 模式为 `WIFI_MODE_STA`,即 Wi-Fi 客户端模式。然后,我们为 Wi-Fi 客户端设置配置,包括 Wi-Fi 热点名称和密码。最后,我们启动 Wi-Fi。 在 `app_main` 函数中,我们初始化 NVS 闪存并启动 Wi-Fi 客户端。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值