New G/L activation

< MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. >
Dear all,
We are in ECC 6.0 from past 2 yrs and we are planning to activate the new G/L as it has not been activated before.
1. I want to know the steps ,Pros & Cons and do & don't of new G/L migration from clasic G/L.
2.Is there any program which can split the closed line item in accordance with the new G/L of the pervious period (Closed or Open)and Year .
3. Whether B/S items will also be splited (closed & open) accordingly.
4. PCA is not been activated in our organisation,is it mandotary to activate the PCA for activating new G/L.
5. If so ,can i deactivate the PCA for a specific company code. We have 28 Company codes.
6.Any technical difficulties will arise while performing the migration .....If so,pls mention in details.
7.What will be the approp time for me to swithing from classic to new G/L.
8. SAP recommends 3 to 6 month before the fiscal year end the migration activities  has to be started,in that case,whether my year end closing has to happen on 31.10.08 itself and what about my posting that i have to post for the pervious fiscal year,once the New G/L is activated.How the system will treat the old entries for previous year after avctivating my New G/L?
9. We also want to split the balance of Business Area  to New Segment or PCA(if activated).
Our fiscal year is NOV-OCT.
Pls advice ....
Regards
SAP4ME

1070629 - FAQs: New General Ledger Migration
741821 Release limitations concerning SAP ERP 2004
• 756146 mySAP ERP NewGL: General information
• 779251 mySAP ERP NewGL : Parallel accounting
• 862523 mySAP ERP NewGL : new functions as of SP 10
• 890237 New GL with document splitting: Legacy data transfer
• 891144 New GL/document splitting: Risks of subsequent changes
• 918675 Basic architecture of the NewGL accounting
• 812919 mySAP ERP NewGL : migration
• 826357 Profit Center Acc. and NewGL in mySAPERP
• 852971 SEM-BCS: Integration with the NewGL
• 820495 mySAP ERP New GL: Data volume and parallel ledgers
http://help.sap.com/saphelp_erp60_sp/helpdata/en/2d/830e405c538f5ce10000000a155106/frameset.htm

