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

Re: Issue In Sales Invoice DTW with down payment

$
0
0

Hi,

 

Could you post the template file you have used?

 

Thank,

Gordon


Re: Layout Recepção XML 3.10

Re: Manuales SAP 8.82 o 9.0 en español

Re: Ensure allocation table

$
0
0

Hi,

 

Normally, the second user will receive an error: something like: ...data was modified by user......

 

However, if users open the form for view only, there will be no lock at all. Concurrent update may happen that the 2nd user will be no luck. This is normal for database operation. It called deadlock victim. Certain manual control procedure is needed to prevent it happen.

 

Thanks,

Gordon

Re: Install SAP ERP 6.0 with EHP7 - Inst Master ???

Re: JDBC driver installation on Windows

$
0
0

Hi Breck!

 

There are a number of report writers written in Java.   One of the better ones is called "Jasper Reports". The thing is that Jasper Reports is sort of like the report engine only.   To actually use it you have to write java code.

 

iReport is like a GUI interface for Jasper Reports.   In the end it is an adhoc report writer.

 

I want to provide an adhoc report writer for my application.   All my reports are currently built-in and I am looking for an alternative.   Something that I can include alongside with my application which allows me to write reports without modifying the application, and even more importantly allows someone ELSE besides me to write reports :-)

 

Best regards,

Edgard

Re: Exception caught by adapter framework: No configuration / default adapter specified for EDISeparator

$
0
0

Hello Experts,

 

Any pointers for my problem ?

 

Many thanks in advance!!

 

Saurabh

Re: how to specify PACKAGE SIZE for to RFC_READ_TABLE from PyRFC?

$
0
0

in your example code, you do:

 

if 'tabfields' in kwargs.keys():            tabfields=kwargs['tabfields']    #        parameters['FIELDS']=tabfields            for field in kwargs['tabfields']:                parameters['FIELDS'].append([field])        else:            tabfields=''

This results in a keyerror because parameters['FIELDS'] has not been initialized before calling append([field]).

 

If I do intialize it, then pyrfc will fail when specifying a list of fields: tabfields = ['MANDT']:

AttributeError: 'str' object has no attribute 'iteritems'.

 

For example:

 

parameters['QUERY_TABLE'] = 'T001'

parameters['FIELDS'] = ['MANDT','BUKRS']

 

connection.call('RFC_READ_TABLE', NO_DATA='X', **parameters)

will fail with
AttributeError: 'str' object has no attribute 'iteritems'

 

