Hi Arjun,
use the at new event on the date,,,,,,,copy the the closing balance and modify the next row opening balance by assigning the closing balance based on sy-tabix value.............
thanks and regards,
narayan
Hi Arjun,
use the at new event on the date,,,,,,,copy the the closing balance and modify the next row opening balance by assigning the closing balance based on sy-tabix value.............
thanks and regards,
narayan
Hi experts,
I want to write an ABAP code that needs to change the status of the serial number assigned to a pp order, how can I do that? Is there any BAPI or FM for this purpose?
Any help will be appreciated
ZEKKN is used for account assigment when there are multiple accounts.
http://scn.sap.com/thread/1366005
Hi guys,
I am getting components of a structure in a table of type abap_component_tab.
I am taking each components of the structure in a workarea with the same type.
I only would like to work with data elements that have an elementary type defined in a domain and not a predefined type.
How can i translate that in ABAP?
Thanks in advance.
Maria
I have created the <searchfield> and assigned it a type and a value. There should be a field in the workarea <wa> with this same type and value.
<searchfield> have a field name. I have created it with CREATE DATA... TYPE... and then assigned a value.
May be I should go through all components of
<wa> and compare their type and value with the type and value of
<searchfield>.
I dont have any other clue.
I'm beginning to suspect that perhaps you're going about things the wrong way. Rather than tell us the technical stuff, what exactly are you trying to achieve? What are the inputs, what are the outputs? Perhaps then we can suggest a good, efficient, simple solution.
Often, if things start to get bogged down, you have to approach the problem from a different place.
regards
matt
Hi,
I think that is displayed only when the text is getting displayed as a part of TABLE that you have in smartforms. Can you post the screen for more clarity on the question
Cheers,
Arindam
Hi,
I think that is displayed only when the text is getting displayed as a part of TABLE that you have in smartforms. Can you post the screen for more clarity on the question
Cheers,
Arindam
Hi,
I think the password that SAP creates for Excel through that FM is for the complete file and is not based on edit of excel. You might have to achieve this by creating a MACRO within the same excel. Check the OLE usage in the below code sample, Might help you.
Cheers,
Arindam
Dear Experts,
I need to read the Recursive node attribute value of Context. I have implemented Table Tree with Recursive node. When I am trying to read the attribute value, I simply get the parent attribute value each time. Please let me know, how can we read the exact attribute value each time with ONCLICK event of table.
My Context node is:
Hi
I think you need to call this T-Code from your own t-code and process the spools after they are generated.
Cheers,
Arindam
Which method of this BADI did you try? In the method update you have pretty much all the order data. Also, how exactly do you want to check this?
Cheers,
Custodio
Hello all,
I have a requirement to control the number of tabs that come when I try to search for an employee in PD tcodes (ex.. LSO_PSV1). Business wants only the Organizational Assignment screen to be shown. It is the search help - HRBAS00OBJID which is attached to the same. Please help me how I can control the number of tabs either by Config or by coding.
Regards.
RK
Hi Experts,
I have creates some customizing entries, and have translated them to German language by navigating to the menu Goto->Translation-- Entered translated text and saved the entries in customizing request.
now the problem is that while transporting the TR i am getting Error: " Text is only transported in the Original Language " . and the TR is not getting transported.
Could you tell me where i am doing wrong or i have to follow different steps if any.
Thanks and Regards,
Abhishek
I would still suggest you to stick to the client-server model and let the validations happen in the source system when you call the RFC from the target system. So, in addition to the extraction (by joining several tables, as you mentioned) of data, the source system can carry out validations and return error messages, if any, to the caller (target system).
Hi,
I have searched for answer not only in SCN but also in google in vain. Is there any away to find workstation ID or IP of a transport request created.
let me explain the scenario here..
Our team size is 100+, someone did some changes to an object (Data Source) using my ID and transport sub-task is created, now i wanted to know the workstation ID or IP from where the change is done.
Thanks in advance..
Thanks
Janga Reddy
Hi,
I dont think there is a standard way to track the terminal ID of a transport Request. But are you looking at standard way. In that case you might have to find a USER EXIT and place suitable code. To look for User exit check the link below.
http://help.sap.com/saphelp_nw04/helpdata/en/81/8c5738ee806b0ee10000009b38f889/content.htm
The TERMINAL ID can be fetched using the code below. Then store the terminal ID against the TR no. in a custom table.
* determine own Terminal-Id
call 'ThUsrInfo' id 'OPCODE' field opcode_usr_attr
id 'TERMINAL' field terminal.
list of possible values for OPCODE is in include TSKHINCL.
If it is your own code you can simply call the code directly after the transport request is created. Hope it helps.
Cheers,
Arindam
Hi,
Please execute the program RSTXTRAN to attach your texts in the desired languages(EN and others) and transport standard texts.
Also You can use the SE63 Transport options to transport. Check the below link.
<link to external site removed>
Cheers,
Arindam
Message was edited by: Suhas Saha
Hi,
I have made a program with Tab strip control , on the main screen I have some field at header level then below that I have made tabstrip using wizard, In the tab strip I have call a subscreen.
Now the issue is When I enter the data on the screen above the tab strip and in the Tab strip sub screen, after entring the data in the tab strip if I directly press Save button the data is not getting saved which I have entred in the tab strip, but before pressing the save button first If I am pressing the enter key in that case data saved properly.
Is there any option for this, I dont want is dependent that user should always press the enter key before save button.
regards,
zafar
You can easily get the terminal ID(or computer name) using CL_GUI_FRONTEND_SERVICES=>GET_COMPUTER_NAME( ).
* determine own Terminal-Id
call 'ThUsrInfo' id 'OPCODE' field opcode_usr_attr
id 'TERMINAL' field terminal.
Kernel calls should be used only when there are no alternatives available! Please take a moment to think before you post your solution.
BR,
Suhas