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

Re: Failed to load persisted view. (LO 26620)

$
0
0

Hi Nishant,

 

Can you check the SAP note: 1344406.

 

Cause

  • The Report Application Server (RAS) has reached the maximum number of concurrent jobs

 

Resolution

  • Add another Report Application Server (RAS) in the Central Management Console (CMC)
  • Set up equal to 0 (for unlimited) the Maximum Concurrent Report Jobs for the Report Application Server (RAS) in the Central Management Console (CMC)
  • Ensure that option 'Suppress the printing if no records are returned' in Crystal reports is unchecked.

 

Thanks,

M.Sumesh


Re: How to Convert DateTime to Date ?

$
0
0

Afaik, AP.Common.GDT.DateTime does not have a ConvertToGlobalDateTime method, furthermore retrieving the date from the globalDateTime could give you the wrong local date since it does do not consider time zones.

 

I would use the similar to the following (no guarantee about correctness):

 

import ABSL;

import AP.Common.GDT;

 

var In = contract.ValidityPeriod.TimePointPeriod.StartTimePoint.DateTime;

 

// convert To GlobalDateTime

var timeGlobal = GlobalDateTime.ParseFromString(In.content.ToString()); // not sure whether this is correct -> please verify yourself

 

// convert to LOCAL_DateTime using timeZone

var timeZone = In.timeZoneCode;

var localDateTime = timeGlobal.ConvertToLocalDateTime(timeZone);

var localDateTimeStr = localDateTime.ToString();

 

// cut off time suffix (starts with "T")

var localDateStr = localDateTimeStr.Substring(0, localDateTimeStr.Find("T"));

var date = ABSL:Date.ParseFromString(localDateStr);

 

 

Best regards,

 

Ludger

Re: how to call dictionay index in report

$
0
0

With reference to Indexes, the best way to use them is to check out all the fields that are available in the index and make your Select Query in such a way that :

(1) The fields in the index are present in your query.

(2) The fields are in the same order in the index and the query.

(3) OR conditions are avoided in the same line. E.g. Where ( matnr = '10000034' OR maktx = 'BB Prod.')

- Such statements are to be avoided.

 

If in a table there are many indexes SAP will decide by itself which index to use. This decision is based on a sampling percentage. This data is filled based on your configuration and can be viewed in ST05. In case the data has not been updated, you may find that SAP will use an index which you might not find suitable. Hence a situation may come up when you are required to force an index to be used in your SELECT query.

Migrating Webdynpro Java DC to Netweaver 7.0 to 7.3 getting the errors

$
0
0


Hi

 

We are migrating the portal ep 7.0 to ep 7.3 our custom webdynpro java dc imported from the nwds 7.3 getting the errors

 

Portal version EP 7.3 ehp1

NWDS 7.3 version  7.3 SP07 PAT0007

 

Please find below the screen shot gen_wdp package getting the errors only

 

 

 

gen_wdp package errors.jpg

 

 

Thanks

Srinivas

new hire_Employee no.

$
0
0

Hi Experts,

 

 

I am getting an error while Hiring a new Employee in IT 0000."could not find the interval for Number Range 03"

I have screen shots below to show the error & configuration of NUMKR.

Emp no Error.pngINTERVAL.pngNUMKR.png

 

Looking forward to you for help!

 

Thanks

Re: Dev_rd showing error NiHLGetHostName

$
0
0

Hi Swadesh

 

Can you upload the full log and explain the issue.

What are those thread ? Connection on dispatcher or message server ? Is it a dual stack ?

 

I don't think you have to add hostname of Thousands users.

 

Please upload relative logs.

 

Duvyanshu

Base Unit Of Measurement error

$
0
0

Dear Sir \ Mam,

 

 

Our some materials base unit of measurement is in KG, and we want to make bills, excise RG1 entry in KG for milligram sales or material transfer. How to go for such transaction, system is not allowing for such transactions.

 

Pls Note : We can't create two separate materials code for these UOM issue materials.

 

Requesting a help.

 

 

Regards,

Randhir Padwal

Re: Package of a HAHA Add-On

$
0
0

One question, when you migrate old add-ons do you have to change the debug connection string??

 

Thanks

Rahul


ACTUAL BUDGET VS BUDGET ENTERRED IN SAP

$
0
0

Dear friends,

 

I have created a Project Definition with different WBS elements with  required materials for use and services for use. But the budget exceeding 10 % than the actual prepared...

 

please tell me whrere should I change so that I will get my actual budget than 10% additional budget... The additional 10 % is adding as factory overhead... how can I remove that factory overhead...

Re: Can We Create Vehicle as a Functional Location??

$
0
0

Assuming the tab is identical to the Fleet, you should be able to map a vehicle as F/Locn. As I told test fully in Dev server and compare with features of vehicle as Equipment. You can know your self. Test for all including MCIZ etc.

 

Let's wait for what experts in this area say !

Re: FF ID was not found in GRC server

