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

Standard Bex Report.

$
0
0

Hi All,

 

Do we have any standard sap Bi bex report which incur the following field for a bex query.i have searched the forum i can find few fileds,but not the all.

 

bex query name

 

created on date/time

 

changed on/time

 

created by

 

last changed by

 

no of time query executed.

 

Please dothe needful

 


Regards,

Sakthivel S


Re: Material Master workflow - how to use a BAPI?

$
0
0

Hi Neil,

 

Check that both the WF and task container elements used in your binding have the same data type.

 

Regards,

Mike

Re: Virtual Provider based on HANA model displays no data

$
0
0

I have tried with transient provider and composite provider as well. Still i am not getting data .

 

How to make the query directly on the HANA model without using virtual, transient or Composite Provider.

Re: Error message - Production order

$
0
0

Hello Luke,

 

As per Dee Joy kindly share complere details or ou may check material master & it's routing also may be due to no routing error is coming

Re: Snif Program not showing active Implicit Enhancements

$
0
0

Hello Pavan sharma,

 

Here, you want to enhance the standard sap functionality .

 

i.e Enhcncements

 

1) BADI'S

2)USER EXITS

3_CUSTOMER_EXITS

4)MENU EXITS

5)SCREEN EXITS

6)SCREEN EXITS

7)FM EXITS

8)IMPLICIT ENHANCEMENTS

9)EXPLICIT ENHANCEMENTS

 

FOR Finding BADI'S

 

goto se24->cl_exithandler class->get_instance method->exit_name paramerter

put one break-point.

Run the t-code  , you can find the exit names,based on description and importing,exporting params we can decide the BADI name.

 

For exits :

 

se93->enter the t-code->find package->find prog name.

go to that program.

search for user exits : in main program

we can find  the number of exits.

put the exits into one project and put Break-point accordingly.

 

Hope helpful.

 

Regards,,

Venkata sudheer

Re: How to save dashboards in mobile format in local system?

$
0
0

Hi Riaz,

I am assuming that by local system you meant your desktop/laptop machine.

I don't think you may be able to save the "mobile version" of the dashboard on local machine as there is no option to do so. You can only save he mobile version to the platform.

mob1.png

You may however save the dashboard in desktop version on the local machine and preview it for mobile screen.

mob2.png

Do revert if you need any more information.

Re: Abap dump error SYNTAX_ERROR

Re: SAP ME - Creating Custom Screens and Navigation Link

$
0
0

Hello Gita ,

 

At ME 6.1 you can get site and user ID for current logged in user at Servlet class from CommonMethods class:

 

String site = CommonMethods.getSite();

String userId = CommonMethods.getUserId();

 

Regards,

Oksana

 


Re: What is the date format for a Function Module.

$
0
0

Hi,

 

By using above function module which report you want see the data?

at your source report may have selection  options on date field.

first check your report select options whether you used 0calday or 0calmonth or 0calyear.

based on that you need to pass.

 

Thanks

Re: How can we hide the URL with Webdispatcher after SSO redirect

Re: Rangos de números

Re: What is the date format for a Function Module.

$
0
0

No. It is not DD.MM.YYYY.

I am getting an error saying specify a value  for variable Key Date.

Re: Inventory Query with movement and multiple selections

$
0
0

Dear Mr Nicolas Constant,

 

Forget previous one.

 

Try this.

 

Declare @FromDate Datetime

Declare @ToDate Datetime

Declare @Group nvarchar(10)

Declare @Whse nvarchar(10)

 

Set @FromDate = (Select min(S0.Docdate) from dbo.OINM S0 where S0.Docdate >='[%0]')

Set @ToDate = (Select max(S1.Docdate) from dbo.OINM S1 where S1.Docdate <='[%1]')

Set @Group = (Select Max(s2.ItmsGrpCod) from dbo.OITB S2 Where S2.ItmsGrpNam = 'Finished Goods')

Set @Whse = (Select Max(s3.Warehouse) from dbo.OINM S3 Where S3.Warehouse = '[%3]' )

 

Select

@Whse as 'Warehouse',

a.Itemcode,

max(a.Dscription) as 'Description',MAX(a.Price) as 'Prices',

sum(a.OpeningBalance) as 'Opening Balance',

sum(a.[IN]) as Receipt,

sum(a.OUT) as Issue,

(sum(a.OpeningBalance) + sum(a.[IN]) - Sum(a.OUT)) as Closing,

MAX(a.Price) * (sum(a.OpeningBalance) + sum(a.[IN]) - Sum(a.OUT)) as ClosingValue

