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

Re: Bo 4 sp6 query filter could not be changed


Re: SAP ERP 6.0 on SQL 2012 distributed environment

$
0
0

Hi Sriram,

 

Thanks for the information.

 

I have two more questions to ask you.

 

Do I need to install SQL Native client on VM1 (before starting Primary instance installation) ?

As per our Architecture we have another VM to install additional application server (VM3).

 

I have to follow the instructions as per the design.

 

To install additional application server do I need install SQL native client on VM3?

 

Thank You,

Phanikumar.

Re: Jars for JMS adapter in SAP PI 7.3.1 Single stack

$
0
0

Hi Avinash,

 

You need to follow the below sapnote

 

1751177 - PI JMS adapter with MQ client library 7.1

 

As per the SAP Note you need to maintain the com.ibm.mq.jms.MQQueueConnectionFactory property to com.sap.aii.adapter.jms.app application.

 

After making the changes you need to restart the system.

 

 

With Regards

Ashutosh Chaturvedi

Future accounting document/invoice recording

$
0
0

Hi,

 

Someone could tell me if we can record in the future, an invoice or an accounting document in a period not yet opened for one company and for aaccounting document type ?

 

Thanks.

 

Mehdi.

Re: Short dump while updating User Status of a Project and corresponding WBS

$
0
0

Its still not working. I still get the same error during 2nd loop count. Please help.

Implementing search event handler causes full post back when paging

$
0
0

Good day.

 

We wanted to add functionality to the report search so we implemented a method as follows:

 

reportViewer.Search += crystalReportViewer1_Search_1;

privatevoid crystalReportViewer1_Search_1(object source, SearchEventArgs e)

{

  // Custom code here

}

 

We noticed after implementing this that the report seemed very slow when moving from page to page.  We confirmed that it is being caused by the implementation above.  We even tried making the search handler empty thinking that may have caused the issue.  It still happened with an empty event handler.

 

Using Fiddler I can see that with the implementation, the entire page is being rendered: a full post back.

 

Is there a way to prevent this behavior?

 

Thank you

ST

Re: Period Lock in COPA

$
0
0

Seems like this is standard SAP design OSS: 1692854.

 

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

Resolution

This is system design.

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

Direct backflush in ECC from SAP ME

$
0
0

Dear experts,

 

There is a need for us to to direct backflush of components in ECC from SAP ME.

 

That is, I do not maintain any floor stock for components in SAP ME. All the components are assigned to a particular operation. When this operation is confirmed, the system should be able to post a direct backflush in ECC.

 

My questions are:

 

In SAP ME: I believe there are controls / settings available in build tab of material as also relevant collaboration. Is this correct? Can I get details on this?

 

Is it possible to do so without having floor stock since GI will be posted directly in ECC.

 

Is it also possible to do a GI from WM managed storage location?

 

Would be thankful for you reply.

 

 

Regards,

 

 

Srinivas


Re: How to trigger PR workflow based on certain plant

$
0
0

There are two ways to do this:

 

1. You create a check function module and assign it in the event linkage.  In this check function module you can check the plant details for the PR and either continue to trigger the workflow or raise an error which will prevent the workflow from triggered.

 

(Or)

 

2. If you dont want to go with the SAP standard event processing and want to go for complete customized one, you can create a sub-object for BUS2105 eg. ZBUS2105.  You can create your own custom event in this ZBUS2105 and delegate it to BUS2105.  Now you can use the BADI ME_REQ_POSTED, method IF_EX_ME_REQ_POSTED~POSTED to trigger your custom event.

 

But for your requirement, I would suggest to go for the first option, a check function module as you are only restricting at workflow trigger level and not wanted to change the SAP standard functionality.

 

Regards,

Vijay

Re: need to create solution and add a system in solman 7.1sr1

$
0
0

HI Srinivas ,

 

Actually TMS configuration is a part of follow up activity of your system installation , which should be done before starting the configuration,

you can find TMS configuration Procedure in the attachment .

 

kindly change the file Extension in the attachment to *.docx

 

Best Regards ,

AhMeD

Maintain Depreciation Key to calculate 25% from the original depreciation expense

$
0
0

Dears,

 

I've made the following

 

in afama

 

