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

Re:- IT0003

0
0

Hi,

 

Whenever we run payroll dates in IT0003 are updated accordingly and it is applicable for both live and retro.

 

Thanks,

Sriram


HANA-Hadoop connectivity issue

0
0

Hello all,

does anyone know what this error message indicates to:

" SAP DBTech JDBC: [403]: internal error: Cannot get remote source objects: [unixODBC][Simba][SharkODBC] (34) Error from Shark: No more data to read."

 

I get this in Studio when trying to create a remote source. Connection between servers should be established and ok though.

 

 

BR,

Jen

Re: SAP NW Installation error

0
0

Hi,

 

I am using SWPM SP06

 

BR

Re: How to use characteristic as key figure for short text planning

0
0

Hi Gregor,

 

I just downloaded the SP20 and will test this feature.

 

Thanks,

Benjamin

BSTTYP in 2LIS_03_BF

0
0

Hi Experts,

 

We have a requirement for stockholding report. Currently, the datasource we are using are 2LIS_03_BX for open stock and 2LIS_03_BF for movement type. However, when creating the report, we are not being able to capture the specific vendors restricted for the report. Upon checking, the transaction for the vendor is existing in PSA, but when loading to infocube, it cannot be found.The transaction for that vendor in PSA has a "blank" value for stock category.

 

We checked the transformation from 2LIS_03_BF and 2LIS_03_BX to infocube 0IC_C03 and we found a standard routine for 0GN_VENDOR. Under the 0GN_VENDOR is the standard routine below:

2014-12-01_14-11-26.jpg

 

When checking for MSEG table, there is no stock category (BSTTYP) field in the table. Our question is, how does SAP fill up the field BSTTYP? Since it is in the condition for the routine of 0GN_VENDOR. This causes our issue for the stockholding report.

 

 

Thanks a lot.

 

Regards,

Anne

Sales order: Header condition details

0
0

Hi Experts,

 

I have a requirement to display Header level condition of Sales Order.So i have click on header on search: as shown in below fig:

 

1.PNG

 

2.PNG

Now , i want to get these pricing element. i.e. ZPRO, ZCR1 etc with their condition value and details.

 

I am able to get these details at item level from  BAPISDORDER_GETDETAILEDLIST but this is not giving header level condition pricing details

 

please suggest a BAPI or table from where i can get these details

 

Thanks in advance

 

Warm regards

Rohit

Re: Merge Item rows when scanning barcode

0
0

Hi Rajesh,

 

I have very little experience with in client addons, so I will try to help as much as I can, but your best option is probably to post separate questions for each issue as you encounter it.

 

As far as I know you can declare events "handled" the same way as in normal windows applications. That might be the answer to all four questions.

 

Another approach could be to process the whole order at the end, when pressing the ok button. In other words, just let the system add rows the normal way, and when the user approves the document you first combine all "double" rows, perhaps with a second approval question, before letting the system actually create the document.

 

Regards,

Johan

Re:- actions

0
0

Hi friends

 

We have actions  in PA , Do we have any actions in OM  if yes what are the actions , please explain

 

Regards

sober


Re: adding wagetype field to component configuration HRPAO_OVR_FORMREP_IT0008_BR

0
0

You need to change the Feeder class parameters and add the required fields to your overview screen

Capture.GIF

Re: How to embed an webi report data into the email body???

0
0

Hi Vamshi,

 

thanks for the reply , i tried that but when i shedule the publication as MHTML, the mail which i recieve contains only a part of the report in the body of the mail followed by a html link in the below.

 

regards,

manjunath

Re: Error during Abap Import Phase

0
0

Hi Anil,

 

DbSl Trace: DB2 software level mismatch between client and server.

(DB) ERROR: db_connect rc = 256

DbSl Trace: DB2 software level mismatch between client and server.

(DB) ERROR: DbSlErrorMsg rc = 29


As per log it seems, the problem with Software mismatch..

please try to re-downloading the db2 rdbms and db2 client file from sap and uninstall old file then re-installed from the beginning.. aslo find,

The right dvd for Kernel and SL_CONTROLLER.

 

regards,

Rajshekar

Re: How to embed an webi report data into the email body???

0
0

thanks for the link pavan

Re: Personas - replacing an image assigned in multiple flavors

0
0

Ernest,

 

As I have mentioned, for the existing flavors, the newly maintained media file will not take effect, you

have to change it one by one. You can make media file global among the flavors after you have created the media file. See below url:

 

 

