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

Re: MR51 to figure out raw material unit price

$
0
0

RSEG table is probably what I need. Only problem I have with that table is that it only has fiscal year. I need the month that it is posted. I can not see that information anywhere.

Tried to look at the MSEG table as you suggested but how can I connect those 2 tables. PO# does not work since we may have different shipments under same PO number.  Document number in MSEG is empty instead it has material doc number which does not help since RSEG does not have that field.

Which field would you use for relating these 2 tables?


Re: LSMW update Contract Item field

$
0
0

Hi Jurgen;

 

Gotcha.  I actually want to update a customized field. The first item is updated successfully, but the other items, it seems they cannot recognize

So I recording again using different ways, below is a sample for a contract with 13 items.  How can I convert these X to a item number.

 

4-23-2015 11-54-51 AM.jpg

Any suggestion on that?

 

Thank you very much.

 

Janey

Re: Loop on message 'Please enter a communication strategy'

$
0
0

Try to change the communication structure once , then press back.. Then again go to communication and change it , then save it.

Re: why get negative value in excel add in

Version inactive in Plan Book & KF's not updated with Data

$
0
0

Hi Experts,

 

I've done the following.

 

  • Created MPOS with required Chars & CVCs.
  • Created Storage Bucket Profile and Planning Bucket Profile.
  • Created Planning Area with required KFs and initialized PA with an Simulation Version successfully. (Tried with Unit ST and EA)
  • Loaded demand into Cube (all my Prod Chars have EA as BUOM).
  • Loaded Demand from Cube to PA. (log says Data Copied).
  • Created Plan Book and DataView, Version Char which gets automatically assigned to Plan Book always looks to be INACTIVE.
  • Created Selections for the Data View.

 

Issue am facing, No data is getting populated in the Planning Book (Demands Qty is not visible).

 

Your help is highly appreciated.

 

Thanks

VK

Re: Switch from Production to SAP PP

$
0
0

Thnk you for your Valuable information.

 

I have also heard that most companies hire a freshers and train them on SAP.

Re: CR 2011 - using two data sources

$
0
0

Hi Glen,

 

I'd like to offer some tips more than answers, because you give me the impression you're pretty comfortable with Queries.

 

I've become accustomed to using a Command anytime I work with multiple databases, big benefit for me is speed, because it's all serverside.  Example: I just finished a report using two sources.  One is just an added DB with a single table of 30 rows/7 columns).  It runs sub-second with a query vs about 30 seconds trying to pull together CR.

 

Using a Command, it's a lot more visual to me as to the mechanics of what's actually happening, I become more comfortable with matching data types (AccPac has a different data type for everything!), and I find it easier to troubleshoot.  Then CR just makes it pretty.  Can't beat the formatting capabilities of CR.

Re: Query to get the 'Date' when the Sales order DocStatus become 'Close'

$
0
0

So we used the date of creation of target documents as sales order closing date?


Re: Validación que no permita hacer recepción de Producción si no existe emisión de Producción

$
0
0

Más vale tarde que nunca, aquí te dejo unas líneas de código que uso para bloquear la declaración de producción a menos que se haya realizado alguna entrega de componentes.

 

Esto verifica que se haya entregado al menos algo de todos los componentes:

 

-- BLOQUEA DECLARACIONES DE PRODUCCION SI NO HA ENTREGADO POR LO MENOS ALGO DE TODOS LOS COMPONENTES

 

 

IF @transaction_type = 'A' AND @Object_type = '59'

BEGIN