Copied the original depreciation key LINS,

 

Changed the base value to be special explicit percentage

 

the multillevel method with percentage 25 %

 

 

 


Do i miss anything make it not working ?

 

 

 

You help is very much appreciated .

 

Regards,

Haytham Karem

Re: Financial Statement Versions

$
0
0

Hi,

 

can you tell me what exactly is your requirement ? creating an FSV is not running a query so that you can make a variant out of it.

 

best regds

Subha

Re: How to Fetch Data from Non SAP System without using any Middleware and Frontend

Re: Future accounting document/invoice recording

$
0
0

It's to gain time when we receive invoice.. I think.

Re: How to convert ABAP_LIST output of (Submit exporting list to memory and return) into internal table.

$
0
0

Hi Kranthi,

 

I have created classical report.

 

Please find below code

 

 

 

parameters: s_kunnr type kna1-kunnr,

                        S_BUKRS TYPE KNB1-BUKRS.

 

DATA: itab_list  TYPE TABLE OF  ABAPLIST.

*      vlist TYPE ref to data.

       "itab_list  LIKE  ABAPLIST.

 

data: begin of t_listout occurs 0,

line(1024) type c,

end of t_listout.

 

*xtext

data: vlist like abaplist occurs 0 with header line.

 

DATA: s_open_key,

       X_AISEL value 'X'.

       s_open_key = 'X'.

 

submit rfitemar with dd_kunnr-low = s_kunnr

                 with dd_bukrs-low = s_bukrs

*                with x_opsel = s_open_key " XAISEL " XOPSEL

                 with X_AISEL  = X_AISEL  " XAISEL " XOPSEL

                 exporting list to memory and return

                 with bilalist = ' '   " with classical list

                 with bilagrid = ' '   " no ALV grid

                 with bilatree = ' '" no ALV tree .

 

*Here i am extracting data from memory.

 

call function 'LIST_FROM_MEMORY'

   tables

     listobject = itab_list

   exceptions

     not_found  = 4

     others     = 8.

 

*Here i am converting HEX value to ASCI value .

 

call function 'LIST_TO_ASCI'

*  EXPORTING

*    list_index         = -1

   tables

     listasci           = t_listout

     listobject         = itab_list

   exceptions

     empty_list         = 1

     list_index_invalid = 2

     others             = 3.

 

 

LOOP AT t_listout.

* if you wants to separate  '|' use remove statement

  write: /  t_listout-line.

  clear t_listout.

ENDLOOP.

 

-


Re: SAP Design Studio 1.2  Design mode  Blank Panel IE Issue

$
0
0

Hi Tammy, I had same issue before.. The problem is that IE is standard IE in our organization,,, so is this a known bug or there is already fix for it?

Re: Message cannot be transferred to node SMTP due to connection error(final)

$
0
0

For mailing purpose, client uses mail server rediffmailpro.com.

You configure the SAP system to send mails using an SMTP server.

The SMTP server relay settings should permit this as well.

If the SMTP server requires an authentication then from SAP it is not possible.

For configuring mail sending option on SAP using Tx SCOT you may use this SAP note.

455140  - Configuration of e-mail, fax, paging or SMS using SMTP

 

Regards

RB

Re: Offline & Rollforward

Error occured when generating charts

$
0
0

Hi Experts,

 

Env:BI 4.0 SP2 FP13/linux/db2

 

We are having almost 10 charts in a report.

When am viewing through launchpad am getting the above mentioned error,same charts is viewable in rich client.

 

I did adding the visualization servicein APS,after that charts can be viewed by one user id,not al user id.s

 

Secondly i have created separate APS for only visualization service,after that charts can be viewed through CMC,Not in lauchpad

 

Some times one user id can see,same user id while trying after sometime unable to view.

 

Awaiting for your inputs.

Thanks in advance.

 

Regards,

Selva.

Re: Message cannot be transferred to node SMTP due to connection error(final)

$
0
0

Hi Sudhir,

 

Please check whether you can connect to the port or not

 

telnet smtp.rediffmailpro.com 587

 

letus know the result.

Moreover follow the above article posted by sriram.

 

With Regards

Ashutosh Chaturvedi

Viewing all 10207 articles
Browse latest View live


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