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

Re: Application error of BO /SCMTMS/TRQ - OTR not creating

$
0
0

Hi,

Just have a look if output type is triggering properly i.e TRSO is green in the output of sales order


Re: Shipment block possible?

$
0
0

Hi,

Inform your abaper to have a look here:

 

BADI_LE_SHIPMENT

USEREXIT_SAVE_DOCUMENT in the program MV56AFZZ

Re: Request becoming RED

$
0
0

Thanks Raman,

I tried to activate DSO, but i am getting message like " Request status should be green before activating". Previously i deleted the Red request in DSO without changing the Request status to Red, in info package monitor screen. Again i loaded the request from PSA through update with scheduler as the data source is export data source. Later no records were added to DSO and request turns to red after long time.

 

Thanks

Hari

Re: SAP and Success factors through SAP PI

$
0
0

Hi Muni,

 

 

I have follow the steps, even though I am unable to see the SI which are related to SF.

But I am able to see the SI when I try to add them to BC.

Re: SAP and Success factors through SAP PI

$
0
0

Hi Muni,

 

2 days back I have opened that.

now I am unable to open, it is showing like Access Denied.

If u dont mind please send that document to my gmail p.vishnu1243@gmail.com.

Session 1 trans.1 record 0: No key data has been transferred Message no. VK523

$
0
0

Hi Need your help please,

 

I use Direct Input to create PO price conditions, I get this message in step “Create Batch Input Session”

Attached the screenshot of Step “Maintain Field Mapping and Conversion Rules”

 

I don’t where I am wrong

 

Raoul.

Re: SAP and Success factors through SAP PI

$
0
0

Hey Muni,

 

Thanks for sharing the document.

Can i create BC for sender also  as per the document.

Re: PO Output Message for Freight Vendor

$
0
0

Could you please a little bit ellaborate? Should freight vendor get the same output type as main vendor? Or is a different output type required?


Re: SAP and Success factors through SAP PI

$
0
0

no.

 

create business system for your sender. did you manage to assign software components to your Technical system?

Re: Split COGS account when revaluation actual costing closing

$
0
0

Hi Luiz,

 

All your customization is correct and working as expected. However SAP Simple Finance 2.0 is still does not support COGS split Actual Costing Closing. Hence revaluation of consumption posted as single component only.

 

Further, you can still use costing based COPA along with account based COPA in simple finance 2.0 to make use of this functionality. you can activate both accounting based and costing based COPA as well.

 

SAP is planning to release new version including this feature in SFIN 3 version.

 

Hope this helps.

 

Regards,

Santosh Varanasi

Option for User to give range of date in compose tab other than what Preview provides

$
0
0

Hi ,

 

User wants to select a range for date in which the data should be displayed and he wants to do everything in the compose tab. Other than the preview mode option. I am looking forward to provide input control so that he can select range of values in which he can see the data, but I cannot find this kind of functionality in compose tab. Any options or suggestions by which i can ?

 

Thanks,

Shanky

Re: Calling xsjs service from xsodata

$
0
0

Hi Shanmuka,

 

I am not sure if the question is clear - if I understand what you are trying to ask is if you could insert a record via odata? or any other possible way to do inserts into HANA?

 

yes, odata accepts CRUD operations, however, you will need to expose a HANA table in order to do your insert, delete, update... otherwise if you are simply reading you could use the table itself or a view. per Odata rules, you will need to specify a key.

 

on the other hand, if you are wanting to call an XSJS service to insert some records into the DB. this approach is also possible. You may want to do a PUT or POST depending in your requirement to insert/update data in the HANA DB. let's assume you do a POST and you send a JSON object, then in the XSJS layer, you need to parse it and either do your embedded SQL (not recommended) or call a stored procedure (preferable over embedded SQL) and provide the input parameters - keep in mind to avoid SQL injection, you want to parametize these inputs.

 

hope this is easy to understand and follow - for more information on different scenarios, please check out the developer guide(s).

Re: Option for User to give range of date in compose tab other than what Preview provides

$
0
0

Compose tab is for building a story; not sure why the user wants to filter there?  What is the business reason behind that?

Add suggestion within control

$
0
0

Hi

 

I've this following example and one of the autocomplite event is suggest & value and I want to add the code of  it inside the new control and not to put

it in the constructor , how can I do that ?

 

I mean instead of using value like following call the value method inside the control and not in the constructor it like following

