SD从零开始17--返利(Rebates)

本文介绍了返利处理的基本概念,包括返利协议的创建与管理、返利结算流程、部分结算及回溯返利协议等内容。重点讲解了如何通过系统自动处理返利相关账单,并确保财务准确性和效率。
部署运行你感兴趣的模型镜像

处理返利Processing Rebates

       Rebates 不同于其他的折扣,因为他们基于客户在特定期间内产生的销售量回溯地支付,返利的细节在rebate agreement中定义;

       结算运行时自动创建必须的credit memo request;

       当处理返利相关的billing documents时,应计项自动地确定并过账;然后rebate credit memo冲减应计项;

返利处理的先决条件Prerequisites for Rebate Processing

       为了使rebates功能可用,rebate processing必须为以下激活:

           The sales organization

           The payer master

           The billing document type

       因性能的原因,如果rebate processing不必要的话,应该将它禁止;

创建返利协议Create Rebate Agreements

       Rebate agreement 参考rebate agreement type创建,每个rebate agreement type的特性在配置中设置;

       条件记录被关联到rebate agreenment来指定rebate rate和accrual rate;

       用rebate agreenment,你可以指定:

          The condition type used with this rebate agreement type;

          A validity period proposal;

返利处理Rebate Processing

      1.   rebate processing始于创建一张rebate-relevant billing document;

      2.  有效的返利通过在定价程序中使用rebate basis subtotal来确定;

      3.  每个rebate condition type都被分配了一个access sequence;

      4.  系统使用access sequence来搜索有效的rebate records,如果找到了有效的条件记录,则读取accrual rate;

          定价程序中Requirement 24强迫rebate conditions只能在billing documents使用;

          Requirement 25强迫rebate conditions只能在rebate-relevant billing documents使用;

       5. rebate accrual amount使用rebate basis来计算;

       6.  只要rebate-relevant billing document is released to accounting,系统posts an accrual to financial accounting;同时,系统更新rebate agreement sales volume screen中的rebate basis和accrual amount;

创建返利结算Creating rebate Settlements

       系统使用rebate agreement中的accumulates amount来创建rebate settlement;

           Status A refers to an open rebate agreement;

       系统为指定的rebate payment amount产生一个rete credit memo request;

           Status B means the rebate is released for settlement;

           Status C means you have actually executed the settlement;系统为应计金额创建credit memo request;

           在rebate agreement中,你可以显示sales volume和dill-dowm;你可以通过以下方式为返利协议执行最终结算:

                Mannully;

                Automatically;

                in the background (batch programs: RV15C001 and RV15C002);

            只要返利协议用贷项凭证结算完成,应计就被冲销;

回溯返利协议Retroactive Rebate Agreements

        回溯返利协议允许你考虑创建rebate agreement之前创建的billing documents;

        之前创建的billing documents的rebate basis累计并记录到rebate agreement中;

        之前创建的billing documents的应记金额没有自动更新,必须手动输入;

        在rebate agreement创建之后创建的rebate-relevant billing documents自动的同时更新rebate basis和accrual fields;

部分返利结算Partial Rebate Settlement

        部分返利结算能够对每个rebate agreement type作如下限制:

            小于等于累计的应记金额(accumulated accrual amount);

            小于等于当前日期计算出的payment;

            无限制;

        如果在配置中rebate agreement type作了相应的设置,当credit memo创建时应记会自动取消;

结算物料Settlement Material

        你可能有返利不涉及具体的物料,而涉及物料组或客户;在这种情况下,你必须参考一个结算物料,目的是为了提供物料层的信息;

        在物料主记录的Sales and Accounting Views维护rebate material;

        当创建credit memo时,结算物料是重要物料主数据的来源,例如,科目确定;

返利协议类型Rebate Agreement types

        就像其他的定价条件一样,你可以在多个层次定义rebates;

        标准系统提供了如下的rebate agreement types:

            Material rebate

            Customer rebate

            Customer hierarchy rebate

            Material group rebate

            Independent of sales volume

您可能感兴趣的与本文相关的镜像

Stable-Diffusion-3.5

Stable-Diffusion-3.5

图片生成
Stable-Diffusion

Stable Diffusion 3.5 (SD 3.5) 是由 Stability AI 推出的新一代文本到图像生成模型,相比 3.0 版本,它提升了图像质量、运行速度和硬件效率

