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

Re: SAP B1 Open Sales Order Balance

$
0
0

Thanks Peter, I'll give that a go


Re: Launch Processes from HRPAO_PAOM_MASTERDATA

Re: Remove/hide Details Panel Arrow

$
0
0

Hi John,

 

Have you come across any BOBJ report session termination if we use this additional query string "noDetailsPanel=true" ?

 

Recently we have added this query string to hide the panel, but just by adding this querystring the user session in BOBJ server is terminating in less than 60 seconds.  I have raised OSS message, you can refer to the message 0000011416 / 2016 for full detail.

 

Appreciate if you can provide any information around this issue.

 

Regards

Siva

Re: HANA smart data integration and smart data quality questions post there

$
0
0

Hi You can find the remote subscriptions from the follownig query: SELECT * FROM M_REMOTE_SUBSCRIPTIONS; Your LogReader directory looks clean. Do step7 and Step8 and see if it works Thanks Hitesh

Re: How to create this Maintenance Plan?

$
0
0

Hello Richard,

 

Study these proposals

 

Have 3 single cycle plans of 3YR cycle

  • First One with Operations Inspections Tasklist - with start of cycle date 01.01.2013  (Calls will be in 2016, 2019, 2022 and so on)
  • Second one will be identical to first one but with stat of cycle date 01.01.2014 (Calls will be in 2017, 2020, 2023 and so on)
  • Third one with Electrician duties Tasklist - with start of cycle date 01.01.2015 (Calls will be in 2018, 2021, 2024 and so on)

 

If you observe the calls from first 2 plans which are for the same purpose (Operations duties), we are able to skip call for 3rd year in sequence. These skipped years are having calls from the Third plan (Electrician duties).

 

 

Have 2 single cycle plans of different cycles

  • First one, with 3YR cycle for Electrician duties - No issues here.
  • Second one, with 1YR cycle for Inspection by Operations - Issue here is to skip the call every 3rd year. For this you need to explore a user-exit IPRM0002 (F/exit EXIT_SAPLIPM5_002 - Determination of Planned Date for Time-Based Maintenance Plans ).
  • Need to work with your ABAPer
  • Obviously in this case same start of cycle date will be there for these 2 plans.

 

 

Good luck

KJogeswaraRao

Re: ERP to SF direct integration without middleware?

$
0
0

We've never integrated ERP to SF directly - we always used PI or Boomi.

Re: SPAM XPRA_EXECUTION - incompatible archive format version

$
0
0

Hi Alamsyah,

 

I guess that you should update your HANA version to at least revision 90 to fix this error just from note's mentions.

 

Regards,

Ning

User defined Payload search for repeated segments

$
0
0

Hi Folks,

 

We were able to configure user defined search via tcode SXMS_LMS_CONF and it is working fine. How in cases where the segment is repeated the report SXMX_EXTRACT_MESSAGES is not retreiving the value it says "filter found" but there values are not extracted.

 

Thanks.


Re: Using BEX Query Designer conneted on ECC Hana Studio

Re: Difference in SF-EC

$
0
0

Data Models define the data structures used for the legacy Foundation Objects, employee data fields, employee profile fields, permission/workflow group fields, HRIS synch mappings, and country-specific fields.

 

The Metadata Framework is an extensibility framework designed to enable custom objects, screens, processes, and rules to be built. You can find more information here:

 

Extending SuccessFactors with the Metadata Framework

Re: Displaying key figures in columns as TEXT & KEY

$
0
0

Hi,

 

Yes you also need to configure some settings in your REPLACEMENT PATH tab such as the REPLACE WITH (use TEXT here or LABEL) and in the REPLACE VARIABLE WITH just choose the option you are using like variable or something..

 

Regards,

Loed

Re: Importar Pedido de Compras do Excel

$
0
0

Eu Faria como o Maicon Orientou....

 

abc.

 

att,

 

Kelvin Veloso

Coordenador de Qualidade

Re: Using "Image" control in SAP Cloud Application Studio UI Designer

$
0
0

Hello Gayatri,

 

 

That time I've created one icon for each collor because I had only the options Red and Green.

 

 

I've chosen icons with red and green balls because I didn't find a way to change the icon itself.

 

 

Regards,

 

 

Alexandre.

Re: Error loading Check report via BPF in Excel

$
0
0

Hi,

 

You may now click the CORRECT ANSWER to close this thread.. ;-)

 

Regards,

Loed

Re: Doubts on ERP 6.0 SR3 + DB2 LUW 10.x + Windows Server 2012

$
0
0

Hello Martim,

 

I faced some issues in DBACOCKPIT (web page) of DB6 10.1 FP2, and fixed with 1245200 - DBA: ICF Service Activation for WebDynpro DBA Cockpit which will import a lot of prerequisite notes as well.

 