var aC = new sap.ui.commons.AutoComplete({
maxPopupItems: 15,
displaySecondaryValues: true,
value: {
path: "/path",
mode: sap.ui.model.BindingMode.OneWay,
formatter: function(path) {
.....

Joerg

 

JsDoc Report - SAP UI development Toolkit for HTML5 - API Reference - sap.ui.commons.AutoComplete

 

 

 

JS Bin - Collaborative JavaScript Debugging

Re: HR P&F: Display Table in FPM and value from Z Generic class

$
0
0

It really is quite easy as mentioned above.

 

On your config side, you will have a form field defined for EACH "column" of your table. Let's say we have one called "FRUIT_LIN" (I always use "_LIN" in my field names so I know right off that it is a "line" of a table) and it's is just a character data element...."CHAR25".

 

Now, let's say you generic service has the same field (easier to make names match), so your config in HRASR_DT for your service looks like....

 

FRUIT_LIN  <---------> FRUIT_LIN   (mapping for form field to service field)

 

In your generic service, you are going to do something to read all the "fruits" from the database and put them in an internal table....lets call it LT_FRUITS. After having your values, we now want to move them over to our form fields (dataset). This is just as easy as looping through our internal table, attempting to read our dataset for a matching value and either update our value (if found) or create a new one. Something like....

 

l_count = 1. "let us pretend we do not have any existing entries yet....though we check fro them.

LOOP AT lt_fruits.

     READ TABLE service_dataset ASSIGNING <ds_fields> WITH KEY fieldvalue = lt_fruits-fruitname.

     IF sy-subrc = 0. "we have a match!

          <ds_fields>-fieldvalue = lt_fruits-fruitname. "redundant but just to show...could do something else

     ELSE.

          ls_dataset-fieldname = 'FRUIT_LIN'.

          ls_dataset-fieldvalue = lt_fruits-fruitname.

          ls_dataset-index = l_count.     "we would have gotten/set this earlier

 

          APPEND ls_dataset TO service_dataset. "now add it to our form fields!

          CLEAR ls_dataset.

 

          l_count = l_count + 1. "increment our index value

     ENDIF.

ENDLOOP.

 

 

So now your form field will look like this....

 

Form Field Name          Form Field Value          Index

FRUIT_LIN                    Apple                             1

FRUIT_LIN                    Orange                           2

FRUIT_LIN                    Banana                          3

FRUIT_LIN                    Mango                            4

 

....and since you "bound" your field FRUIT_LIN in your FPM List configuration, it will then appear on the form as .....

 

Fruit

Apple

Orange

Banana

Mango

 

Now let's make it a bit more complicated. What constitutes a "row" of our table? Well, it is simply all the form fields that have the SAME index. So let's say we add two more columns....count (FRUIT_COUNT_LIN) and price (FRUIT_PRICE_LIN) with values as....

 

Form Field Name          Form Field Value          Index

FRUIT_LIN                    Apple                             1

FRUIT_LIN                    Orange                           2

FRUIT_LIN                    Banana                          3

FRUIT_LIN                    Mango                            4

FRUIT_COUNT_LIN          1                                 1

FRUIT_COUNT_LIN          5                                  2

FRUIT_COUNT_LIN          10                                3

FRUIT_COUNT_LIN          0                                  4

FRUIT_PRICE_LIN          $0.99                             1

FRUIT_PRICE_LIN          $0.33                             2

FRUIT_PRICE_LIN          $1.00                             3

FRUIT_PRICE_LIN          $0.50                             4

 

....so now our table should appear as....

 

Fruit          Count               Price

Apple            1                    $0.99

Orange          5                    $0.33

Banana        10                    $1.00

Mango          0                    $0.50

 

Makes sense now? haha I know that was a long answer.


Re: MIGO Goods Receipt w/o PO using just an Order Number?

$
0
0

You may consider the following solution :

 

MIGO Movement Type 531 ( Receipt of By Products for Order ). This function  may fit your requirement. You can intake the stock with reference to a order.

 

Accounting Entries will be :

BSX Debit

GBB ZOB Credit

 

Using reversal movement types like 262 will always work but they act as surprise accounting movements. System considers them as a reversal of some earlier consumption movements ( Ex: 261). Generally, such movement types should be avoided for logistics intake of goods which are not "per say" reversal movements.

 

Kindly explore the option and revert if any queries.

Re: Bug: property of a complex type is processed wrongly by a worklist template.

Re: Add suggestion within control

$
0
0

not in constructor but insde? hm, create another method and do it there?

DASHBOARD

$
0
0

Have installed dashboard correctly on the server and can view them but when i try to view dashboard from the Client Machine, i get an error that cannotconnect to integration framework services.Any idea how i can sort that out?

Re: Add suggestion within control

$
0
0

Can you provide please example?

I want to put it inside the new control but to use the same functionality for example for

value I've formatter which I need...

Viewing all 8379 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>