How to How to get FI field status settings for General data

Hello All,
Can you please tell me How can I achieve field status settings for General data.
I have some code to get field status settings for account assignment block but I need General data block data.
Can you please help me with the same.
I got the below code to get field status settings for account assignment block But I need General data block information.
FUNCTION z_fieldstatus_getdetail.
*"*"Lokale Schnittstelle:
*" IMPORTING
*" VALUE(I_BSCHL) TYPE BSCHL
*" VALUE(I_BUKRS) TYPE BUKRS
*" VALUE(I_SAKNR) TYPE SAKNR
*" TABLES
*" T_COBLF STRUCTURE COBLF
*" T_FIELDS STRUCTURE TCOBF OPTIONAL
*" EXCEPTIONS
*" ERROR_MESSAGE
* liefert Feldstatus in Liste t_coblf:
* Feldname (DDIC) nicht in der Liste -> Feld ausgeblendet
* Feldname (DDIC) in der Liste -> Feld eingabebereit
* required = 1:
* Mussfeld;
* required = 0: kein Mussfeld
* active = 0: Feld ausgblendet
* Als Hilfstabelle wird die gesamte Feldliste der Felder (t_fields)
* ausgegeben,
* deren Eingabebereitschaft im Customizing steht
  DATA: ls_faus1 LIKE tbsl-faus1.
  DATA: ls_faus2 LIKE tbsl-faus2.
* Feldstatus holen
  CALL FUNCTION 'FI_FIELD_SELECTION_DETERMINE'
    EXPORTING
      i_bschl     = i_bschl
      i_bukrs     = i_bukrs
      i_saknr     = i_saknr
    IMPORTING
      e_faus1     = ls_faus1
      e_faus2     = ls_faus2
    EXCEPTIONS
      customizing = 1
      OTHERS      = 2.
  IF sy-subrc <> 0.
    MESSAGE a613(/ssc/comon).
  ENDIF.
  DATA lv_char.
  DATA int_coblf LIKE coblf OCCURS 0 WITH HEADER LINE.
  DATA p_cobl LIKE cobl.
  DATA: dummy_ktosl LIKE bseg-ktosl.
  PERFORM kontierungsblock_ermitteln(sapff001)
  TABLES int_coblf
  USING lv_char(1)
  ls_faus1 ls_faus2 dummy_ktosl.
  t_coblf[] = int_coblf[].
  SELECT * FROM tcobf INTO TABLE t_fields.
ENDFUNCTION.
Thanks in Adv.
Kaustubh

Hi ,
Looking at the question the first thing that comes to my mind is what is the organization structure that you are following .
As you have mentioned that you have used segment insted of profit center for splitting , what is the scope of profit center in your implementation .
in implementations where locations are devided as profit centes it becomes very necessary to mandatorily split the documents based on profit center .
in your case as you have set it as segment i dont find it an issue of you keeping it as optional as it will not give you and error during your operations , as you have made profit center optional in splitting charcteristics .
hope this suffices .
Regards ,
Dewang