Similar Messages

  • Create a new group in Active Directory ?

    Hello,
    I'd like to create a new group in Active Directory. Can somebody show me a sample code please ?
    Thanks.

    Someone should show you how to perform a search. There's a sample in this forum.
    http://forums.sun.com/thread.jspa?threadID=623860

  • Need Help creating new user in Active Directory

    I am trying to create a new user in active directory via a java application. I have included the code that I am using. I am able to successfully bind to Active Directory. I have been able to change passwords, and delete users, but I have not been able to create a user.
    ldapHost : "mta101.DOM101.CEL.ACC.AF.MIL"
    domainName: "dc=dom101,dc=cel,dc=acc,dc=af,dc=mil"
    existing account: CN=Brett K. Humpherys,OU=Users,OU=CEL
    I get the following error on the createSubcontext statement:
    javax.naming.directory.InvalidAttributeValueException: [LDAP: error code 21 - 00000057: LdapErr: DSID-0C09098B, comment: Error in attribute conversion operation, data 0, v893 ; remaining name 'CN=test1,OU=Users,OU=CEL'
    I have commented out the password portion and change the ObjectCategory to a 32 and get the same error.
        public GblStatus createAccount7(DbaDb dbConn,
                                        String jsrcName,
                                        String personName,
                                        String username,
                                        String password)
          Hashtable ldapEnv = new Hashtable(11);
          ldapEnv.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
          ldapEnv.put(Context.PROVIDER_URL, "ldap://" + this.ldapHost + ":636");
          ldapEnv.put(Context.SECURITY_AUTHENTICATION, "simple");
          ldapEnv.put(Context.SECURITY_PROTOCOL, "ssl");
          ldapEnv.put(Context.REFERRAL, "ignore");
          ldapEnv.put(Context.SECURITY_PRINCIPAL,"cn=" + this.adminAcct + ",cn=users," + this.domainName);
          ldapEnv.put(Context.SECURITY_CREDENTIALS, this.adminPwd);
           try
            // Create the initial context
            DirContext ctx = new InitialDirContext(ldapEnv);
            BasicAttributes attrs = new BasicAttributes();
            BasicAttribute ocs = new BasicAttribute("objectclass");
            ocs.add("top");
            ocs.add("person");
            ocs.add("organizationalPerson");
            ocs.add("user");
            attrs.put(ocs);
            BasicAttribute gn = new BasicAttribute("givenName", "test1");
            attrs.put(gn);
            BasicAttribute sn = new BasicAttribute("sn", "");
            attrs.put(sn);
            BasicAttribute cn = new BasicAttribute("cn", "test1");
            attrs.put(cn);
            BasicAttribute uac = new BasicAttribute("userAccountControl", "66048");
            attrs.put(uac);
            BasicAttribute sam = new BasicAttribute("sAMAccountName", "test1");
            attrs.put(sam);
            BasicAttribute disName = new BasicAttribute("displayName", "test1");
            attrs.put(disName);
            BasicAttribute userPrincipalName = new BasicAttribute
                                          ("userPrincipalName", "[email protected]");
            attrs.put(userPrincipalName);
            BasicAttribute instanceType = new BasicAttribute("instanceType", "4");
            attrs.put(instanceType);
            BasicAttribute objectCategory = new BasicAttribute
                      ("objectCategory","CN=User,CN=Schema,CN=Configuration," + domainName);
            attrs.put(objectCategory);
            String newVal = new String("\"password\"");
            byte _bytes[] = newVal.getBytes("Unicode");
    byte bytes[] = new byte[_bytes.length - 2];
    System.arraycopy(_bytes, 2, bytes, 0, _bytes.length - 2);
    BasicAttribute attribute = new BasicAttribute("unicodePwd");
    attribute.add((byte[]) bytes);
    attrs.put(attribute);
    ctx.createSubcontext("CN=test1,OU=Users,OU=CEL", attrs);
    ctx.close();
    catch (NameAlreadyBoundException nex)
    System.out.println("User ID is already in use, please select a different user ID ...");
    catch (Exception ex)
    System.out.println("Failed to create user account... Please verify the user information...");
    ex.printStackTrace();
    return new GblStatus();
    Any help would be much appreciated.

    Hi .,
    me too got up with same problem., can anyone help me.??
    Someone help me to create attributes in AD using LDAP
    package LDAPpack;
    import javax.naming.*;
    import javax.naming.directory.*;
    import javax.naming.ldap.InitialLdapContext;
    import javax.naming.ldap.LdapContext;
    import java.util.Hashtable;
    class CreateAttrs {
    public static void main(String[] args) {
         Hashtable env = new Hashtable();
              env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
              env.put(Context.PROVIDER_URL, "ldap://10.242.6.166:389/");
              env.put(Context.SECURITY_AUTHENTICATION,"simple");
              env.put(Context.SECURITY_PRINCIPAL, "CN=cname,OU=Users,OU=Dealer,OU=Community,DC=test2,DC=org");
                        env.put(Context.SECURITY_CREDENTIALS, "password-1");
              LdapContext ctx =null;
              try {
                   //ctx = new InitialLdapContext(env,null);
                   try {
    ctx = new InitialLdapContext(env,null);
                   catch(NamingException e) {
    System.out.println("Login failed");
    System.exit(0);
    if(ctx!=null){              
    System.out.println("Login Successful");
    byte[] buf = new byte[] {0, 1, 2, 3, 4, 5, 6, 7}; // same data
         // Create a multivalued attribute with 4 String values
         BasicAttribute oc = new BasicAttribute("objectClassNew", "topNew");
         oc.add("personNew");
         oc.add("organizationalPersonNew");
         // Create an attribute with a byte array
         BasicAttribute photo = new BasicAttribute("jpegPhotoNew", buf);
         // Create attribute set
         BasicAttributes attrs = new BasicAttributes(true);
         attrs.put(oc);
         attrs.put(photo);
         Attributes attrs1 = ctx.getAttributes("CN=cname,OU=Users,OU=Dealer,OU=Community,DC=test2,DC=org");
    System.out.println(attrs1);
    Context result = ctx.createSubcontext("CN=cname,OU=Users,OU=Dealer,OU=Community,DC=test2,DC=org", attrs);
    //i got error here; i attach the error below.
         ctx.close();
    System.out.println("close");
         catch(NamingException e){
              e.printStackTrace();
    ERROR:
    Login Successful
    javax.naming.directory.NoSuchAttributeException: [LDAP: error code 16 - 00000057: LdapErr: DSID-0C090B38, comment: Error in attribute conversion operation, data 0, vece
    ANYONE HELP ME PLS.
    Edited by: vencer on Jun 19, 2008 12:38 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • SAP SD benchmark-check if New GL is active in client 900

    hi, guys
    Log on as SAP_PERF000 with password obelix and language EN to client 900.
    use transaction /nSE38 To check if New GL is active in client 900
    "You are not authorized to use transaction SE38"
    any ideas?
    regards

    now in client 900 which sap account should login with pw obelix and execute su01 and enter user " SAP_PERF"
    hit "change" , add the profile "SAP_ALL" to the users profile tab, save and exit.
    i used SAP* and SAP_ADMIN to login, and execute su01. "You are not authorized to use transaction SU01"
    regards

  • Error activating of new data to active data in DSO?

    hi friends,
    in DSO i want move data from new data to active data , i selected request num and trying to activate, i am getting error, how can i solve it.
    Activation of Data / 24.07.2007 / 18:56:08
    Time limit exceeded. No return of the split processes
    Resource error. No batch process available. Process terminated
    Resource error. No batch process available. Process terminated
    SID Generation
    Resource error. No batch process available. Process terminated
    Preprocessing and Postprocessing / 24.07.2007 / 19
    Activation of M records from DataStore object DSO_ANI terminated
    ple let me know how can i solve
    regards
    suneel.

    Hi Suneel,
    I think this problem remains unanswered.
    The issue behind this problem is, during parellel activation the child jobs acknowledge the parent job about status. If the child job takes long time to read data from active data table, then it times out and fails.
    Check the primary index on Active data table and it should be missing in your case. See the se11 index or db02 missing indexes. That is the reason that causes time out. Rebuild the primary index by asking your basis folks and repeat the activation. It should succeed.
    Thanks,
    Sri.

  • Number of tables in New Dataclass is 0 even though new tables are activated

    Hi friends,
    I created a new data class by creating new table space.
    And i assigned 3 tables to this new Dataclass and activated successfully.
    But when i got to STO4 or DBACOCKPIT tcode and see number of tables under 'DATACLASS' its showing as 0.
    I checked table which stores technical settings of table -DD09L
    under new dataclass it has the 3 tables.
    Why is it that this is not updated thru ST04 and DBACOCKPIT?
    Any inputs on this is highly appreciated.
    Regards,
    Simha

    problem resolved

  • Ios7 - is there a way to shut off or clear the new photo stream activity?

    Ios7 - is there a way to shut off or clear the new photo stream activity?  I am not asking how to shut off photo streams, just would like to clear or shut off the new 'social' activity portion of photo stream

    Thank you, but that is not it, and I am talking about the iCloud photo streams.  I know how to modify who can see or post to a shared stream, that's extremely easy. 
    What is an issue is the new 'social' style activity that summarizes all of the shared streams.  It now posts/summarizes them in an activity thread in 'streams', called "Activity"
    I would like to shut that off or be able to clear that view.  While I enjoy the occasionally funny pics I receive from old college friends in shared streams, I don't want that to show up in a 'cover photo' when I go to pull up pics in front of someone.

  • Trouble with CS2 on Mac G5 with new user accounts - activation issues?

    My system is a Mac G5 Quad running OS 10.5.8, and I have the CS2 premium suite. When I bought the machine I did everything under one user account. Several months ago the account started giving me a few problems, and my circumstances changed, so it made sense to create new, separate user accounts on my Mac for work and personal use.
    Recently I offered to help a friend out with some design work and tried to start InDesign CS2 from my new business account. I was immediately presented with a demand for a serial number. I looked it up and entered it. An error popped up that said
    "Invalid Serial Number
    The serial number you provided is not valid.
    Please check your serial number and re-enter it."
    I tried a couple more times, making sure I had it right. No success.
    I gave up and launched my original user account, launched InDesign and started the project. I set the document up and tried to save it. InDesign displayed an error stating  "Cannot save "Untitled-1" under a new name. The file "DBTmp[bunch of numbers]" is damaged (error code:0"  Each time I relaunched and tried again the temp filename was different.
    So now I suddenly am without one of my primary tools and have no idea how to get it back. I am guessing this is a problem with the activation mechanism, but can't find many resources on this topic. It would appear that my attempt to launch InDesign from my new account triggered a piracy protection code or something.
    I am typing this while waiting on hold for Adobe support. 25 minutes and counting...
    Thanks.
    Paul

    Bob, Thank you so much!
    I already have Acrobat 8.2.4, so I didn't start installing 8.2.2. However, I started working through solution 2 and discovered my new business user account was denied access to /Library/ApplicationSupport/Adobe/TypeSpt/Unicode/Mappings/.  I changed the permissions on that directory to give my account read access, and InDesign fired up like normal. I didn't even need to replace the files.
    Thanks again for the assistance.
    It's interesting to learn CS2 is not supported in my OS version. It works fine (until this).
    Paul

  • How to add a new schema in active directory by jndi?

    I can add new objectclass schema and new attribute into eDirectory from JNDI. But I failed doing the same to active directory. I search all topic in this forums and seems like there is no such answer. So for active directory, the only way to add new schema is by using MS MMC + AD schema snap-in?

    You can update the schema via LDAP. Any tool that uses LDAP, such as Active Directory Services Interface (ADSI), Java/JNDI, LDAP Data Interchange Format (LDIF) can be used. You are not restricted to the Active Directory Schema Management snap-in.
    I strongly recomend that you read the following article http://windowssdk.msdn.microsoft.com/en-us/library/ms677995.aspx as schema extensions are not to be undertaken lightly.
    Also, if you are extending the schema, DO NOT use other organization's schema OID's. Imagine how directories would become inoperable because you defined hat size as an integer value with an OID of 1.2.3 and someone else defined Social Security Number as a string with an OID of 1.2.3 ! You can obtain your own OID branch from either Microsoft (http://msdn.microsoft.com/certification/ad-registration.asp) or from a standards organization such as ANSI.
    I'm kind of hoping that seeing as though you have mentioned that you have extended the schema for e-Directory, that you understand LDAP schemas and that you have your own valid OID. Do not use my shoe size OID !
    The following snippet illustrates how to extend the schema using JNDI.....
    String attrName = "cn=ms-ShoeSize,cn=Schema,cn=Configuration,dc=antipodes,dc=com";
    LdapContext ctx = new InitialLdapContext(env,null);
    Attributes attr = new BasicAttributes(true);
    attr.put("cn","ms-ShoeSize");
    attr.put("objectClass","attributeSchema");
    attr.put("ldapDisplayName","msShoeSize");
    attr.put("isSingleValued","TRUE");
    attr.put("attributeID","1.2.840.113556.1.4.7000.141");
    attr.put("attributeSyntax","2.5.5.9");
    Context newattr = ctx.createSubcontext(attrName,attr);Having created a new attribute, you could then either add it to an existing class, or create another abstract class, add it to the new abstract class, and add the the new abstract class as an auxilliary class to an existing structural class. For example create a new auxilliary class called "clothes Sizes", add the attribute "Shoe Size" as a mayContain attribute, and then add "Clothes Sizes" as an auxilliary class to inetOrgPerson.
    Note that you need to wait for the schema cache to refresh, before adding attribute or class definitions to one another, and before instantianting new objects with the new classes & attribute definitions. You can either wait for teh schema cache to refresh itself, or you can force a refresh by writing the value of 1, to the attribute "schemaUpdateNow" on the RootDSE.
    As I mentioned at the start of this response, I personally prefer to use LDIF, simply because it enables end-users/customers to review the schema extensions and understand their potential impact before applying them. A sample that accomplishes the above would look something like:dn: CN=ms-ShoeSize,CN=Schema,CN=Configuration,DC=Antipodes,dc=com
    changetype: add
    objectClass: attributeSchema
    cn: ms-ShoeSize
    ldapDisplayName: msShoeSize
    attributeID: 1.2.840.113556.1.4.7000.141
    attributeSyntax: 2.5.5.9
    isSingleValued: TRUE
    dn:
    changetype: modify
    replace: schemaupdatenow
    schemaupdatenow: 1
    dn: CN=inetOrgPerson,CN=Schema,CN=Configuration,DC=Antipodes,dc=com
    changetype: modify
    add: mayContain
    mayContain: mSShoeSize
    dn:
    changetype: modify
    replace: schemaupdatenow
    schemaupdatenow: 1
    -

  • Looking for quick creation of a new contact during activity processing

    We are looking for a quick way to create a new contact during the process of activity management.  Once I have selected my business partner and then I search for a contact, if the contact I need does not exist yet there are several long involved ways to go create the new contact.  Several people from SAP have alluded that there is an add button that should be available on the business partner central search window that comes up when you look for contacts but we have no add button.  Does someone know if the add button becomes available later?  We are on CRM 5.0  - has anyone customized a way to add a contact here without having to go into the account application relationship tab.  We are coming off of Mobile Sales where there is a pop up window to add a contact. We need to replace this functionality.

    Hello Pascale,
    "Follow-up" button is present to enable a quick creation of follow up.
    That is end user can just input those limited fields, and click on this button to create the document without going into the detail.
    And at the same time, standard IC do provides another link to the detailed follow up documents to enable user add more detail.
    The link "Follow-up Details" can realize such purpose and should be the one you are asking for.
    The steps are:
    - select the transaction type in the drop down;
    - click on "Follow-up Details" link, this lead to another page of the detailed activity creating, only at this time the activity is being created;
    - click on the Back button without save, you will return to the previous screen, and get the link in Activity Clipboard for future access;
    Hope I have understood your requirement correctly!
    Hongyan

  • Profit Center not updated in J1IEX & New GL  is activated.

    Hi All,
    Good Morning to Every body
    We have activated  New GL concept making Profit Center mandatory. Thereafter, we have made a Import Purchase Order. The material for which import is being made is given the cost center in the master data. Then MIGO has been done. Accounting entry is picking up the Profit center filed automatically. Then MIRO is done and accounting entry is picking up the Profit Center filed automatically. When we do J1IEX " Post Excise Invoice" then system is not picking up the Profit Center Field automatically and is displaying an error while saving. System is saying" No profit center is updated for line item 001".
    That means, system is not picking up the profit center from the material after MIGO into J1IEX while posting excise invocie.
    Please some one help me as to how we should capture the Profit Center field automatcially or mannually so that Excise Invoice can be posted.
    Thanks in advance. Useful answers will be awarded with points.
    Thanks & Regards
    Rishikesh

    Hello Rishikesh,
    Please use the "Capture and post" option in migo for exicse invoice if you are using New G/L with profit centre.
    Regards

  • ICR: Does ICR require New G/L Activation?

    I've been prototyping ICR in a SBX enviroment with Leading Ledger activated. There was some talk of using the ICR tool for reconciliaitons before the New G/L is activated.
    Is leading ledger required for ICR or can you specify any 'sender' ledger in FBICIMG and have the program work fine. What other considreations are there to be aware of before running ICR (if possible) without the Leading Ledger?
    Thanks,
    John Scime

    Hello John,
    If you do not have NewGL activated in the sender system or do not need split information from NewGL then you should not enter a sender ledger for open items.
    Best regards,
    Ralph

  • Create new transaction (Business Activity) and assigned to user Problem

    Dear sir,
    We already have the business activity with in T-code : CIC0, The transaction is  ZACT1 and assigned to user group1 .  It's working fine. However when I copy something from transaction ZACT1 and create to be T-code : ZACT2 . and assigned user group2.  There is the problem that when log on to CIC0 . It is the authorization from for transaction ZACT1.  WHen I go to su53
    it need to have the authoriazaiton on Business transaction type: ZACT1
    Please kindly advise.
    Thank you and best regards,
    Vimol

    When you create new transaction variant, original transaction remains as it is. During creation of transaction variant, when you go to one by one screen, screen variants are created. It uses variant name and can be see on each screen on the top.
    Once you complete trasnaction, you start using this transaction variant instead of original transaction. In SHD0, there is button on the top 'assign screen variants' which allows you to assign all screen variants created above. You can refer help file which i think has procedure to do this.

  • Create new layer after active layer

    Using scriptlistener I can create a new layer called "newlayer" after the active layer. So far so good.
      var id197 = charIDToTypeID( "Mk  " );
      var desc49 = new ActionDescriptor();
      var id198 = charIDToTypeID( "null" );
      var ref41 = new ActionReference();
      var id199 = charIDToTypeID( "Lyr " );
      ref41.putClass( id199 );
      desc49.putReference( id198, ref41 );
      var id200 = charIDToTypeID( "Usng" );
      var desc50 = new ActionDescriptor();
      var id201 = charIDToTypeID( "Nm  " );
      desc50.putString( id201, "newlayer" );
      var id202 = charIDToTypeID( "Lyr " );
      desc49.putObject( id200, id202, desc50 );
      executeAction( id197, desc49, DialogModes.NO );
    However, without the script listener we have
      var layerRef = app.activeDocument.artLayers.add()
      layerRef.name = newlayername
      layerRef.blendMode = BlendMode.NORMAL
      // Move the new layer after the current layer
      layerRef.moveAfter(app.activeDocument.artLayers[layerIndex])
    The moveAfter command needs an index, which would mean looping though all the layers till to find the active layer (since we can't access that throughthe DOM). This seems a bit long winded to me. Or am I missing a trick here?

    Well I would just use the scriptlistener code but if you don't want to for some reason you should make a reference to the activeLayer before add the new layer. Then use that reference as the moveAfter argument. The moveAfter method needs a layer object not a layer index. You need the index only because you are trying to supply that layer object by index.
    layerRef.moveAfter(someLayerRef);
    Also ( not that it really matters ) when scripting was first added there were several methods for moving a layer, moveAfter() was one of those. Those methods were combined into one method and the old methods are no longer documented in the javascript reference. So below is the documented way to move the layer.
    layerRef.move(someLayerRef, ElementPlacement.PLACEAFTER);

  • What's New in Cisco Active Advisor?

    Hello folks,
    A new version of CAA is up, with a bunch of new features and bug fixes. Here’s a glimpse of the new features added recently.
    1) Delete devices
    Devices on your inventory list can now be deleted.
    Simply select the devices to delete and click the Trash icon at the top of the list.
    You will be asked to confirm your delete request.
    2) Enabled Features
    Quickly discover your devices’ enabled features using CAA! All IOS devices that enter your inventory list are now scanned for their enabled features.
    In the device’s window, you’ll find a new tab named ‘Enabled Features’
    Clicking this tab will show all the features that are enabled on your IOS device, ordered by Technology and Features.
    Clicking on the various Technology names will open up a new window that shows all available features under that category.
    3) Line cards and modules
    Good news! Now line cards and modules on your switches and routers will be discovered and displayed in CAA.
    In the inventory list, some devices will have the line card and modules icon
    This indicates that CAA has discovered line cards or modules on your chassis.
    Clicking this icon will lead you to the list of discovered modules. There you will see its status information, as well as relevant lifecycle data.
    When you go into the device overview window, click the same icon to see the line cards and modules list.
    Please note that there is a color code to the line cards and modules icon.
    Red indicates that CAA has found lifecycle alerts on one or more of your modules
    Blue indicates that no lifecycle alerts have been found.
    Please let us know what you think of these feature additions and of Cisco Active Advisor in general!
    We'd love to hear your thoughts and feedback!
    Thanks,
    The CAA Team

    Bug fixes.
    Type "ios 6.0.2" into the search bar at the top of this page by Support and read for yourself.

Maybe you are looking for

  • How can I tell if an executable is already running?

    I'm writing a rather large LabWindows/CVI program, and occasionally will triple-click on the desktop icon, starting two copies of it. Is there some way to tell if a program is already running, so that the second copy can shut itself off? Solved! Go t

  • Display of total in Main window in Sapscript

    Hello guys, can you please help me with the following? Working with Standard transaction F.2c standard program RFDUZI00 whereby I have to make a copy of the standard Sapscript F_DUZI_01 for a specific company code and modify its layout. Requirement i

  • Re: Is it possible to completely recover VistaOS using only Recovery DVD?

    Hidden WinRE partition was deleted by mistake but I still got the original Recovery DVD for my A200. Is it possible to completely recover VistaOS without the WinRE partition, using only Recovery DVD?

  • ME57 add icon for access to MD04

    Dear. I need to add a new icon in ME57 layout in order to access to MD04 for every purchase requisition material. Do you know exit/enhancement for obtain this ? Thanks.

  • Challenging Question : ABAP TRANSFER statement Issue

    Hi SAP Gurus, I am using statment TRANSFER  g_str  TO  p_unixf   LENGTH 512. to write the  <i>g_str</i>  to  UNIX  file  <i>p_unixf</i> I have some <b>BLANK</b> spaces at the end of each record which I want to retain in the UNIX FILE. But TRANSFER st