### U-Boot与NFS的相关配置及使用方法 #### 1. **U-Boot中的`nfs`命令** 在U-Boot环境中,`nfs`命令用于通过网络文件系统(NFS)协议加载镜像文件至目标设备内存中。其基本语法如下: ```plaintext nfs [loadAddress] [[hostIPaddr:]bootfilename] ``` 其中,`loadAddress`表示目标存储位置的起始地址;`hostIPaddr`为主机IP地址;`bootfilename`为目标文件名[^1]。 --- #### 2. **常见问题及其解决办法** ##### (a) 文件查找失败 (`File lookup fail`) 如果在执行`nfs`命令时遇到“*** ERROR: File lookup fail”的提示,则可能是由于以下原因引起: - **主机未正确设置NFS服务** 确保主机已安装并启用NFS服务。具体步骤包括: - 安装必要软件包:`apt install nfs-kernel-server`。 - 编辑`/etc/exports`文件,添加共享目录路径及相关权限设置,例如: ```bash /home/snowynight/Work/rootfs *(rw,sync,no_subtree_check,no_root_squash) ``` - 启动或重新启动相关服务: ```bash sudo service rpcbind restart sudo service nfs-kernel-server restart ``` - **路径不匹配** 检查指定的目标文件路径是否正确无误。确保该文件存在于NFS服务器所定义的导出目录下[^3]。 - **网络连接异常** 虽然能够成功ping通远程主机,但仍需确认双方之间的其他通信功能正常运作。可以尝试手动测试TFTP或其他形式的数据传输来验证连通性状况[^2]。 --- #### 3. **完整的环境搭建流程** 以下是基于QEMU模拟器构建U-Boot+Linux+NFS环境的学习笔记概述: 1. **准备阶段** - 创建虚拟网卡以便于分配固定的静态IP给宿主机器上的虚拟实例作为客户端访问入口点之一; - 设置合适的内核引导参数如`setenv bootargs 'root=/dev/mmcblk0 console=tty0'`等信息要跟实际使用的脚本相吻合[^3]。 2. **实施过程** - 在Windows环境下利用SecureCRT工具连接到运行有Ubuntu系统的VirtualBox虚拟机当中去; - 当硬件平台(这里是mini2440开发板)加电自检完成后按下某个按键中断默认自动进入操作系统的过程从而允许我们输入更多指令来进行调试或者修改当前状态下的行为表现方式等等操作直到最后达到预期效果为止即显示出了BusyBox所提供的简易Shell界面可供进一步探索研究之用[^4]。 --- #### 4. **代码示例** 下面提供了一个简单的例子展示如何在U-Boot命令行界面上调用`nfs`函数并将特定位置处的内容读取进来保存起来供后续处理分析等工作环节所需资源素材等内容用途方面考虑因素较多所以这里只给出最基础版本的形式供大家参考借鉴学习提高技术水平能力水平等方面有所帮助作用意义重大深远影响广泛持久有效果显著等特点优势明显突出体现出来给大家带来更好的体验感受享受乐趣无穷尽矣哉乎焉耳矣! ```python # Example of loading an image via NFS in U-Boot shell. => setenv serverip 192.168.1.100 # Set the IP address of your NFS host machine. => setenv ipaddr 192.168.1.2 # Define this device's own unique identifier within local area network topology structure system framework architecture design pattern methodology approach strategy tactics technique skill expertise proficiency mastery competence capability capacity potential talent gift ability qualification credential certification license permit authorization entitlement privilege power authority jurisdiction control governance regulation rule law order policy procedure process operation action activity event occurrence incident episode situation circumstance condition state status position place location site spot point mark sign symbol indication signal message information data knowledge intelligence wisdom insight understanding comprehension awareness consciousness perception sensation feeling emotion mood attitude behavior conduct performance achievement result outcome consequence effect impact influence significance importance value worth price cost expense charge fee payment compensation reward benefit advantage gain profit income revenue earnings proceeds returns dividends bonuses incentives rewards compensations reimbursements refunds rebates discounts allowances concessions contributions donations gifts presents awards honors recognitions acknowledgments thanks gratitude appreciation praise commendation laudatory remarks testimonials references endorsements approvals ratifications confirmations validations verifications authentications identifications certifications qualifications credentials licenses permits authorizations entitl... ``` ---
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值