Quantcast
Channel: SCN: Message List
Viewing all 3074 articles
Browse latest View live

How to link a table using a command

$
0
0

Hey,

 

This is probably a pretty basic answer for most of you, but it has me stumped! I have two tables which I'd like to link, but the data I'd like to use to link them is split over two fields in one table, but contained in a single field in the other.

 

In one table (called PLINV) there's a single field called INV_NO_LINE - the first 9 numbers contain the invoice number, and the following 3 characters refer to each line of the invoice. So it'll be in the format 123456789001, 123456789002 etc.

 

The other table (called ORDLIN) has two separate fields, one with the invoice number (INV_NO, 9 characters) and one with the line number (INV_LINE, 3 characters). From the ORDLIN table I'd like to fetch a field called NARRATIVE.

 

I'm a bit stuck with what to put as the command. I put the following, but I was a bit confused about what goes in each section (as you can probably see!)

 

SELECT

    ORDLIN.NARRATIVE

FROM

    PLINV LEFT OUTER JOIN ORDLIN ON

    substr(PLINV.INV_NO_LINE,1,9) = ORDLIN.INV_NO AND

    substr(PLINV.INV_NO_LINE,10,3) = ORDLIN.INV_LINE

WHERE

    substr(PLINV.INV_NO_LINE,1,9) = ORDLIN.INV_NO AND

    substr(PLINV.INV_NO_LINE,10,3) = ORDLIN.INV_LINE


Can anyone tell me exactly what I should put in the Command box for this to work? Thank you for any help you can give me.


Re: dataobject error

$
0
0

Set the expression for the Text property of the label to the name of the column the text should be coming from, via the expression button in the DW painter.

 

Untitled.png

Re: LCM failed when I try to promote the security settings for universe

$
0
0

What options did you choose in security settings?

 

If it is just user rights settings, promote the universe with security, and apply user security manually on the destination system.

Re: Runallocation script NW

$
0
0

Hi Vadim,

 

Thanks for looking into this.

 

I will try to explain better what I need to calculate.

 

We have a COSTS model where users plan their costs by:

NATURE : all accounts under node PANXSFNA

ORGANISATION : Cost centers

 

In parallel net sales are planned in SALES model by

ORGANISATION : Profit Centers

CUSTOMER

PRODUCT

NATURE: VV010 (gross sales), ...

 

Dimension ORGANISATION regroups Costs Centers and Profit Centers:

 

PANXN1B = Node

     1B = Profit Center (PC)

     BA11E001 = Cost center1 (CC)   - property PROFIT_CENTER=1B

     BA13E001 = Cost center2 (CC)  - property PROFIT_CENTER=1B

 

In MARGIN will be analyzed a commercial margin by customers/products/other dimensions

 

Net Sales are pushed from SALES model to MARGIN model by PC/Nature/customers/products/Source IMPORT_CA

 

Costs of some CC (Marketing CC, ...) are pushed to the MARGIN model by CC/NATURE (same)/CUSTOMER=CUSTOMER_NA / PRODUCT=PRODUCT_NA/Source IMPORT_COSTS

 

 

Now I need  to reallocate the costs of these CC to their PC by product/customer, based on Gross sales (NATURE=VV010=Gross sales).

 

Depending on the CC, costs will go to a particular Nature: VV410 (marketing), VV420 (Structure),...

 

The allocation to Customers is done on particular criteria : Company Code (COMP_CODE), Distribution channel (DISTRI_CHANNEL), ACTIVITY, ...

 

 

 

The dimension REPART_COPA is a technical dimension, which contains the allocation parameters. This dimension will be filled by the users.

We use a separate dimension as we do not want the users to update the "ORGANISATION" dimension which contains the "real" cost centers.

 

IDDescriptionCCCOMPCODECHANNELCUSTOMERCOMPOSANTPRODUCT
R_BA11E001BA11E0012551[COMPCODE]="2551"VV430BAS(G_10)
R_BA13E001BA13E0012521[COMPCODE]="2521"VV430BAS(TOTAL_PRODUCT)
R_BA15E001BA15E001255130[COMPCODE]="2551" AND [CHANNEL]="30"VV440BAS(G_30)


In this example, CC BA11E001 needs to reallocate its costs to all customers for which property COMPCODE is 2551 and to all products under node G_10. Value should be posted to account VV430.


CC BA15E001 needs to reallocate its costs to all customers for which COMPCODE is 2551 and CHANNEL is 30, and to all products under node G_30. Value should be posted to account VV440.

 

Extract of the CUSTOMER dimension:

 

ID

CHANNEL

COMP_CODE

01302521-0010020353

30

2521

01302521-0010020357

30

2521

01352521-0010020363

25

2521

01302551-0010022342

30

2551

01302551-0010000404

30

2551

01302551-0010022291

30

2551

01302551-0010024230

30

2551

 

I'm first struggling with the allocation to customers.

 

I tried:

 

