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

Folders under 'Catalog' in Schema

0
0

Hi,

I see two folders called 'View' and 'Column View' under the Catalog in a schema.

1) I tried creating a column view using SQl and I see the column view under the 'Column View' folder. But I am not able to use this column view anywhere.

2) i tried creating a view by right-clicking on the 'View' folder, but I could only save it as a local .vsql file. What purpose do this serve?

 

Can someone shed some light here?

 

Thanks,

Benedict


Re: Graphical mapping - Tree and subtree on Tree structure

0
0

Hi,

The aim was to solve the through graphical-mapping, to avoid extra development effort. The requirement was hedged through ABAP-mapping  and JAVA-mapping, choosing the latter for the final solution.

 

Regards,

Re: VV22 access sequence using material number

0
0

Yep! I do understand. Thanks

Re: Layout in F-04 (Post With Clearing)

0
0

Hello Rajat,

 

check your variant in FB00 ( for i.e- SAP01) and go to O7E6 for your screen variant and add possible fields. Ask your Abapers to help you creating a new screen variant for you incase you dont find possible fields as required

 

 

 

Best regards

Hrusikesh

BAPI_BUPA_ADDRESS_CHANGE For update and delete phone numbers

0
0

Hi Sdn,

 

I have a requirment to update the phone number sequence (CONSNUMBER) .

 

I am planning to delete all the entries and re-insert with correct sequnce.

When I am trying to delete the phone numbers it is not working no error message.

 

Could you please help in resolving this issue.

 

   DATA : it_telnum TYPE STANDARD TABLE OF bapiadtel INITIAL SIZE 0,
       wa_telnum TYPE bapiadtel,
       it_return TYPE STANDARD TABLE OF bapiret2 INITIAL SIZE 0,
       wa_return TYPE bapiret2,
       it_telnumx TYPE STANDARD TABLE OF bapiadtelx INITIAL SIZE 0,
       wa_telnumx TYPE bapiadtelx.

PARAMETERS : p_bp TYPE bapibus1006_head-bpartner.

CALL FUNCTION 'BAPI_BUPA_CENTRAL_GETDETAIL'
  EXPORTING
    businesspartner       = p_bp
  TABLES
    telefondatanonaddress = it_telnum
    return                = it_return.

*wa_telnumx-country = 'X'.
*wa_telnumx-countryiso = 'X'.
*wa_telnumx-std_no = 'X'.
*wa_telnumx-telephone = 'X'.
*wa_telnumx-extension = 'X'.
*wa_telnumx-tel_no = 'X'.
*wa_telnumx-caller_no = 'X'.
*wa_telnumx-std_recip = 'X'.
*wa_telnumx-r_3_user = 'X'.
*wa_telnumx-home_flag = 'X'.
*wa_telnumx-consnumber = 'X'.
*wa_telnumx-updateflag = 'X'.
*wa_telnumx-flg_nouse = 'X'.
*wa_telnumx-valid_from = 'X'.
*wa_telnumx-valid_to = 'X'.
wa_telnumx-updateflag = 'D'.
APPEND wa_telnumx TO it_telnumx.
APPEND wa_telnumx TO it_telnumx.

CALL FUNCTION 'BAPI_BUPA_ADDRESS_CHANGE'
  EXPORTING
    businesspartner = p_bp
  TABLES
    bapiadtel       = it_telnum
    bapiadtel_x     = it_telnumx
    return          = it_return.

CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.

Re: Crashes on SetDataSource Method.

0
0

Hello Mark

 

 

Just so I am clear;

 

The app works as expected in VS .NET when you use the required entries in the app.config.

The app does not work when you create the same or similar app in Delphi.

 

If the above is correct, I wonder what results may be useful if you google 'app.config and Delphi'. I have no knowledge or experience with Delphi, but the following was one piece of info that came up using the above search string:

 

http://delphi.about.com/u/ua/windowsshellapi/application-config-where.htm

 

Perhaps asking in Delphi forums re. app.config equivalent may also be an idea(?).

 

 

- Ludek

Senior Support Engineer AGS Product Support, Global Support Center Canada

Follow us on Twitter

Got Enhancement ideas? Try the SAP Idea Place

Share Your Knowledge in SCN Topic Spaces

Re: XSLT in Binding Instrucción

0
0

Hi,