http://help.sap.com/saphelp_personas200_silverlight/helpdata/en/26/5fa899c7894878aefd0c4dd3f958de/content.htm?frameset=/en/30/1489c3451948cb9b0dfaf76c007524/frameset.htm&current_toc=/en/bf/bcd651647b3d57e10000000a441470/plain.htm&node_id=19&show_children=false

 

Best regards,
Yuki


Re: PSA table for Flat file datasource

0
0

Hi,

 

Strange..I am able to see flat file datasources using above table.

 

flatfile.png

But your are able to see entry in another table correct?then use that and filter with source system as flat file.

 

Regards,

Ganesh Bothe

Re: enter g/l Acoount posting(F-02) by using bdc program

0
0

Well, better use BAPI as already written, there are also CHECK versions of the BAPI

  • BAPI_ACC_GL_POSTING_POST -> BAPI_ACC_GL_POSTING_CHECK
  • BAPI_ACC_DOCUMENT_POST -> BAPI_ACC_DOCUMENT_CHECK

 

Or use some FM that build the BDC for you (they manage the screen sequence), look at following FM:

  • POSTING_INTERFACE_START
  • POSTING_INTERFACE_DOCUMENT
  • POSTING_INTERFACE_END

Else if you are not in a hurry, you could play with FM as FI_CHECK_ACCOUNT_ASSIGNMENT to identify required fields and dynpro, or ask your functional for some rules.

 

Regards,

Raymond


Problems with Java-Beans-Connectivity on Crystal Reports 2013

0
0

Hello,

 

Is there a way to create a Javabean connection on Crystal Report 2013?

i refered Creating a Java Bean to Use as a Crystal Reports Data Source and Java Beans Connectivity

 

i tried to do something

 

1. testBean.java

package com.cht.bean;
import java.sql.*;
public class testBean {  private ResultSet resultSet = null;  private Connection connection = null;  private String connectionURL = "jdbc:odbc:Xtreme Sample Database 11";  private String databaseClass = "sun.jdbc.odbc.JdbcOdbcDriver";  private String query = "SELECT * FROM CUSTOMER";  public testBean() {  try {  // Ensure database class exists  Class.forName(databaseClass);  // Create a connection  connection = DriverManager.getConnection(connectionURL, "", "");  } catch (ClassNotFoundException ex) {  System.out  .println("Ensure that database driver class is installed.");  ex.printStackTrace();  } catch (SQLException ex) {  System.out.println("SQL Exception #" + ex.getErrorCode() + " : "  + ex.getLocalizedMessage());  ex.printStackTrace();  }  }  public ResultSet getResultSet() throws SQLException {  // Create an SQL statement to execute  Statement statement = connection.createStatement(  ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);  // Execute the select statement to populate the ResultSet  resultSet = statement.executeQuery(query);  return resultSet;  }
}

 

2. Modified CRConfig.xml

<JavaBeans>    <CacheRowSetSize>100</CacheRowSetSize>  <JavaBeansClassPath>C:\javabean</JavaBeansClassPath>  <CallBackFunction>CrystalReportsLogoff</CallBackFunction></JavaBeans>

But, in the Crystal Reports 2013, it's empty in Java Bean Connecitivity.



Thanks,

Re: Opening more then 1 open cursor in Function Module generic extractor.

0
0

Hi Experts,

Thanks For all the input. This issue is solved.

I have used another logic to code here in this scenario.

As suggested, as my select are more expensive, so I have never used OPEN CURSOR, rather I have selected into internal table, and in the second step, added all the select to one main internal table.

 

after that I have checked the size of the iTab_Final, by using describe statement in ABAP.

 

After that I read the iTab_Final in loop, based on index value of the internal table, and increment the index value by 1 in each iteration, and each packet is formed as per the packet size of IP.

 

Suggest if there is another way to code it effectively. Else I will put the pseudo code after 3 days on this forum.

 

thanks.

 

CPJ

Re: How to embed an webi report data into the email body???

0
0

thanks for the suggestion arvind wiil post this idea soon

Re: convert html to xml in abap

0
0

Hi Ravi Chandra,

 

Even, i'm having the similar requirement. In case, if you had found any way to convert the HTML to XML format, Kindly, let me know.

 

Regards,
Bala.

deactivating a dataflow in dataservices

0
0

Hi is there an option which can deactivate or comment a dataflow or workflows temporarily so that they skip execution of the deactivating dataflow when a job is executed.
We are in dataservice 4.2 version.
 
Thanks

Viewing all 8851 articles
Browse latest View live




Latest Images