$
0
0

Hi Arif,

 

I have created the end user and  assigned the ff id to the end  user and saved,

But When I Login through the End user , it shows that , I have not authorizied to execute t-code /ngrac_spm and GRAC_EAM

 

What would be the problem ?

 

I have assigned the correct role to FF id and End user and done the sync , but I could not execute the t-code

 

Thanks and Regards,

raghu

Re: ESS Appraisal

$
0
0

Hi Navya,

 

 

Thanks a lot for all the help!!!

 

The issue has been resolved after selecting User Set of Roles under OBN Navigation Mode for HAP Instance: HAP_GENERIC_UI


 

Regards,

Anurag

Re: How to display currency values in indian format

$
0
0

Hi Hanuma kumar, please try this code.


REPORT ZAMOUNT_CONVERSION.

DATA : RESULT1(20).

PARAMETERS : NUM TYPE P DECIMALS 2.

DATA : num2 type STRING.

DATA col_amt(20) type n,"15

         col_b type i,

         num_1(20) type C,"15

         Length type i.

num_1 = num.

 

write : 'default format      :',num.

uline.

skip.

IF ( num >= 999999999 ).

       write num_1 using edit mask 'RR__,__,__,__,______' to col_amt.

 

       CONDENSE col_amt.

       length = STRLEN( col_amt ).

       if length = 16.

         REPLACE first OCCURRENCE OF ',' in col_amt with space.

         write :/'amount indian format:',col_amt.

       else.

       write :/'amount indian format:',col_amt.

       endif.

ELSEIF NUM < 999999999 AND NUM >= 9999999.

       write num_1 using edit mask 'RR__,__,__,______' to col_amt.

       condense col_amt .

       length = STRLEN( COL_AMT ).

       if length = 13.

         REPLACE first OCCURRENCE OF ',' in col_amt with space.

         write :/'amount indian format:',col_amt.

       else.

         write :/'amount indian format:',col_amt.

      endif.

ELSEIF NUM < 9999999  AND NUM >= 99999.

       write num_1 using edit mask 'RR__,__,______' to col_amt.

       condense col_amt .

       length = STRLEN( COL_AMT ).

       write :/'amount indian format:',col_amt.

 

ELSEIF NUM < 99999.

 

   data : dumy(10) type c.

   dumy = num .

   CONDENSE dumy.

   length = STRLEN( dumy ).

     if length <= 6.

 

       write :/'amount indian format:',num.

       else.

       write num_1 using edit mask 'RR__,______' to col_amt.

       write :/'amount indian format:',col_amt.

      endif.

   ENDIF.

   uline.

Re: MRP Behaviour

$
0
0

Hi Sugan,

 

Q1: In APO you can run different Heuristics. You can run a Top-down herusitic followed by a Bottom-up Heuristic. This would correct the planning of your Finished goods considering the planning of your Components. Remember that this can only be done if you have all your materials in APO: Finished goods and components.

 

Q2: Bottom up it is not possible in the standard MRP in ECC.

 

Thanks!

Mariano

Re: Material Block

$
0
0

Normally a material can be kept in Block when simultaneously more users are working in different transactions.

 

It will be configured in Availability check (define checking Groups & define material block for other users)

 

As suggested this will compliments your availability of the material and users can have more accurate information.

 

Hope this helps.

 

Phanikumar


Upload Asset with its remaning useful life ..

$
0
0

Dear Expert

i am going to upload asset on SAP for the first time.. i need to upload assets showing the expire useful life in order to complete the deprecation over remaining period.. please assist

 

Regards

Mahmoud El Nady  

Re: Carrer in SAP for a mechanical engineer?

$
0
0

hi every one........

                         my name is rajesh .i recently completed mey b.tech in mechanical streem. and i am fresher going to start my carr in  SAP. pl suggest me .....and tell me ur openions .....thanks u to all

Re: How to update cost related condition type amount in sales order without disturbing other condition types.

$
0
0

What is ZYVO condition type(customized)--what are the controls for this condition type.

 

Phanikumar

In QM Result Recording defect is entered, system should trigger mail

$
0
0

Dear Gurus,

 

As soon as defect is entered in result recording screen, system should generate SAP office mails for predefined user ids and external mail.

 

"Follow up action - MAIL" can be used for triggering sap office mail. How to assign the follow up action?

 

Is there any solution exist for external and internal triggering of mails?

 

Please suggest.

 

With Best Regards,

 

Raghu Sharma

Smartform contains 3 different pages.

$
0
0

Hello Experts,

1 pages: Header,Table,footer.

2 and 3 pages : Static data in a Secondary window. The  2 and 3 page will always print at the end of page 1.

 

I've used a command node at the end of Secondary window(footer) of 1 page but page 2 and 3 is displaying blank.

Kindly help to resolve this issue.

Regards,

Prashant Sharma.

Viewing all 8746 articles
Browse latest View live




Latest Images