from(

Select

N1.Warehouse,

N1.Itemcode,

N1.Dscription,N1.Price,

(sum(N1.inqty)-sum(n1.outqty)) as 'OpeningBalance',

0 as [IN],

0 as OUT

 

From dbo.OINM N1

Where

N1.DocDate < @FromDate and N1.Warehouse = @Whse

Group By

N1.Warehouse,N1.ItemCode,N1.Dscription,N1.Price

 

Union All

select

N1.Warehouse,

N1.Itemcode,

N1.Dscription,N1.price,

0 as 'OpeningBalance',

sum(N1.inqty) as [IN],

0 as OUT

 

From dbo.OINM N1

Where

N1.DocDate >= @FromDate and N1.DocDate <= @ToDate and

N1.Inqty >0

and N1.Warehouse = @Whse

Group By

N1.Warehouse,N1.ItemCode,N1.Dscription,N1.price

 

Union All

select

N1.Warehouse,

N1.Itemcode,

N1.Dscription,N1.price,

0 as 'OpeningBalance',

0 as [IN],

sum(N1.outqty) as OUT

 

From dbo.OINM N1

Where

N1.DocDate >= @FromDate and N1.DocDate <=@ToDate and

N1.OutQty > 0

and N1.Warehouse = @Whse

Group By N1.Warehouse,N1.ItemCode,N1.Dscription,N1.price) a, dbo.OITM I1

where a.ItemCode=I1.ItemCode and I1.ItmsGrpCod = @Group

Group By a.Itemcode

Order By a.Itemcode

 

Thanks & Regards,

Nishit Makadia

The type initializer for 'CrystalDecisions.CrystalReports.Engine.ReportDocument' threw an exception. > ...or the Crystal Reports runtime is not installed correctly.

$
0
0

Hi,

 

this happens when I try to show reports in CR WebViewer:

 

The type initializer for 'CrystalDecisions.CrystalReports.Engine.ReportDocument' threw an exception. ---> CrystalDecisions.CrystalReports.Engine.LoadSaveReportException: An error has occurred while attempting to load the Crystal Reports runtime. Either the Crystal Reports registry key permissions are insufficient, or the Crystal Reports runtime is not installed correctly. Please install the appropriate Crystal Reports redistributable (CRRedist*.msi) containing the correct version of the Crystal Reports runtime (x86, x64, or Itanium) required.  Please go to http://www.businessobjects.com/support for more information.

   at CrystalDecisions.CrystalReports.Engine.ReportDocument.CheckForCrystalReportsRuntime()

   at CrystalDecisions.CrystalReports.Engine.ReportDocument..cctor()

   --- End of inner exception stack trace ---

   at CrystalDecisions.CrystalReports.Engine.ReportDocument..ctor()

 

thats true, there is no Crystal Reports runtime installed on the server. Is it possible to only deploy the needed dll's with the webapplication, if so which dll's do i need. Or do I have to install the CR runtime on every server I deploy the webapplication?

 

 

Thanks in advance and best regards

 

Julian

Intercompany Loans

$
0
0

Hi Experts,

 

Can anyone help me how can we do the inter company loans in Business By Design.

 

Regards,

Srikanth


Re: Payment Release List (FPRL_LIST) & F110 ?

$
0
0

Hello, Zarko.

 

The process is:

 

  1. Run F110 for proposal, you will have the message FPRL068, but you have to continue.
  2. After the proposal will be done, you will see the message, that no parameters has been entered yet. It is because the proposal has been deleted during the procedure.
  3. You can look at the proposal in transaction FPRL_LIST in tab "proposal log".
  4. All your open items in Unasssîgn tab
  5. Made a customising in FPRL_CUSTOMIZING tcode, create at least one level for approval
  6. Create a list
  7. Assign items to list
  8. Approve items
  9. Pay items. This button will run F110 productive run in batch
  10. Items are paid. All open items cleared by F110 run.

 

Best regards,

Anastasia.

Re: How to lock and unlock Table

$
0
0

I have a lock object ECCATSDBE but as i mentioned object is locked only when fm is executing

Re: BW-Lumira : connection issue - no query is displayed

$
0
0

Hi,

 

just out of interest, what's the BW version, Ehp and SP level here?

any difference if using a SAP_ALL user?

 

what happens if you remove any search parameter or wildcard, and just hit 'enter' in the search field? (navigate by Infoareas) 

 

regards,

H

Re: Portal Run time error :Exception occured - Log Analysis

Re: MB90 Print Button was grey

$
0
0

Hi,

 

Does this is in MB90 t-code.

 

Check if the user is having any specific authorization object where he can print by his user role.

In std it is disabled , but you can enable it based on some coding in your print program after which you can print in print preview also...

 

But strange thing is your issue is like user based , some can print and some can not print.

 

Better you need to contact your basis team , or debug the MB90 program for both users roles and find the root cause.

 

Hope it is clear to you..

 

Rgds,

Viewing all 8798 articles
Browse latest View live




Latest Images

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