Hi,
When you give FROM to TO in select option, at that time it will not show green color icon.
But you enter value in select single value option and enter values, you will get green color icon.
Regards,
JP
Hi,
When you give FROM to TO in select option, at that time it will not show green color icon.
But you enter value in select single value option and enter values, you will get green color icon.
Regards,
JP
Hi Frederik,
Thanks for you advice, did you as suggested and just reinstalled the Hana Studio, works perfectly.
I contacted with Anusha, who posted the guide on the wiki about missing the features of the Hana Studio, and his reply was that they will look into it if its feasible to add them.
Best Regards,
Mihaly
Hi Rishi,
Can you do a data Preview on the Analytic View and then check the log for the Generated SQL?
This should help you create a proper statement.
--
Shreepad
Hi Carsten ,
Thanks for your reply.
But here comes one more question ,the maximum size of an element allowed in BRFplus is 255 .
So in case i am having a big list of plants so one string cannot hold it.
I tried something , as shown below
Hi,
ERROR report
&1
&2
---------
for place holder &1 I can connect a loop expression on table z_material_table having below values
Z_material
1706
u001
1505
6008
9000
5623
1540
Now value of place holder &2 will get assigned dynamically by looping on this table.
so that in my mail i can see.
--------------
Hi,
ERROR report
1706
u001
1505
6008
9000
5623
1540
---------
And i have assigned value from table z_material_table-Z_material to Z_mater1 (place holder &2) .
But in mail value is coming empty.
Please find attached screenshot.
Image may be NSFW.
Clik here to view.
Kindly suggest.
Hi Varun,
I'm not sure what you are looking for as you initially started with Sampling drawing procedure.
Anyways, sampling scheme works this way,
Image may be NSFW.
Clik here to view.
You can see that different sample sizes are maintained according to different lot sizes in the above example.
For the lot size upto 5, sample size is 3. Likewise, for the lot size upto 10, it is 4, for the lot size upto 20, it is 5.
In this way, you can define what the sample size would be for different lot size.
In your case, it would be upto lot size 1000, sample size 32.
You also define the Acceptance and Rejection number here (refer c1 and d1) where you set the highest figures for accepting & rejecting the inspection lot.
In sampling procedure, you define following type,
Before following this, you need to know what exactly you are looking for!! We all are here to assist you, but you need to know what is required.
ntn
Firstly, you have posted the query in wrong space...
This is career center...
And also your query is not clear...
thanksssss siew tim, actually i id i m using has all authorizations...and i dont think that would be problem of authorizations... but as per ur reply , i will check the authorizations again
Hi Prabhjot,
Are you mainly pointing out BASIS Admin role in SMP/SUP (SAP mobile platform/Sybase unwired platform)?
SAP Mobility is dynamic and challenging now days. Lot of new features are getting added in new release of platform.
Here SMP administration/SUP administration is different from SAP BASIS admin. Basic SMP admin tasks involve like LDAP Config, SSO, generate certificates, upgradation, applying licenses.
You can have a look at this document
Rgrds,
Jitendra
Hi friends,
I am Using 7.3.1 single stack.My source is Proxy( SAP ecc). based on condition message split and send to 3 targets(EDI).
source has 130 fields and target has 50 fields( 3 targets are same structure and same fields)
ex: if company code= 1 message goes to one target 2 means some other target ..............
i would like to use with out BPM. is it possible?
Give me solution. please explain clearly.
when you go for Multi mapping ? and when you go for Enhanced receiver determination?
here need to create any context object?
thanks
Dear Experts,
I am working on Webdynpro ABAP, I got an unique requirement to convert Webdynpro output (view containing tables, graphics, etc) to the PDF file and it should get downloaded to local system.
There will be button (PDF download) on top of view. Onaction event of that button I need to write my code.
I have seen the on SDN that webdynpro abap view output can be sent to the print Converting Webdynpro Output to PDF format but this does not serve my purpose.
We are not using ADS to our system.
Please let me know, how can we achieve this functionality with code in webdynpro ABAP.
Thank you.
Regards,
Chandan
Hi,
Did you post part 2 in J1IEX?
Please check J_1IEXCHDR and J_1IEXCDTL table whether the entry exists with correct posting status.
Regards,
AKPT
DATA: lwa_bapihead TYPE bapimathead,
lwa_mara TYPE bapi_mara,
lwa_marax TYPE bapi_marax,
lit_return TYPE bapiret2,
lit_makt TYPE TABLE OF bapi_makt WITH HEADER LINE,
lit_mltx TYPE TABLE OF bapi_mltx WITH HEADER LINE.
SELECTION-SCREEN BEGIN OF BLOCK main1 WITH FRAME TITLE text-001
NO INTERVALS.
PARAMETERS : p_matnr TYPE mara-matnr,
p_mtart TYPE mara-mtart.
* p_lgort TYPE mara-lgort.
SELECTION-SCREEN PUSHBUTTON /47(8) text-002 USER-COMMAND button1.
SELECTION-SCREEN END OF BLOCK main1.
AT SELECTION-SCREEN.
CASE sy-ucomm.
WHEN 'BUTTON1'.
PERFORM fill_data.
PERFORM get_data.
ENDCASE.
*&---------------------------------------------------------------------*
*& Form fill_data
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
FORM fill_data.
lwa_bapihead-material = p_matnr.
lwa_bapihead-matl_type = p_mtart.
lwa_bapihead-basic_view = 'X'.
lwa_mara-base_uom = 'KGS'.
lwa_mara-matl_group = '00104'.
lwa_marax-matl_group = 'X'.
lwa_marax-base_uom = 'X'.
lit_makt-langu = '001'.
lit_makt-langu_iso = 'EN'.
lit_makt-matl_desc = ' This is created by using BAPI yeah !! '.
APPEND lit_makt.
lit_mltx-applobject = 'MATERIAL'.
lit_mltx-text_name = lwa_bapihead-material.
lit_mltx-text_id = 'GRUN'.
lit_mltx-langu ='001'.
lit_mltx-langu_iso = 'EN'.
lit_mltx-text_line =' This is 1st line'.
APPEND lit_mltx.
lit_mltx-applobject = 'MATERIAL'.
lit_mltx-text_name = lwa_bapihead-material.
lit_mltx-text_id = 'GRUN'.
lit_mltx-langu ='001'.
lit_mltx-langu_iso = 'EN'.
lit_mltx-text_line =' This is 2st line'.
APPEND lit_mltx.
ENDFORM. "fill_data
*&---------------------------------------------------------------------*
*& Form get_data
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
FORM get_data .
CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
EXPORTING
headdata = lwa_bapihead
clientdata = lwa_mara
clientdatax = lwa_marax
* PLANTDATA =
* PLANTDATAX =
* FORECASTPARAMETERS =
* FORECASTPARAMETERSX =
* PLANNINGDATA =
* PLANNINGDATAX =
* STORAGELOCATIONDATA =
* STORAGELOCATIONDATAX =
* VALUATIONDATA =
* VALUATIONDATAX =
* WAREHOUSENUMBERDATA =
* WAREHOUSENUMBERDATAX =
* SALESDATA =
* SALESDATAX =
* STORAGETYPEDATA =
* STORAGETYPEDATAX =
* FLAG_ONLINE = ' '
* FLAG_CAD_CALL = ' '
* NO_DEQUEUE = ' '
* NO_ROLLBACK_WORK = ' '
IMPORTING
return = lit_return
TABLES
materialdescription = lit_makt
materiallongtext = lit_mltx
.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
* EXPORTING
* WAIT =
* IMPORTING
* RETURN =
.
WRITE:/ lit_return-type.
MESSAGE 'Kayıt başarlı' TYPE 'S'.
ENDFORM. "modify_0105
How to fetch values automatically into table control when we give value into 1 column of that table control.
Explanation:
In a table control displaying material details, if we enter a material no. it should get values in rest colums for that material no.Here material No and the other columns are present in same database table. Possible solution can be related to F4 or ALV POPUP or any other. Please suggest.
Hello,
I work on the workflow WS00400012 (Release for payment)
I use MF SWE_WI_GET_FROM_REQUESTER at BTE 2220 (called by Rule 00400125) at various steps of my workflow to retrieve the ID WORKITEM to determine the agents involved in my validation tasks according to the rules of the customer. Unfortunately this only returns the ID at the first step for the next steps it returns an empty value ...
After debugging the ID is removed from the stack at the POP static method (Removes the top requester from stack!!!) Of the class CL_SWF_EVT_REQUESTER
I did not understand
thank you
Hi Peter,
Did you find any solution on this, I recently came across same scenario and were thinking of similar solution, Did you came across any problem with the solution.
Thanks
Amol
Hi Srikanth,
I am new to this area. Please let me know what application and application configuration I need to check.
It would be very helpful, if you provide detailed steps to me. Thank you.
Raghu
Hi,
Please give me some idea to solve the below scenario for positive time management:
1)Generate quota of 17 hours for a year as employee can come late upto 17 hours in a year.
2)Employee can be late upto 17 hours during one complete year. No deduction will be made.Quota of 17 hours will be reduced with each late coming entry.
3)If employee is late more than 17 hours salary deduction will be made as per late duration.
for example if emplyoees regular workschedule is from 8-5 and he came at 815 in the morning then these late 15 mins will be deducted from 17 hrs quota and this quota will be updated to 16.45 mins. when 17 hrs completely used then decution of salary will be made.
its urgent. Pls reply ASAP
Thanks
I am experiencing this strange phenomenon from last few months.
Some unknown shadow was asking me questions on my projects, on many scenarios on those which I work on daily basis. I have never seen the person behind the shadow still I remember the weird voice, but the funniest part of this situation is I answer each question that was posed with a louder pitch and getting into to new ideas where I can explore the best outcomes of those thoughts, sometimes those best outcomes remain in my memory I implement them on the very next day but the other times they have been to my subconscious memory.
A Wiki Definition for Dreams:
Dreams are successions of images, ideas, emotions, and sensations
that occur subconsciously in the mind during certain stages of sleep.
Not sure may be the habit of going to bed by 1 AM daily or may be the time I spend on SAP did this, Still I never mind whatever the reasons are I enjoy them as a part of my Day & Daily life ... Image may be NSFW.
Clik here to view.
Wanted to know from you, whether you have such experience ? Have you ever met your Shadow ? Image may be NSFW.
Clik here to view.
Srikanth Naidu
Hi Hareesh and Amit ,
Thanks.
It works .My question to you now is that If you see the sample the record T is the end of record indicator (sort of total ) which will be having no value against batch number and amount .
Now with the above mentioned mapping I had to give values against batch number and amount in the last record also which should be not there Also last record T should not be counted in total number of records (for sample record Total number of records should be 10 but this is coming 11).If I am not giving any value it will throw an error.
Please let me know what should be done .
Hi Mihar,
Thank you for your suggestion. We have already assigned FM to P with A101 12. With this requirement, we were able to restrict other employees but appraisal document is not available to user if only ESS role is assigned. Seems FM is restricting user to view the PDD Appraisal document.
Yes we have a custom role with all required objects activated.
Thank you...
Jai