I do not face a hung situation of uninstall, sorry.

 

Regards,

Ning Tong


Re: Categorizing multiple texts with TM_CATEGORIZE_KNN in one call

$
0
0

Hi Florian,

 

Firstly, thanks for your suggestion and sorry for late reply. I changed my solution as you suggested. I created an outer procedure (KNN_CHURN_TEST_OUTER) which reads unlabelled records from a table, and an inner procedure (KNN_CHURN_TEST_INNER) which makes predictions for a record (I have two labels, so it makes two predictions for each record). For each record, I call inner procedure from outer procedure. And yes, it made the things much and much faster when I compare it to the previous version. I will post my procedures at the end of this post, maybe somebody may use it later on.

 

But I wanna ask that is this still fast enough? I have a train (labelled) table which has 24600 records. It has text, maincategory, subcategory columns where maincategory and subcategory are my labels. Additionally, I have another table which has 8095 records to be predicted for each label. When I start the process, it takes about 140 seconds to finish all predictions for 8095 record (both for two labels) and insert the results one final table. What will happen, when I have 8 million records to be predicted (assuming the train table size will remain same -actually it may increase as well-)? Will it take 140000 seconds which is about 38 hours? Is that normal or is there a way to increase the speed of the process?

 

Note: I am using aws r3.2xlarge instance type which has 8 cores, 61GB memory, 1x160 GB SSD.


Here is the outer and inner procedures.


CREATE PROCEDURE "SYSTEM"."KNN_CHURN_TEST_OUTER" ()    LANGUAGE SQLSCRIPT    AS
BEGIN
/*****************************    Write your procedure logic
 *****************************/
 DECLARE new_text NCLOB;
 DECLARE id INT;
 DECLARE CURSOR c_products FOR
 SELECT "id","text_data"         FROM "SYSTEM"."AVEA_CHURN_TABLE_TEST";
 FOR cur_row as c_products DO  new_text := cur_row."text_data";  id := cur_row."id";    call "SYSTEM"."KNN_CHURN_TEST_INNER" (id, new_text);
 END FOR; 
END;
CREATE PROCEDURE "SYSTEM"."KNN_CHURN_TEST_INNER" (IN id INT, IN new_text nclob)    LANGUAGE SQLSCRIPT    AS
BEGIN
/*****************************    Write your procedure logic
 *****************************/
 DECLARE sub_cat NVARCHAR(128);
 DECLARE main_cat NVARCHAR(128);
 DECLARE num INT := 0;
 DECLARE num2 INT := 0;
 DECLARE CURSOR c_products FOR
 SELECT T.CATEGORY_VALUE, T.NEIGHBOR_COUNT, T.SCORE  FROM TM_CATEGORIZE_KNN(    DOCUMENT :new_text      MIME TYPE 'text/plain'    SEARCH NEAREST NEIGHBORS 22 "text"      FROM "SYSTEM"."aveaLabelledData"    RETURN top 1       "main_category"      from "SYSTEM"."aveaLabelledData"     ) AS T;
 DECLARE CURSOR c_products2 FOR
 SELECT T.CATEGORY_VALUE, T.NEIGHBOR_COUNT, T.SCORE  FROM TM_CATEGORIZE_KNN(    DOCUMENT :new_text      MIME TYPE 'text/plain'    SEARCH NEAREST NEIGHBORS 22 "text"      FROM "SYSTEM"."aveaLabelledData"    RETURN top 1       "sub_category"      from "SYSTEM"."aveaLabelledData"     ) AS T;
 open c_products;
 begin   FOR cur_row as c_products DO  main_cat := cur_row."CATEGORY_VALUE";      num := num + 1;        END FOR;   IF :num = 0  THEN  main_cat := 'unknown';   END IF;
 end;
 close c_products;
 open c_products2;
 begin
 FOR cur_row2 as c_products2 DO  sub_cat := cur_row2."CATEGORY_VALUE";    num2 := num2 + 1;    
 END FOR;
 IF :num2 = 0  THEN  sub_cat := 'unknown';
 END IF;
 end;
 close c_products2;
 insert into "SYSTEM"."KNN_RESULTS" values (:id, :new_text, main_cat, sub_cat);
 commit;
END;

Re: Business Process Flows hyperlinks in Team folders don't work

$
0
0

Hi

 

I don't know which SP version you are using now but I remember this is a known issue,
you may take a look at the note below?
2114543 - Reports and folders are not displayed in content browser in BPF

Best regards,
Chuan

Re: IDOC status

$
0
0

Hi Natalie,

 

The requirement is not clear. But I Think standard transactions WE02 & WE09 is capable of getting IDOC data based on status or any of the Field values.

 

Thanks,

Ravi

Re: PB Newbie - INI file

Re: PB Newbie - INI file

Viewing all 8676 articles
Browse latest View live




Latest Images