(same thing with:

foo = conn.call('RFC_READ_TABLE',NO_DATA='X',QUERY_TABLE='T001',FIELDS=['MANDT','BUKRS'])


Re: Error in BAPI_GOODSMVT_CREATE

Re: Customizing error in daily work schedule 30 Message no. P2581

$
0
0

Hi Pragna,

 

Pragna Roy wrote:

 

create work schedule Manually - Entry 2 EG 30 does not exist in T508A (Check Entry).

Please check have you maintained WSR based on ESG.

 

Revert back in case of any issues.

 

With Regards,

Giriesh M

Re: Fast Order Entry - Business Partner Search / Suggestion

$
0
0

Dear Thomas,

 

Below different options might help you.

 

1.There is a new and nice feature available with TM 9.0(With latest FPM service pack) i.e If you enable the 'Suggest Values' property for any UI element,system will give you recently accessed/used data when you start entering the value.

2.Another nice feature i.e Maintenance of personal value list in F4 help. If you maintain personal value list, they will be displayed as hit list.

3. If you still want to customize the suggest values feature, probably you should check the FPM element properties. To do that, follow below steps.

Launch  the component configuration in customizing mode (WD application - CUSTOMIZE_COMPONENT) -> Select the UI input field for which you want to set this behavior -> You will see properties/attributes of an element selected -> You will see one of  the properties are 'Filter method' and 'Suggest values'. May be you can try to explore possible values(Contains search and Prefix search) for 'Filter Method' property.

 

4.If you still can't achieve, we might have to check programmatically if any possibility to achieve this by enhancing some objects.

 

Unfortunately we never get such requirement, so can't guide you exactly. But I could provide you above insights.

 

Best Regards,

Bharath.K

Re: Production Order Component Sorting Options

$
0
0

You transfer your reports internal table data to the function module through SORT_TAB which will sort it and return the sorted output in the same table.

 

DATA: i_tab type table of RESBK with header line.

...

" transfer your own report's internal table contents to i_sort using statement such as

move-corresponding

...

CALL FUNCTION 'CO_FS_SORT_COMPONENT_LIKE_BOM' "

  TABLES

  sort_tab = i_sort.

...

" transfer i_sort contents back to your reports internal table.

... .

Sales Deal not picked in pricing

$
0
0


Hello Everybody,

 

I am facing an issue in the Sales Deal created by my client.

Sales Deal created & assigned with the condition type 'ZNX0' with the validity of the sales deal as 1 month.

Condition record for the condition type ZNX0 is saved with key combination for sales deal as one of the field.

Now the system should pick this condition record for the time the sales deal is valid.

But in sales order, in pricing analysis, i found system doesn't find sales deal field & skip the condition record saved for the combination & moved to next records.

So, i am bit confused if i am missing something here to maintain, can anyone help me out in finding the solution, it's a little bit urgent.

Thanks in advance for all the help.

 

Thanks,

HKG

Re: Dropping device without prior dropping database

$
0
0

You could use ASE's disk mirroring feature to move the contents of QA1_data05 onto a new device thus allowing you to drop QA1_data05.

 

- sp_configure 'disable disk mirror',0 (static setting so you have to bounce ASE)

 

- disk mirror QA1_data05 onto a new device (use serial writes) (depending on size of QA1_data05 and speed of your disks this could take anywhere from 1 to 10 minutes)

 

- disk unmirror (leave new device as primary; QA1_data05 becomes the mirror/secondary and is dropped by the disk unmirror command; QA1_data05 is now removed from sysdevices and ASE knows nothing about it)

 

- sp_configure 'disable disk mirror',1 (static setting so you have to bounce ASE)

Re: ABAP Code Error

$
0
0

Hi Giri,

 

Program is giving a run time error because you are trying to pass all fields selected in your select query to a work area fully.

 

SELECT MATERIAL_NMBER

       MATERIAL_DESCRIP

       MAINTAIN_STATUS

       CREATEDBY

       CREATEDON

       from ZMAT_TEST into TABLE ls_mara where  MATERIAL_NMBER in s_matnr.

 

instead try to use

 

SELECT MATERIAL_NMBER

       MATERIAL_DESCRIP

       MAINTAIN_STATUS

       CREATEDBY

       CREATEDON

       from ZMAT_TEST into corresponding fields of TABLE lt_mara where  MATERIAL_NMBER in s_matnr.

 

Hope it will be helpful for you.

 

Regards,

Kannan


Re: Function Module for Download two or more internal table data in separate sheets in single excel

$
0
0

Hi Ramesh,

 

Check the FM EXCEL_OLE_STANDARD_DAT.

 

Enable the import parameter DATA_SHEET_NAME.

 

Pass your sheet names.Please use field symbols for avoiding repetative calls.

 

Hope it will be helpful.

 

Regards,

Kannan

Re: Accessing Component Information for systems connected to Solution Manager

$
0
0

Hi Jeff,

 

the information about software components (and this is I think what you are looking for) is stored in the LMDB of Solution Manager. Each satellite system sends its component info into SLD (either in an external system or in Solution Manger itself). From there it is redirected to LMDB.

 

Try transaction LMDB in Solution Manager. There you have (depending on your SP-Stack) access to several reports to evaluate your landscape.

 

Best regards, Alexander

Re: Combo Box.

$
0
0

Arjit, like always you are right. but this post does not show me the measures, is it just as easy as putting my measures in another column and bind it to something?

Thanks.

Re: Time based chunks error - WORKLOAD ANALYSIS (INTROSCOPE DATA)

$
0
0

Hi Pragadees,

 

the string "... time based chuncks ..." indicates that you have a backlog which is processed by the EFWK currently. Normal process is indeed to improve the resource capacity of SolMan (as Roland suggested) or at the managed system.

 

Please have a look at the link below for further explanation.

EFWK_TROUBLESHOOTING - Technical Operations - SCN Wiki

 

Best regards, Alexander

irj/portal in NW702 (NPL)

$
0
0

Hi,

 

I installed NW 7.02 (NLP demo) but the irj/portal page is not coming up except all sld, nwa, useradmin, webdynpro, index all pages are coming up. Please suggest where to check.

 

 

´

 

NW has been already integrated to BI and ABAP.

when I call any Query Url, i got this massage;

 

 

Software Components : SAP JEE + JEECOR 7.02 SP11

 

Regards

Viewing all 8851 articles
Browse latest View live




Latest Images