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

Re: Error phase PREP_INSTALL/SHDUNINST_DB_PREP!

$
0
0

Nothing in either SYBDROPSHDSSO.LOG or SYBDROPSHDSSO.OUT ?


Re: IFCU Avge Consumption

Re: EAM Log review approval workflow

$
0
0

Hi Bhanu,

 

Please apply below SAP note for fixing return button issue.

 

2152875 - Firefighter User cannot find the Return button in the workflow

 

Regards,

Madhu.

Re: how to open closed quick launch area in hana modeler?

$
0
0

Hello Abhinay,

 

Open SAP HANA studio, go to window -> open Perspective-> SAP HANA modeler. Quick launch view will be opened.

 

OR

 

Go to window -> show view -> others . Type quick launch in serach. or under SAP HANA folder you will get the quick launch view option.

 

 

-

Regards

Subhash

Re: The $delta$ container is not releasing space

$
0
0

Lars,

 

Thanks for your response.

 

The queries I am using to compare the data are:

 

select * from m_table_virtual_files where table_name='PRICAT_K008C';

select * from m_cs_tables where table_name='PRICAT_K008C';

select schema_name,table_name,column_name,compression_type,loaded from m_cs_columns where table_name='PRICAT_K008C';

 

I attached the output of iteration 1: this is the current baseline data we are comparing future iterations too as it seemed to compress 3x better than iterations 2-4.

 

Since we blasted the test environment for another migration I just have images for iteration 2 I wasn't able to get all of them attached.

 

I will upload the data from the next iteration as I expect it to be the same as the last 3.

 

the virtual files data shows where the $delta$ container is taking up most of the space in the table.

 

I was able to create a copy of the PRICAT_K008C table and its final size was under 10GB with different column compression types being applied and the delta container correctly resized.

 

I will also look at the m_delta_merg_statistics data after the next migration test.

 

Thanks,

Troy

Cannot share project to backed 'SAP'

$
0
0

Hello, I have eclipse JUNO and JDK 7.0 installed on my system ( with OS windows 8.1). Instaled When I write a UI5 program/projects in eclipse and want to share it over to the back end(to SAP), I am facing the following issues: 1) For some projects, I am not able to see the option 'Share As' in the context menu, 2) Even if I see the 'Share As' option, when I click on it, I am not able to see the button 'Next' enabled to proceed further to login to SAP system. I installed all the required JDK plug ins and SAP ABAP plugins meant for SAP UI5 and ABAP. Can someone tell me if I am missing some plugs or..etc??? Pls suggest. Thanks

Re: PO Text - IDoc: ORDERS05 with Message Type: ORDERS

$
0
0

can you share more information, e.g. screenshots from your PO item text screen, from your text customizing?

 

What happens if you only enter the texts that did not come in your described test. does it then appear?

Does the text appear when printing the PO (with SAP standard program and form)?

Can it be that the text types are not foreseen to be visible to externals (hence not included in the IDoc)?

Compare your settings with the details given in my document Create and print a new item text type for purchase order

Re: Stored Procedure needed in SO

$
0
0

Hi Ram,

 

 

Try This,

 

USE [TEST]

GO

/****** Object:  StoredProcedure [dbo].[SBO_SP_TransactionNotification] Script Date: 02/28/2015 13:55:20 ******/

SET ANSI_NULLS ON

GO

SET QUOTED_IDENTIFIER ON

GO

 

ALTER proc [dbo].[SBO_SP_TransactionNotification]

 

@object_type nvarchar(20),                      -- SBO Object Type

@transaction_type nchar(1),               -- [A]dd, [U]pdate, [D]elete, [C]ancel, C[L]ose

@num_of_cols_in_key int,

@list_of_key_cols_tab_del nvarchar(255),

@list_of_cols_val_tab_del nvarchar(255)

 

AS

 

begin

 

-- Return values

declare @error  int                       -- Result (0 for no error)

declare @error_message nvarchar (200)           -- Error string to be displayed

select @error = 0

select @error_message = N'Ok'

 

--------------------------------------------------------------------------------------------------------------------------------

 

--    ADD   YOUR  CODE  HERE

 

----------------Sales Order--------------------------

if @object_type='17' and @transaction_type in ('A','U')

begin

 

 

 

 

DECLARE @LineNum NVARCHAR (20)   -- LineNumber      

 

IF EXISTS(select 1 from ORDR a inner join RDR1 b on a.DocEntry=b.DocEntry inner join OITM i on b.ItemCode=i.ItemCode

where i.InvntItem='N' and b.WhsCode NOT IN ('SERVICE') and b.DocEntry=@list_of_cols_val_tab_del)

BEGIN

 

 

