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

Re: SAP ByD - Custom CodeList apply to many solution

$
0
0

Hi Krit,

 

You can just create a solution template with your code list and import the template to the solutions you want.  Please refer to the Cloud Applications Studio documentation for How-to if you are not familiar with Solution Template.

 

It is very easy to use.

 

Best Regards,

Fred


Re: Resources Planning Application

$
0
0

Hi Amr El,

 

I have worked on WFD Tool but not much with the integration part. I found some links with generic information to PFAL Configuration which I have shared here. Please check SCN Search for some more useful information.

 

http://scn.sap.com/thread/1980584

 

Hope this will be helpful.

 

Thanks,

Samantak.

Use of Duration - Custom BO - Action

$
0
0

Hi All,

 

I'm facing an issue which is not clear at all to me.

 

I was wondering whether someone could explained it to me.

 

I created a custom BO and defined an action.

On this action, I want to create a Duration however I get the following error message when I call "Create" method (Same for method "ParseFromSting"):

 

Error4Static reuse services cannot be called instance-based.

 

==> Btw: this code works fine on an event of a standard BO (E.g: BeforeSave).

 

 

Here is my coding:

 

Duration - Issue.png

 

thanks in advance.

 

kind regards,

 

Andres

Re: MB_SELECT_GR_BLOCKED_STOCK

$
0
0

OK,thanks you very much! I will try again.

Re: How to create a PDF output which is in binary data to Spool request, so we can select print spool to print the pdf

$
0
0

Have you got any solution to above issue?

 

Regards

PP

Re: FM ROUTING_MAINTAIN Counter In-consistence with Standard SAP

$
0
0

Dear Brahmankar,

 

Thank you for the suggestion thread. Unfortunately, FM ROUTING_MAINTAIN different with BAPI_ROUTING_CREATE as this BAPI do not have task list creation for Dependent MIC. It only cater up until the MIC characteristic.

 

Regards.

Ridzuan.

Re: Concatinating

$
0
0

Hi P R!

 

Just at first look: set TDID item to its default context.

Re: Concatinating

$
0
0

Hi Jens!

 

I think it is UDF that concatenates input queue of TDLINE for given context.


Attempting to join two queries!

$
0
0

Hi,

 

I have this query:

SELECT T0.[ItemCode], T0.[ItemName], T0.[U_Brand], T0.[CodeBars], T1.[Price],T0.[U_MinOrderQty], T0.[LastPurPrc], T0.[OnHand] as [On Hand], T0.[IsCommited] as [Commited], T0.[OnOrder], (T0.[OnHand]+T0.[OnOrder]) - T0.[IsCommited] as [Available], T0.[FrozenFor] as [INACTIVE], T0.[U_Category] as [Category], T0.[QryGroup1] as [DISCONT], T0.[QryGroup8] as [NOT FOR REORDER], T0.[QryGroup12] as [ADDED TO SAP], T0.[QryGroup20] as [TBA]

 

FROM OITM T0  INNER JOIN ITM1 T1 ON T0.ItemCode = T1.ItemCode

WHERE T0.[FrozenFor] = 'N' AND T0.[PrchseItem] = 'Y' AND T0.[SellItem] = 'Y' AND T0.[SellItem]  = 'Y' AND  T1.[PriceList] = 1

GROUP BY T0.[ItemCode], T0.[ItemName], T0.[U_Brand], T0.[CodeBars], T1.[Price],T0.[U_MinOrderQty], T0.[LastPurPrc], T0.[OnHand], T0.[IsCommited],T0.[OnOrder], T0.[FrozenFor], T0.[U_Category], T0.[QryGroup1], T0.[QryGroup8], T0.[QryGroup12], T0.[QryGroup20]

ORDER BY T0.[ItemCode], T0.[ItemName], T0.[U_Brand], T0.[CodeBars] , T1.[Price], T0.[LastPurPrc], T0.[OnHand], T0.[IsCommited],T0.[OnOrder], T0.[FrozenFor], T0.[U_Category], T0.[QryGroup1], T0.[QryGroup8], T0.[QryGroup12], T0.[QryGroup20]

 

And I need to add in the a new column - the earliest in stock date for an item - so the DocDueDate field on the OPOR table.

 

I have this query:

SELECT T2.[DocNum], T1.[ItemCode], T1.[Dscription], min(T2.[DocDueDate]) FROM OITM T0  INNER JOIN POR1 T1 ON T0.ItemCode = T1.ItemCode INNER JOIN OPOR T2 ON T1.DocEntry = T2.DocEntry WHERE T1.[ItemCode] = 'AP4000' and T2.[DocStatus] = 'O' GROUP BY T2.[DocNum], T1.[ItemCode], T1.[Dscription], T2.[DocDueDate] ORDER BY T2.[DocNum], T1.[ItemCode], T1.[Dscription], T2.[DocDueDate]

 

