Hi,
I think a Recalculation in the conditions tab of the document after the condition is deleted should solve the issue. The button is in the present below the conditions window.
Cheers,
Arindam
Hi,
I think a Recalculation in the conditions tab of the document after the condition is deleted should solve the issue. The button is in the present below the conditions window.
Cheers,
Arindam
Hi,
I think it os certainly possible to code a Z-Report as per client requirement. Better is to get the basic flowlogic such as
1.Input Parameters
2.Processing Logic
3.Output format
You should be able to design your own Z-report
Cheers,
Arindam
Hello,
You can use the Report: RP_MSS_CONVERT_MDT_TO_LPD_CUST to repopulate the entries for the scenario type, role and the instance you're using for reporting in the tcode: lpd_cust.
Well when the report is run it will not overwrite the existing entries, instead it creates entries under new node.
Hence, make sure to delete the old node. This adjustment should resolve this issue.
Regards,
David
Hi Pooja,
Not required. Please test with my code above, that should get you your expected result.
Please test and let me know if you find any issue.
Regards,
Deepak.
Hi
Use Sy-langu. That will be the logon language of the user.
Cheers,
Arindam
As I said, sy-langu is not guaranteed to have logon language. consider the code below:
REPORT ycust01.
DATA language TYPE sylangu VALUE 'S'.
WRITE: / sy-langu.
sy-langu = language.
WRITE: / sy-langu.
sy-langu = cl_abap_syst=>get_language( ).
WRITE: / sy-langu.
The output is:
EN
ES
EN
Regards,
Custodio
Hi,
You can try the following things:
Option 1:
Design an user exit on ME22N to disable edit when its "version complete" a BADI will be there.
There are many ways to find the BADI. One among them is as follows.
1. Open transaction. Go to menubar -> system -> status. Check the program name ( SAPLMEGUI in this case).
2. Open the program in SE38. Go to menu -> goto -> attributes. Find the package name ( ME in this case).
3. Open SE80 and package ME in se80.
4. IN the nevigation tree, you will find the enhancements. There you can find several BADI's that can be used in ME22n.
Option 2:
Design an user exit on ME22N to stop generation of message when its "version complete"
Option 3:
Design an user exit on ME22N to Process the message generated when its "version complete"
SY-TCODE might be a field that you can use to check the current T-Code to restrict its processing
Cheers,
Arindam
Hi,
Don't see the user specified any edit to the value. It was more about getting the default one. Even the method that you state can fetch wrong value if you know how it is edited.
Check the code below:
DATA language TYPE sylangu VALUE 'S'.
WRITE: / sy-langu.
sy-langu = language.
WRITE: / sy-langu.
SET LOCALE LANGUAGE 'S'.
sy-langu = cl_abap_syst=>get_language( ).
WRITE: / sy-langu.
The output is:
Cheers,
Arindam
thanks for that. It seems we can't trust anyone these days!
Hi,
Yes you have to include the TYPE-POOL ABAP for that to work
Cheers,
Arindam
Hi Sudhakar,
Would you please clarify you question in a bit detail?
I could not get your exact requirement. Do you need to convert a smartform into a PDF from spool?
Regards,
Arnab
Unfortunately this note is not available.
Thaks for your help.
Hi Narendran,
Thanks for your reply. Its correct answer. With your suggestion I solved my problem. Thanks once again.
Regards,
Arindam Samanta.
Hi,
Yes so just contunue will work thats a kind of false message.
cheers,
Arindam
Hi,
The error indicates an error when it fails to type cast or put the value in. Say either conversion from one type to another like float to packed decimals fails or a variable in small to hold the value like a count field. Go to ST22 and download and attach the dump file as txt. It will help me to find the cause quickly.
Cheers,
Arindam
Hi,
I am resolving a conflict in for a screen (Function Group COMK > Screen 3020) and I was prompted to move the elements. So I go through the prompts. And then to adjust the code in the flow logic it took me to the split screen editor just like when you are resolving a conflict in a report program in semi-automatic adjustment mode. The left pane is the original program. The right pane contains our version with the mode. The left pane contained some weird characters and an error message is showing up saying "Error receiving an R/3 table through the data provider". At this point it doesn't allow me to do anything and it kicks me out (shortdump and ogs out the session). Please see attached screenshot of the error.
Has anyone encountered this issue with SPAU? Any info you may provide will be greatly appreciated. Thanks.
Giscard
Hi,
We have inserted a custom field within contract ( me31k). We were successful in getting the field on the screen and also transferring the content to the table. The custom field content shows up correctly when the contract is open in the display mode, but it is still editable. This is the code we have entered in the screen exit.
if sy-tcode = 'ME33K'.
if sy-dynnr = '201'.
loop at screen.
case screen-name.
when ekko-zfi_info.
screen-input = '0'.
modify screen.
endcase.
endloop.
endif.
endif.
I have seen discussions in the forum that suggests the above method, but unfortunately the field is still editable. Could someone let us know what the problem could be?
Thanks,
Ananth
Hi,
If your inquiry has been answered. You may now close the discussion.
How to close a discussion and why.
-Jake
well couldnt get a proper answer...
may be it is due to the fact that it is a cluster table , so the records might be stored in compressed form so the time taken might be longer in case of huge amount of records... ( i think it would also depend on the cache and sql disc read in the environment)...
Hi Dave,
1 ) Use CL_BCS instead of SO_NEW_DOCUMENT_ATT_SEND_API1 here example code :http://scn.sap.com/thread/3345900
2 ) If you want to use SO_NEW_DOCUMENT_ATT_SEND_API1, send PDF XSTRING data to CONTENTS_HEX and comment CONTENTS_BIN
I hope this will help