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

Re: Sybase EcMap 5.2 - Connectivity to Sybase 16 or Oracle 12C database

$
0
0

Hi Ankitha,

 

Can you please help me on this or any suggestions that you can provide would be greatly appreciated. Thank you!

 

 

Regards,

Deepak


Re: How woud you create and deploy a full pre-built Agentry.db for Win32 Agentry Client 7.x?x

$
0
0

If you are using the WPF client,  You can copy the pre-set db to the root folder of the client.  Once the client is opened (as long as there no database in the user's app data) it will copy this database to the app data folder.

 

Stephen

Re: Issue with exporting or previewing report in vb.net (VS2013) using crystal reports 2013

$
0
0

I figured out the issue.  I added the line of code below after the load of the report and now I can preview and export the reports with no issues.

 

'first load the report

CRrpt.Load(gPerfRptPath)

 

'this is the code I added and now I don't see the issues anymore

 

 

CRrpt.SetDatabaseLogon(gsUser, gsPass, gsServer, "")

 

Re: Read SAP Installation No. and Customer No. using SDK

$
0
0

Hi,

 

In the object SAPbobsCOM.Company, there is not such field as "InstallationId". Can you please re-check?

 

Also, how do I read the Customer No.? This information is shown when you go to Help->About SAP Business One.

 

Thanks.

Re: Meaning of LineType field in JDT1 table

$
0
0

Hi,

 

Does anyone else know?

 

Thanks.

Re: Interactive Reporting - All key figures values are zero

$
0
0

Hello,

 

Regarding the extractors, those are configured during the SOLMAN_SETUP steps of ITSM: Perform Standard Configuration > Configure automatically > schedule extractors.

 

Perhaps your issue has something to do with time zone. There is a report called RSDBTIME which shows if there are any inconsistencies with your time zone configuration. The System Time Zone should be the same zone assigned to the DB and Kernel.

 

The SAP Note 741734 - Incorrect times due to the time zone settings provides some further information.

 

 

Regards,

Daniel

Re: Row select event/Single click event other than Hotspot and Link click in SALV, ALV

$
0
0

Hi Custodio,

 

what about event click_row_col of cl_gui_alv_grid_base?

I know its a protected event and I can use that by inheriting the base class.

 

I already coded this and the program is error free, but still the program is not stopping at method handle_click_row_col.

 

Any suggestions?

 

Thanks,

Madhukar

Re: RTF parsing issue in .NET Viewer

$
0
0

Works alright in the CR designer. Also, we are on SP 13 as SP 14 had some issues for RAS if there was a 32 bit installation of Crystal on the same machine.


Re: Row select event/Single click event other than Hotspot and Link click in SALV, ALV

$
0
0

Or any other innovative suggestions would help

Re: How to write a data entry form similar to Project Master in SAP?

$
0
0

Anyone? As I said, just a 2 column matrix.

Making columns compulsorily visible in system forms

$
0
0

Hi,

 

In Incoming Payment and Outgoing Payment using Account option, I want to make certain columns always visible and in a particular order. Although this can be achieved using Form Settings, I do not want the user to untick them from the Form Settings. For other columns, I need to give the user the flexibility to add or remove columns from Form Settings as per his choice.

 

Any clues how to write code which will activate the required columns in the required order, whenever the Incoming Payment or Outgoing Payment screen is selected with the Account option?

 

Thanks.

Re: Bin Code or Bin Name in AR Invoice PLD

Re: Making columns compulsorily visible in system forms

Re: utcgetdate - stop a query after x time

$
0
0

Rob, you're right ... that's what I get for doing a drive-by shooting ...*arg*

 

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

 

Hmmmm, and rolling this into a where/SARG clause it looks like the query engine does halt processing of rows once the time limit has been hit.

 

====================

-- let run to completion

 

select convert(varchar,dbo.f_getdate(so.id),109)

from sysobjects so, syscolumns

go

     200K rows, cpu = 7500ms, logical IOs = 1,830

     table/index accesses = ~400K each

       

-- let run for 2 seconds

 

select convert(varchar,dbo.f_getdate(so.id),109)

from sysobjects so, syscolumns

where dbo.f_getdate(so.id) <= dateadd(ss,2,getdate())

go

 

     55K rows, cpu = 2000ms, logical IOs = 200

     table/index accesses = ~110K each

 

====================

Re: Query PLD for_Balance Qty when: Sales Invoice made w.r.t Sales order

$
0
0

I think u missed this. AND T2.BaseType = 17


SELECT DISTINCT T0.[DocNum]'SONo.', T0.[DocDate]'SODate', T0.[CardCode], T0.[CardName], T1.[ItemCode], T1.[Dscription], T1.[Quantity]'SOQty', T3.[DocNum]'InvNo.', T3.[DocDate]'InvDate', T2.[Quantity]'BillQty', (T1.[Quantity]- T2.[Quantity])'BalBillQty',datediff(dd,T0.[DocDate],T3.[DocDate])'No.of Days' FROM ORDR T0  INNER JOIN RDR1 T1 ON T0.[DocEntry] = T1.[DocEntry] left join INV1 T2 on T2.[BaseEntry] =T1.docentry and T2.[BaseLine] = T1.[LineNum]


AND T2.BaseType = 17



inner JOIN OINV T3 ON T2.[DocEntry] = T3.[DocEntry]

 

 

WHERE (T1.[Quantity]- T2.[Quantity])>0 AND T3.[DocNum] = [%0]


Re: Web Dispatcher Trace: IcrFindTargetSystem: No system found for addr

$
0
0

Hello,

 

Your Web Admin, page definition for the intended HTTPS port is:

 

icm/HTTP/admin_1 = PREFIX=/sap/admin,DOCROOT=$(DIR_DATA)$(DIR_SEP)icmandir,AUTHFILE=$(icm/authfile),PORT=84$$

 

"$$" will be replaced by the instance number of the Web Dispatcher (parameter SAPSYSTEM).

 

Unless the instance number is 43, your icm/HTTP/admin_1 parameter is incorrectly defined.

 

You can replace "84$$" for "8443", restart the Web Disp. and see how it goes.

 

Cheers,

Isaías

How to replace hex characters in SQL-Script?

$
0
0

I've got a table that contains rows having the 'NUL' (x'00') in a varchar string.  It's not just that character by itself, but mixed in with other printable ones and the occasional CR or LF.  I'm looking for a way to replace these with blanks.  I've tried what seems like it should work in SQLscript:

 

     REPLACE(field, x'00', ' ')

 

...and this does not generate an error, but it doesn't do the replacement either.  Checking further it seems that a hex or binary constant isn't being interpreted, so it's not just the sometimes-problematic NUL.

 

Currently at SPS06, going to SPS09; I can look up my HANA Studio version if that matters...

 

Thanks In Advance,

Donn

Re: MRP type PD

$
0
0

Hi

 

now same i can do by maintaining VM MRP type also

then how it differs

 

and as stated above is my understanding on ND is correct

Re: SAP MRS Resource Planning Nodes in DPD Gantt

$
0
0

It worked! Thank you very much!!

Re: Amortization/accrual of facilities in Treasury

$
0
0

I run TBB1 in test for the whole period (future date) of the Facility and worked.

If you see it in TPM13 it should post as it does for Instrument Rates.

 

Kind Regards

Viewing all 8594 articles
Browse latest View live




Latest Images