*SELECT(%CC_TO_REPART%,"CC","REPART_COPA","[ID]<>'REPART_COPA_NA')  // get BA11E001, BA13E001,BA15E001

 

*SELECT(%COMP%,[COMPCODE],REPART_COPA,"CC = %CC_TO_REPART%")

*SELECT(%CHANNEL%,[CHANNEL],REPART_COPA,"CC = %CC_TO_REPART%")

 

*XDIM_MEMBERSET CATEGORIE=BUDGETV0

*XDIM_MEMBERSET DEVISE_RPT=LC

*XDIM_MEMBERSET DIVISION=DIVISION_NA

*XDIM_MEMBERSET HCLIENT=CLIENT_NA

*XDIM_MEMBERSET HPRODUIT=PRODUIT_NA

*XDIM_MEMBERSET NATURE=BAS(PANXTNAT)

*XDIM_MEMBERSET ORGANISATION=BA15E001

*XDIM_MEMBERSET REPART_COPA=REPART_COPA_NA

*XDIM_MEMBERSET SITE_EXPEDITION=SITE_EXPEDITION_NA

*XDIM_MEMBERSET SOURCE_DONNEES=IMPORT_COUTS

*XDIM_MEMBERSET TEMPS=2016.01


*FOR %CC%=%CC_TO_REPART%

*RUNALLOCATION

*FACTOR=USING/TOTAL

 

 

WHATWHEREUSINGTOTAL
*DIM_NONAGGR NATUREWHAT=BAS(SFNA);WHERE=VV430;USING=VV010; TOTAL=<<<
*DIM ORGANISATIONWHAT=%CC%; WHERE=<<<; USING=1B; TOTAL=<<<
*DIM DIVISION  WHAT=DIVISION_NA; WHERE=<<<; USING=<<<; TOTAL=<<<
*DIM HCLIENT WHAT=CLIENT_NA;  WHERE=>>>;   USING=[COMPCODE]="%COMP%";      TOTAL=<<<
*DIM HPRODUIT  WHAT=PRODUIT_NA;   WHERE=>>>; USING=BAS(TOTAL_PRODUCT);    TOTAL=<<<
*DIM SITE_EXPEDITION WHAT=SITE_EXPEDITION_NA; WHERE=>>>; USING=BAS(TOTAL_SITE_EXPEDITION);   TOTAL=<<<
*DIM SOURCE_DONNEES WHAT=IMPORT_COUTS; WHERE=COPA;    USING=IMPORT_CA;   TOTAL=<<<
*ENDALLOCATION
*NEXT

 

This will work only if 1 CC in REPART_COPA

USING=[COMPCODE]="%COMP%" AND [CHANNEL]="%CHANNEL% won't work



I tried:


*SELECT(%CC_TO_REPART%,"CC","REPART_COPA","[ID]<>'REPART_COPA_NA')  // get BA11E001, BA13E001,BA15E001

*SELECT(%CUSTOMER%,[CUSTOMER],REPART_COPA,"CC = %CC_TO_REPART%")

*FOR %CC%=%CC_TO_REPART%

*RUNALLOCATION

*FACTOR=USING/TOTAL


 

WHATWHEREUSINGTOTAL
*DIM_NONAGGR NATUREWHAT=BAS(SFNA);WHERE=VV430;USING=VV010; TOTAL=<<<
*DIM ORGANISATIONWHAT=%CC%; WHERE=<<<; USING=1B; TOTAL=<<<
*DIM DIVISION  WHAT=DIVISION_NA; WHERE=<<<; USING=<<<; TOTAL=<<<
*DIM HCLIENT WHAT=CLIENT_NA;  WHERE=>>>;   USING=%CUSTOMER%TOTAL=<<<
*DIM HPRODUIT  WHAT=PRODUIT_NA;   WHERE=>>>; USING=BAS(TOTAL_PRODUCT);    TOTAL=<<<
*DIM SITE_EXPEDITION WHAT=SITE_EXPEDITION_NA; WHERE=>>>; USING=BAS(TOTAL_SITE_EXPEDITION);   TOTAL=<<<
*DIM SOURCE_DONNEES WHAT=IMPORT_COUTS; WHERE=COPA;    USING=IMPORT_CA;   TOTAL=<<<
*ENDALLOCATION
*NEXT


Works with only 1 CC in REPART_COPA

With multiple: Error in UJKT: UJP_RULE_EXCEPTION:'AND' manquant dans l'expression [COMPCODE]="2521" AND [CHANNEL]="30",[COMPCODE]="2521"



Thanks again,

Camille

Re: Is Design Studio 1.6 supported on WebLogic

$
0
0

technically it should support. Design studio add on not specific to any web application server. if BO install supports web application server , design studio should support. it is just add on.

Re: How to define tab order in SAP Screen Personas?

$
0
0

One way is by going to the /PERSONAS/ADMIN transaction and run the health check. It will tell you the Personas support package level.

You can also see it by clicking on System -> Status, then see the component list (magnifying glass) in the SAP System Data box. Personas is towards the end of the list and the SP level is listed there too.

Re: Mass printing of material document with a new output type.

$
0
0

Hi Biju,

 

This is in preparation of future go-live.  We want material document printout after stock migration.  All MvT-56x are set to "No Print" - so output type won't be attached to those material document.  We have to be ready with the best option to get all those docs printed.

 

Thanks,

- Chetan

Error al instalar SAP B1 9.2

$
0
0

Buen día, estoy tratando de instalar SAP B1 9.2, al momento de llegar al Repository se detiene y dice que tiene error, sin embargo el log de errores esta vacío, ya desinstale la versión anterior (9.0), ya inicié el instalador en modo administrador, ya di permisos en SQL a nivel FULL, no se que mas podría hacer, si alguien me pudiera dar un "norte".

Saludos y gracias de antemano


Re: A fatal error has been detected by SAP Java Virtual Machine SAP BI

$
0
0

Carlos,

 

      If you anything more than 10users on your system, you are way TOO low in overall memory.  You need min 40 to 48Gig of memory.

 

Approx Memory allocation required:

  • ~ 4 to 6 Gigs for the OS alone
  • ~ 12 to 20 Gig for all the APS
    • 8Gigs for the DSL Bridge alone
  • ~ 8 to 10 Gigs for other BI4 Servers
    • ~ 4 to 6Gigs for WebI Process

 

This a very high-level without knowing your environment.

Please have a look at the sizing guide for more details

 

Sizing and Deploying SAP BI 4 and SAP Lumira

 

 

Any reason you still need to run BI 4.0 w/ SP4, why have you NOT updated to BI 4.1 w/SP7.  The APS wizard would help you split the APS server much better.

 

Regards,

 

Ajay

Re: Std. Price change in MMR

$
0
0

Thanks for your reply ...Attahed here with is the Screen shot Price field.jpg

Valuation is S price and price is 244.

 

Thanks

TL

Re: Universe connection breaks after promotion management

$
0
0

can you check the DEV connection credentials? It might have been PROD credentials with DEV name to the connection.

Re: Exclude SNP Pur Req( APO application4) from CTP engine

$
0
0

Hi Rajiv,

 

 

 

Please, check the methods available in BAdI /SAPAPO/RRP_IO_CHECK.

 

 

 

Based on the customizing and master data settings you made, different methods may be triggered - I would suggest that you set a breakpoint at the methods and run CTP and CTP heuristic, to note down which of the methods get called.

 

 

 

You may filter the receipts based on the ATP Category of the order (example: 'EA' = SNP PurRqs).

 

 

 

Regards,

Tiago

SRM NWBC URL Question

$
0
0

Hello,

 

We are using NWBC and I want to change the approval email URL. Where can I do this?

 

In Portal we used SPRO --> SRM Server --> Technical Basic Settings --> Maintain Portal Information. I tried changing here but "Logon" link in Approval email is still pointing to different URL.

 

Appreciate any quick replies. Thanks.

Re: Std. Price change in MMR

$
0
0

Addtionaly this is Finished good but no BOM, rounting is maintained,We dont run costing run for this material.

 

Thanks

TL

Re: Std. Price change in MMR


Re: Consignment and subcontracting 541K

$
0
0

I've just changed account assignment in order to be able to post my subcontracting PO to cost center rather than production order. Because the A&D bf don't allow using consignment and subcontracting for PO posted to production order.

 

That said, i think the way to go further is to customize the movement type. For this, i don't have an idea how to proceed.

 

Please advise.

 

Thanks

Adding BP Catalog info to Inventory Master Data>Inventory Data tab

$
0
0

Hello SAP gurus,

 

#1

Is it possible to add the BP catalog number information for an item in the Inventory Master Data/Inventory Data tab?

 

The problem we are having is that several users find it hard to see if there is stock for an item that has stock under the BP catalog item.

 

Can two fields be added in the Inventory Data tab?

 

Field 1 = BP Catalog Item number

Field 2 = Total stock of parent/childs

 

I hope this makes sense.

 

#2

Is there a way to make it so that the part being searched also shows the stock from the BP cat items?

 

 

Thank you in advance for any help you provide.

Export report definition to text using the SDK

$
0
0

Hello:

 

In CR 11.0.0.895 there is a option to export to a report to a text Report Definition, via: File -> Export -> Export Report, then select Format: Report Definition (TXT) as Destination: Disk file.

 

Is it possible to get the same functionality but programmatically using the .Net SDK? I couldn't find the export option corresponding to the Report Definition (TXT) format.

 

Thanks

Re: SuccessFactors Competency Library Import

Re: Delivery block field greyed out using VA02

$
0
0

Then delete the user from the SHD0 table. They are then assigned to the default screen again like the others.

 

Most likely a transport problem because the end user has SAP_ALL in DEV...  :-)

 

Cheers,

Julius

Viewing all 3074 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>