Restricting data for selected GL accounts

Resolved
Edited by: Khaled McGonnell on Jan 29, 2010 2:55 PM

Hello Rama,
It is a little late but maybe this answer will be helpful for someone else...
Something like this happened to me when I executed "Data Reconciliation", the thing that was happening is that the job didn't finish so it could just erase data but was not able to get data back, what I did was consult the log of the job through System --> Services --> Jobs --> Job Overview or transaction SM37, then I searched for my jobs and I saw that they were all canceled and the log said "The name of the printer ' ' doesn't exist" so what I did was add a new printer in system --> user profile --> Own data --> Defaults --> OutputDevice and I added a local printer like "LP01"; after this, I executed Data Reconciliation again and the job was succesful and it got data back.
I hope this can help.
Regards
Erika Zagal de la Luz

Similar Messages

  • How to restrict data for selection

    Hi, folk,
    I've faced with the following issue.
    I have set of items. There are, for example, income items and expense items.
    Items are distinguished by value of attribute.
    According to business process, planning for income and expense items is quite different. Due to this reason I've created two planning folders to process ones.
    Item was placed into header of planning format.
    Before planning I should select item. More over, for income planning I should select item from income subset.
    So, how to based on value of attribute I can restrict items for selection in the planning folder.

    Easier impossible,
    Rather than using a variable of type attribute I would use an variable of type exit.
    The exit returns the full list of item in income or expense. (This depends on another variable, that could be a simple digit base or based on some other infoobject).
    The variable should be assigned to your level and also available in the planning folder for selection.
    The user will see the full list values and select the one he nedes to plan.
    I hope it's clear.
    Cheers,
    Alberto

  • Upload plan data for balance sheet accounts

    Hi Experts,
    Is there a way to upload plan data for balance sheet accounts? I can upload revenue/cos and expenses through the profit center and cost center uploading but need to upload balance sheet accounts as well. Any  help would be much appreciated. Thank you.

    Loading balance sheet accounts using the Excel load to profit center tells me that I selected balance sheet accounts that cannot be entered manually. Not sure what this means... if I have an accounts receivable account, how would I find another equivalent account?

  • Error in receiving tableview data for selected row

    Hi Collegues ,
    We plan to realize an application for the maintanance of  planning data . In the first step we created a value help page by using a tableview with iterator class ( 1 of the 3 methods of the Interface was filled with logic ) . We don't use any controller for that application  .
    A global internal table with the relevant help value data ( fgrvalues ) is used for the tableview and the call is :
    TYPE I .
    +CLASS CL_HTMLB_MANAGER DEFINITION LOAD.
    CLEAR ONCLICKEVENT.
    IF EVENT_ID = CL_HTMLB_MANAGER=>EVENT_ID.
        EVENT_DATA = CL_HTMLB_MANAGER=>GET_EVENT( REQUEST ).
        IF ( EVENT_DATA IS NOT INITIAL ) AND
                ( EVENT_DATA->EVENT_TYPE = 'click' ) .
                ONCLICKEVENT = EVENT_DATA->SERVER_EVENT .
        ENDIF.
    ENDIF.+
    CASE ONCLICKEVENT.
    WHEN 'take' .
       TABLE ?= CL_HTMLB_MANAGER=>GET_DATA( REQUEST = REQUEST
       NAME = 'tableView'
       ID = 'fgr1_vhelp' ) .
       TABLE_EVENT = TABLE->DATA.
       IF TABLE_EVENT->SELECTEDROWINDEX IS NOT INITIAL.
          ROWSELECTION = TABLE_EVENT->SELECTEDROWINDEX.  
    -> ROWSELECTION - Content is now the index of the selected tableview row
    We always get the selected row in TABLE_EVENT->SELECTEDROWINDEX and the table TABLE_EVENT->ALLCOLUMNNAMES filled ( column ZX_FGR1 is the 2nd column ) 
    but we never got the tableview data for that tableview row no matter what we tried . We tried it with a tableview-event fired on 'rowselection' by user line-selection . We have deactivated the iterator or changed the BPS design value . With the same result - nothing was given back .
    We found that the System-Call Return value of :
    +system-call ict
    did
    ihttp_scid_get_form_field
    parameters
    m_c_msg " > c handle
    name " > form field name                value " < form field value
                    m_last_error. " < return code+
    in the method IF_HTTP_ENTITY~GET_FORM_FIELD is empty .  M_LAST_ERROR occurs with value '20' .
      + ASSIGN ROWSELECTION TO .
    COLUMN_VALUE = TABLE_EVENT->GET_CELL_VALUE( ROW_INDEX =
    COLUMN_INDEX = '2' ). -> Column Value is empty !!+
       +CALL METHOD TABLE_EVENT->GET_CELL_VALUE
          EXPORTING
            ROW_INDEX = TABLE_EVENT->SELECTEDROWINDEX
            COLUMN_INDEX = '2'
          RECEIVING
            VALUE = COLUMN_VALUE -> Column Value is empty !!+
       +CALL METHOD TABLE_EVENT->GET_SIMPLE_DATA ....
             -> Column Value is empty !!+ *----
    What could be the reason for that problem ? In generally it must be possible somehow to read the tableview data for one or all rows of the mentioned tableview .
    We hope that someone can help and are very thankful for a hint or solution . If you need more details please let us know .
    Please Remark: It's no solution for us to read the data by using the created internal table fgrvalues and the selectedrowindex cause in a later step we plan to update an ODS table with the manual modified planning data of an editable tableview .
    Thanks a lot in advance
    Dirk Läufer

    Hi collegues ,
    It's done .
    After we've got a very helpful little hint from Brian :
    The <htmlb:tableView> renders a table to the browser. It does not keep a copy of the table. The browser will also never return the table. Never. What it can return are inputfields for each cell. But then only if each cell is custom rendered as an inputfield.
    we could certainly solve the problem .
    We set the field we want to get back from table view on not editable inputfield via the tableview-iterator method IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START :
    DATA: LCL_TABLE       TYPE REF TO CL_BSP_BEE_TABLE   ,
          LCL_INPUTFIELD2 TYPE REF TO CL_HTMLB_INPUTFIELD .
    CASE P_COLUMN_KEY .
    WHEN 'ZX_FGR1'.
    *    Field Firm Group
         CREATE OBJECT LCL_INPUTFIELD2.
         LCL_INPUTFIELD2->ID        = P_CELL_ID.
         LCL_INPUTFIELD2->WIDTH     = '100%'.
         LCL_INPUTFIELD2->MAXLENGTH = 4.
         LCL_INPUTFIELD2->TYPE      = 'STRING'.
         LCL_INPUTFIELD2->DESIGN    = 'STANDARD'.
         LCL_INPUTFIELD2->DISABLED  = 'TRUE'.
         LCL_INPUTFIELD2->VALUE =
             GET_COLUMN_VALUE( COLUMN_NAME = 'ZX_FGR1').
         P_REPLACEMENT_BEE     = LCL_INPUTFIELD2 .
    Now the method in OnInputPorcessing:
    TRY.
          CALL METHOD CL_HTMLB_MANAGER=>GET_SIMPLE_DATA
              EXPORTING
                REQUEST       = RUNTIME->SERVER->REQUEST
                ID            = 'fgr1_vhelp'
                ROW_IDX       = TABLE_EVENT->SELECTEDROWINDEX
                COL_NAME      = 'ZX_FGR1'
              CHANGING
                DATA          = FGRVALUES_LINE-ZX_FGR1 .
             IF NOT FGRVALUES_LINE-ZX_FGR1  IS INITIAL.
    *                 selektierte Firmengruppe übernehmen
                      ZX_FGR1     = FGRVALUES_LINE-ZX_FGR1   .
                      CALL METHOD NAVIGATION->SET_PARAMETER
                            EXPORTING NAME  = 'ZX_FGR1'
                                      VALUE = ZX_FGR1.
             ENDIF.
          CATCH CX_SY_CONVERSION_ERROR .
       ENDTRY.
    works properly as it should be ...
    An enormous Thanksgiving to you , Brian !!!!

  • Payment program rules for selecting Bank accounts

    Hi !!
    Anyone that know the rules for payment program to select Vendor Bank accounts from XK03
    when
    - more then one row exist in Vendor bank accounts (XK03)
    and
    - Field Partner bank type is "blank" (LFBK-BVTYP) for all bank account rows
    The rules seems not to be crystal clear for me
    Any place to find more documentation about these rules especially when LFBK-BVTYP is "blank"
    Thanks in advance !!
    BR Tomas Hagberg

    Hi,
    Please refer to following link. This may help.
    http://help.sap.com/saphelp_46c/helpdata/en/47/8bf634b576bc4ee10000009b38f83b/frameset.htm
    Regards,
    Harish

  • Variable displaying incorrect data for selection in template

    Hello Friends,
    We have an InfoObject 0CALMONTH. On this InfoObject we have created a variable PERIOD (Z_INTER). This InfoObject and variable is used in two queries (A & B). In BEx the variable is working fine for both the queries, that means the variable shows the correct period (04/2005 to 01/2007). This data exists in our dataprovider.
    Now in a web template, I pull a chart and associate query A as the dataprovider and the variable works fine. It also does so if I associate query B as the dataprovider. The problem starts when I pull two charts, simultaneously in the template, and associate one with query A and other with query B. This time the variable acts funny and shows and incorrect period for selection (03/1995 to 03/2005). We do not have any data for the year 1995 to 2004 in the dataprovider.
    So you see individually the queries  (and variable) run fine but as soon as I ask them to co-exist in the same template, I get aberrations. We are not sure from where this previous years data is being pulled.
    Please assist. Thanks!
    Regards,
    Prem.

    Hi,
    I feel 1995 year data should be available in any one of the cube. Check the complete data in the cube directly with 'manage' tab or 'listcube' transaction code.
    And one more idea in my mind is, remove the variables from the queries and use 'filter' option in WAD for filtering the caleder month.
    Try this also: Use only one variable for both reports. I mean to say, remove variable in one report. Check whether both reports also running fine.
    Once you try this, let me know the status. According that we will try more things.
    Regards,
    Vivek V

  • How should restrict data for particular month?

    Hi Experts,
    How should retrieve data for particular month without where condition.

    Hi,
    You must be having Month Object right in your Webi?
    User will be given opportunity to Select his/her required [Month]
    Create variable as =Userresponse("Enter value for Month")same text as you are giving in the Prompt text....Name it as [UMonth]
    Go to analysis tab..Filter..Add filter...[Month]=[UMonth]
    always this report will run for the month user require

  • Problem in displaying data for G/L Account in Tcode FAGLB03

    Hi,
    I am a abaper but my client is facing a strange problem in Tcode FAGLB03 that when it runs the tcode the data displayed for a purticular finanacial year then there are few months which remains blank in the display but the Carry Forward Balance is accurate.
    In the similar way when we execute tcode for previous financial year it is displaying the data accurately and filling all the months columns in it.
    Is there any way to present the missing data for that puritcular finanacial year?
    Edited by: nav009 on Jan 3, 2010 10:04 AM

    Hi,
    Please check the same with your netweaver administrator(basis consultant). He would have the user name and pwd for the SAP support portal. You can view notes in SAP support portal.
    SAP clearly says in the note that it is because of program error and you need to implement the correction notes.
    Do involve your FI consultant and Basis consultant to resolve this issue.
    Thanks
    Aravind

  • Restrict Data for a user without VPD

    I have read some posts, and maybe there are no better solutions, but I will try.
    For a particular user (User_A) I have to limit the data the user can see by Data_ID.
    Data_ID avialbe to User_A is 1, 2, 3.
    I know I can create a View for each Table and create a folder based on that for this purpose.
    Howevere I am wondering if there is something I can do through Discoverer Admin to accomplish this, so that I won't have to duplicate the folders.
    What I want to do is create a set of Folders in the main Business are and create "Filtered Folders" in a different Business Area.
    Any suggestions except VPD would be appreciated.

    Hi
    To follow up on what Rod has said, yes this solution will work.
    When I do it I add a mandatory condition to my folder which restricts the data to only what the user can see.
    Here's a workflow for Row-level security without a VPD:
    1. Create a security table
    2. Create a security index
    3. Grant the select rights
    4. Populate the table
    5. Create a function
    6. Import the function into Discoverer
    7. Create mandatory condition using embedded calculation
    8. Test
    Here's a simple table script:
    CREATE TABLE GEN_SECR(
    USERNAME VARCHAR2(8) NOT NULL,
    SEC_TYPE VARCHAR2(32) NOT NULL,
    SEC_IND INTEGER NOT NULL);
    In the above table, the three columns are used as follows:
    USERNAME     Oracle username
    SEC_TYPE     An identifier for the item to secure.
    SEC_IND     Use 0 for no access, 1 for access
    Create an index:
    CREATE UNIQUE INDEX GEN_SECR_PK ON GEN_SECR(USERNAME, SEC_TYPE);
    Grant access
    GRANT SELECT ON GEN_SECR TO PUBLIC;
    Populate the table:
    INSERT INTO GEN_SECR VALUES
    ('DRAKE', SALES', 1);
    INSERT INTO GEN_SECR VALUES
    ('MSMITH', ‘SALES', 0);
    Here's my function:
    CREATE OR REPLACE FUNCTION F_GEN_SEC
    (SEC_TYPE_IN VARCHAR2)
    RETURN NUMBER IS
    GEN_ACCESS NUMBER := 0;
    BEGIN
    USER is a system variable and contains the Oracle user id of the currently logged in user
    SELECT SEC_IND INTO GEN_ACCESS
    FROM
    GEN_SECR A
    WHERE
    A.USERNAME = USER
    AND A.SEC_TYPE = SEC_TYPE_IN;
    RETURN (GEN_ACCESS);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    RETURN (GEN_ACCESS);
    WHEN OTHERS THEN
    RETURN (GEN_ACCESS);
    END F_GEN_SEC;
    Here's a workflow to import function into Discoverer Admin:
    1. Use Tools | Import PL/SQL functions
    2. Click the Import button
    3. Locate the function to be imported
    4. Click the OK button
    5. Click the Validate button – the function should be valid
    6. Check the Arguments button - all should be fine
    7. Click the OK button
    Use this workflow to create a mandatory condition using embedded calculation
    1. Navigate to folder to be protected
    2. Right-click in folder, on any item, and from pop-up select New Condition
    3. Under Item: select Create Calculation
    F_GEN_SEC('SALES') = 1
    4. Click the OK button
    5. Test using Discoverer Plus
    Here's a methodology for Item-level security:
    We will use the same table, but rather than secure a whole table, we will secure an individual item
    Let’s secure the Credit column and prevent user MSMITH from seeing the content of that item
    Populate the table:
    INSERT INTO GEN_SECR VALUES
    ('DRAKE', CREDIT', 1);
    INSERT INTO GEN_SECR VALUES
    ('MSMITH', ‘CREDIT', 0);
    Here's the rest of the workflow:
    1. Locate and right-click on the item you want to secure
    2. From the pop-up menu select Properties
    3. Rename the item by adding the characters OLD to the end of the name.
    4. Change the Visible to user property to No
    5. Click the OK button to close the Item Properties dialog box.
    6. Right-click on the item again, and from the pop-up menu select New Item.
    7. The New Item dialog box will open.
    8. Give this new item exactly the same name as the item you renamed in step 3
    9. Check the Functions radio button. The Show box will display a list of the function folders. Functions that have been imported into Discoverer are located in the Database folder.
    10. Expand the Database folder and select the function you imported earlier
    11. Click Paste. The function specification will be pasted into the Calculation.
    12. Complete the calculation using DECODE:
    DECODE(F_GEN_SEC('CREDIT'),1,
    Credit OLD,NULL)
    13. Click the OK button to close the New Item dialog box
    14. Move the item to its correct location by placing it immediately above the original item
    15. Test using Plus
    I hope this helps
    Regards
    Michael

  • How to set expiry date for a mail account?

    Hi there, i'm new in Messaging Server, need help here on how to set an expiry date to a specific mail user since the mail user will be just a temporary mail user. Instead of deleting manually, is there any smarter way of doing it?

    Directory Server can be set to exipre a password, indeed. That will prevent the user from logging in, when it happens. There will be no warning, or anything like that.
    The account will still be on the server, and the mailbox will still contain mail. It will still receive mail.
    If you want to turn an account off, you will have to make some arrangement outside Messaging Server for automating it.
    You can use any kind of program you like to set the ldap attribute "mailuserstatus" to "inactive", or even "deleted" as you wish.
    You can use java, "c", or any other programming tools you like. Messaging Server and Directory Server aren't written in Java, anyway.

  • Report Painter YTD data for Balance Sheets accounts

    Dear Gurus,
    I am working on GLPCT report painter table and I would like to setup a report for inventory accounts with YTD data and not only movement on the current year.
    Which parameters (for basic key figures and Characteristics) should I use in order to have the report with 2011YTD data (2011YTD = closing balance 2010 + movements 2011).
    Thanks
    Kind regards,
    Dom

    Hi
    The As on Date balance cant be cumulated...
    Eg; you bought inventory worth 10 million in Current year and as of now you have 4 million worth of inventory in stock
    Cumulated bal in this case is 10 mil and As on Date balance is 4 million... 4 million is what you will get in SAP reports
    The same Key figure which shows values in comp code currency can be used
    br, Ajay M

  • Restrict data for a user profile

    Hi,
    I've made a jsp application where i implemented a users profiles for the screens, so i defined that user x can access to the jsp y in insert mode but can't access in remove mode.
    But now i need to implement a second profile that restrict the data that the user can see, like a Portuguese user can only see Portuguese citys and i don't know what is the best way of doing this, i'm using a BC4J.
    Any ideias
    thanks in advanced
    rjc

    Hi,
    Not exactly sure the exact details of what you are trying to achieve, but when the user logs in you can create a session variable that can be retrieved during the user's session. You implement this by using:
    session.setAttribute(String attrname, String attr)
    Then you can retrieve the attribute at a later time. So on your jsp page (I'm not sure of your table structure) you can do something similar to this:
    <%String whereclause = "Country=" + session.getAttribute("Country");%>
    <jbo:ViewObject id="CityView" whereclause="<%=whereclause%>">
    Hope this helps....
    A
    Hi,
    I've made a jsp application where i implemented a users profiles for the screens, so i defined that user x can access to the jsp y in insert mode but can't access in remove mode.
    But now i need to implement a second profile that restrict the data that the user can see, like a Portuguese user can only see Portuguese citys and i don't know what is the best way of doing this, i'm using a BC4J.
    Any ideias
    thanks in advanced
    rjc

  • Restrict Date rule selection from drop down

    Hi all,
    I am using date type srv_cust_beg and srv_cust_end.
    For date type srv_cust_beg i have assigned date rule Today+time.
    For date type srv_cust_end i have not assigned any date rule as consultant should fill this manually.
    My requirement is that consultant should enter the dates manually and they should not select the date rule from the drop down for srv_cust_end.
    For the date type srv_cust_end, we can see todaytime date rule from drop down as this date rule is assigned to srv_cust_beg.
    Is there any possiblity to restict the drop down selection?
    Regards,
    Raj

    Hi,
    The drop down is due to the Date Rule assigned to your Date Profile.
    Since all those 3 date rules are assigned to your Date Profile, you are seeing all those 3 date rules in the drop down.
    Thx,
    Waseem.

  • Restrict dates for reschedule

    Hi Experts
    I wish to monitor the Dates originally planned and new dates based on rescheduling.
    For this purpose, i will see that basic dates are corrected during scheduling/ rescheduling until complete structuring.
    Then I transfer the basic dates to forecast dates.
    From execution phase of project, i will reschedule the forecast dates during every confirmation (full or parial).
    At this juncture, can i restrict the reschedule only forecast dates?
    I mean, i should not be allowed to schedule basic dates by any chance.
    Please suggest solution, if any.
    warm regards
    ramSiva

    ramSiva,
    yes, this is possible via user status. "Scheduling basic dates" and "scheduling forecast dates" are two different business transactions. You can allow one and disallow the other in a particular user status.
    Use OK02 to customize you user status and status profiles.
    Hope this helps!
    Best regards
    Martina
    Edited by: Martina Modolell on Jan 22, 2010 3:28 PM

  • How to restrict data for certain users (brokers) in CRM

    Hi Team,
    We need to restrict brokers on their ability to 'see' and create trade promotions for only a given set of customers.
    Example:
    Broker Joe Smith can only see through t-code BP 3 customers, even though their are 10 customers created in the CRM system.
    Same goes for the t-code CRM_MKTPL (trade promotions), how do we restrict Joe Smith from creating promotions for only those 3 customer and not the other 7 customers?
    Any help is appreciated.
    Has anyone restricted any transaction like this before?
    Does it need ABAP programming? or does it need additional security roles?
    Thanks,

    The access control engine in CRM, is probably your best bet for this option.  I have not used it, but we did evaluate the use of the product.  I know this product works in BP, but I have not looked to see whether it hooks in CRM_MKTPL.
    Do a search on ACE in this forums or in the CRM help documentation.  Try this link for some basic information
    http://help.sap.com/saphelp_crm40sr1/helpdata/en/a9/04c42a9e207545b47a32d1d05f53c3/frameset.htm
    Good luck,
    Stephen

Maybe you are looking for

  • Smart folder in iphoto to burn folder on desktop

    Hi. I set up a smart folder in IPHOTO (collecting all photo's taken on a vacation) and have set up a burn folder on the desktop. I can't figure out how to get the smart folder to the burn folder. It won't move from within Iphoto or via the finder. Is

  • Custom metadata for review comments

    Hi, My users are using Acrobat and reader to review documents. There are tons of comments posted during this review process. Currently, once comments are included in the review, we don't have a way to custom tag the comments. Which can be used to fur

  • I have a MacBook air. I'm having problems with my cursor either I cannot see it or disappears is there anything I can do to fix it

    I'm having a problem with my cursor. It either disappears or I cannot see it immediately. Is there a way to make an adjustment on the display of the curse

  • Synchronization on a static object

    If I have a code like: synchronized(_otherParsers) _otherParsers = new Vector(); } knowing the _otherParsers is a static object in the class, the synchronization will block all access to the object or it will block the access to the sync. block? OBS:

  • Sporadic network connection

    This weekend I moved my eMac upstairs and left the router downstairs w/ my server. When I had the Mac and server together, they were networked via Ethernet through the wireless router. Now that the Mac connects wirelessly, I don't have a good connect