Display technical names

使用SAP时,如果你习惯于从路径中查找你的Tcode,则该Tcode的名称显示在菜单里有助于我们快速找到我们想要的那个命令。如下图中的涂色部分。

image

但如果你发现你的SAP界面不是这样的,而是下图。

image

这时,说明你的SAP环境设置需要重新设定。Follow me,点击菜单上的Extras。

image

选择Settings。

image

这里有4个选项:

image 如果钩选,表示在列表的末端显示收藏夹。

image 如果钩选,表示不显示菜单,只显示收藏夹。

image 如果钩选,表示不显示欢迎屏幕(就是指正常使用时右边的那个画面)。

image 如果钩选,表示显示技术名称,就是我们常说的Tcode。

你可以根据自己的需要来进行钩选。一般情况下,我基本上是选择后两项:不显示欢迎屏幕可以显得界面干净些,显示技术名称可以让自己通过路径找Tcode方便些。

image

点击image ,设定就生效了。你可以再进入路径找找看,是不是Tcode又回来了。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Here's a sample C++ program that reads a file containing names and numbers, displays them on the screen, and sorts them alphabetically by name: ```c++ #include <iostream> #include <fstream> #include <vector> #include <algorithm> using namespace std; struct Contact { string name; string number; }; bool compareContacts(const Contact& c1, const Contact& c2) { return c1.name < c2.name; } int main() { ifstream infile("contacts.txt"); vector<Contact> contacts; if (infile) { string line; while (getline(infile, line)) { Contact contact; size_t pos = line.find(','); if (pos != string::npos) { contact.name = line.substr(0, pos); contact.number = line.substr(pos + 1); contacts.push_back(contact); } } infile.close(); // Display the names and numbers cout << "Contacts:\n"; for (const auto& contact : contacts) { cout << contact.name << ": " << contact.number << "\n"; } // Sort the contacts by name sort(contacts.begin(), contacts.end(), compareContacts); // Display the sorted names and numbers cout << "\nSorted Contacts:\n"; for (const auto& contact : contacts) { cout << contact.name << ": " << contact.number << "\n"; } } else { cout << "Unable to open file\n"; } return 0; } ``` Assuming the file is named "contacts.txt" and has the following contents: ``` John Doe,555-1234 Jane Smith,555-5678 Bob Johnson,555-9012 ``` The output of the program would be: ``` Contacts: John Doe: 555-1234 Jane Smith: 555-5678 Bob Johnson: 555-9012 Sorted Contacts: Bob Johnson: 555-9012 Jane Smith: 555-5678 John Doe: 555-1234 ```

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值