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

Re: field reference in material type

$
0
0

Have a look into the thread Problem in purchase view in material master

Here I've given the possible reason for a field attributes. You said you are using same field selection key for material type, there are more other selection can differ your field selection like as Industry sector, plant. Find the difference uses for these two materials (first when you use material type ERSA and second ROH).

For more details, please have a look into the document Control material master fields


Re: Proration of Infotye 0014

$
0
0

Hi Zulfikarlos

All you need to do is create a Z processing class for Class "47". Copy PCR 'X011' to 'Z011'. For the custom class, say Z, the PCR will be processed as below:

 

PCR for IT0014 Proration.png

 

Hope this helps.

 

Regards

Divya Tiwari

Re: Actual Sales Qty is Higher than Production Qty. is there any way to increase the stock other than using 561 Mvt Type to increase the stock?

$
0
0

I think quantity conversation is used in BI (Business Intelligence) module. I am not aware of that.

Re: Forecast consumption over several plants

$
0
0

I am not aware of any way to accomplish this in APO.  But I agree this is a shortcoming in APO.

 

In ECC you can use a concept of planning plant to accomplish this.

Re: Table shows the last record from the response through out the rows.

$
0
0

Hi,

 

I had the same problem. And in fact the table key was not unique, after I've changed that it works fine now!

 

Thanks for the hint!

 

Regards,

Juergen

Re: System is not fetching from VV11 Record

$
0
0

Hi srinu

 

no this doc is not blocked

 

 

By the by i have checked in VP01

Here BA00 I AM not able to open

 

Using Drag & Drop (BoEventTypes.et_Drag)

$
0
0

Hi all,

 

I would like to use the Drag & Drop event introduced with 8.8. Events seem not to be firing at all.

Is anyone using it? Am I doing something wrong? The event should just be there as any item event with Type==BoEventTypes.et_Drag?

 

Best,

 

Asher

Re: EDI message formats and versions .pdf


JAVA Component Installation from SAP Installation Master

$
0
0

Dear SAP Techies,

 

I am trying to install SAP both ABAP and JAVA based components, but, I am facing a problem with the installation as from the installation master it is representing the ABAP based components  for installing the central instance  are appearing but not the JAVA components for installation for central instance . Please find the below attached picture and suggest me the right solution to resolve the issue.

 

Best Regards

Vidya Sagar

Re: Implementation of Two-Step Picking with Batch Determination in WM

$
0
0

Hi again Leonidas,

 

This info explains just about everything relevant for this problem.

 

So if you produce 45 kgs of HALB, do you always pack it 8 by 8 and the rest in last case, or there are cases when you pack more than 8 kgs in a case, e.g. 9 kgs?


If 8 kgs is the maximum package qty, then you can use the first proposal I have made, to round up the TR qty in a user exit.
Later, when you pick, if you pick less than 8 kgs that would be fine, but it is important that you have a cap, an upper limit for the qty.

 

When you pick you will be allowed to pick SU with 5 kgs as well as the full ones with 8 kgs.

 

So basically you will use standard process, you can use 2 step picking afterwards normally.
First round-up qty's to 8 kgs for every TR.
Group them.
Create TO (batch determination takes place, then storage type and bin determination take place).

Confirm first step (by standard to storage type 200).

Create TO for 2nd step.

Confirm TO for second step (allocate SUs to your TRs).
That should be it.

 

So I do think that the best place for the development is a user exit during TR creation.
It would be very, and I mean very easy to do that, just a few lines of code.
First query your rounding UoM (get you back 8 Kgs).
Second, just divide your TR qty by 8, you will e.g. get 1,56 and round down 1,56 to 1 and add 1 => you will get 2.
Then multiply 2 by 8 => 16 kgs.

Update your TR qty to 16kgs.

 

Or you can use any other way of rounding up as you or your ABAP-er finds it appropriate, but in several lines of code you can make this work in the right user exit.

 

This will definitely cover your process requirement. There will be a possibility for underdelivery, but you need to have that, you cannot get the process 100% fixed as you have a few variables in the process.

Re: Webdynpro user specific logon

$
0
0

Hi Erhan Keseli


