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

Re: Performance Issue with BPC MS 7.0


Re: Error using SetContectMember as a ComAddin Object

Re: Calculating Grand Totals Dinamically

Re: Extend Opportunity BO with a new table view(0:n relationship)

$
0
0

Hi Horst,

 

Thanks for your response. I followed the same approach to create CustomBO and create an Embedded Component and placed it within Opportunity TI. I'm able to save data in the Cloud for the CustomBO when I save the Opportunity. However the Web Services generated for CustomBO Maintanance is not being invoked. In the Web Service Message monitor I can only see the standard Web Service OpportunityReplicationOut being called. How do I make both Custom and Standard Webservices to be called when I Create/Save the Opportunity ?

 

Regards,

Srikanth

Re: SM49 - command to read files from a directory, window NT

$
0
0

Did you read the documentation of the function module? No, you did not...

Re: Export data to Excel - Save file dialog doesn't appear

$
0
0

Hi Florian,

Whether you have able to solve this?

I am struggling to implement the excel download through server.

Can you help me?

Re: Update manager in IdM automatically when the manager changes in SAP HR

$
0
0

Thanks Deepak.... I checked it and appears the it has the required selection. I will test this with the client and get back to you if I need more help.

Thanks heaps.

Ranjit

 

2014-06-09_1022.png

Re: How to get HTTP headers from Data Provider Class?

$
0
0

Till NetWeaver Gateway 2.0 SP05 it is possible to retrieve the request headers in DPC with the mentioned code in SP06 its not.

 

Do you know a different way?

 

Regards

Silvio


 


Planning Orders

$
0
0

Hi experts,

 

I am executing the MRP with transaction MD01 and the system only generates planning orders for the IndReq (VSF) of june and july,  but no for the IndReq from august to december

 

The BOM and Routing are active from january to december

 

Do you know why the system does not generate planning orders from august to december?

 

Best regards

 

Arnulfo Cordero Pradel

Re: Inbound Contact Replication getting "Operation not possible; business document locked" message

$
0
0

We have just tried separating the IDOCtype and waiting for completion. That is, we send DEBMAS docs, and wait for its completion, then ADRMAS.  Then ADR3MAS.

 

It looks like the ADR3MAS messages are locking each other out. 

We are even getting some ASSERT messages.

 

Anybody seen this before ?

Re: Problema SAP B1 9.0 en Windows XP

$
0
0

Hola Sergio,

 

Dentro del Sizing de SAP B1 9 para PC de Escritorio o Laptops, Windows XP no está soportado.

 

Adjunto imagen del PartnerEdge.

 

Por ende te recomiendo que migres todas tus estaciones de trabajo a Windows 7.

 

Saludos

 

Sizing Client Platform.png

Re: CRServer 2013 - how to re-direct audit/config database to another dbserver

$
0
0

What type of database are you going to put it into?  Whatever the database, you need to have the db client software installed on the report server.  If it's SQL Server, you need to create a System ODBC DSN before you can proceed.  If it's Oracle, you need to have a TNSNames that provides aliases for both database schemas.

 

System Database:

1.  Open the Central Configuration Manager.

2.  Stop the SIA.

3.  Open the properties of the SIA.

4.  Go to the Configuration tab.

5.  Click on the Specify button.

6.  Select "Copy from another data source"

7.  Under "Get Data From" specify the Sybase SQL Anywhere database.

8.  Under "Copy to the Following Datasource" specify the database you're moving to.

9.  Run the copy.

 

Audit database:

1.  You will probably not be able to move over any of the existing audit data.

2.  Log in to the Central Management Console.

3.  Select "Auditing"

4.  Scroll down to "ADS Database" under "Configuration".

5.  Select the database type.

6.  Enter the database name and credentials.

7.  Save.  I believe this will then create the audit tables in the new database.

 

-Dell

Re: Overall Requisition Workflow

Re: BSI Tax Factory 10.0

