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

Re: Time taken for HANA System to become available after a System restart for continuing transaction (in ERP on HANA)

0
0

Don't use this for an OLTP system, the RTO will be too long. It will depend on the size of your row store, but is typically 5-10 minutes before the system is available. You will need to test it in order to know the exact RTO for your system.

 

For OLTP you should use system replication.


Re: Duplicate record in CT Data

0
0

Hi Sadi,

 

Before finish the badi clear the ct_data table:

 

Clear: CT_DATA.

 

You usually must to clear the ct_data table before pass the new values that you generate in the badi.

 

Regards.

 

Mario

Re: Using Crystal Report in ASP.Net website, Report not showing in CrystalReportViewer

0
0

How can I tell what Service Pack I using for Crystal Reports for Visual Studio?

 

In Visual Studio, it shows it as version 13.2000.0 when I look at the Extensions tab in References for the web site.

 

I have created a new web site, added a button, added the CR Viewer, add the .RPT file, and added the following code to the Button click:

 

        CrystalReportViewer1.ReportSource = "~/Formulas.rpt"

 

I can see the report when I click on the button.

 

But I need to be able to filter the data using a dataset.

Automatizar retorno de SD via Inbound

0
0

Olá pessoal,

 

estou num cliente que está implementando o GRC-NFE Inbound e quer automatizar todos os processos de entrada, inclusive os retornos de SD. O objetivo é fazer o menos manual possível, até mesmo utilizando o barcode. Alguem já passou por essa situação ou sabe é possível automatizar esses retornos de SD?

obrigado,

Bruno

how to create efashion universe (idt)

0
0

Questions

1. efashion is sample data of mysql or sap bobi sample data ?

2.how to create univers in udt ? all steps pls ?

3 how to resolve loops and traps ? is there any logic to resolve loops n traps?

 

 

thank you friends ....

Re: Good morning guru's, can you please send me creation of IDT and Webi documents !!!

0
0

Hi I am also new here, Please share info what u have collected

Launchpad - ESS MENU - Descriptions not transporting to Quality client

0
0

Hello,

 

I have made some changes to the Launchpad role ESS, instance MENU.  Our customization included some changes to the Link Text and Descriptions.  I was able to translate the Link texts using APB_LPD_SHOW_TEXT_KEYS and transport them, however I am unable to get the Description (Customer Long Text) texts to transport.  I'm not sure what step(s) I'm missing so could someone provide me with details on how to get this done?

 

Dev client

 

Capture1.JPG

Quality client after translation and transport.

 

Capture.JPG

I've even attempted to force them into a transport using Program ID = LANG, Object type = DOCT, DOCV, using the keys seen in report APB_LPD_SHOW_TEXT_KEYS.

 

Regards,

Garrett Meredith


Re: Can not save report after changing the SQL Command!

0
0

Hi Brian,

 

On the original report make a copy of it and then open it in CR Designer. And/Change the SQL and then start removing objects and whole sections to see if you can find the source of the problem. It could be some object needs to be updated or it is possibly corrupt and the RPT file itself has been corrupted somehow, no way to "fix" it.

 

If you try to change anything else can you save it?

 

DJ, what you posted makes no sense...

 

Don


Re: SLA Determination Based on Support Team

Re: Liberado guide line para o layout 3.10

0
0

Oi Gizela, boa tarde.

 

Se eu estiver errado, por favor me corrijam, mas os caminhos no SPRO só são habilitados via Support Package.

 

Att,

 

Ruan Lima

HANA currency conversion issue

0
0

Hi,

 

We are using standard HANA currency conversion feature to convert a currency value that is in multiple currencies to USD.

We have checked our HANA model and it does not seem to have any issue. However, the converted value of the currency is much higher than what it should be (almost triple).

 

I am trying to understand what is causing this issue and how HANA Native functionality is coming up with these numbers. Can anyone help me with what logic HANA Native functionality uses (such as which T table it hits first extract what, which one it hits next , which ratio it picks and then calculates the converted value?).

 

Any tips on how to fix this will be greatly appreciated.

 

Thanks,

Anya

Re: Wrong migration key - installation number 00000000

0
0

While generating a migration KEY, we enter host name of source and target system ?

But here it says:

(GSI) INFO: hostname = "UNKNOWN 

Can you set the hostname used in while generating key and try again.

 

Honestly, I doubt that you can migrate on same host. It's technically possible but not sure from SAP's side.

 

Regards

Sales Order getting an error message VV023

0
0

Hello SAP Support,

 

We came across one critical Issue where Orders are getting an Error Message VV023 while doing the ATP Check and all the schedule line dates are showing in Future 2015.

 

These are SBOM Orders having Product Allocation on multiple materials.

 