Still do not know how to achieve using XSLT binding between the WF container and the TS container. I hope someone will share it. The workaroud I did was create a binding for the full container via a function module.

 

Regards,

Goods Receipt- Outbound Delivery

0
0

if you reference an outbound delivery, then you get the goods issue quantity as proposed quantity  in MIGO.

Whenever the proposed quantity is different from the quantity that physically arrived, then your receiver should switch on the protein computer and think about this situation instead of overwriting the proposed quantity right away.

if you want restrict him, then you need to check the quantities in

MBCF0002 Customer function exit: Segment text in material doc. item

EXIT_SAPMM07M_001


Re: Report of last count date, by batch

0
0

I dont know any standard report that has a last count date as selection criteria

Al exportar cualquier documento en Excel desde SAP, abre dos ventanas de excel.

0
0

Buenas tardes,

 

Cuando exporto documento por excel desde SAP, me abre dos ventanas de excel.

 

Deseaba saber si este inconveniente es causada por el AutoOpen de Excel o por alguna configuración del Excel o es normal que suceda.

 

Gracias de antemano.

 

Saludos,

 

Eileen B.

Re: Diferencia en el informe de Analisis de ventas - SBO

0
0

Pero es más extraño aun que tengas mayor dato en los artículos que en los clientes.

 

Porque los artículos siempre pasan por las facturas.

 

En el caso de los servicios no pasan por el reporte de artículos y por esa razón solo se ven en ventas a clientes.

 

Qué procedimiento usan en facturación?

 

En el procedimiento también has verificado las facturas de reserva?

Re: MRP - Calc of Distribution in Order qty

0
0

Hi Monst yang for usefull information. I created Z99 eual distribution rule as per attached link and assigned to strategy, but still it does not resolved my issue. Still it is keep creating order with less qty than base qty of recipe...

 

I'm not sure what I'm missing here.

Re: Pass key to the binding of method GenericInstantiate of BOR SYSTEM

0
0

Jacob,

 

If I understand your question correctly, you have value 'A' and value 'B' but you need to pass 'AB' to the task container.

 

A couple ways to do this, that I know of:

 

  1. Use a programmed binding.
  2. Create a separate step, before the step we are talking about, with its own task that does the concatenation and passes back the value to your workflow container. This means that you have to write code somewhere to do this.   I would try writing as generic a utility method as possible.

 

I don't do much workflow lately so there may be an easier way, but as I recall this is what I came up with for choices when I needed two values concatenated.  It boggles my mind a little that there is no concatenation operator to be found in the workflow builder. (Kind of like it boggled my mind when I first started doing ABAP and found out I had to actually type out CONCATENATE.)

 

I hope this is helpful.

 

Margaret

Re: SSO - Service Account

0
0

Hi Seb,

 

Adding the service account to the local administrator groups raises a question as to why it should be added when the Windows AD authentication has been working fine for about 2 years now.

 

Adding the service account might be the best practice, but the question is why it is such a need when it can be accomplished without adding it. I talked to my Network Admin and he said the configuration guides comes with lot of settings, but we need to see what suits us best.

Re: VB 2008 crystal viewer & report from CR 2008 - crdb_oracle.dll could not be loaded

0
0

Hi Don,

 

I see the oracle path when I type that in.  I am not quite sure why that is relavant though.  Is it something that I should be putting in my VB Code?  I am not having problems running the report in my developer, it is when I am trying to run the report through VB.

 

Glenn


Re: Simple CR2008 SP6 Report is not visible on web page (empty page)

0
0

I think I know what the problem is.  It looks like the Crystal Reports component registration has not been updated in the markup.  This is the current markup:

 

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ReportEB.aspx.cs" Inherits="ReportEB" %>


<%@ Register assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web" tagprefix="CR" %>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Intranet Reports - eBusiness</title>
</head>
<body>
    <form id="form1" runat="server">
    <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true" />
    </form>
</body>
</html>

 

What is the Version for CR2008 SP6?  Is it just a matter of changing 12.0 to 12.6?  I'm suprised the website didn't throw an exception, since 12.0 is not on the server.

 

Gary.

Re: Simple CR2008 SP6 Report is not visible on web page (empty page)

0
0

Ludek,

 