$
0
0

Recently we implemented BSI 10.0 and we are having tax reciprocity issue for employees living in Virginia and working in DC. If anybody body had solution or workaround for this issue please let me know

 

Thanks,

Venkat

Re: Receiver SOAP channel error-- Cant parse the document; HTTP 200 OK

$
0
0

Hi Ambrish,

 

I already looked at this post, but my WSDL document is not RPC-style. This solution wont resolve my problem.

 

Regards

Shivi


The next wave in the Metals and Mining industries, Are we ready?

$
0
0

China was fixing prices for all raw materials until the last European crisis in US 2010, in fact is the main buyer for raw materials. Since that moment many of the commodities in special metals has been in the lowest price since 2010.

 

Now all companies count with many tools to do Business Intelligence.

  • What do you think will be the next factor that will push-up metals prices?
  • How IT will prepare SAP customers for the next wave?
  • It’s the industry prepared to satisfy all customers’ information requirements at that time?

 

I would like to get the impression of OUR COMMUNITY and what YOUR opinion is?

My best regards.

Argenis

Re: How the Drill down functionality works if the source is Bex Query

$
0
0

Hi Sai,

 

If you are connecting to BEx via query browser, you would need to create separate queries. First query would bring more aggregated data. When user drill down based on certain parameter, second query should refresh that would bring in more detailed data.

 

The selection from Query 1 should be passed as filter value for Query 2, and trigger should be applied on Query 2 so that when the user makes any selection Query 2 should refresh.

 

Let me know if you need more help on this.

 

Regards,

Niraj.

Re: Submit Multiple Job Definitions/Job Chains with same Time window/Submit frame in mass

$
0
0

hi Nidhish,

There is a simple redwood script to submit a job :

{
//Get the job definition
JobDefinition jobdef=jcsSession.getJobDefinitionByName("System_Info");
//Create the Job
Job infoJob=jobdef.prepare();
//Get the Queue
Queue SystemQ=jcsSession.getQueueByName("System");
//Attach queue to job
infoJob.setQueue(SystemQ);
//Print out the jobid of the job
jcsOut.println(infoJob.getJobId());
//Submit the job
jcsSession.persist();
}

 

 

Now, since you a list of job, there are several ways to do this;

  1. Put the above script in a for loop, prepare a file (may be a txt file with job defintion in every new line), pass the file path as a parameter to the Redwood Script job, parse the file in java and feed each new line as an input to getJobDefinitionByName method in the for loop.
    or
  2. Hard code the entire list in the script, for example,
    JobDefinition jobdef1=jcsSession.getJobDefinitionByName("JOB_PAYMENT");
    JobDefinition jobdef2=jcsSession.getJobDefinitionByName("JOB_INVOICE");

    for every job.
  3. Now schedule the Redwood script job to run every 2 hours from Monday to Friday.
    or
  4. you can also hardcode the setTimeWindow and setSubmitFrame and run the script only once, but the jobs are submitted on a recurring manner.

 

Thanks

nanda

Re: Just want to chart some values

Re: Scheduling a job using excel upload in CPS

$
0
0

Hi HP,

 

Thanks for your response.  Please find below 2 examples which we required to achieve using excel(csv) file.

 

1. we have list of jobs in the excel(csv) file with below details in columns and we would like the script to read the file and submit all the jobs from this file. 

 

Ex:

 

     A                                         B                                        C                    D         E

JobDefinition    Requested Start Time/Time Window   SubmitFrame    Queue    Priority

 

 

2.  We have list of jobs in excel(csv) file which require to change in  Variant Name under Job Chain of Step2.

 

Ex:

 

     A                        B                   C                               

JobDefinition      Step2    New Variant Name

 

I would appreciate if you could please let me know the process and send some scripts to achieve this scenario.

 

 

Thanks

Nidhish.

Viewing all 8902 articles
Browse latest View live




Latest Images