Re: Problem in smartforms while displying
Hi Krishna, You can solve this issue using smartstyles. Create a smartstyle and set the margin according to your requirement. Regards,Anoop
View ArticleRe: select a record from step loop to delete that record
Hi,At PBO you can set the cursor on a specific field of a specific row of a table control.SET CURSOR FIELD f LINE lin [OFFSET off].Using the optional addition OFFSET, you can enter the offset of the...
View ArticleHow to check PDF Settings?
Dear Experts, How can I compare the Settings of PDF in Dev / QA systems? Is there any tcode? Is this related to Basis? Is it related to Printer settings? How can I check this? The issue is:The PDF file...
View ArticleSmartform variable height of window
I am currently designing a smartform for process order. I have made a template for header data, plus a table for summary of the components in that process order. Below the summary, i want to display...
View ArticleRe: Assign type Conflict
Hi, A type conflict would happen when structures of <l_field> and <l_itab> do not match in the run time. For ASSIGN <l_field> TO <l_table> this statement to execute...
View ArticleRe: Exit the MIRO procedure to be done after saving and inserting tables
Hi Fabiana, Since you need an enhancement after save of MIRO in the database table I would advise you to follow the below steps in order to find a BADI- 1. Before saving MIRO start debugging (Put /h in...
View ArticleRe: Best way to process line items in an internal table?
Thank you for the replies everyone and sorry if I didn't make my requirement clear.Basically I have an internal table (itab1) that has lots of documents and document line items e.g.EBELN 1 EBELP...
View ArticleRe: Best way to process line items in an internal table?
Hi robert, thanks for explaining the solution clearly Hope the code below will work loop at int_table1 into wa_table1. at new ebeln.Move wa_table1 into wa_table2.append wa_table2 to int_table2.end at....
View ArticleRe: Best way to process line items in an internal table?
Robert two things first is you dont need to do so many loops you can manage with at new & at end of. Secondly why dont use BAPI for the same rather than BDC..any particular reason? ?
View ArticleRe: Best way to process line items in an internal table?
Robert two things first is you dont need to do so many loops you can manage with at new & at end of. Secondly why dont use BAPI for the same rather than BDC..any particular reason? ?
View ArticleRe: What is cross client concept
Hi, For maintaing table first make sure that in SE11->Table display-> Delivery and Maintenance tab -> Data Browser/Table View Maint. give as Display/Maintenance Allowed After that go to...
View ArticleRe: Best way to process line items in an internal table?
Hi Robert, Please find the sample code which may be helpful for you. LOOP AT it_sprg1 INTO wa_sprg1. wa_sprg = wa_sprg1. AT NEW sponsored_prog. "Fill header data v_var =...
View ArticleRe: FM or Classe for Download to Local File
Then why did you place your question in ABAP Development?
View ArticleRe: Error report in SAP
As Franz said, you can't get the messages, that were displayed to the user globally - as every application in SAP uses it's own style. SLG1 is one place to look at, ST22 is another one. But messages,...
View ArticleRe: How to create registration table hrp100, hrp1028, hrp1208 with function?
Use FM RH_INSERT_INFTY for this purpose.
View ArticleRe: not all of intenal table rows inserted to ztable
change the codingloop at it_zadrfinal assigning <ls_zadrfinal>. insert zadr from <ls_zadrfinal>. if ( sy-subrc <> 0 ).* here place a breakpoint, write, message, whatever...
View ArticleRe: Customer Tab in MIGO overlapping standard excise tab .
Please, attach a screenshot of your problem
View ArticleRe: Database table not getting updated occassionally
User can do whatever he wants to do in MIRO and expecting the transaction to give back only the right parameters is quite not well overthinked. You can create e.g. SLG1 logging mechanism (or any other...
View Article