I think VS2008 was used to create the ASP.NET application.  The website was reconfigured for .NET 4.0 framework.  Since the application consist of only 14 page containing mostly HTML markup, it runs without issue.  I've updated the web.config file as per CR2008 SP6 documentation.

 

The code-behind that launches the CR2008 report is:

 

    protected void Page_Load(object sender, EventArgs e)
    {
        string server = ConfigurationManager.AppSettings["EBusinessServerName"];
        string userid = ConfigurationManager.AppSettings["EBusinessUserId"];
        string password = ConfigurationManager.AppSettings["EBusinessPassword"];

        if (IsPostBack == false)
            SetSessionVariables();

        ConfigureCrystalReports();

        Toolkit.LogonToDataServer(CrystalReportViewer1, server, userid, password);

        CrystalReportViewer1.HasToggleGroupTreeButton = false;
        CrystalReportViewer1.HasToggleParameterPanelButton = false;
        CrystalReportViewer1.HasCrystalLogo = false;
    }

 

The ConfigureCrystalReports() method (too long to post) uses a number of IF statements to set the following properties on the CrystalReportViewer1 object: ReportSource, ParameterFieldInfo, SelectionFormula.

 

Toolkit class contains the following:

 

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;

using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions.Shared;

/// <summary>
/// Common application methods.
/// </summary>
public class Toolkit
{
    /// <summary>
    /// Log on to data server
    /// Refer to Windows "Data Sources (ODBC)" administration tool.
    /// </summary>
    /// <param name="crViewer">crystal report viewer object</param>
    /// <param name="server">server name</param>
    /// <param name="userid">user's id</param>
    /// <param name="password">user's password</param>
    static public void LogonToDataServer(CrystalDecisions.Web.CrystalReportViewer crViewer,
        string server, string userid, string password)
    {
        if (server == null)
            server = ConfigurationManager.AppSettings["EBusinessServerName"];
        if (userid == null)
            userid = ConfigurationManager.AppSettings["EBusinessUserId"];
        if (password == null)
            password = ConfigurationManager.AppSettings["EBusinessPassword"];

        // set crystal report logon information.
        ConnectionInfo ci = new ConnectionInfo();
        ci.ServerName = server;
        ci.UserID = userid;
        ci.Password = password;

        // add logon information to logon information table.
        TableLogOnInfo logon = new TableLogOnInfo();
        logon.ConnectionInfo = ci;
        TableLogOnInfos logons = new TableLogOnInfos();
        logons.Add(logon);

        // try to log into crystal reports viewer.
        crViewer.LogOnInfo = logons;
    }

    /// <summary>
    /// Get report file name based on report code.
    /// </summary>
    /// <param name="code">report code from default.aspx page.</param>
    /// <returns>the report file name</returns>
    static public string GetReportPath(string code)
    {
        string path = ConfigurationManager.AppSettings[code];
        return (path == null ? "" : path);
    }

    /// <summary>
    /// Convert report file name to a report title name.
    /// </summary>
    /// <param name="code">report code from default.aspx page.</param>
    /// <returns>the report name</returns>
    static public string GetReportName(string code)
    {
        string report = GetReportPath(code);

        return System.IO.Path.GetFileName(report).Replace(".rpt", " Report");
    }

}

 

I hope this provides more clarity.  Thanks, Gary.

Re: Load Report Failed

0
0

Yay Ludek, you got it! I added "ReportDirectoryPath" with a value of m:\ to the LocalConnectionMgr subkey under:

 

HKEY_LOCAL_MACHINE\SOFTWARE\SAP BUSINESSObjects\Crystal Reports for .NET Framework 4.0\Report Application Server\InprocServer

 

 

And my reports now open!! Thanks for hanging in there with me!

Re: Stock disappear in MIGO

0
0

hi,

 

do not use account assignment in your process when you need to stock the material, Account assignment categories mainly used for procurement of consumables.

 

You are using account assignment 'F' which directly posted to consumption account when you do GR,

 

do the process without specifying the account assignment & check the stock in MMBE,

 

Please revert your business requirement clearly, do you have any specific requirement to use account assignment in process?

 

Thanks,

K J

Re: Ancho Banda Para SAP Business One

0
0

Angel:

Se agradece tu respuesta, pero andaba buscando algo que me hablara de enlace dedicado y el documento solo habla de enlace en la red local

Viewing all 8713 articles
Browse latest View live




Latest Images