The Sales Order Number in PDS  is 1026054901

 

Finally we managed to replicate the Issue in PDS Client.

 

Please refer the attached docment.

 

Please help us in fixing this Issue.


Thanks,

Farhan.

Re: Export to PDF from populated c# Dataset without Database connection

0
0

Not that hard to do... if multiple tables are used you may need to add them also.

 

private void DataSet1_Click(object sender, EventArgs e)
{
    //CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    ISCDReportClientDocument rcd;

    rcd = rptClientDoc;
    rptClientDoc = rpt.ReportClientDocument;

    System.Data.DataSet thisDataSet = new System.Data.DataSet();

    string sqlString = @"SELECT top 10*  FROM  ""xtreme"".""dbo"".""Financials"" ""Financials""";


    System.Data.OleDb.OleDbConnection oleConn = new System.Data.OleDb.OleDbConnection(connString);
    System.Data.OleDb.OleDbCommand cmd = oleConn.CreateCommand();
    cmd.CommandText = sqlString;

    System.Data.DataSet ds = new System.Data.DataSet();

    OleDbDataAdapter oleAdapter = new OleDbDataAdapter(sqlString, oleConn);
    //OleDbDataAdapter oleAdapter2 = new OleDbDataAdapter(sqlString2, oleConn);
    DataTable dt1 = new DataTable("Financials");
    //DataTable dt2 = new DataTable("Orders Detail");

    oleAdapter.Fill(dt1);
    //oleAdapter2.Fill(dt2);

    ds.Tables.Add(dt1);
    //ds.Tables.Add(dt2);
    // Saving to XML just o verify the data is valid. Open in CR Designer and set lcoation to the XML and then verify database to confirm it works
    ds.WriteXml("c:\\reports\\sc2.xml", XmlWriteMode.WriteSchema);

    // as long as the field names match exactly Cr has no problems setting report to a DS.
    try
    {
        rpt.SetDataSource(ds.Tables[0]);
        rpt.SetDataSource(ds);
    }
    catch (Exception ex)
    {
        MessageBox.Show("ERROR: Schema Mismatch. Error reported by CR: " + ex.Message);
    }

    MessageBox.Show("Data Source Set", "RAS", MessageBoxButtons.OK, MessageBoxIcon.Information);
}

 

Don

Re: Users not coming in Search from LDAP in GRC AC 10.0

0
0

Hi everyone,

 

Having read this thread, I have a unique problem that's closely related to what you have discussed.  As noted, I have checked my config, the corresponding notes and my base entry.  When I go to transaction LDAP and login to the LDAP server, it binds successfully.  Then when I click on the find button, and go through the steps as noted on SAP note 1757906 - GRC 10.0 - LDAP user search does not work in NWBC, I find that the base entry returns results.

 

However when I synchronize from within GRC AC, I get successes, but 0 users returned.  Here are two screenshots to illustrate.

 

Below is the screen when you go into transaction LDAP, bind to the LDAP server and then click on the Find button.  I changed the filter to restrict object class to user, and to put S* as the wildcard, as it times out if I run it for Objectclass=*.  Anyway, this screen below returns a bunch of results.

image001a.png

 

Here is the screen from within GRC AC, where I run the repository object sync.  As you can see, it grabs roles but users are 0.

 

image001.png

 

I'm not sure why this screen would show 0 users, while within tcode LDAP, I'm able to pull users IDs when I use the Find button.

 

Thanks for your help.

Santosh


Re: How to build an 8.5 report where a single source repeats with each piece of data

Re: Using Breaks/Context operators in WebI

0
0

Thanks a Lot for the help guys, I got it to work. Appreciate the help. Need to fix some other stuff so might have a few more questions, but this definitely helped. Thanks Sahil and Jyothirmayee

Re: WD ABAP on IPAD - drop down not working on IPADA / TABLETS

0
0

You should check the Product Availability Matrix for compatibility with Chrome (if it works in chrome it will work in Safari). I'm not sure with SP will provide the compatibility for 7.0. Have you checked the notes provided?

 

In terms of Netweaver  version, by now you should be running 7.31 or 7.4 which have full compatibility. Upgrades have their uses, and an ECC on EhP2 is very outdated (EhP4 came out more then 5 years ago, we are currently on EhP7).

Re: You cannot add a job with a duplicate name, as a web service already exists with name ... please rename the job and try again

0
0

Right click on the Job and Search using various options (object type = jobs).

Re: Don't say "Yes" or "No" ..!!!

0
0

In my mother tongue 'Tamil' we say 'Yes, No' (Aama, Illa') when we agree to something. I am not sure about how it evolved but seems funny  thinking why we would agree to disagree to agree

 

Benedict

Viewing all 8676 articles
Browse latest View live




Latest Images