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

Re: Error in net price calculation, item 000010 (Please correct)

$
0
0

Hi,

 

Can you please elaborate your problem so that it can help us to analyze the issue and provide solution for the same accordingly.

 

 

Tejas


Re: Master data Process chain steps executing twice after repeating failed and there is no dependency between steps

$
0
0

Hi,

 

Actually at DTP level, there is option to repeat process chain automatically. as my guess that might be selected. please check for the dtp which are added to your process chain.

 

You need to do in change mode. While adding link it should pop up will come with 3 options.

1. Success

2. Failure

3. Always

 

First try to see at dev system. once you got what you need, later apply same steps at prod.

 

Thanks

Re: Transfer of Purchase Order Quantity to another Plant

$
0
0

Dear Harvey,

 

  • On of the way is to inward the balance and send the required qty to Plant 2 through stock transfer process.
  • Short close the existing one and open a new Purchase order for Plant 2.

 

Vignesh.V

Re: Oracle TNSNAME in Crystal Server 2011 Installation

$
0
0

Hi,

 

There is no need to put the path of TNSNAMES.ora file instead you will need to enter TNS name username and password. You can check the connectivity using sqlplus command from prompt. Open command prompt and type sqlplus <username>@<TNSNAME> press enter. Type in the password and try to connect. If this connection is successful then you need to enter same TNSNAME, username and password while installing CRS 2011.

 

Also you should have 64 bit Oracle client with same version as that of Oracle database server installed on CR server.

 

Regards,

Hrishikesh

Re: How to upload a modulepool program from one SAP server to another SAP server?

$
0
0

Hi Gottumukkala,

 

Create a program and save in one request in server1

 

Then ask your basis team to generate the data file and co file.

 

Then import the request from server1 to server2.

 

Arivazhagan S

show selected record in alv grid when it is reloaded

$
0
0

Hi Abap Experts,

                                 I have requirement such that when i check one checkbox in alv grid and try tocheck another checkbox it should through an error.using indexs and internaltable i completed that requirement.BUT know my problem is when ever i check one checkbox in alv grid,grid reloaded and it shows records from strating onwards . i want the grid should scroll down to the record Which i checked in alv grid and show that record when it is reloaded.

Re: Selection within a range

$
0
0

Hi,

The user enters a date.

Use that date in the FM and get the enddate and start date.

Create a structure like below.

Types : BEGIN      OF   ty_select,    "Range Table

           sign       TYPE char01,

           option     TYPE char02,

           low        TYPE char40,

           high       TYPE char40,

           END        OF   ty_select.

Data :  lt_range TYPE STANDARD TABLE OF ty_select,

           lx_range TYPE ty_select.

 

DATA : v_startdate TYPE sy-datum.

DATA : v_enddate TYPE sy-datum.

DATA : v_temp TYPE dats.

 

v_temp = sy-datum.

 

CALL FUNCTION 'RP_LAST_DAY_OF_MONTHS'

    EXPORTING

      day_in            = v_temp

    IMPORTING

      last_day_of_month = v_enddate

    

CONCATENATE  v_enddate+0(6)  '01'  INTO  v_startdate.

 

Now feel the range table created.

 

lx_range-sign = 'I'

lx_range-option = 'BT'.

lx_range-low = v_enddate.

lx_range-high = v_startdate.

Append lx_range to lt_range.


No use the query.

SELECT * FROM LIPS INTO wa_dn WHERE ERDATIN lt_range.


Hope it works.


Regards

Re: Require different calculation for the Grand Total(Overall Result) as compared to Sub-Results in SAP bex query designer

$
0
0

Did you try with simple setting for your KF(Calculate Result as Average)? Currently, it is Nothing Defined or Summation has been defined.


Re: deleting a single cell of an internal table without deleting the entire row

$
0
0

loop at itab where empid+0(1) <> 'E'.   

     CLEAR: itab-empid.

     MODIFY itab TRANSPORTING empid.

endloop.

Re: Third Party Sales to the Consignment Location

$
0
0

Hi,

 

This is not possible in standard

Because in Third party we don't have to create a delivery since it is being initiated by vendor directly to customer. There is no inventory postings to our plant

 

