How to fetch the Business area field value from MIRo into report
Hi,
I want to create a report for MIRO with payment details.
How to fetch the business area field value in to report.
What is the table name. I verified it is storing in structure. Which is the right table for fetching that value with reference to MIRO.
After that, how to find the accounting document for payment and check details.
What are the table names and field names. What we can get from PAYR table.
With regards
Lakki
Dear,
For Bussiness area
RKPF-GSBER
Similar Messages
-
How to make the Business Area field from Change Mod to Display Mode in AS02
Hi Gurus,
I created a Customized T-code YAS02 for making the Business Area in Display mode with the help of SHD0.
But my client wants to do the same in standard T-code of AS02 and they don't like to use the customized T-code.
Kindly advise to make the Business Area from Change Mode to Display Mode in AS02.
Thanks in advance...
regs / Devi AparnaHi Devi,
check the following customization
asset accounting -> Integration with the General Ledger> Additional Account Assignment Objects-> Activate Account Assignment Objects---
Regards,
Ranjith -
How can I make Business area field optional in MIRO
Hi,
whyle posting invoice the system is asking business area as required input.
I don't want to put business area.
Is there any way to avoid this ?
I don't want to change, spro settings.
How can I avoid business area in MIRO?
waiting for your input..
Thank you,
Marella.check the GL accounts field status variant attached to the Invoice posting.
also check in PO whether u have the BA field filled up. in case u r using BA accounting then that value shld be there..... as u said u dont want to put BA as field in miro , that means u r not using BA thing... so u can always maintain all the FSV of GL for BA as optional/supressed... -
Enabling of the Business Area field in Asset Master Record
Hello SAP Gurus,
Can you explain how I can enable Business Area field in Asset Master Record becz it needs be change.How I can acheive this becz it is coming in disabled mode.Once u ticked the check box save it.Now u can change these field in main asset master record and if u have ticked Su no also then in sub asset master record also.Make sure filed status is optional.
Now u go to AS02 if u want to change the filed for main asset or sub asset
Please assign points -
How to get the object class field value in CDHDR table for vendor
hi
how to get the object class field value in CDHDR table for vendorTry KRED/KRED_N as object class in CDHDR for Vendor.
-
Hi Experts,
Pls. let me know that,
How to fetch the SAP Standard Prog. built internal table into my_z_prog.?
For more explannation, pls. see my other thread with name of yestrday,
SUBMIT RFGLBALANCE WITH selection criteria, then How to get resulted itab?
thanqHi
Suppose RFGLBALANCE is your standard program and you have an internal table named I_RFGLBALANCE.
And lets say your Z program name is Z_SRINIVAS.
First find out the type of the internal table you want in your Z-program in the standard program. And declare an internal table of similar type in your Z-program.
I hope you can do this much.
Later wherever you are putting the below mentioned code.
SUBMIT RFGLBALANCE WITH selection criteria
Write the code which i have written.Obviously modify it to suit your requirement.
Please show what is not working fine so that even anyone else can help you with the problem you are facing.
Regards,
Mayank -
How to get POF object's field value from query result
hi,all:
I want to get field value from the query result, my code is below
Set setResults = cache.entrySet(createFilter("homeAddress.state = 'MA'"));
for (Iterator iter = setResults.iterator(); iter.hasNext(); )
Contact c=(Contact)iter.next();
System.out.println ("firstame####=" + c.getFirstName());
* but I get error*
Exception in thread "main" java.lang.ClassCastException: com.tangosol.util.ConverterCollec
tions$ConverterEntrySet$ConverterEntry cannot be cast to com.oracle.handson.Contact
at com.oracle.handson.QueryExample.printResults(QueryExample.java:159)
at com.oracle.handson.QueryExample.query(QueryExample.java:86)
at com.oracle.handson.QueryExample.main(QueryExample.java:43)
who can tell me how to get POF object's field value from query resultHi,
If you look at the Java Doc for the entrySet method here http://download.oracle.com/docs/cd/E15357_01/coh.360/e15725/com/tangosol/util/QueryMap.html#entrySet_com_tangosol_util_Filter_ you will see that it returns a Set of Map.Entry instances so you need to do this...
Set setResults = cache.entrySet(createFilter("homeAddress.state = 'MA'"));
for (Iterator iter = setResults.iterator(); iter.hasNext(); )
Map.Entry entry = iter.next();
Contact c=(Contact)entry.getValue();
System.out.println ("firstame####=" + c.getFirstName());
}JK -
Passing field value from appoinment into task
Hi,
I need to pass the field values from appointment into the task. I was able to pass values from one record type to another but in this case as both appointment and task belong to the same record type namely activity and they are having the same foreign key namely ActivityId.
So any one please tell me , is it possible to pass values from appointment in to the task or not ?
If so how?
Thanks,
Kirubahar.
Edited by: Kiruba on Mar 4, 2011 6:45 AMWrite a workflow and select the field you want to copy the value into in the Field Name and the value you want to copy in value field, you don't need to use joinfieldValue at all.
cheers
Alex -
Making the Business Area field as editable
Hi
We have business area field as compulsory field for document splitting. The same is picking up on the Business Area assignment in SD. However, the field for the same is seen as greyed out field in Sales Order at line item level. we would like to make the same field as editable. How can the same be done?
Regards
Rahul SharmaHi
The fields in a sales order can be made optional / mandatory by following this menu path - IMG - S&D-> Basic > Functions-> Log of incomplete Procedures => select the fields > from the tables and the system will check for them (OVA2/VUA2)
To make a filed entry enabled or grey (non-entry allowed):
User exits in the program MV45AFZZ-USEREXIT_FIELD_MODIFICATION
This user exit can be used to modify the attributes of the screen fields. To do this, the screen fields are allocated to so-called modification groups 1 - 4 and can be edited together during a modification in ABAP.
If a field has no field name, it cannot be allocated to a group. The usage of the field groups (modification group 1-4) is as follows:
Modification group 1: Automatic modification with transaction MFAW
Modification group 2: It contains LOO for step loop fields
Modification group 3: For modifications which depend on check tables or on other fixed information
Modification group 4: is not used
The FORM routine is called up for every field of a screen. If you require changes to be made, you must make them in this user exit. This FORM routine is called up by the module FELDAUSWAHL.
Actually suppressing fielding sales orders userwise is quite easy. We are doing it in our company. For this we use userexit FORM USEREXIT_FIELD_MODIFICATION in MV45AFZZ.
Below is the sample code
IF SCREEN-NAME = VBKD-ABSSC.
AUTHORITY-CHECK OBJECT ZMV45AFZZ ID SCRFNAME FIELD SCREEN-NAME.
IF sy-subrc = 0.
SCREEN-INPUT = 1.
else.
SCREEN-INPUT = 0.
ENDIF.
endif.
You place the authority check object in authorization profile in the role of the users, who should have access to the field (in this case it is VBKD-ABSSC), and there assign the corresponding fields that are to be accessed via this userexit. -
Business area field required in miro screen
Hi
My client wants to make business area field to be required field under details tab for miro screen-
client is using ecc6-how to make business area required
thanks in advance
regards
josephTry OLMRLIST trxn code and Input the Following
Transaction MIRO
Transaction Variant Zmiro
Program SAPLMR1M
Screen 6310
I havenot tried this. -
Business Area Field Mandatory in MIRO transaction
hi,
how do we have to make business area field as mandatory in MIRO - Details Tab.?
thx in advance.
Tks
Manihi
Goto OB41
Select posting key 31
Goto details
click on field status
Select additional account assignments
Make Business area mandetory and Save.
regards
kunal -
How to fetch the first part of string from a whole lenghty string
Hi,
I have a data like - ex1:
Auto Update : 10/04/2014 08:04 NEW data: xxxx OLD data: yyyy Ack - etr03 : 10/04/2014 08:13
Auto Update : 10/04/2014 15:24 NEW data1 :xxx OLD data1: yyyy Auto Update : 10/04/2014 09:36 NEW data1: xxx1 OLD data1: yyy1 Auto Update : 08/04/2014 12:28 NEW data1: xxx2 OLD data1: yyy2 Ack - jmi08 : 10/04/2014 09:53 Ack -
WWI13 : 10/04/2014 15:32
I want to compare only NEW data: xxxx OLD data: yyyy or NEW data1 :xxx OLD data1: yyyy Auto Update : 10/04/2014 09:36 NEW data1: xxx1 OLD data1: yyy1 Auto Update : 08/04/2014 12:28 NEW data1: xxx2 OLD data1: yyy2with the same ste
of value from another database but since I used substring I am getting even Ack - etr03 : 10/04/2014 08:13 value whose length changes for above 2 examples.
USed substring to get NEW data1 :xxx OLD data1: yyyy Auto Update : 10/04/2014 09:36 NEW data1: xxx1 OLD data1: yyy1 Auto Update : 08/04/2014 12:28 NEW data1: xxx2 OLD data1: yyy2
or
NEW data: xxxx OLD data: yyyy
but the ack part cannot be removed due to variable lenghts for each data hence could not compare this column between 2 databases. Any help would be highly appreciated.
Thanks,
PreethaHI ,
THE INPUT IS
EX 1:Auto Update : 10/04/2014 15:24 NEW data1 :xxx OLD data1: yyyy Auto Update : 10/04/2014 09:36 NEW data1: xxx1 OLD data1: yyy1 Auto Update : 08/04/2014 12:28 NEW data1: xxx2 OLD data1: yyy2 Ack - jmi08 : 10/04/2014 09:53
Ack - WWI13 : 10/04/2014 15:32
EX 2: Auto Update : 10/04/2014 08:04 NEW data: xxxx OLD data: yyyy Ack - etr03 : 10/04/2014 08:13
AND THE EXPECTED RESULT IS :
EX1:NEW data1 :xxx OLD data1: yyyy Auto Update : 10/04/2014 09:36 NEW data1: xxx1 OLD data1: yyy1 Auto Update : 08/04/2014 12:28 NEW data1: xxx2 OLD data1: yyy2
EX2 : NEW data: xxxx OLD data: yyyy
SINCE THE FILED LENGTH CHANGES I WANT TO WRITE A GENRIC QUERY WHICH FETCHES THE ABOVE DATA.I DO NOT WANT TO CREATE ANY TABLE
Hi Preetha7,
This make no sense. We cannot guess you database structure.
Please post DDL (Create table script)
and DML (your current query)
and expected output.
For more info, please have a look at this thread:
POSTING TIPS - Code, Images, Hyperlinks, Details
Thanks!
sqldevelop.wordpress.com -
How to grap the disable text field values
Dear All,
i have a lov,
in this lov,i create 3 mappings for display those return values in text iput fieldss
i want to grab those text fields valuess
and assign those those values to another vo(table)
those grapping fields are not changed thats y i kept in disable mode
that time whenever any action is occure then disable field values are gone
that time i pass only null to vo.
but i want to grap the value when i kept those fields are in disalbe alsooo
how can i grap those valuess.you have to create item of type form value & create lOV mapping so that the value will not get lost
Thanks
--Anil -
How to avoid the truncation of field values in select-options
Hi all,
I have a requirement where i have used select-options to select multiple filenames. I have taken the filename of type rlgrap-filename(128 char) But the problem is in select-options if the values of the filename which is selected has length ( i.e the length of the selected field value) exceeds 45 character , then he remaining charactes are truncated. Hence i am not able to get the
correct field value in the internal table of the select-options.
i came to know that if NO_DISPLAY addition is used then this truncation wont occur. But in my case user has to select the files and hence this addition cannot be used.
please let me know if anyone has a solution for this or if there is any other way to select multiple entries in selection screen.
Regards
Manipal parkalarlgrap-filename is having the length of only 128 characters.If the file path exceeds 128 characters then the rest will get truncated.If you file name exceeds more than 128 characters and the pafth is fixed,then harcode the entire path in the program and later on concatenate the path and the file name into a string which can be used for further processing.
paramters:p_file like rlgrap-filename.
here just give the filename as say 1234.XLS.(Assuming that you are not browsing for the file using F4_filename).
In the program harcode the path say C:\Documents and setting\sapworkdir\user\.
Now concaternate these two and pass it to string which can be used for further processing.
If the user intneds to browse the file and the path name exceeds 128 characters then follow the way to delcare the paramter in the selection screen as said above.If it is working for parameters then I think it should be working for select option also. -
How to split the business areas
hi experts,
i am having 500 to 600 business areas.
my requirement is i want to split the g/l account, company code and amount data correspondingly.
please help to solve the problem.Hi Kalyan,
Based on company code we will be extracting the data, but it is posible in all the cases. So you refer the following link.
http://sap.ittoolbox.com/groups/technical-functional/sap-acct/business-area-derivation-1867884
Award points if useful.
Cheers,
Swamy Kunche.
Maybe you are looking for
-
Performance questions in Oracle Forms/Reports of Application Server 10g
Hello. I have a dual Xeon 2.6 computer with 3 GB of memory and 6 GB of cache, running RedHat EL 3 with Oracle AS 10g (9.0.4.0.0). Application Server is used to run some applications created with forms, and it generates several reports, but the forms
-
Can I make Apollo--or any other browser than Safari--my default browser?
I'd prefer to use Apollo since, as a Firefox stand in and the one I use on my iMac, I'm linked to it. Thanks.
-
Can't visit internet for third party applications
I have an unlocked Blackberry 8900, now I am using Chinese Mobile SIM card in China. Now I am confused that sometimes it can't visit internet (I am using edge data plan of China mobile) with other third party applications (I mean the application is n
-
I UPDATED MY MACBOOK PRO TO "LION" AND NOW HAVE LOST ACCESS TO MICROSOFT WORD!!! ALL OF MY FILES FOR WORK ARE IN THAT PROGRAM AND I DESPERATELY NEED ACCESS TO THEM. CAN ANYONE HELP?!!
-
Is the iphone panorama pic option available for the ipad, if so where can I find it?
A friend recently showed me her iphone 5 panoroma pic app that comes with the phone. We thought my almost new ipad would have it but it does not. Any ideas on how I can find and install that app on my ipad. Preferably to interface with my apple camer