Similar Messages

  • Field Status Group For MIRO

    Dear Friends
    Pls say me where we can get the field status group for Miro header level where i got a problem to make the business area manditory.
    Regards
    Vinay Bhaskar

    Hi vinay
    for busienss place we can make the field mandatory thorugh validations it is not possible through FSG
    Plz reward the point if it is useflull
    Regards

  • How to use the selection profile and status profile for production order?

    Hi expert,
       I want to know how to use the selection profile and status profile for production order. what's the usage for these two selection profile and status profile ?
      Please help me.
      thanks in advance.
      george.shi

    Hi George,
    There are are two types of statuses.One is system status and second one is user status.These statuses will tell us current situation of an order.
    We can't change system statuses.But we can create our own statuses through status profile.With this profile we can control user statuses.
    In this status profile,
    1.We define the sequence in which user statuses can be activated,
    2.We define initial statuses
    3. Allow or prohibit certain business transactions.
    Selection profiles are used to select the objects (say production orders) with different status combinations.We assign status profiles to selection profiles in BS42 T-Code.
    Regards,
    Raja.
    Edited by: Rajarao on Oct 30, 2008 6:21 AM
    Edited by: Rajarao on Oct 30, 2008 6:22 AM

  • Field Status Group for Special G/L Indicators

    Could you define different field status group for special G/L indicators? My problem is I am using two different special G/L indicators but their recon accounts are assigned with the same field status group. I used the same posting keys as well.  But when it comes to general posting, they have different screen numbers.  One SAPMF05A 303 and the other one is SAPMF05A 304.  How did this happen?

    Hi Noel,
    As you have defined Field Status Group for 2 different SPL GL Indicators then it will create 2 different screens only as it wont consider the reconciliation account.
    Regards
    andrew

  • Get table partition name dynamically for given date range

    Dear All,
    Could you please tell me how to get the partition name dynamicaly for given date range ?
    Thank you.

    SQL> select table_name,
           partition_name,
           to_date (
              trim (
                 '''' from regexp_substr (
                              extractvalue (
                                 dbms_xmlgen.
                                 getxmltype (
                                    'select high_value from all_tab_partitions where table_name='''
                                    || table_name
                                    || ''' and table_owner = '''
                                    || table_owner
                                    || ''' and partition_name = '''
                                    || partition_name
                                    || ''''),
                                 '//text()'),
              'syyyy-mm-dd hh24:mi:ss')
              high_value_in_date_format
      from all_tab_partitions
    where table_name = 'SALES' and table_owner = 'SH'
    TABLE_NAME                     PARTITION_NAME                 HIGH_VALUE_IN_DATE_FORMAT
    SALES                          SALES_1995                     01-JAN-96               
    SALES                          SALES_1996                     01-JAN-97               
    SALES                          SALES_H1_1997                  01-JUL-97               
    SALES                          SALES_H2_1997                  01-JAN-98               
    SALES                          SALES_Q1_1998                  01-APR-98               
    SALES                          SALES_Q2_1998                  01-JUL-98               
    SALES                          SALES_Q3_1998                  01-OKT-98               
    SALES                          SALES_Q4_1998                  01-JAN-99               
    SALES                          SALES_Q1_1999                  01-APR-99               
    SALES                          SALES_Q2_1999                  01-JUL-99               
    SALES                          SALES_Q3_1999                  01-OKT-99               
    SALES                          SALES_Q4_1999                  01-JAN-00               
    SALES                          SALES_Q1_2000                  01-APR-00               
    SALES                          SALES_Q2_2000                  01-JUL-00               
    SALES                          SALES_Q3_2000                  01-OKT-00               
    SALES                          SALES_Q4_2000                  01-JAN-01               
    SALES                          SALES_Q1_2001                  01-APR-01               
    SALES                          SALES_Q2_2001                  01-JUL-01               
    SALES                          SALES_Q3_2001                  01-OKT-01               
    SALES                          SALES_Q4_2001                  01-JAN-02               
    SALES                          SALES_Q1_2002                  01-APR-02               
    SALES                          SALES_Q2_2002                  01-JUL-02               
    SALES                          SALES_Q3_2002                  01-OKT-02               
    SALES                          SALES_Q4_2002                  01-JAN-03               
    SALES                          SALES_Q1_2003                  01-APR-03               
    SALES                          SALES_Q2_2003                  01-JUL-03               
    SALES                          SALES_Q3_2003                  01-OKT-03               
    SALES                          SALES_Q4_2003                  01-JAN-04               
    28 rows selected.

  • "Table Name" in customizing SUS:"make field control settings for tables"?

    Hi Gurus,
    In the following customizing node, I can find the table name such as :
         ORDER.DET.EDIT
    +     ORDER.DET.VIEW+
    +     ORDER.HISTORY.DETAIL+
    +     ORDER.ITEM.EDITH+
    +     ORDER.ITEM.EDITL+
    +     ORDER.ITEM.EDITL.WO.OR+
    +     ORDER.ITEM.EDITM+
    +     ORDER.ITEM.EDITM.WO.OR+
    +     ORDER.ITEM.EDITS+
    +     ORDER.ITEM.EDITS.WO.OR+
    +     ORDER.ITEM.VIEWH+
    +     ORDER.ITEM.VIEWL+
    +     ORDER.ITEM.VIEWL.WO.OR+
    +     ORDER.ITEM.VIEWM+
    +     ORDER.ITEM.VIEWM.WO.OR+
    +     ORDER.ITEM.VIEWS+
    +     ORDER.ITEM.VIEWS.WO.OR+
    +     ORDER.LIST+
    +     ORDER.SDLN.EDIT+
    +     ORDER.SDLN.VIEW+
    It's difficult to know the difference for these so-called "table name"...
    "SAP implementaion --> supplier relationship management --> supplier self-service --> settings for user interface --> make field control settings for tables"+
    What's actual meaning for these table names? Where can I find related document and actual corresponding transparent tables for these so-called talbes?
    Thanks and best regards
    Jack

    Hi Neelima,
    Thanks a lot.
    Checked the SAP note, but I could not find corresponding infomation about that, kindly please advise again.
    Best regards
    jack

  • How to add a custom Project field in the "OData Projects Data.odc" connection file? Project server 2013

    Hi,
    I created a project Enterprise field named "Countries and Cities" which contains a lookup table with information such as "USA.Seattle". How can I add this field in the oData connection file?
    Thanks 

    Paul,
    How do you write the custom field name
    "Countries and Cities" which contains 2 spaces?
    I always get the error:
    "We couldn't get data from the Data Model, Here'is the error message we got:
    The content of the data feed is not valid for an Atom feed."
    Thanks

  • How do I get back to default settings for photoshop elements edit

    How do I get back to default settings of photoshop elements 9 for edit.   I tried to edit one picture and now all of my pictures are discolored.

    Quit the editor, then restart it while holding down ctrl+alt+shift (cmd+option+shift on a mac). Keep the keys down till you see a window asking if you want to delete the settings file. You do.

  • I downloaded a ringtone from the AP store. How do I get it into my settings for selection?

    I downloaded a ringtone fromAP store. How do I get it into my sounds for selection?

    Despite all the snarky and misleading replies you most certainly CAN quickly and easily get a refund for an accidental purchase, and Apple has provided a way to request refunds for exactly this reason.
    - Go to your Account information page in iTunes
    - Go to your purchase history
    - Click "Report a Problem" at the bottom
    - Then click "Report a Problem" next to the app you accidentally purchased.
    - This will bring you to a browser page with a pull down menu where you can select "Didn't Mean To Purchase This Item".
    For the full process with screenshots you can visit this page:
    http://www.imore.com/how-request-refund-itunes-or-app-store-purchase
    Since Apple explicitly offers the "Didn't Mean To Purchase This Item" in that menu they are obviously well aware of the fact that many such instances occur.
    Since they don't have a confirmation screen or pop up a single inadvertent click could easily lead to a costly unintended purchase, and if they didn't offer just as easy a way to get a refund they'd be mobbed with suits.

  • How to find all Billing Doc fields(SAP / customer) for IDOC ?

    Hi all,
    I need to send customer billing information with all billing document fields by idoc,
    the question is, we have a lot customer defined fields in billing doc, so that i  cannot just use standard iDOC types,
    can anybody tell me a easy way to find all billing doc related fields and put it in iDOC type?
    Thanks & Best Regards,

    Hi,
    try the table ROOSOURCE and search the data source with string in astrick attr  for master data and for text with text
    This will give you the list of all the master data source in the system and it contains a column which tells about the extract structure and function module used by each.
    Thanks
    Ajeet

  • Field Status control for fields at Account assignment level .

    Hi All ,
    I have to take care of enabling / disabling / hiding / making fields mandatory  for some of the standard and custom fields for SC and PO depending on the Account assignment value .
    I am not sure how to go about this .
    I think this has to do something with the field status control .
    SPRO -> IMG -> SRM sever -> cross application basic settings -> extension and field control ( personalization ) -> Configure control for fields of substructure .
    I think i have to define some dyn class and also methods .
    But not sure how to move ahead , how to declare class / methods , which super class to use , how will i get the req parameters for the methods , ...
    Will appreciate a lot if somebody can guide me on this .
    Regards,
    Ambar Patil.

    Hi ,
    Check in SPRO for SRM -> Extensions and Field Control (Personalization) -> Configure Field Control.
    The metadata configuration for enabling disabling actions/fields in SRM can be checked from the tables
    This contains the data for all the business objects
    Check in SM30 the following views:
    /SAPSRM/V_MDA_HD for Header actions
    /SAPSRM/V_MDA_IT for Item Actions
    /SAPSRM/V_MDF_HD for header fields
    /SAPSRM/V_MDF_IT fir IT fields.
    You can customize your logic for enabling diabling the actions or fields by maintaining the entries in the corresponding customer views for this data
    for e.g.
    /SAPSRM/V_MDF_HC for header customer fields 
    /SAPSRM/V_MDF_IC for item customer fields
    You need to maintain field enabled, disabled ,required based on your requirement.
    Regards,
    Neeraj

  • Maintain Field status grups for vendors

    In IMG - Vendor master - define account groups  with screen layout -,
    I'm trying to change one of the fields in General data - control tab.  there are two pages for this to viewl all fields associated with the control.  I could only view the first page, if I clikc the yellow arrow on left menu, it's taking to the next group.  How can go to the second page (which is within the same control group).  I could view all fields in table view, however, I can not change the status in the table view.  The field (ext.manufacturer) I wanted change is in the second page.  Please advise.

    Hi
    When you go to obd3 vendors there 3 views are there
    1.General Data
    2.Comapny Code Data
    3.Purchase org data
    If you required directly you can select purchase org data or  select general data and if you click on arrow button it will show all the fields.
    If  it is use full please assign points
    Thanks
      Shiva

  • Getting the Latest status with respect to DATE entered

    Hi guyz, kindly help me in this scenario:
    I have a DSO and a CUBE....
    DSO:
    cust
    status code
    status date
    RAW DATA
    cust               status code               status date
    payer1                    1                      12/31/2013
    payer1                    3                       1/3/2014
    payer2                    4                       12/15/2013
    payer2                    2                        1/10/2014
    CUBE:
    cust
    0calday
    qty (KF)
    RAW DATA
    cust                    0calday                    qty
    payer1                1/1/2014                    10
    payer1                1/2/2014                    20
    payer1                1/3/2014                    30
    payer1                1/4/2014                    40
    payer1                1/5/2014                    50
    payer2                1/1/2014                    60
    payer2                1/2/2014                    70
    payer2                1/3/2014                    80
    payer2                1/4/2014                    90
    payer2                1/5/2014                    100
    I need to have this report: (for example I entered 1/1/2014 - 1/5/2014)
    cust               status code               0calday              qty
    payer1                   1                       1/1/2014              10
    payer1                   1                       1/2/2014              20
    payer1                   3                       1/3/2014              30
    payer1                   3                       1/4/2014              40
    payer1                   3                       1/5/2014              50
    payer2                   4                       1/1/2014              60
    payer2                   4                       1/2/2014              70
    payer2                   4                       1/3/2014              80
    payer2                   4                       1/4/2014              90
    payer2                   4                       1/5/2014              100
    Is this possible in query? Or do I need to do this in start routine?
    By the way, I can already show the QTY figures, I used CONSTANT SELECTION..My problem now is how to the STATUS CODE..How will I do this?
    Thank you!
    Loed

    Loed,If you are flexible with modeling level changes then i would suggest to stamp the values of status and status date against payer in cube.
    Add the two objects ion cube.Do a lookup on the DSO from cube in End routine and based on payer fetch the value of status and status date against each payer.
    Now once you have the complete data in the cube then at reporting level to get the correct status based on the validity dates you can refer my blog.
    Status of Tickets based on their Dates
    PS:If you need assistance in the coding part then let me know.
    Regards,
    AL

  • Field Status variant for creating FB60/65/70/75

    Hello everyone,
    Our client wants to make Material Group field (V023-MATKL) field mandatory for FI invoices. I looked at the FSV and FSG. It has materials management and below that it has only purchase order etc but no Material Group. I know BSEG does not contain MATKL field at all.
    My question to everyone is;
    1. is it possible to customize/add the fields under the groups "general" or "material management"?
    2. if yes, how (is it code modification?)
    3. if not, what is the alternative I have to satisfy the requirement?
    Any help will be highly appreciated.
    TIA,
    Anuj

    I would suggest using CO-PA for this.
    You can create rules to determine values for material group.
    You will need a CO-PA expert to advise you.

  • Carrier Details on Field status group for vendor master

    Hi,
    I have a requirement to make the SCAC and Carrier freight group as required fields on vendor master .
    but the standard SAP system requires/ allows three fields : SCAC , carrier freight group and Service agent procedure group as mandatory to be activated under the 'carrier details ' column in the field status group (transaction OB23 and OBD3).
    I want to know if there is a way to flag just the SCAC and carrier freight group as required fields for entry in vendor master .
    Thanks
    Naga Yarramsetty

    Hi All,
    Thanks for your reply. With user exit and validation, I cannot create mandatory mark in FS00. Actually SAP make this description always mandatory. But there is no mandatory mark in this column. I just want to create mandatory mark in this column. Need you advice.
    Thanks,
    John

Maybe you are looking for