How you valid user?

What set, when user is Valid?

You generate cookies MYSAPSSO2?


Thank you

Re: Unable to call bex query in visual composer with two structures

Re: Problem with COPYTO functionality

$
0
0

Hello Kate,

 

This issue should be investigated.

I would suggest you to open customer message on component EP-VC-RTM.

 

Thanks,

Talia

Re: Data in the Commissions test query not getting up to date

$
0
0

Hi,

 

please share the screen shot to us.

Re: No SID found for value 'HR ' of characteristic 0BASE_UOM BRAIN

$
0
0

Hi Ram,

 

Even after editing the 0BASE_UOM values 'HR ' to "HR' without gap at last digit getting the same issue.

checked in T006 table HR and  MN values are as it is in BI. please help me out how to rectify the issue


Re: How can I get data from Message class in Smartforms

Re: Description of field value in label

$
0
0

Hi Praveen,

 

if you want to display label and input field using thtmlb this is the procedure.

 

<thtmlb:grid columnSize = "1"

                  rowSize    = "2"

                  width      = "100%" >

       <thtmlb:gridCell columnIndex = "1"

                        rowIndex    = "1"

                        height      = "100%" >

         <thtmlb:grid columnSize = "6"

                      rowSize    = "5"

                      height     = "60%"

                      width      = "100%" >

           <thtmlb:gridCell columnIndex         = "1"

                            rowIndex            = "1"

                            colSpan             = "1"

                            horizontalAlignment = "RIGHT" >

             <thtmlb:label design = "label"

                           id     = "HeaderInput1"

                           for    = "//"

                           text   = "LABLE" />

           </thtmlb:gridCell>

           <thtmlb:gridCell columnIndex = "2"

                            rowIndex    = "1"

                            colSpan     = "5" >

             <thtmlb:inputField id       = "HeaderInput1"

                                value    = "<%= gv_lable %>"

                                width    = "100%"

                                disabled = "true" />

           </thtmlb:gridCell>

</thtmlb:grid>

 

what my Suggestion is in your case dont fallow thtmlb coding.

just add attribute under context node and move that field from available to display in getter method

fetch the description based on code.

 

Creating a Custom field and display it in a table view

 

in the above link i have added value attribute under context node fallow the same and display that attribute in getter write your own logic.

 

Thanks & Regards,

Srinivas.

Re: Hide when formula is true condition is not working on SAP BusinessObjects BI Platform 4.1 Support Pack 4

$
0
0

Hi Saurabh,

 

user will select the month from summary table as i mentioned it above.

 

I want to show detailed table when only and only one month data is there.

 

conditions:

if there is nothing selected from summary table then detailed table will not appear below summary table.

 

when i will run report i will see report like this

Summary Table.PNG

 

if i click on one of the month in Summary table( if i select one month only) then detailed table will appear and show data for that month only.

 

There is element linking between summary and detailed report and i am Selecting sep-13 in summary report. then detailed report appeared just below the Summary report

but  2nd ase will happen only when i select anything from Summary report

 

Summ and Detailed Table.PNG

 

To achive this second condition i am hiding detailed table when there one or more month data is there in detailed table thats why i had put condition that if Count([Month])>1 then hide.

 

 

but its not working in BO4.1 SP4

 

could u guys please help me on this?

 

 

 

Thanks in Advance,

 

Nitin

Re: Need an SP for UDO or UDT

$
0
0

hi Nithi

 

The SP is not working

 

 

 

Regards

Jenny

Re: PSA has data, but '0 data packages with a total of 0 records transferred successfully' to DSO

$
0
0

Hi,

 

over the weekend the nightjob ran 4x in 2 systems and the problem did NOT occur anymore after the changes I made on Friday.

 

Therefore I assume these changes are the solution:

 

1) There were some connectors between the steps that were configured as "always". I changed them to "when successful".

2) I rearranged the steps in the process chain to:

- delete PSAs

- delete DSOs

- do another task that is not related to the flatfiles->PSA->DSO load.

- then load all PSAs

- then load all DSOs.

 

thanks for your input.

Alex

Viewing all 8902 articles
Browse latest View live




Latest Images