Changing selection parameteres of Std. datasources ( 0FI_GL_4 )

Dear All
I want to change and add HKONT in the seletion of the Datasource 0FI_GL_4 . But when opened with T-code RSA6, the HKNOT is not hylighted and hence I can't tick the selection. Can we change the selection parameters for data loading of Std. Datasources ?
Dinesh sharma

Hello Dinesh,
I recommend to post this query to the [Integration Kits - SAP|BusinessObjects Integration Kits; forum.
This forum is dedicated to topics related to the BusinessObjects Integration Kit for SAP.
It is monitored by qualified technicians and you will get a faster response there.
Also, all SAP Kit queries remain in one place and thus can be easily searched in one place.
Thanks a lot,
Falk

Similar Messages

  • Changing Selection Criteria in Current DataSources

    I am pulling in financial information from BSEG into BW.  BSEG is a massive table with a lot more information than I care to pull in for my purposes.  I would like to be able to select a range of GL Accounts to pull in, but I cannot find a way to make certain fields available as selection criteria.  When I go into "Change DataSource", I can unselect fields, and even select certain fields, but the option for most is grayed out. 
    How can I make other fields available as selection criteria? 
    Thanks for the help.
    Sean

    Hi Sean,
    this is pure brutal code....
    SELECT SINGLE * FROM ROOSFIELD
    WHERE OLTPSOURCE = ZBW_BSEG AND
          OBJVERS    = 'A'      AND
          FIELD      = GREYFIELD.
    IF SY-SUBRC = 0.
      ROOSFIELD-SELECTION = 'X'.
      MODIFY ROOSFIELD.
    ENDIF.
    Sean, test this solution to verify if the selection you done works effectivly...
    Hope this helps.
    Bye,
    Roberto
    (remember to click on the star as way to thank !!!)

  • Changing generic selection parameters for Payment advice notes

    Hi,
    I want to add few more generic selection parameters for Automatic Payment advice notes generation on the seletion screen(f110 - rffoavis_fpaym). Please let me know the config settings for doing this.

    Hi Pradeep,
    you can change the sender, when you change the system-field SY-UNAME before calling FM SO_NEW_DOCUMENT_ATT_SEND_API1.
    REPORT Z_TEST_SEND_MAIL.
    h_uname must be a SAP-UserId.
    sy-uname = h_uname.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = DOC_CHNG
         PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = 'X'
        TABLES
          PACKING_LIST               = OBJPACK
          OBJECT_HEADER              = OBJHEAD
          CONTENTS_BIN               = OBJBIN
          CONTENTS_TXT               = OBJTXT
          RECEIVERS                  = RECLIST
        EXCEPTIONS
          TOO_MANY_RECEIVERS         = 1
          DOCUMENT_NOT_SENT          = 2
          OPERATION_NO_AUTHORIZATION = 4
          OTHERS                     = 99.
    I tried it and it was successfull.

  • Correct/Changes in the data in DataSource in R/3 System

    Can we make the changes in the DataSource which is there in R/3 from were the data is loading into BW System?

    Friend..here it is..
    In the source system...Create an append structure to the std datasource's extract structure..then add fields in the append structure.The Z-fields can be named like 'ZZ<field-name>'.
    (For the data-element,use same data element as that of the fields from where you will pick the data..so that format problems are avoided)
    Save and activate the append structure and also the datasource extract structure.
    Added z-fields are hidden by default.Now go to tcode rsa6 and find the std datasource.Click on change button and unhide the added z-fields..but do not remove the checkbox for 'fields known in customer exit'.
    Now u will have to write user exit in tcode CMOD.
    Go to CMOD and enter the project name for BW.
    Then choose radio button components.
    4 user exits will come up.Use 2nd one for master data attributes enhancements.
    You will have to loop on C_T_DATA(or I_T_DATA) and modify it with derived values for the z-fields.
    Save and activate exit.
    Then do extract check in rsa3.See that z-fields getting derived OK.
    In BW,try to find if BC infoobjects available for the required additional attributes.
    Go to change mode in the std main infoobject and add the new attr at the end.
    Then replicate datasource in BW,map the transfer and update rules and then load data.
    Done.Hope I havent missed anything.
    cheers,
    Vishu
    iF..You dont have an existing project and u have to create one.
    Select a good name for a project..say ZBIW..and then enter the name and click on create button.It will take u to new screen.There give short text for project name.
    Above u will see 'enhancement assignments' button.Click it and in the new screen add enhancement RSAP0001.
    Save and remember to activate project too..
    (save in appropriate transport request)
    Then if u click the components button u will see the 4 user exits..
    Choose the documentation radio button and u will get purpose of all 4 exits.

  • How to use multiple selection parameters in the data model

    Hi, after have looked all the previous threads about how to use multiple selection parameters , I still have a problem;
    I'm using Oracle BI Publisher 10.1.3.3.2 and I'm tried to define more than one multiple selection parameters inside the data template;
    Inside a simple SQL queries they work perfectly....but inside the data template I have errors.
    My data template is the following (it's very simple...I am just testing how the parameters work):
    <dataTemplate name="Test" defaultPackage="bip_departments_2_parameters">
    <parameters>
    <parameter name="p_dep_2_param" include_in_output="false" datatype="character"/>
    <parameter name="p_loc_1_param" include_in_output="false" datatype="character"/>
    </parameters>
    <dataTrigger name="beforeReport" source="bip_departments_2_parameters.beforeReportTrigger"/>
    <dataQuery>
    <sqlStatement name="Q2">
    <![CDATA[
    select deptno, dname,loc
    from dept
    &p_where_clause
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_DEPT" source="Q2">
    <element name="deptno" value="deptno"/>
    <element name="dname" value="dname"/>
    <element name="loc" value="loc"/>
    </group>
    </dataStructure>
    </dataTemplate>
    The 2 parameters are based on these LOV:
    1) select distinct dname from dept (p_dep_2_param)
    2) select distinct loc from dept (p_loc_1_param)
    and both of them have checked the "Multiple selection" and "Can select all" boxes
    The package I created, in order to use the lexical refence is:
    CREATE OR REPLACE package SCOTT.bip_departments_2_parameters
    as
    p_dep_2_param varchar2(14);
    p_loc_1_param varchar2(20);
    p_where_clause varchar2(100);
    function beforereporttrigger
    return boolean;
    end bip_departments_2_parameters;
    CREATE OR REPLACE package body SCOTT.bip_departments_2_parameters
    as
    function beforereporttrigger
    return boolean
    is
    l_return boolean := true;
    begin
    if (p_dep_2_param is not null) --and (p_loc_1_param is not null)
    then
    p_where_clause := 'where (dname in (' || replace (p_dep_1_param, '''') || ') and loc in (' || replace (p_loc_1_param, '''') || '))';
    else
    p_where_clause := 'where 1=1';
    end if;
    return (l_return);
    end beforereporttrigger;
    end bip_departments_2_parameters;
    As you see, I tried to have only one p_where_clause (with more than one parameter inside)....but it doesn't work...
    Using only the first parameter (based on deptno (which is number), the p_where_clause is: p_where_clause := 'where (deptno in (' || replace (p_dep_2_param, '''') || '))';
    it works perfectly....
    Now I don't know if the problem is the datatype, but I noticed that with a single parameter (deptno is number), the lexical refence (inside the data template) works.....with a varchar parameter it doesn't work....
    So my questions are these:
    1) how can I define the p_where_clause (inside the package) with a single varchar parameter (for example, the department location name)
    2) how can I define the p_where_clause using more than one parameter (for example, the department location name and the department name) not number.
    Thanks in advance for any suggestion
    Alex

    Alex,
    the missing thing in your example is the fact, that if only one value is selected, the parameter has exact this value like BOSTON. If you choose more than one value, the parameter includes the *'*, so that it looks like *'BOSTON','NEW YORK'*. So you need to check in the package, if there's a *,* in the parameter or not. If yes there's more than one value, if not it's only one value or it's null.
    So change your package to (you need to expand your variables)
    create or replace package bip_departments_2_parameters
    as
    p_dep_2_param varchar2(1000);
    p_loc_1_param varchar2(1000);
    p_where_clause varchar2(1000);
    function beforereporttrigger
    return boolean;
    end bip_departments_2_parameters;
    create or replace package body bip_departments_2_parameters
    as
    function beforereporttrigger
    return boolean
    is
    l_return boolean := true;
    begin
    p_where_clause := ' ';
    if p_dep_2_param is not null then
    if instr(p_dep_2_param,',')>0 then
    p_where_clause := 'WHERE DNAME in ('||p_dep_2_param||')';
    else
    p_where_clause := 'WHERE DNAME = '''||p_dep_2_param||'''';
    end if;
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || ' AND LOC IN ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || ' AND LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    else
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || 'WHERE LOC in ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || 'WHERE LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    end if;
    return (l_return);
    end beforereporttrigger;
    end bip_departments_2_parameters;
    I've written a similar example at http://www.oracle.com/global/de/community/bip/tipps/Dynamische_Queries/index.html ... but it's in german.
    Regards
    Rainer

  • How to change NLS parameters in SQL Developer?

    I think that Oracle National Language Support is quite confusing. How can I easily change NLS parameters for SQL Developer (for all connections) to match exactly those that my database is using?

    Hello,
    SELECT 5/8 x FROM dual;F9 -> 0.625
    Change decimal separator in preferences
    F9 -> 0,625
    It is different when I execute a query/script with F5, then I always get 0.625
    SELECT * FROM nls_session_parameters
    WHERE parameter = 'NLS_NUMERIC_CHARACTERS';
    PARAMETER                      VALUE
    NLS_NUMERIC_CHARACTERS         .,
    SELECT 5/8 x FROM dual;
             X
         0.625
    Change settings
    SELECT * FROM nls_session_parameters
    WHERE parameter = 'NLS_NUMERIC_CHARACTERS';
    PARAMETER                      VALUE
    NLS_NUMERIC_CHARACTERS         ,.
    SELECT 5/8 x FROM dual;
             X
         0.625Even changing the settings with ALTER SESSION makes no difference
    ALTER SESSION SET NLS_NUMERIC_CHARACTERS = ',.';
    SELECT * FROM nls_session_parameters
    WHERE parameter = 'NLS_NUMERIC_CHARACTERS';
    PARAMETER                      VALUE
    NLS_NUMERIC_CHARACTERS         ,.
    SELECT 5/8 x FROM dual;
             X
         0.625
    ALTER SESSION SET NLS_NUMERIC_CHARACTERS = '.,';
    SELECT * FROM nls_session_parameters
    WHERE parameter = 'NLS_NUMERIC_CHARACTERS';
    PARAMETER                      VALUE
    NLS_NUMERIC_CHARACTERS         .,
    SELECT 5/8 x FROM dual;
             X
         0.625It seems the script output does not care about my settings :-(
    Regards
    Marcus

  • Change step parameters in teststand edit mode

    Hello,
    I would like to know if it's possible to change the parameters in a step in edit mode of teststand.
    I have attached a sequence with one step, in this step I want to select DMMx.
    After the selection I want to teststand to fill in the parameters in the step so I can the choose which type of measurement and such.
    If this is not possible how could I make something like this possible.
    As you may see this will be a HAL, and the only option I can see which would do this is bij a string array but I don't want to type in the commands in string.
    Attachments:
    ring.vi ‏14 KB
    Sequence File 1.seq ‏5 KB

    Hi Darkxceed
    My recommendation for doing a HAL i TestStand would be to use an object oriented approach. 
    Create a class hirachy of your instruments like the following inside of LabVIEW:
    Then use Dynamic Dispatch to make TestStand choose the instrument of interest. There is an example of using Dynamic Dispatching in TestStand here:
    TestStand Using LabVIEW OOP Truck Example
    https://decibel.ni.com/content/docs/DOC-24098
    This solution will offcourse require you to read up on creating applications using object oriented programming in LabVIEW. We at NI have a course that walks you through both the theory and practical implementation. It is called Object Oriented Programming in LabVIEW. If you have a SSP agreement, you should be able to find it as Self Paced Online Training as a part of your contract.
    There is also a good introduction to OOP in LabVIEW and HAL here:
    https://decibel.ni.com/content/docs/DOC-32506
    (There is a video embedded in the PDF)
    Best Regards
    Anders Rohde | CLD | Platinum Applications Engineer | National Instruments Denmark

  • How to Change Database parameters as suggested by EWA report

    Dear Experts,
    As per EWA report , i have been asked to change several DB parameters as per note 0124361 . Should i go aghead and change the parameters ? What is the procedure of chaging those parameters? what is the real process that should be followed ? Please revert.Points guaranteed.
    Regards,
    Somya

    Run "brspace -f dbparam"
    Select option 1 "Change parameter value" and change the parameters. After changing select option 3 to create a new init.ora.
    If you change parameters that have the scope "spfile" oracle requires a restart. If you only change parameters with scope "both" you don't need a restart of oracle. This changes are affected on the fly.
    To restart oracle:
    connect / as sysdba
    SQL> shutdown
    SQL> startup
    You don't need to stop SAP if you only change oracle parameters. SAP reconnects automatically if the database is up.

  • Selection parameters MIR11

    Dear experts,
    For fiscal constraints, we need to change the "document date" when runing and posting documents in MR11, but in the selection parameter,  we can define manually only the "posting date".I see that for some MM reports we can add and change some selection parameters.
    Is it possible to add "document date" to the selection parameters in MR11, so that we can define it manually as we do for the posting date?
    Thanks for your help.
    Houda

    Dear Preeti,
    My problem is not related to a number ranges, but i need to define the document date manually instead of automatically by the system, like when we are booking FB01, we can define manually the document and the posting date.
    To solve my issue , i think about a standard setting that may add the document date field in the selection criteria so that we can change define it manually (same as the posting date field)...
    I already search in the forum but unforunately i didn't find an answer to my question.
    Do you have any idea?
    thanks
    Houda

  • Is it possible to make new selection option check for datasource?

    Hi Experts,
    I have a standard datasource and i want selective data form this datasource but the field on which i want selection is not provided as selection checked in the datasource.
    Is there any option in BW side so that i can have that field as selection in the infopackage.
    Regards,
    RG

    Hi
    Info Package Selection Tab is the Replication of DS at Source System Extract structure.
    But making changes to the Standard DS may drive you into Errors in future, make sure that you are not locking / changing the dependent objects if you are changing the Options while DS at Source system RSA5/RSA6.
    You need to replicate / Reinit for the changes you made for DS.
    Hope it helps

  • GR55 Report Selection Parameters

    Hi,
    I want to add company code as one of the selection parameters. When I run the report group company code is not showing up as the selection parameter.
    Please let me know if someone knows how to do that.
    Thanks

    GR52 enter the report group name. Click on Report.
    If it is an SAP standard report, you won't be permitted to change. However you can copy that standard report to your own report (give a name to it).
    Then, in GRR2, you can call the characteristics under the Edit>general data selection and include the company code.
    Click on the second check box, meant for variable. Choose one from the drop down. Select a default company code variable (e.g 8A-bukrs for profit center related report under table GLPCT) for the table you are dealing with . Save and generate. and then include the report under a report group to run.

  • How to change Select-Optio ?

    Hi ,
    How to change Select-Option statement as a Parameter statement?

    Hi,
    Decalare it as
    1)If you want your SELECT -OPTIONS to behave like parameters. USe the option.
    SELECT-OPTIONS ..... NO INTERVALS NO-EXTENSION
    REPORT abc.
    DATA : v_enterpr(30) TYPE c,
    v_divin(30) TYPE c.
    SELECT-OPTIONS : s_enterp FOR v_enterpr NO INTERVALS NO-EXTENSION ,
                     s_divin  FOR v_divin NO INTERVALS NO-EXTENSION .
    2)If you want to have it as SELECT-OPTIONS.
    Then
    REPORT abc.
    DATA : v_enterpr(30) TYPE c,
    v_divin(30) TYPE c.
    SELECT-OPTIONS : s_enterp FOR v_enterpr ,
                     s_divin  FOR v_divin .
    NO-EXTENSION
    The user can only make an entry on one line. Calling the additional "Multiple Selection" screen is not supported and no pushbutton for this appears on the selection screen.
    NO INTERVALS
    The selection option is displayed on the selection screen without a 'to' field. The pushbutton for calling the "Multiple Selection" screen appears immediately after the 'from' field.
    This addition thus allows you to generate a simplified display on the selection screen. This is particularly useful if you are not making any range selections for this selection option.
    If u have both No-extension and No-interval it will behave like simple parameters stmt.
    Regards,
    Omkar.

  • Changing Modification Language in Std FM

    Hello All,
    To implement an OSS note, I need to add parameters to std FM
    By mistake, I have chosen modify in original lang (DE) , instead of logon language.
    Is it possible to change this and maintain in logon lang
    Thanks
    Seema

    Hello
    Actually is not necessary to reset the FM to original language as it is defined to the original language even you have changed the display language.
      If you want to define it again you can log in DE language and open the object in edit mode again, choosing Maintain in Logon language, it will define the display language to the original language again..
    Best regards

  • Changing Selection Fields available in Extract Structure 0FI_AA_11

    Hello Experts!
    I would just like to ask this question, as I've already consulted with so many people and nobody seems to know if this is possible or not and I've already tried searching for it in the forums to no avail.
    The situation is that I am currently full loading data from R/3 to BW, into the ODS 0FI_AA_11. Now, due to the full loading of the data, one load would entail a huge amount of line items around 1 million + lines per load). The loading of the line items per se is successful (as seen in the Details tab in monitor under Processing). However, activation takes quite a long time (8 hours is the longest so far) and it just times-out and we are not sure if the request is still running or not, so often times we are forced to just kill the process.
    So given that and seeing that this is a standard ODS, we were thinking of just breaking down the loading into batches of FISCPER (month and year). HOWEVER, the InfoPackage that are associated with the InfoSource being used by the ODS, 0FI_AA_11 only allows for the usage of 3 selection parameters for loading: Depreciation Area, FISCALYEAR, and Company Code.
    We have already tried to edit the datasoource in R/3 (RSA6) for this extract structure; however, we are unable to tick the box under the Selection column next to the FISCPER field. From what we understand, this is what allows the datasource to enable that field for selection in the InfoPackage.
    We would just like to know if it is possible to edit the extract structure in such a way that we are able to tick this box for the extract structure and if so, how can we do it?
    Hoping for your quick response to this question. Thanks!

    Dear AJ,
    Iu2019m going try to helping you regarding your question,
    I suggest you that check the following steps:
    u2022     Log on to the source system.
    u2022     Test and debug in extractor checks (RSA3).
    u2022     Monitoring running task (SM50).
    u2022     Start the extractor with the scheduler in BI.
    u2022     Locate the process in the monitor and start troubleshooting.
    More information, look for in:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/43/53e84b73d0564aa0a6907c7e2bbf7a/frameset.htm
    According the InfoPackage that only allows for the usage of 3 selection parameter for loading: Depreciation Area, FISCALYEAR, and Company Code.  If you need to enhance, you should log on to the source system, go to maintaining DataSource.
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/d9/f622392ab1f708e10000000a11402f/frameset.htm
    And add more field in your DataSource structure, to allow select more parameters in your InfoPackage,  as FISCPER.
    I hope this suggestion can help you about your question,
    Luis

  • Event error extract in datasource 0FI_GL_4

    Hi Guru's,
            please help me a serious problem.
    In r/3 when Iam double cliking on my datasource I'm not able to display the datasource or change it.
    the error displayed is MSG TEXT: [event with errors extract in datasource 0FI_GL_4].
    I have enhanced the datasource as per 4.6 but here the version is ecc5 r/3.
    even in rsa5 I'm not able see the datasource fields or change.
    Regards
    KM

    Hi Robert,
         Event with errors Extract in DataSource 0FI_GL_4
         Message no. R8287
         Problem class very important
         Along with 0FI_GL_4 the folowing datasources are also having the same problem.0FI_GL_6,0FI_GL_7,0FI_TX_4.
        Please help us in this issue, waiting for your favourable answer.
    Thanks & Regards
    KL Chand

Maybe you are looking for

  • Passing parameters to Update page

    Hi, I created the search/create/update page going by the instructions in the tutorial exercise. My primary key is a combination of employee number AND sequence number. When I query the employee in the search page and if the employee has more than one

  • Xserve's mini displayport (dvi to vga) not working with snow leoapard

    I am using a Acer 20" display with the mini displayport to vga. and since I updated to snow leopard it is not working anymore. If I change the resolution it is recognized but it is a very bad resolution and as I have a wide screen the resoltion that

  • How do I move my itunes library to an external drive to free up space on a Macbook?

    Hi, I'd like to free up some room on my Macbook and was thinking of moving all my music library to an external drive. I hardly ever use my computer to play music, more I download an album and then sync it to my iphone to play from that. I use itunes

  • Send Mail in BPM 11g

    Hi. I´m using BPM 11g and i want to send mail to different roles. Someone knows how to implement a service to send mail..?

  • Posting accounting documents into G/L accounts

    HI friends, what are the tables involved in posting accounting documents in G/L accounts. Please let me know. Thanks in advance. Roberts.K