select @LineNum=Convert(nvarchar(20),Min(b.LineNum)+1) from ORDR a inner join RDR1 b on a.DocEntry=b.DocEntry inner join OITM i on b.ItemCode=i.ItemCode

where i.InvntItem='N' and b.WhsCode NOT IN ('SERVICE') and b.DocEntry=@list_of_cols_val_tab_del

 

set @error=1701

set @error_message='Please check, Warehouse should be SERVICE...LineNum: ' + @LineNum

 

END

 

END

 

-------------------------------------------------------------------------------------------------------------------------------

 

-- Select the return values

select @error, @error_message

 

end

Thanks & Regards,

Silambu


Re: Fiori launcpad on HCP trial account not working

$
0
0

Hi Shankar,

 

Is this issue still relevant?

Can you please send the details to my mail if our help is needed.

 

Regards,

Ofra

ofra.efrati@sap.com

Re: Encoding problem in file receiver

$
0
0

Zevik,

 

Your UDF works fine. Please check my earlier response.

Note: XML reserved characters <, >, &, ', " will be escaped as &gt;, &lt;, &amp;...

Hebrew.JPG

Re: How to remove XML header?

$
0
0

Ceren,

 

Please create a new thread.

Formula for calculating colors

$
0
0

I have also needed to use all three of the RGB command example(RGB(120, 255, 129))   to calculate colors.

 

 

This is because the below formula from documentation makes no sense.

 

Mathmatics would indicate the below needs brackets. What are the little plus symbols right next to the number mean? is it an addition symbol or something other

 

65536 * Blue+ 256 * Green+ Red

Re: Script error - Inserting multiple rows in one SQL statement.

$
0
0

Hi,

 

Actual syntax is as below:

 

INSERT ALL

  INTO suppliers (supplier_id, supplier_name) VALUES (1000, 'IBM')

  INTO suppliers (supplier_id, supplier_name) VALUES (2000, 'Microsoft')

  INTO suppliers (supplier_id, supplier_name) VALUES (3000, 'Google')

SELECT * FROM dual;

 

Now in your non working query, you have applied comma after first INTO statement.

 

Please remove it.

 

Thanks,

Swapnil

Re: Documented goods movements not showing in production order header

$
0
0

Hello Aqueel,

 

Please make sure you also tick mark the "Status change document" for "order header" in OPL8 ....

 

If possible share your OPL8 screen shot..Make share you done Goods movement with respect to your Production order.

 

Please create new Prod order and test it again

 

Regards

Umesh Mali

Re: EWA Alerts Sections

$
0
0

Hi Alwina,

I have done the settings as per the recommendations in your link (CCMS) OS data in ST06 (ST06N, OS07N) for previous hours and history is not available - Technology Troubleshooting Guide…. and also followed the relevant OSS notes.

Below are the results attached.

Also now I see the method to be CCM_Collect_c and the method is not yet released and available in CEN System.

Is that be because of some corruption in the /log/sapccm4x folder?

Am i supposed to follow 1503112 - Obsolete MTE nodes in CCMS monitoring segment (Error-253).

Clearing Monitoring Segment of SAP instance:

Will this help?

As I have the log file in SAT system log/sapccm4x dir.

Please share your thoughts.CPUUtil.JPGsapccm4xlog.JPG


Re: Cannot Loop values from BAPI internal table

Re: phase MAIN_SHDCRE/DBCLONE - EHP upgrade taking long time

$
0
0

Hi all,

I have same (or very similar) problem. It is no space for transaction log. Check transaction log space and restart update. My case resolved.

Re: Performance tuning of Realtime cube

$
0
0

Thanks Nagesh,

 

This is a BW client in Solution manager system, where Real-time cubes are getting populated directly by the Batch jobs as APO* requests.

 

Data load schedule in these cubes is irregular ( Based on SolMan technical monitoring configuration and system thresholds). In other words its really tough to figure out the time when data load in cube will be running and when not running. So I was wondering -

 

1. Do we need to change the cube behavior to data load and planning not allowed while running compression, aggregation etc ?

 

2. What if data loading batch job triggers when Real-time cube is in data load and planning not allowed mode ?

Re: Blank Customer in KNVV How to delete?

$
0
0

Jurgen,

 

The screenshot KNVV does not have sales area too.

In XD01, if user does not enter the sales area in the selection screen, he/she will not get the Sales Area Data tab in customer master. And without this tab, how can sales view be created for the customer OR, how can an entry be created in KNVV?

 

TW

Re: Error 1053 when i will start the sap router service

$
0
0

the solution this error is install MSVCR100.dll

Viewing all 8798 articles
Browse latest View live




Latest Images