Simple Price List Updates (No DTW) - SAP Business One: Tips & Tricks

Ғылым және технология

🎦 Video Description
Do you want to update your price lists quickly without the use of the DTW? This video shows you how to export your price list information to Excel and then format it and upload it through the SAP Business One client directly from your workstation even without server access.
💾 Price List Queries
-- SQL
SELECT
T0.[PriceList] AS 'Price List No.'
,T0.[ItemCode] AS 'Item No.'
,T1.[BASE_NUM] AS 'Item No, Base Price List No.'
,T1.[Factor] AS 'Item No, Factor'
,CASE T0.[Price] WHEN 0 THEN '' ELSE CAST(T0.[Price] AS VARCHAR) END AS 'Item No, List Price'
,T0.[Currency] AS 'Item No, Currency for List Price'
,CASE T0.[AddPrice1] WHEN 0 THEN '' ELSE CAST(T0.[AddPrice1] AS VARCHAR) END AS 'Item No, Additional Price (1)'
,T0.[Currency1] AS 'Item No, Currency for Add. Price 1'
,CASE T0.[AddPrice2] WHEN 0 THEN '' ELSE CAST(T0.[AddPrice2] AS VARCHAR) END AS 'Item No, Additional Price (2)'
,T0.[Currency2] AS 'Item No, Currency for Add. Price 2'
FROM
ITM1 T0
INNER JOIN OPLN T1 ON T0.[PriceList] = T1.[ListNum]
WHERE
T1.[ListName] = '[%0]'
ORDER BY T1.[ListName], T0.[ItemCode]
-- HANA
SELECT
T0."PriceList" AS "Price List No."
,T0."ItemCode" AS "Item No."
,T1."BASE_NUM" AS "Item No, Base Price List No."
,T1."Factor" AS "Item No, Factor"
,CASE T0."Price" WHEN 0 THEN '' ELSE CAST(T0."Price" AS VARCHAR) END AS "Item No, List Price"
,T0."Currency" AS "Item No, Currency for List Price"
,CASE T0."AddPrice1" WHEN 0 THEN '' ELSE CAST(T0."AddPrice1" AS VARCHAR) END AS "Item No, Additional Price (1)"
,T0."Currency1" AS "Item No, Currency for Add. Price 1"
,CASE T0."AddPrice2" WHEN 0 THEN '' ELSE CAST(T0."AddPrice2" AS VARCHAR) END AS "Item No, Additional Price (2)"
,T0."Currency2" AS "Item No, Currency for Add. Price 2"
FROM
ITM1 T0
INNER JOIN OPLN T1 ON T0."PriceList" = T1."ListNum"
WHERE
T1."ListName" = '[%0]'
ORDER BY T1."ListName", T0."ItemCode"
📚 Chapters
00:00 - Pilot Introduction
00:45 - Scenario Description
02:00 - Price List Import Overview
03:55 - Extract to Excel
04:29 - Editing Prices
07:50 - Creating Import File
08:49 - Import from File
10:20 - Pilot Outro
💼 Working Remotely: Efficiently and Effectively Free Course ☕
remote.battleshipcobra.com (Free)
🧮 SQL FOR SAP BUSINESS ONE COURSE NOW AVAILABLE 📈
sql.battleshipcobra.com (50% off)
📊 CRYSTAL REPORTS FOR SAP BUSINESS ONE COURSE 💎
crystal.battleshipcobra.com (50% off)
🎉ADVERTISE IN MY VIDEOS 🎊
advertise.battleshipcobra.com
😎 More About BattleshipCobra
battleshipcobra.com/
💸 Support These Videos
donate.battleshipcobra.com/

Пікірлер: 18

  • @pascalemwavaga9583
    @pascalemwavaga95833 жыл бұрын

    This came in very handy. My colleagues and I were struggling with DTW. Thank you for sharing your knowledge.

  • @chpojt
    @chpojt3 жыл бұрын

    Awesome! at last someone who really helps on this!

  • @dmytronesterov6616
    @dmytronesterov66163 жыл бұрын

    Michael, many thanks for the video and query!

  • @ismahanemoreau8404
    @ismahanemoreau84042 жыл бұрын

    Thanks a lot Captain Mike Taylor :)

  • @jedzed7061
    @jedzed70613 жыл бұрын

    Very informative. Thank you

  • @jedzed7061

    @jedzed7061

    3 жыл бұрын

    @@BattleshipCobraSAP hi loving your videos, do you have tips on g/l account determination, like using dtw or importing from excel? I'd really appreciate if you have one. Thanks

  • @alain1488
    @alain14883 жыл бұрын

    very usefull bether of DTW :)

  • @RafaSzymanski
    @RafaSzymanski6 ай бұрын

    This is very good. I like it a lot. Could You tell what band play at the end?

  • @BattleshipCobraSAP

    @BattleshipCobraSAP

    2 ай бұрын

    Thanks! Ohhh, it took me a minute but I found the song. It's from the official KZread Audio Library and it's called "Fight or Flight" by Ethan Meixsell. Here is a link, boom: kzread.info/dash/bejne/fWyIvLuMdpTJl9o.html

  • @ismahanemoreau8404
    @ismahanemoreau84042 жыл бұрын

    Hi Mike, I would like to knwo whether by chance you have a course about how to update SPP1 with DTW? Thanks a lot :)

  • @Tdansken1
    @Tdansken1 Жыл бұрын

    Hi , Thanks for tips. Worked almost :) , but sitting in Norway, here you need to cast the price as money when you run the SQL query. else the import prices becomes very high.

  • @BattleshipCobraSAP

    @BattleshipCobraSAP

    Жыл бұрын

    Thanks for watching! So did something like this: CAST(CAST(T0.[Price] AS MONEY) AS VARCHAR)? Looking it up, the MONEY cast adds the comma? It looks like you're doing a 1 000 000,00 style formatting? I think this nested cast would be OK for anywhere really. Let me know I can update it, M

  • @fewrose
    @fewrose3 жыл бұрын

    I want to Freeze Price list in item master Data so that i can extract proper item master list with price list. Please help me.

  • @taktikalsolutionss.c.300
    @taktikalsolutionss.c.3002 жыл бұрын

    ¿Can you update multiple price lists?

  • @BattleshipCobraSAP

    @BattleshipCobraSAP

    Жыл бұрын

    To update multiple price lists you would need to use the DTW method. But with the DTW method you can do as many price lists as you need to at once. Here is my video on price list updates via DTW: kzread.info/dash/bejne/gph-1syrqseWcsY.html

  • @fewrose
    @fewrose3 жыл бұрын

    I need Sales Employees Wise Item Group Sales Can anyone help to me.

  • @fewrose

    @fewrose

    3 жыл бұрын

    @@BattleshipCobraSAP I want customized via query manager.

  • @chpojt
    @chpojt3 жыл бұрын

    Awesome! at last someone who really helps on this!

Келесі