Changing group bt code

dear all
i need to know if there is way to change the group selection for the report
so i can build my report dynamically
iam using cr 7 and vb6
please if any one know any way to change the group field by coding
please advice

Hi, I did not worked on VB.
But you can certainly get help from following link.
It talks about changing group condition field dynamically in .Net (I guess VB).
[https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313338333233323334%7D.do|changegroup]
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313338333233323334%7D.do
--Kuldeep

Similar Messages

  • Transaction code to change group indicator & group number of a routine

    Transaction code to change group indicator & group number of a routine

    Post Author: paul.carpenter
    CA Forum: Formula
    Sorry for the ignorance.  I did a little more playing, created a group summary count, then checked it against my record count per group.
    All set now!

  • Change of Company code from one Cons Group to another Cons Group.

    Dear All,
    Please advise on change of company code from one Cons Group to another Cons Group , we have Cons Structure - at present few companies are in one cons group and as a policy we have to move the companies to another cons group. So please advise me what will be the case if we move int he following senarios:
    1. if till period 012 year 2008,  company A is in Cons Group AA and we want  the same to Cons Group BB. How it  will move to Cons Group BB in a Company code with the opening balances? 
    2. if there is no data in SEM BCS total Cube - and we want to move the Company A from Cons Group AA to Cons Group BB.
    What will be the effect in both the scenarios.  How to do this? if you can specify some steps then I will try to analyze the situation.
    Thanks in advance

    The changes are not complicated but company A must be placed in cons group BB as of period 12 2008 and in the master data of the cons group it should be indicated that the first consolidation is at the end of the period (EOP). Likewise in cons group AA must continue to include company A but in the cons group master data it must be indicated that the period of divestiture is 12 2008 EOP.
    The cons group changes tasks must be executed to move the balances in period 12 2008.
    If there is not data for company A in the totals infocube you may simply drag-and-drop company A from cons group AA to cons group BB without any concerns.
    The affect in each scenario is different because if there is data that is to be reported as part of cons group AA company A must be included in cons group AA.

  • Deletion of Release Group and Code in PO

    Dear Consultant,
    In Purchase order, we have created some release group and code, Unfortunately we deleted some groups Without deleting in Order wise.
    In table level the Release Group is there but in SPRO Release Strategy settings its not there..My consultant advised again you have to create same release group in Release strategy...
    If I create same Release Group which are lying in my T16FC Table..But system throwing this err "An entry already exists with the same key"
    Could you suggest me.
    Regards,
    PRIYA.

    Hi,
    Please go with below mention path: -
    SPRO >> Materials Management >> Purchase Order >> Release Procedure for Purchase Orders >> Define Release Procedure for Purchase Orders >> Release Groups.
    Here check release group is existing, if yes then remove them and click on save button.
    Then try to create new service group.
    Some times we delete release group and create new release group with same description without saving changes.Due to this this type of error is occur.
    Regards,

  • PO release change in release code

    Hi Gurus,
    Earlier a PO was being released by code A1. This employee has left the company so all the release of POs have been held up. So i want to change it & assign it to a different code B2 , please guide.
    Regards,
    Kumar

    Hi,
    Try to minimize headache. There may be so many factors/characters involves and you need to study the system 1st and then see the other implications too change or NOT.
    Example:
    You may have release groups, release codes and respective values to be released are following
    Release Group A
    Release Code: A5u2026 more then 2000K
    Release Code: A4u2026.750K to 2000K
    Release Code: A3u2026.250K to 750K
    Release Code: A2u2026.50K to 250K
    Release Code: A1u2026.0 to 50K
    Release Group B
    Release Code: B5u2026 more then 2000K
    Release Code: B4u2026.750K to 2000K
    Release Code: B3u2026.250K to 750K
    Release Code: B2u2026.50K to 250K
    Release Code: B1u2026.0 to 50K
    u2026 see example A & B are may be different department. If user get B2 release code instead of A1 ,he can release greater value etcu2026u2026u2026
    Regards,
    Biju K

  • How do you Change Group Sort Direction using Report Client

    It looks like there should be a sort direction property on the ISCRGroupOptions object but there is none. So how do you set the sort direction of the group?

    I tried that and it did not work. Here's the code to change the grouping, note I also change the associated sort object. I did notice that if you go into the crystal reports designer and bring up the Record Sort Export and select the group's corresponding sort that the Sort Direction radio buttons are disabled. The question is how to change the sort direction shown on the Change Group Options dialog?
            public bool GroupModify(short GroupIndex, string TableName, string ColumnName, SortDirection SortDirection)
                bool result = false;
                if ((_ReportClient != null) && (GroupIndex >= 0) && (GroupIndex < this.GroupCount()))
                    CrystalDecisions.CrystalReports.Engine.Group docGroup = _ReportDocument.DataDefinition.Groups[GroupIndex];
                    ISCRField field = _ReportClient.DataDefController.FindFieldByFormulaForm(docGroup.ConditionField.FormulaName);
                    if (field != null)
                        Group group = _ReportClient.DataDefController.GroupController.FindGroup(field);
                        if (group != null)
                            Group newGroup = group.Clone();
                            newGroup.ConditionField = FieldGet(TableName, ColumnName);
                            if ((newGroup.ConditionField != null) && (_ReportClient.DataDefController.GroupController.CanGroupOn(newGroup.ConditionField)))
                                _ReportClient.DataDefController.GroupController.Modify(group, newGroup);
                                result = this.SortSet(TableName, ColumnName, SortDirection);
                return result;
            public bool SortSet(string TableName, string ColumnName, SortDirection SortDirection)
                bool successful = false;
                if (_ReportClient != null)
                    ISCRField field = FieldGet(TableName, ColumnName);
                    if (field != null)
                        ISCRSort sort = _ReportClient.DataDefController.SortController.FindSort(field);
                        if (sort != null)
                            _ReportClient.DataDefController.SortController.ModifySortDirection(sort, CRSortDirection(SortDirection));
                return successful;
            public int GroupCount()
                int count;
                if (_ReportClient != null)
                    count = _ReportClient.DataDefController.DataDefinition.Groups.Count;
                else
                    count = 0;
                return count;

  • IAM-3056160:Modify User Profile request cannot set or change attribute Job Code, since it is not defined in the corresponding data set.

    I am trying to modify the value of the field "Job Code" through API I am getting the following error.(OIM11gr2). I do not get this error when updating the other fields. There is a field by the name USR_JOB_CODE in the database. When I poked around I found that there is no Job Code field in the User Form. Any ideas?
    IAM-3056160:Modify User Profile request cannot set or change attribute Job Code, since it is not defined in the corresponding data set.:Modify User Profile:Job Code
    oracle.iam.identity.exception.ValidationFailedException: IAM-3056160:Modify User Profile request cannot set or change attribute Job Code, since it is not defined in the corresponding data set.:Modify User Profile:Job Code
           at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:237)
           at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
           at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
           at oracle.iam.identity.usermgmt.api.UserManager_nimav7_UserManagerRemoteImpl_1036_WLStub.modifyx(Unknown Source)
           at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
           at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
           at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
           at java.lang.reflect.Method.invoke(Unknown Source)
           at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
           at $Proxy2.modifyx(Unknown Source)
           at oracle.iam.identity.usermgmt.api.UserManagerDelegate.modify(Unknown Source)
           at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
           at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
           at sun.reflect.DelegatingMethodAccessorImpl.invoke

    THanks for your reply. Here is the snippet from User.xml that contains info about job code.
    <entity-attribute>Job Code</entity-attribute>
    <target-field>usr_job_code</target-field>
    <field name="usr_job_code">
    <type>string</type>
    <required>false</required>
    </field>
    <attribute name="Job Code">
    <type>string</type>
    <required>false</required>
    <searchable>true</searchable>
    <multi-valued>false</multi-valued>
    <MLS>false</MLS>
    <multi-represented>false</multi-represented>
    <attribute-group>Basic</attribute-group>
    <metadata-attachment>
    <metadata>
    <name>multi-valued</name>
    <value>false</value>
    <category>properties</category>
    </metadata>
    <metadata>
    <name>user-searchable</name>
    <value>true</value>
    <category>properties</category>
    </metadata>
    <metadata>
    <name>category</name>
    <value>Preferences</value>
    <category>properties</category>
    </metadata>
    <metadata>
    <name>bulk-updatable</name>
    <value>true</value>
    <category>properties</category>
    </metadata>
    <metadata>
    <name>read-only</name>
    <value>false</value>
    <category>properties</category>
    </metadata>
    <metadata>
    <name>visible</name>
    <value>true</value>
    <category>properties</category>
    </metadata>
    <metadata>
    <name>encryption</name>
    <value>CLEAR</value>
    <category>properties</category>
    </metadata>
    <metadata>
    <name>display-type</name>
    <value>TEXT</value>
    <category>properties</category>
    </metadata>
    <metadata>
    <name>system-controlled</name>
    <value>false</value>
    <category>properties</category>
    </metadata>
    <metadata>
    <name>max-size</name>
    <value>512</value>
    <category>properties</category>
    </metadata>
    <metadata>
    <name>custom</name>
    <value>false</value>
    <category>properties</category>
    </metadata>
    </metadata-attachment>
    </attribute>
    I am able to retrieve the value of the Job Code attribute without any problem with the following code.
    System.out.println("JOB Code: "+user.getAttribute("Job Code"));

  • Change the tax code issue in fs00

    Dear Sapgurus,
    in production i create one g/l code user id : mydr123 T code is fs00 g/l code number 300000 account name is sales, account group is p&l and account currency inr, tax category ">" , now i am going to change tax category * while saving the g/l system is not accepted  itsshowing error message "     1) Changing the tax code not possible; account has a balance
    2) The data contains error, you cannot save, but if i choose"-" its accepted please tell me
    Regards
    Myfriend

    Hello MyFriend,
    If you wish to make a direct posting to a tax account you must have
    the gl account active in transaction MIRO.
    Please review the online documenation located via help -> sap
    library -> materials management -> logistics invoice verification ->
    Direct postings -> direct posting to gl account
    here you can see the setttings for same in customizing are
    Setting in Customizing for Logistics Invoice Verification
    As per error message FH081, it arises only if the account had perviously
    the tax category ">" or "<". They cannot be changed anymore
    if the account has a balance. The tax categories "-", "+", "*" etc.,
    can be changed, you will get in FS02 only the warning FH011.
    Please check GL account xxxxxx with FBL3N, to see if there is a balance
    still left. To make the account balance zero, you might try transaction
    FB41, this allows you to post directly a balance to the Tax gl account
    even when the flag "Post to automatically" is set.
    I hope this helps
    Regards
    Ray

  • The software change returned error code 0x87D00607(-2016410105).

    Hi to everyone. I am learning SCCM 2012 R2 using book Mastering SCCM 2012 R2 in addition to various video trainings and online resources. Currently I am focused on application deployment. I created Foxit Reader application - msi deployment type, distributed
    it to DP and deployed it to device collection containing only one test computer (Win 7 Pro SP1 x64). Having done all these steps I went to client's Software Center and Application Catalog. Foxit Reader app is visible but as soon as I click on Install
    button I receive an error:
    The software change returned error code 0x87D00607(-2016410105).
    I deployed Office 2013 a few days ago (although I am struggling to uninstall it silently) without problems. Meanwhile I did not change anything related to boundaries, boundary groups and DPs. I have only one SCCM 2012 R2 server (Primary stand-alone site).
    I hate these situations when I follow along some official learning material such as this book, doing everything the same as it is done there and it does not work at all.
    Unfortunately I can not afford official MS training, my company does not invest in their system engineers so we are on our own. It is nice to learn something by yourself but situations like this take too much time - probably on official training it would be
    solved immediately.

    Its likely that your problem is being caused by incorrectly configured boundaries with Configuration Manager. There are quite a few blogs on this particular error, as an example:
    http://www.vmadmin.co.uk/microsoft/64-mssystemcenter/350-sccm2012errorboundary87d00607
    and
    http://peerk.blogspot.com.au/2013/01/sccm-2012-app-stuck-at-downloading-0.html
    or
    http://heineborn.com/tech/application-installation-error-0x87d00607/
    Take a look at your boundaries and make sure that you have one configured relative to the location of the Distribution Point that the client is trying to download content from.
    Cheers
    Damon

  • Unable to change group text name or add person to some group texts in iOS 8

    I really like the ability to change group text names as it helps me separate work group texts from personal especially when I have coworkers that have separate business phones. I'm unable to change the name of some group texts as the option is not there when I go into details. I'm also unable to add contact to the same group texts that I'm unable to change the name on. Is this a glitch or am I missing something?

    Hi CaliWingsFan,
    If you are having issues with renaming and adding users to group texts, you may want to try some things to troubleshoot.
    First, quit all running applications and test again -
    iOS: Force an app to close
    Next, I would try restarting the iPhone -
    Turn your iOS device off and on (restart) and reset
    If the issue is still present, you may want to restore the iPhone as a new device -
    iOS: How to back up your data and set up your device as a new device
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • How can I change an NC Code for a scrapped SFC

    Is it possible to change the NC COde for a scrapped sfc without changing anything else?

    Hans,
    The only place where you can edit NC data is Edit tab of NC Client if the tab is enabled. However, I doubt that it allows you to change NC Code ID but leave the rest of the collected NC data.
    Regards,
    Sergiy

  • Can you change the default code that targets a new window to change the content in a div tag instead

    I created a database for store locations.  I was able to display the list of stores.  Here though I don't want the list to show the number in front of it...  I still need to find the CSS to edit my results for this one.  However, more importantly, I don't want to open my results in a new window, I want to be able to target a DIV tag instead.
    This is the code that is created to display the list of stores.
    {module_webapps,5665,a,,,_blank,,50,,1}
    Currently it opens a blank window.  I'd like to target a div tag on the right of the list area where the store info can appear.
    Perhaps the gurus at adobe can upgrade this feature?  Target DIVs instead of new or blank windows, or using frames. Below is the screen of the links created from the DB.
    Below is the blank window that it opens.
    Would like to make it open in a div to the right of the list.  Not sure how to change to core code that was created to make that change.

    I'm doing something wrong.  I have the list showing the stores in CA
    <div class="flip" id="woodcontainer" style="width: 160px; height: 23px;">
    <h1>CALIFORNIA</h1>
    </div>
    <div class="panel">
    <script>
      $("#infochange").load("{module_webapps,5665,c,41140}"); /* this creates the list of stores in CA where #infochange is the DIV I am targeting.
    </script>
    </div>
    <br />
    The code for the DIV where I want the details to load.
    <div id="infochange"></div>
    This doesn't make sense because I need to have something in the DIV as a holder of some sort? 

  • I  just changed my passlock code and now it is not working. I don't know what went wrong, but if I put my last code is no longer recognized and so the new one. What can I do ?

    Can someone tell me how to access my iphone again?
    Last night I changed the passlock code and when I put the new one it did not recognized it. Now I am locked out of my iphone.

    You will need to try to restore your iDevice from the same computer that you most recently synced to.
    Read this: http://support.apple.com/kb/ht1212
    If you can't do the restore then you will need to try Recovery Mode.
    Read this: http://support.apple.com/kb/ht1808

  • Creation of a PO with reference to a contract - change of company code

    Hi experts,
    When a PO is made with reference to an existing contract, the company code is copied automatically from the contract into the PO.
    Do you have an idea if it's possible to modify this in the PO? So that we can choose another company code?
    Thanks,
    Michaë

    Ofcourse you can change the company code in the purchase order.
    However please check that same purchase organization is responsible for both the company codes.
    However it might give you an error that plant is not assigned to the company code.
    Therefore the best way is to create the PO without reference of that contract OR you can create a contract for the company code in PO and then create a PO with the same.

  • Change the Tax Code-  In Sales Order i have  Tax code for VAT

    In Sales Order i have  Tax code for VAT ( Condition type JIVP) it is reflecting "P4" instead of "A4".
    Where the "P4" Tax code is picking in Sales Order.
    How to change the Tax Code.
    Urgent

    Hi CHAKRI,
                     Check if the condition record is maintained with the appropriate taxclasssification.If yes, Go to sales order in change mode,then goto-header-billing-alternate taxcalssification and modify tax classification.It will pick up right tax code.
    Regards
    Ram Pedarla

Maybe you are looking for

  • Jpegs cut off

    I recently downloaded Lightroom 4. The Jpegs I exported from LR4 are cut off when I click on the full size photo after upload to the creative cloud. Anyone else dealing with this?

  • Miro Blocking Based On Date

    Hi Gurus, I am not a functional person but a technical person. But I have been asked to investigate how to block automatically while posting a MM invoice (MIRO) that relates to a PO which is 18 months old. This is similar to R Block (Qty & Price Vari

  • White balance adjustment

    When selecting neutral gray target with the white balance tool, are RGB readings on the loupe averaged values according to the scale of the loupe? Then, is the white balance adjustment made with this tool averaged for the pixels under the loupe?

  • Speeding up the drawing of spectrum

    Dear expert, I am using DIO 6533 board (PCI-32-HS) connected with my Optical Spectrum Analyzer to do data acquisition. Now I can get data out from the Spectrum Analyzer�s memory and drew the spectrum chart using the Labview application software. But

  • AppleWorks 6.2.9 won't print whole database.

    Is there a limit to how many pages a AppleWorks data base will print? I have a data base with 214 records and when I try to print the Epson C88+ printer will only print 63 of the 71 pages the data base contains. I can see all 71 pages when I'm in the