The issue that I am running into with this one is that I am trying to get the earliest in stock date.

Some items we have in stock we have multiple PO's for - I just want to return one value - the earliest DocDueDate.

 

First and foremost - is using the Min() function correct - if so, why doesn't it work on the above?

 

Secondly - how would I go about implementing this into my initial query?

 

Regards

Rick

Re: How to inform users stocks of old material in sales order if it is found

$
0
0

Hi Benedict,

 

Thank you for your suggestion.  I will try the BADI .

 

As the company creates a unique number for each product to track its international transaction (for sales purpose), that's why old material is maintained despite new and old are exactly the same .

 

Regards,

 

Danny

Re: Concatinating

$
0
0

I've used "Count" function instead of your UDF.

Map_design.pngMap_result.png

Send File Sequentially

$
0
0

Hi PI/PO Experts

 

I have a requirement to send 5 files from a directory. I need to send the files in sequence.

I know that multiple files can be sent using the same communication channel however I am not sure if we can maintain the sequence as well through the channel itself or do we need to take a help from NW BPM? 

 

Kindly advise.

 

Regards

Sonal

Re: Rule for stop processing of expected event message

$
0
0

Hi Vishnu ,

 

STOP_PROCESS do not resolve my issue since it create lock table entry which clears by batch job .

 

If I add INVALID_DATA as X in preprocessing , will it not post entry in EH_EVMSG then I am good ?

 

Regards,

Re: How to pass table data from one controller to other in UI5?

$
0
0

quick dirty way 1:

in view one

sap.ui.getCore().setModel(yourModel, "yourmodelname");

in your second view controller(init), 

var oModel= sap.ui.getCore().getModel( "yourmodelname");

this.getView().setModel(oModel)

 

quick dirty way 2:

when you initially create the model, do like this

myglobalModel=**create your model*****

 

in your second view controller(init), 

 

this.getView().setModel(myglobalModel)

Re: Multiple Drilldowns in BEx Analyzer

$
0
0

Hi,

 

I think you need to implement this in your workbook..You will create a MACRO on your workbook..

 

Nicholas Stein,can you guide him how you did this?

 

Regards,

Loed


Hide Values and Column

$
0
0

Hi All,

 

 

I'm reasonably new to Analysis for OLAP.

 

I have created a query in BeX and have applied a condition to a Key figure. Days column values Less than 0 should display. Which is working fine in BeX.

 

 

When i create a report on top of this query in Analysis for OLAP that filter doesn't work. So i applied a filter on Sheet 1 and restricted by Measure and gave for Days column (Measure) Less than 0 should display. It seems that the filter/condition did not work,

 

However when i insert a New Analysis in Sheet 2, the condition i applied in Sheet 1 has automatically applied and only values less than 0 display.

 

1. How do i apply the filter for Sheet 1 (my main analysis)?

 

2. Why does the filter/ condition get apply only to Sheet2? Is this the default Analysis for OLAP behavior?

 

3. Is it possible to hide columns (complete column) in Analysis for OLAP? If yes how?

 

 

Regards,

DTD

Re: Data will be displayed only if filter has been set

$
0
0

Hi,

 

Maybe authorization issue? Can you please run the same report in tcode RSECADMIN and check the authorization error?

 

OR

 

Can you please post here the result of your query WITHOUT FILTERS?

 

Regards,

Loed

Re: SOAP HTTPS Soap Envelope

$
0
0

Hi Jaime

 

Noticed that you are new on SCN and this is your first post. Welcome to SCN.

 

Just to share with you that the best way to get an answer is if you provide as much details on your issue. Screenshots (of configuration, logs, etc) are always good. You will have to provide more details on the error/issue you are facing, and what exactly are you referring to when you mentioned "security SOAP envelope".

 

As you are new here, I'd suggest you read the following blog. I admit it's a long read, but it will go a long way in providing you the right mindset for long term participation in SCN.

Asking Good Questions in the SCN Discussion Spaces will help you get Good Answers

 

Regards

Eng Swee

Re: which event when purchaseorder's item has been changed?

$
0
0

Hi Fred,

     I have got the tax code on this path:TaxCalculationItem.TaxationCharacteristicsCode.content.

     But the "tax rate"  not catch. Could you help me? Thanks.

Re: Not able to see data at company code level

$
0
0

Hi,

 

Who implemented your authorization? Perhaps this is authorization issue..Can you please run your report in RSECADMIN and check the authorization error?

 

Regards,

Loed

Viewing all 8594 articles
Browse latest View live




Latest Images