And in Consignment process, it is a part of Special stock in our plant and change in inventory without valuation

 

to leverage your scenario it requires a lot of brainstorming among MM FI and SD

 

please discuss with your MM and FI colleagues

 

regards,

santosh

Re: BTE process 2040_F110 for email & print

$
0
0


Yes. check box is active only but it's not allowing to maintain new entry with same BTE 2040.

 

BR,

Shabs

Re: how to get warning message before billing creation in vf01

$
0
0

Hi Sai,

 

You can use the customer exit SDVFX010 for the purpose and throw warning messages.

 

Regards,

Subeesh Kannottil

HANA installation on SUSE Linux -Step by Step

$
0
0

Hello Anyone,

 

could you share me the step by step document on HANA installation on SUSE linux.

 

I have gone throguh documents those are having hefty documentation and wordy...really there is no straight forward document to proceed step by step.

 

If any one already done HANA installation,documented each and each every step then please share snapshots.

Re: Strategy Group

Service entry sheet in wrong PO

$
0
0

Hello everyone,

 

      We have created an SES with services adopted from wrong PO. The SES shows the status as accepted. I tried to revoke and save but it throws an error. Can someone suggest how to go about this???


Re: crm webui product and Account component Enhancement

$
0
0

Hi Amit,

            Thanks for reply.

CRMT_BUPA_IL_HEADER_SEARCH  having one field XDELE like BUT000 table.

so I can write the code in do_prepare_output.

 

logic will be : Add the parameter with name 'XDELE' and sign = 'EQ', low value = ' ' to the search collection using a reference to the query service (cl_crm_bol_dquery_service).

 

But my question is that for product how can I achive this.

 

Is there any table having having Archive Product.

 

Regards

RR Pradhan

Re: Failed to open connection database vendor code-17 error appear when navigate to next page?

$
0
0

Hi Don,

How are you connecting to your database, ODBC, OLE DB or Native client?- OLE DB

What DB are you using? MS SQL

32 or 64 bit AppPool? 32 bit

Is the client for that platform installed? Yes

Are you keeping the report in Session? No

 

Here is the my coding to connect to the report...

  protected void mdlbtn_Click(object sender, EventArgs e)

    {

        ReportDocument cr = new ReportDocument();

        cr.Load(Server.MapPath("~/Reports/MODEL.rpt"));

 

        TableLogOnInfo logOnInfo = new TableLogOnInfo();

        ConnectionInfo coninfo = new ConnectionInfo();

        coninfo.ServerName = ConfigurationManager.AppSettings["strServer"].ToString();

        coninfo.DatabaseName = ConfigurationManager.AppSettings["strDBase"].ToString();

        coninfo.UserID = ConfigurationManager.AppSettings["strUID"].ToString();

        coninfo.Password = ConfigurationManager.AppSettings["strPWD"].ToString();

        coninfo.Type = ConnectionInfoType.SQL;

        TableLogOnInfo login = default(TableLogOnInfo);

        for (int i = 0; i < CrystalReportViewer8.LogOnInfo.Count; i++)

        {

            foreach (CrystalDecisions.CrystalReports.Engine.Table tbl in cr.Database.Tables)

            {

                login = tbl.LogOnInfo;

                login.ConnectionInfo = coninfo;

                tbl.ApplyLogOnInfo(login);

                cr.SetParameterValue("Model", mdl.Text);

                CrystalReportViewer8.ReportSource = cr;

            }

        }

    }

 

is this the correct way to connect to report, while move to second page only that error message shows.

Re: Jump from DAYPR - error

$
0
0

hi,

 

it mean's group one employees are hourly paid ,,,,,,,

Re: HOW TO UPLOAD FILES INTO SAP FROM FTP

$
0
0

Hi Anil ,

can we use this funtion module for FTP?

 

PLZ EXPLAIN ME IN DETAL

 

 

Thanks,

Abdul

Convert OTF to TIFF or BMP

$
0
0

Hi All,

 

We have a requirement where we need to convert smartform output to Tiff or BMP file and download to desktop.

 

Is there any way to convert OTF to TIFF or BMP.

 

Thanks and Regards,

Anmol Bhat.

Viewing all 8594 articles
Browse latest View live




Latest Images