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

Re: BAPI Production Order Confirmation

$
0
0

Hi Thangam

 

What is your requirement.  Can you please eloborate.  Based on that we can help..

 

 

 

Regards,

Venkat


Re: User EXIT for 261/262 and 601/602 type material movement

$
0
0

Hi Juergen,

 

I am reopening this thread with a question.

The question is as follows -

 

I am doing a Goods Issue against a production order having three line items with different Quantities.

The GI is posted in transaction MIGO. I am expecting that the TABLES parameter XMCMSEG of the user exit EXIT_SAPLMCB1_001 should contain all the quatities of the 3 line items. However, while debugging I am able to see only the first line item with its respective quantity. I am expecting the the other two line items to appear in XMCMSEG-MATNR and XMCMSEG-MVGBR field in a loop. That doesnt happen.

 

The surprising part is that the all the line items get posted during goods issue.

I am also able to see the line items and their qtys displayed in MB03 in sync with GI postings in MIGO.

 

Am I missing something?

 

Thank you.

 

Regards,

Rohit

Re: Massive update for SAPGUI

Re: Issue with Hybrid App API approach in SUP 2.2 SP02

$
0
0

It would appear that you are getting a JavaScript error, that you are attempting to reference a variable which either doesn't exist or hasn't been set yet. As such, it would be impossible to diagnose without substantially more information. Have you tried debugging with Chrome or something similar?

Re: Data types accepting all catregeries

$
0
0

I am not sure if this meets your requirement, But if you want a common work variable which can be used to pass data to other variables of different data types, then you can use field symbols.

 

data : int typei,
        char(10) typec,
        packtype p DECIMALS2.

FIELD-SYMBOLS: <fs1>.

ASSIGN int to<fs1>.
  <fs1>  = 12.
UNASSIGN <fs1>.

ASSIGN char to<fs1>.
  <fs1>  = 'abcd'.
UNASSIGN <fs1>.

ASSIGNpackto<fs1>.
  <fs1>  = '12.36'.
UNASSIGN <fs1>.

Write :/ int , char, pack.

 

Here the field symbol took the datatype of the variable it was assigned to.

 

The integer value was passed to the integer field, character value and packed decimal were all moved to the respective variable through the common variable <Fs1> which can hold data of any data type.

Re: Where is B1if in SAP 9.0?

$
0
0

I solved the problem.

 

I needed to reinstall Integration Components from SAP 8.81 version and then upgrade to SAP 9.0 PL04

 

Starting installation from SAP 9.0 PL00 in my case dont work. I needed to install Integration Components from older version than upgrade to make all running good.

 

Bye

Jonny Cortonicchi

Re: Way to change scale on scatter plot?

$
0
0

Hi Genevieve

 

Using your mouse you can select the area in the chart that you would like to zoom into. Once selected a filter button will appear, if you click it then your chart will be zoomed into the area you selected and the scale will be adjusted accordingly.

 

Regards,

   Christina

Re: PI 7.11 JMS adapter using JNDI weblogic server connection issue

$
0
0

Dear All, Thanks for participating. Here here the last findings we have:

 

1.The class removal under javax/jms in the wlfullclient.jar are necessary because other classloader errors could occur. It is mandatory to remove everything under javax/jms.

 

2.From the XPI Inspector traces in starting and stopping the channel, it connects to the Weblogic Server and to the queue successfully.


According to Weblogic Documentation when you create a JNDI Initial Context with a username and password, you associate a user with a thread. Before starting a new Context on the thread, you must close the first Context so that the first user is no longer associated with the thread. Otherwise, users are pushed down in the stack each time a new context is created.

This is not an efficient use of resources and may result in the incorrect user being returned by ctx.lookup() calls.
This is the reason why we close the Initial Context after a successful connection. But according to this documentation the security scope ends with a context.close() method.

There is a flag weblogic.jndi.enableDefaultUser. If this flag is enabled  even after a ontext.close() the current user is not removed from the thread context.

The solution is to  add this flag in the JMS Receiver channel configuration.

 

JNDI.InitialContext.property.5 =
java.lang.String weblogic.jndi.enableDefaultUser, java.lang.String true

 

Thanks for your attention.


Re: SAP BPC 10- loading data to BW error for month

$
0
0

Hi Red,

 

Did you tryed to maintain your conversion file?

 

Assuming that:

Source time BW: 01/2009

Target time BPC: 2009.01

You can try using a combination like:

 

EXTERNAL              INTERNAL

01/????                   ????.01

 

I hope it helps.

 

Best Regards,

Lucas

Re: Getting Into Debug of Password Reset Pop Up

$
0
0

This activity is a waste of time. You could use free time to read a book on Cryptography.

 

Anyways, doing F1 > Technical help on that popup gives program name as SAPMSYST, whose source is protected. So I guess this is the end of story.

Re: Statement "Call Screen" is not allowed in this Form (MIGO)

$
0
0

Yes check via SM13, often the dump or error comes from customer enhancement or message output which try to raise error message or pop-up windows in update task.

 

Regards,

Raymond

Re: Install Powerbuilder 12.5.x

$
0
0

Hi Gimmy...

 

I think I remember facing this situation. I think I had to remove Microsoft Visual C++ Redistributable (for sure v. 2010), and after launched again the setup for Windows SDK... So as i see in the attached PNG, the redistributable is already installed in you machine. Remove it before trying to install the SDK.

 

Andreas.

Re: issue with data entered as a range with wild card char

$
0
0

Use IN operator.

 

IF <fs_data>-ort01 IN  r_ort01

ELSE.
    DELETE it_data.
ENDIF.

 

by the way can you not simply write

 

DELETE FROM itab WHERE field NOT IN range.

 

Regards,

Pawan.

Re: Need to add Zfiled in FB01 more button screen

$
0
0

Hi Gopal,

 

I can help you if you want to add the fields at header level.

 

Have you worked with BADI Screen exits there is one FI_HEADER_SUB_1300 implement it.

 

and Add an append structure to your BKPF table.

 

There is a default implementation also have a look at that too in sample code.

 

Cheers

Re: File to Sync Webservice interface

$
0
0

Dear Jyoti,

 

You pick a file asynchronously and you want a synchronous web service at the inbound side, but without response back to PI, correct?

 

In case you do not want a response back, just make sure you create your service interfaces asynchronously.

 

Kind regards,

Dimitri


Re: problem in smartform in fetching data

$
0
0

Hi Guillaume,

thanks for your reply, i have fully deleted the inner join and separately written four lines of code in my select option in kna1 table, and my problem get resolved.

Re: Locking a Program for only 1 user in edit mode

$
0
0

I almost forgot.  THanks for ALL of the replys

Re: Locking a Program for only 1 user in edit mode

$
0
0

Sorry, I was referring to the execution of the program, not the editing of the program in se38 or se80.

In using a LOCK OBJECT what happens if the connection to SAP is lost or the program never finishes?

 

My worries is with a hung session.  Would assigning a value to a memory ID work?  Then FREE this value once the program is finished? 

 

Arindam, this is the reason that I don't want to create a value and put in a ztable. 

Re: bapi_quotation_createfromdata2

$
0
0

it is inquiry number not document number of inquiry .and I have  checked  it with  leading zero but resulting the same.

Re: Proxy to JDBC Scenario

$
0
0

Hi,

 

Are you performing buld operations on data base? did you able to process any record earleier?

 

Check with DB team too,it looks you are performing intense update insert operation.

 

Thank you

Viewing all 8594 articles
Browse latest View live




Latest Images