Re: how to convert xml to internal table?
hi Ramesh, is not available in ECC 6.00 ISH_DALE_IXML_TO_XSTRING RegardsKarthikeyan
View ArticleRe: COR2 - CAUFVD
Hi, Check whether the below SAP note applicable for your system. SAP Note:- 0001494323 - Change order quantity: Validity of production version
View ArticleRe: How to do Text Enhancement as Std.?
HI, you can also use Goto -> Change Editor use Paragraph Format AS standard paragraph for the normal text. Regards,Mordhwaj
View ArticleRe: Delete same fields in query (not the duplicate lines)
Hi if the previous code doesnt work, use on change instead of at new. sort it_final by vbeln posnr.loop at it_final into wa_final. wa_final-orderqty = 0.wa_final-netvalue = 0.on change of...
View ArticleRe: Select Query Taking Long time
Try to run the query by removing INTO CORRESPONDING FIELDS OF TABLE it_sysno instead use 'INTO TABLE it_sysno'
View ArticleRe: How to avoid duplicate entry while printing the smartform
Hi, Capture the value in a variable and check whether the previous value and the current value is same before entering into the text. Put a condition there that if both are different then enter into...
View ArticleWORKFLOW:How to send emails to varible names
Hi All, I have an issue that I wan to send emails from workflow, but sender(SAP USERNAME) is as a variable in the workflow container.So how to send emails to that variable name(That is SAP username)...
View ArticleRe: How to avoid duplicate entry while printing the smartform
Hi Prabu, In your output internal table define two more fields of type C.Before line item display node, create a code node and write logic to indentify the duplicate entries and set the flag on every...
View ArticleRe: How to do Text Enhancement as Std.?
Hi, Just open the data element and follow the below path.. GOTO->DOCUMENTATION->CHANGE.It will take you to the editor. create the paragraph format which is not bold and with black color and pass...
View ArticleRe: How to avoid duplicate entry while printing the smartform
Hi , Try to sort out you internal table based on primary key or secondary key or based on a field which you want and then use DELETE ADJACENT for same internal table.
View ArticleRe: Delete same fields in query (not the duplicate lines)
It is a BAD idea to use an FAE instead of a Join. In most cases, FAE is worse performing than Join. That FAE is better is a myth that has been debunked many times on this site. Please do not promote...
View ArticleRe: FTP - How to send a UTF-8 .TXT File
Hi yakub, Thanks for your time to reply to my question. However I am familiar with writing a file to Appln Server in Unicode/Non-unicode. I just wanted to know if we need to write a File using FTP in...
View ArticleRe: Sub routines passing the internal tables
Hi Karthik, i declared the new one but the same error persists
View ArticleRe: select Query taking more than 10 mins to execute
Hi Uma, Try to avoid use of ' FOR ALL ENTRIES '. For all entries will reduce your performance. In For all entries for every single entry it will search the entire table. For imagine tab1 and tab2....
View ArticleRe: select Query taking more than 10 mins to execute
Hi Klaus, Thanks for suggestion,Even after this changes its taking same time.Before this select statement i have one more select as follows : SELECT vbrk~vbeln vbrk~knumv...
View ArticleRe: Delete same fields in query (not the duplicate lines)
Hi Swama, What I want to say is the Define data. Such as : DATA : Beginof itab occurs0, vbeln type vbap-vbeln, posnr type vbap-posnr, kwmeng type...
View ArticleRe: PO Version Management - how track changes to version relevant fields?
The revision changes are available in EREV table. What is available in CDHDR and CDPOS under REVISION class is changes done to EREV fields. I am looking for a way to track the changes in any of the...
View ArticleRe: How can I put the spreadsheet icon at an ALV
If you are talking about placing spread sheet icon at a cell level in the hALV grid, when you are preparing the data tables for GRID, fill that column value with required ICON*. If you are talking...
View ArticleRe: Not able to update sold-to-party in invoice using...
s/m Gafoor, This is technically WRONG. The partner data is always copied from the Sales order to the Billing document. you should not be doing this.. still if you are you will need to update entire...
View Article