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

Re: Error occurring in PY

$
0
0

Hi Aruna,

 

It's working now.

 

Thnx


Re: Mat. Avail Date changes every day

$
0
0

Friends,

To check if V_V2 is responsible for changing Material Avail date, I tested a scenario.

I took an Order with qty 100. But confirmed qty in Schedule line was 0 because there was no stock. I created stock and then executed V_V2. But even after running V_V2, the confirmed qty @ sched line was zero. What I'm missing?

In IMG, the Default Settings for Avail check for Sales Area is unchecked for all Sales Area. Pl help me to analysis why Material avail date is moving.

Thank you.

Re: How to do date filter in sap.m.table?

$
0
0

Robbe,

 

 

1. Date is coming from backend is in this format : YYYY-MM-DDTHH:MM:SS

 

2. We are setting the model into JSON.

 

    So date format is changing to  /Date(1358866800000)/

 

3. This is the code in view

 

   <Text id="col4" text="{path:'odata>DeliveryDate',formatter:'Formatter.date'}" />

 

4. In the UI : 22/01/2013

 

If we do filter with 22/01/2013, filter code is checking for this /Date(1358866800000)/

 

 

So how to do in this scenario? Please help me.

 

Thanks,

Preethi

Re: Back to author screen values are not being transferred to the other scenario form

$
0
0

Hi Sahir,

Thanks for the prompt reply.

 

For our scenario, the transfer of values should happen only from formA to FormB.

which works well when process is initiated and sent to approver.

However the transfer of values from formA to formB is not done when author sends back form to approver.

 

We did debug method CHECK_FOR_REINITIALIZATION of class CL_HRASR00_PROCESS_UI_EVENTS it looks like sap is not executing mapping of values when it displays approver workitem for the approval, rather it is reading old work item data .

We also checked scase data , xml does exist with updated values.

 

The note 2061583 is applicable for

When BACK TO AUTHOR is clicked in an APPROVAL step, the updated field values are

not displayed in the form.

i.e for our scenerio, we dont need any data to be sent from formB to formA so this note is not applicable for our scenario.

Re: PP\DS - planned order is scheduled on the resource during repair works

$
0
0

Hi Jyoti!

There are not so many orders scheduled during down times. But manually reschelduling is not a solution for the client. As for other way it's also impossible due to a very specific production. Every resource has its own characteristics which are not dublicated anywhere else.

 

Regards,

Anastasia

Re: SMP Login With Active Directory

How can I see something on parameters area of dashboard designer?

$
0
0

Hello, everyone.

I'm beginner about SAP Business One in South Korea.

My company have a problem about dashboard designer in SAP Business One Application.

Here is one of them.

parameter_area_empty.PNG

I can't see anything on parameters area.

I think that something is located that area, but nothing.

How can I see something on parameters area?

 

Thanks for reading my question.

Re: Need Info on File based TDMS refresh

$
0
0

it's nothing related to file transfer. you can control load even in RFC package and use your real production system as sender without creating any new system./


Asset Retired but still shows in Depreciation Run

$
0
0

Hello Experts

 

I have retired certain Fixed Assets in my system and found that while doing depreciation Run, those assets appear in Depreciation as well, and when i do Execute It says Assets are Inactive.

 

As per my understanding those assets which are retired has to be be 0 balance, but when i look in to its Fiscal Years, 2014 Shows Values and 2015 Shows as 0, hence i assume it is giving problem.

 

Any expert suggestions on this how to overcome.

 

 

 

Regards

Vamsi Krishna

Re: Flatefile datasource configuration

$
0
0

Alpha Conversion in the infoobject should solve your problem.

Please try and let us know.

Re: Unable to Refresh the Crystal reports in infoview/BI Launch pad

$
0
0

Hi Santhosh,

 

Log-in to CMC > Right-click the report > Database configuration.

 

Make sure the database config is setup correctly.

 

Also make sure that the database drivers/ODBC is setup as required.

 

-Abhilash

Re: Web IDE 1.8.2 - problems after deploying

$
0
0

Hi asi,

ok i know that document, i would be interested if the layout editor is same as in the trial-version of webide (that we are currently using) or how will this tool be enhanced.

or will it never become a full "click-and-point" environment or is layout editor planned to be just a helpder tool

 

regards oliver

Re: Error in data load: Record 6710 :Characteristic value '201383485 ' of characteristic CHNNUM is not ALPHA -converted

$
0
0

Hi All,

 

Issue got resolved. I added below function module in field level routine.

 

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
     EXPORTING
       INPUT         = COMM_STRUCTURE- (field name)
     IMPORTING
      OUTPUT        = (field name)



Thanks,

Phani.

Re: openfiledialog not opening in particular machines...

Re: In a grid we would want to have all parents in bold


Re: Sequence of Validation, action,determination

$
0
0


Hello Bharat,

Thanks for your comment. Will you please explain any scenario, and how it work?

2nd of this question is, if we create any customizing determination/action/validation.and we have to implement it so that our customizing part will trigger.what we have to do? I am aware of how to create them, in for determination there is a provision of preceder and succer determination name we have to put.But I want to know how to find out that position??

 

 

Thanks In advance Bharat.

Re: System not starting up correctly

Re: Checkbox in ALV Grid

$
0
0

Hi Choubey,

 

I coded as you are, but when I click the button to select all, just the whole line of the ALV table be selected, not with checkbox flagged. So sad,  I'm not sure if we can reallize that.

 

BR

Jay

Re: Copying view to the same component is not working

$
0
0

Hi,

 

The issue is fixed now. The attribute 'View' in the super class of the copied class was pointing to the original class. I have changed the attribute and also changed the constructor of the class to point to the correct class.

 

Awarding points to both of you for providing helpful ideas.

 

Thanks,

Samrat.

Re: Checkbox in ALV Grid

$
0
0

Hi,

 

We did a similar requirement recently. Hopefully, this will be helpful.

 

* ASSIGN THE FUNCTION CODE TO VARIABLE R_UCOMM

   R_UCOMM = SY-UCOMM.

   CASE R_UCOMM.

     WHEN '&SEL_ALL'.

* TO SELECT ALL THE RECORDS DISPLAYED IN ALV GRID

       LOOP AT IT_WEIGH INTO WA_WEIGH.

         WA_WEIGH-V_CHECK = 'X'.

         MODIFY IT_WEIGH FROM WA_WEIGH TRANSPORTING V_CHECK.

         CLEAR WA_WEIGH.

       ENDLOOP.

* REFRESH THE ALV GRID OUTPUT FROM INTERNAL TABLE

       RS_SELFIELD-REFRESH = C_CHECK.

     WHEN 'DESEL_ALL'.

* TO DESELECT ALL THE RECORDS DISPLAYED IN ALV GRID

       LOOP AT IT_WEIGH INTO WA_WEIGH.

         WA_WEIGH-V_CHECK = ' '.

         MODIFY IT_WEIGH FROM WA_WEIGH TRANSPORTING V_CHECK.

         CLEAR WA_WEIGH.

       ENDLOOP.

* REFRESH THE ALV GRID OUTPUT FROM INTERNAL TABLE

       RS_SELFIELD-REFRESH = C_CHECK.

 

Humble Regards,

Abhijeet

Viewing all 8798 articles
Browse latest View live




Latest Images