IF EXISTS (SELECT T0.DOCENTRY FROM dbo.IGN1 T0 WHERE T0.DOCENTRY = @list_of_cols_val_tab_del)

  BEGIN

  DECLARE @entry INT

  SELECT @entry = T0.BASEENTRY FROM dbo.IGN1 T0 WHERE T0.DOCENTRY = @list_of_cols_val_tab_del

  IF EXISTS ( SELECT T1.ITEMCODE, T1.PLANNEDQTY PLANIF, sum(ISNULL(T2.QUANTITY,0)) ENTREGADO, T2.BASEENTRY AS 'DOC BASE'

  FROM dbo.OWOR T0

  INNER JOIN dbo.WOR1 T1 ON T0.DOCENTRY = T1.DOCENTRY

  LEFT OUTER JOIN dbo.IGE1 T2 ON T2.BASEENTRY = T0.DOCENTRY AND T1.ITEMCODE = T2.ITEMCODE

  WHERE T0.DOCENTRY=@entry and T1.ITEMCODE NOT IN ('S00001','S00002','S00003','S00004','S00005','S00006','S00007','S00008','S00009','S00010','S00011','S00012')

  group by t1.itemcode,t1.plannedqty,t2.baseentry

  HAVING sum(ISNULL(T2.QUANTITY,0))<=0)

  BEGIN

  SELECT @Error = 1, @error_message = 'Existen componentes no entregados'

  END

  END

ELSE

  BEGIN

  SELECT @Error = 1, @error_message = 'Existen Componentes no entregados'

  END

END

Re: No automatic updation for IT0008;Relevant wagetype not found

$
0
0

Thnx Venkat..It resolved the issue.

Re: SAP DM Add-in

Re: BI Abap and BI Java Integration

Re: How can I align tiles of a sap.m tileContainer to the left?

Re: Crystal Reports Report Bursting

$
0
0

No, it should not generate report with all data.

 

Do you have more than one query in report? if so you have to apply filter in publication for all queries with unique identifier.

 

Just for testing filter Dynamic recipients report to few values (five) and see how it's generating, in this case also if it's generating five reports + report with all data,  then something you need to look at original report design.

 

Thanks,

Mani

Re: Front-end memory and limitation cells of the BEX Analyzer

$
0
0

Hello Caio,

 

 

The limitation lies on .Net Framework 32 bits which can handle 1.2 gigabytes.

 

You are reaching 1.8 Million because your datacells has no data or almost no data.

 

There is a KBA documenting your issue: SAP Note 1860872

 

There you will find a recommendation of Openhub, that allows you to extract data.

 

 

Just remember that BEx Analyzer is a tool for query navigation, not mass data extraction.

 

 

Kind Regards,
Edward John
SAP AGS


Re: BEx Query Designer -> Execute pops up blank Internet Explorer session

ABAP Webdynpro Rendering issues after ECC Upgrade

$
0
0

Dear All,

 

We recently upgraded ECC to EHP 7 (Netweaver 7.4)  but our Portal is still at Netweaver 7.0 EHP2 SP16.

 

The ABAP Webdynpro iViews in Portal have the following issues. ( We use IE11).

 

1. The ABAP Webdynpro Table filtering is not working. When I click the filter button it does nothing.  

 

2. The cursor in the  Input fields reset back to the first position while typing and create a big mess.

 

Any help appreciated.

 

Thank you.

 

PK

Re: Issue in updating actual value in Info type 586

$
0
0

Hi gajanan,

 

 

Not like that.. my requirement is in the year starting(ex. 01.04.0214)  they are going to upload proposed investment values and year ending( ex. 31.03.2015) they are going to upload actual investment values for same employee(like updating the values). so in the year starting(Ex.01.04.2014), I have uploaded one excel, which contains the data like proposed investment values successfully. and year ending(Ex.31.03.2015), I am uploading another excel which contains the data like Actual invest values for that same employee. but the problem is actual investment values are not updating, for this I have written the logic, for change operation(MOD) of HR_INFOTYPE_OPERTION for updating the actual investment values. Here I am getting the error is No data stored for 0586 in the selected period.  I have given same period( begda and edda for already uploaded proposed investment values).  how can i achieve this please guide me.

Re: BI document repository and BI MetaData Repository are missing in Portal731

Re: Agentry Sales Manager Initial Load problem

$
0
0

Robin,

 

If the fetch is taking more than 3 hours the first thing you should look at is the backend process to determine why it is taking that long.  I also agree that it is way too much data for an object collection but the first place to start is to improve the backend fetch performance so you can see if that much data can be handled on the client.

 

--Bill

Viewing all 8746 articles
Browse latest View live




Latest Images