Error Stack in Expert Routine, Infos about Object Log

Hi all,
currently I try to find some information about using the error stack in combination with an expert routine. So far I know that I have to use the Object Log, which is already in place in my code for monitor messages.
LOOP AT itab_input INTO wa_input.
IF sy-subrc <> 0.
        CLEAR msg.
        msg-msgid = 'MY_CLASS'.
        msg-msgty = 'E'.
        msg-msgno = '002'.
        msg-msgv1 = v1.
        msg-msgv2 = v2.
        msg-msgv3 = v3.
        APPEND msg TO t_msg.
        " ??? Write wa_input to error stack???
        CONTINUE.
      ENDIF.
ENDLOOP.
Does somebody know how I could append wa_input to the error stack? Or does somebody have a good documentation about Object log?
Thanks a lot!
Nita

Good Morning,
thanks a lot for your input. I tried to implement this function, but I do not know where I could get the Segment Id from.
Do you know what i_use_crosstab is used for? I think i_with_message should be set to 'X' if I want to write wa_input-record it to the error stack.
CALL METHOD log->verify_record
          EXPORTING
            i_use_crosstab  = ''
            i_segid         = lv_segid
            i_record        = wa_input-record
            i_with_message  = 'X'
          RECEIVING
            r_skip          = lv_skip
          EXCEPTIONS
            too_many_errors = 1
            not_in_crosstab = 2
            OTHERS          = 3.
From semantic point of view the coding should do following:
- To avoid a second loop in my expert routine it should only check the current src record. If this is wrong, which I already determine in my coding, it should write the record in the error stack. If it is correct, it should check whether there are already records with the same semantic key in the error stack and if yes, add it also to it.
- I assume that I have to delete this record manually from my src. package than.
Cheers
Nita

Similar Messages

  • Info about the log traces in Activity Data Collector

    Hi,
    I have configured the activity data collector by setting the following properties in ADC and restarted the service
    Activate Data Collection :true
    Additional File Formats: --(not set anythng left blank)
    Base File Name: Portal Activity
    Directory Name: portalActivityTraces
    File Encoding : UTF-8
    Hour in the day to close all files, in GMT : 0
    Main File Format : %Orfo.t(dd-MM-yyyy HH:mm:ss,GMT+5.5)%%Stab%%Orfo.ct%%Stab%%Orfo.in%%Stab%%Orfo.un%%Stab%%Orfo.bt%%Stab%%Orfo.pu%%Stab%%Orfo.rh(referer)%%Snl%
    Max Buffer size :500KB
    Max File Size : 10240 KB
    The files are created in the folder called "Portal Activity Traces" But the issue is with the name of the log files getting created
    Since i have not set any additional file formats, The log files consist of main file formats
    the file names are like this 
    portalActivity_29893750_1254305061537.txt.open in this
    wat  does the time stamp "1254305061537" refer? Plz explain
    some files are of type text document and some are of type "open" wat does tis mean?
    If i set t "Hour in the day to close all files"
    to 0 wen does it write the log files? Is it at 12? after that will it create a new file?
    n in the main file format i have set the time to GMT5.5 (since IST is GMT5.5) but im not getting the proper time format
    Plz help me out
    Thanks in Advance
    Regards,
    Sowmya
    Edited by: Sowmya B on Sep 30, 2009 1:43 PM

    Hi Prasanna,
    Thanks for the reply.
    Actually there are about 3 to 4 files which are of type .open and they have created long back.Are those files still getting populated.If we set the "hour to close all files" to 0 it should close the open files and create the new(fresh) files for the next day right?
    According to the documentation in help portal, "Files may be closed before reaching this limit(Max File Size), as all files are closed at the hour specified in the Hour in the day to close all files property."
    Then how come some old files are still getting populated?
    Midnight means wat time in particular? Plz explain
    About timestamp is it the time the file was created in some format?
    If anyone knows plz explain the format of timestamp
    Edited by: Sowmya B on Sep 30, 2009 2:13 PM

  • Empty Error Stack Message

    When trying to edit work area rules in the RON I am getting the following message:
    "The error stack that you are attempting to display is empty. There is no message to display."
    I have tried the same actions on 5 different machines, on three there was no error message and on two I got the empty error stack message. On each machine I logged into RON using the same account. The rule that I am trying to add is an include_folder rule. The message pops up when I click on the browse for the folder location.
    We are using Oracle 9i Developer suite 9.0.2.
    Thanks
    Pam

    Pam,
    This looks like <Bug:1480975>. This is being investigated at the moment, but appears to be an issue with saving workarea
    details to the local windows registry, thus it works for some users on some machines and not for others.
    David Brown
    SCM Product Management

  • Printing java layer error stack in a custom module!--Experts, please reply!

    Hi to all OAF experts,
    We are in a process of making a fully customized module, which is integrated with OM and other modules, and takes the place of Quoting module. There is beasically a custom module which takes the place Quoting module in Apps in Order to cash cycle. Now in the final page of this module where we submit the quote, we need to through the entire Java layer error stack, similar to what is done in stanadard quoting module. There they use AOLMessageManager class for this purpose. But since quoting module is in JTT/JTF framework and our custom module is in OAF , we were looking for alternatives.
    I was going through oaf doc and i found a class called OAExceptionUtils, which contains a method called processAOLJErrorStack(ErrorStack)
    As per the documentation it says --"Returns an OAException representing the error stack populated by the Oracle Applications user session context AppsContext. ", that is exactly what we need. But , when i use this method, i get error stack as null! Any idea y this is happening? Any alternative how to get this done!
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Mani,
    What is the source (technology source) of the error?
    This is OAF.In a way we have developed entire quoting module from scrath .I believe you would be embedding the Quoting (JTF) pages on to your custom OAF pages. This is similar to how it is implemented in the Standard Sales module.
    We are using same quoting APis to create quote. Our code only goes in JTF tech only while entering in and of configurator.Is your requirement to read the java error stack (JTF Code) from the standard quoting application (embedded in your custom OAF Page) in your Custom page's controller (OAF Code)?
    Yes, we can create quotes from quoting as well as from our custom table,the only difference is that if you create aquote from quoting, it does not updates our custom tables. We want to throw the same java error which quoting throws, while submitting a code in our oaf controller. It throws even Order management error messages!Any idea how we can go about this..!
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • N unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    some one can help me please
    i have no idea what i must to do.
    an unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    The Exception Handler gave all the info that you need. No need to print the whole stack trace.
    The exception handler says
    Exception Details: java.lang.IllegalArgumentException
    TABLE1.NAME
    Look in the session bean (assuming that is where your underlying rowset is). Look in the _init() method for statements similar to the following:
    personRowSet.setCommand("SELECT * FROM TRAVEL.PERSON");
    personRowSet.setTableName("PERSON");
    What do you have?

  • Error while activating a routine  "no object list"

    hi
    I am getting a error while activating a routine Rv50c601
    "There is no object list for INCLUDEs"  Please suggest on the error and resoulution
    regards
    Nishant

    Try running program RV80HGEN.
    Regards,
    Naiimesh Patel

  • Error in Expert Routine

    Hello Please I need help, I applied expert routine in my transformation in BI 7.0 and i get error, this is the code i used
    Data : wa_SOURCE_PACKAGE  type tys_SC_1.
        data : wa_RESULT_PACKAGE  type tys_TG_1.
        loop at SOURCE_PACKAGE into wa_SOURCE_PACKAGE .
          move wa_SOURCE_PACKAGE-/BIC/ER_ENUM to wa_RESULT_PACKAGE-/BIC/ER_ENUM.
          move wa_SOURCE_PACKAGE-/BIC/ER_EAGE to wa_RESULT_PACKAGE-/BIC/ER_EAGE.
          move wa_SOURCE_PACKAGE-/BIC/ER_ENAME to wa_RESULT_PACKAGE-/BIC/ER_ENAME.
          move wa_SOURCE_PACKAGE-/BIC/ER_ESEX to  wa_RESULT_PACKAGE-/BIC/ER_ESEX.
          wa_RESULT_PACKAGE-/BIC/ER_ESAL = '2000'.
          append RESULT_PACKAGE to wa_RESULT_PACKAGE.
        endloop.
    Error Message that i get :
    E:"WA_RESULT_PACKAGE" is not an internal table - the "OCCURS n"
    specification is missing.
    Please can someone assist me with a solution to this.

    ERROR IN APPEND STATEMENT .
    CHANGE IT TO
    append WA_ RESULT_PACKAGE  to RESULT_PACKAGE.
    WORK AREA SHOULD BE APPENDED TO RESULT_PACKAGE

  • HT5085 Gathering Info About your iTunes Library - Keep getting Network error

    I bought iTunes Match yesterday, and so far have not been able to use it.
    It gets to Stage 1: Gathering Info About Your iTunes Library and makes progress, but right at the end an error box appears saying:
    "We could not complete your iTunes request. The network connection was reset.
    Make sure your network connection is active and try again"
    Well I know the network connection is active as I was able to be charged for iTunes Match and have had no problems making other purchases. I went to Advance > Run Diagnostics Tests from Help in iTunes and ran the Network Connectivity Diagnostics and it reported no problems.
    Now I know how much Apple hate giving back refunds, but if people can't help, does anyone know how I can get my money back? If I click "Report a Problem" it simply takes me to the help pages. I tried contacting support but I received an email saying they can't help.
    I'm getting quite frustrated now, so I'm reaching out and hoping someone can help me?
    I've copied the diagnostic results below:
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    Dell Inc. Dell System XPS L502X
    iTunes 10.6.1.7
    QuickTime 7.7.2
    FairPlay 1.14.37
    Apple Application Support 2.1.7
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.1.1.4
    Apple Mobile Device Driver 1.59.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.5.502
    Gracenote MusicID 1.9.5.115
    Gracenote Submit 1.9.5.143
    Gracenote DSP 1.9.5.45
    iTunes Serial Number 003CA7C40B1E98E0
    Current user is not an administrator.
    The current local date and time is 2012-05-18 20:20:20.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce GT 540M 
    Intel Corporation, Intel(R) HD Graphics Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: bb5c046694c1f4c590202360da9f2bc5
    iPodService 10.6.1.7 (x64) is currently running.
    iTunesHelper 10.6.1.7 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:          {444AF521-4D63-434F-AC33-8F05DA9C6C64}
    Description:          Microsoft Virtual WiFi Miniport Adapter #2
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name:          {4F46CBF3-C53C-4615-AF14-B46B9785D100}
    Description:          Microsoft Virtual WiFi Miniport Adapter
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name:          {6D3CAB28-0C0B-4701-A440-B1A90BE75551}
    Description:          Dell Wireless 5540 HSPA Mini-Card Network Adapter
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          No
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name:          {8C130DAB-E810-4FA6-8946-1600FFE0DB2F}
    Description:          Intel(R) WiFi Link 1000 BGN
    IP Address:          192.168.1.69
    Subnet Mask:          255.255.255.0
    Default Gateway:          192.168.1.254
    DHCP Enabled:          Yes
    DHCP Server:          192.168.1.254
    Lease Obtained:          Fri May 18 20:01:40 2012
    Lease Expires:          Sat May 19 20:01:40 2012
    DNS Servers:          192.168.1.254
    Adapter Name:          {B32D9395-8937-42EC-BC5F-352D07958EDF}
    Description:          Realtek PCIe GBE Family Controller
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Active Connection:          LAN Connection
    Connected:          Yes
    Online:                    Yes
    Using Modem:          No
    Using LAN:          Yes
    Using Proxy:          No
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2012-05-18 20:14:07.

    @ deggie, I wasn't threatening ANYONE. I was simply saying how frustrating this has become, seeing how I have been trying on my own to figure this issue out for more then a month with no results. Like I said in the beginning, I have not used any other account to purchase apps or other products on my phone. I have only ever used one account. There are 23 apps that are saying they can't sync. It directs me to authorize the computer, which I do but it doesn't change the outcome. If I proceed, I lose those 23 apps correct? Do I also lose all my text messages saved, and other things such as documents in the "notes"?

  • How to populate the Error stack during error records in field level routine

    hi,
    I am capturing the error records in Field level routine in transformation. now i want these records to reflect in error stack.
    i am using 'Append monitor-rec to MONITOR' at the moment but i cant see any records in error stack.
    but when i am using the same statement in start routine i am getting records in error stack.
    can anyone please help as to how can i populate error stack through field level routine?

    Hi,
    Try to do it in the end routine instead of the field routine.
    It should work.
    Regards,
    Joe

  • Looking for infos about error code in Sun Java Directory Server 6.3.1.1.1

    Hi,
    I'm using Sun-Java(tm)-System-Directory/6.3.1.1.1 on Solaris 9 with two server configured in multi-master replication
    For a few time I receive those warning in the error logfile :
    [14/May/2012:06:18:40 +0200] - WARNING<5384> - Entry - conn=-1 op=-1 msgId=-1 - Entry error Convert LDIF entry into LDAP entry, fast method. Error: non-contiguous deleted attribute type for "myPasswordRetryCount"in entry dn="uid=nabcdycn, ou=People, dc=example,dc=com"
    [14/May/2012:06:18:40 +0200] - WARNING<5384> - Entry - conn=-1 op=-1 msgId=-1 - Entry error Convert LDIF entry into LDAP entry, fast method. Error: non-contiguous deleted attribute type for "myPasswordRetryCount"in entry dn="uid=nabcdycn, ou=People, dc=example,dc=com"
    [14/May/2012:06:19:11 +0200] - WARNING<5384> - Entry - conn=-1 op=-1 msgId=-1 - Entry error Convert LDIF entry into LDAP entry, fast method. Error: non-contiguous deleted attribute type for "myPasswordRetryCount"in entry dn="uid=nefghzer, ou=People, dc=example,dc=com"
    [14/May/2012:06:19:11 +0200] - WARNING<5384> - Entry - conn=-1 op=-1 msgId=-1 - Entry error Convert LDIF entry into LDAP entry, fast method. Error: non-contiguous deleted attribute type for "myPasswordRetryCount"in entry dn="uid=nefghzer, ou=People, dc=example,dc=com"
    [14/May/2012:06:20:44 +0200] - WARNING<5384> - Entry - conn=-1 op=-1 msgId=-1 - Entry error Convert LDIF entry into LDAP entry, fast method. Error: non-contiguous deleted attribute type for "myPasswordRetryCount"in entry dn="uid=nijklkkh, ou=People, dc=example,dc=com"
    [14/May/2012:06:20:44 +0200] - WARNING<5384> - Entry - conn=-1 op=-1 msgId=-1 - Entry error Convert LDIF entry into LDAP entry, fast method. Error: non-contiguous deleted attribute type for "myPasswordRetryCount"in entry dn="uid=nijklkkh, ou=People, dc=example,dc=com"
    and I would like to know what's going up and what I should do, so in case somebody have some infos about it, I would be very interrested.
    I'm trying to find a way of veryfing fragmentation of the backend, but not sure about this.
    TIA

    Looks like the attribute sunIdentityServerDiscoEntries is defined twice in the schema. Run the following and see where it is defined for the second time.
    # cd /var/opt/SUNWdsee/dsins1/config/schema
    # grep -w sunIdentityServerDiscoEntries *.ldif | grep -iv objectclasses
    Edited by: etst123 on Mar 3, 2009 1:28 PM

  • Getting info about a particular property of an object....

    Hi ,
    How to get info/help about a particular property of an object...???? I mean that if all the properties of an object displayed in the property palette(for example an iterator) how to get info about and only about RefreshCondition property , without having to activate the whole on-line help and search it in there.....????? Pressing F1 , on it , displays general help about the Property Inspector....
    NOTE : I use JDev 10.1.3.
    Many thanks ,
    Simon

    If you'll look carefully at the property inspector window you'll notice two bars at the bottom - if you pull them up then the second one contains help text for each property you stand on.
    Note that this only works for properties that have the help in them.
    I think for the pagedef items it doesn't show much info, but try for example standing on JSF objects in your page.

  • I'm trying to add my airport express to my network. The airport utility shows a message that its gathering info about my network then suddenly an unexpected error message appears. Why is that?

    i'm trying to add my airport express to my network. The airport utility shows a message that its gathering info about my network then suddenly an unexpected error message appears. Why is that?

    Until Bob Timmons gets back to you, first decide what you would like the Express to do. I understand you want it for AirPlay remote speakers, which you can certainly do.
    I am assuming that you are not using an Apple AirPort router; if that's not the case stop here and let me know.
    If your existing router is not an Apple AirPort Base Station, the Express:
    can "join" an existing wireless network as a client, for the sole purpose of streaming music. If that's what you want to do, do not connect it to your router with an Ethernet cable.
    can "extend" an existing wired network to serve as an additional wireless access point, which can also stream music. If that's what you want to do, connect its WAN port to an available LAN port on your router using an Ethernet cable.
    Then, "hard reset" the Express according to the instructions below, and configure it. The prompts should be self-explanatory. If you run into trouble, describe which of the above two configurations you decided upon, and the point at which you're getting the "unexpected problem".
    To "hard reset" an AirPort Base Station: make sure it's powered up, then gently press and hold its tiny reset button. Don't apply any more force than required to feel a tactile click.  Keep it depressed for five to ten seconds, long enough for its LED to flash amber rapidly. Release the reset button. Then, the LED will glow amber steadily for about a minute. Then, it will flash amber, slowly, about once every second or two, waiting for you to configure it with AirPort Utility.

  • Trace file doesn't show any info about error

    Dear all,
    DB : 10.2.0.4
    Solaris 5.10
    We have a background program to do some activities in the Database.
    Today ,when running the program we got the below error :
    1) 20221: errexit, ORA-00001: unique constraint (MEDS.MED_USER_EQUS_HIST_PK) violated.
    I ran a trace of this session and the trace file doesnt have any info about the error..ran trace using the below command :
    exec sys.DBMS_SUPPORT.START_TRACE_IN_SESSION(2166,30629, false,TRUE);
    why is that the trace file doesn't have any info about the error.
    2) I disable the constraint disable novalidate.
    even then I got the same error .. why is the constraint getting validate even if I disable the constraint ?
    Please guide
    Kai

    As usual this question has documented answers, and you are asking this question, because you consistently refuse to read any documentation. So in your case the answer could have been 'Yes, there is. See the docs'.
    You could actually say you are in gross violation of the forums etiquette post, and are abusing this forum.
    If you would have read the docs, you wouldn't have used dbms_support (which was never supported for end-users), but you would have looked at
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_monitor.htm#i1003679
    and what do you see?
    The life of a DBA can be so easy when he makes an attempt to find information himself!
    He doesn't have to wait until some kind soul answers doc question 779!
    Sybrand Bakker
    Senior Oracle DBA

  • Error handling: Customizing error details: Info about the the path to the VI which has thrown the error

    Hi,
    I need a quick advice about how to display in the error cluster the information about the path and VI which has thrown an error.
    When I don't prepare my own error message, and the error is captured automatically, the information about the path, Vi name and calling VIs is presented automatically.
    When I prepare/define my own basic error cluster I have only what I define in the string part of the cluster. 
    How to cause tha apperance the path and VI name in my defined error message?

    MimiKLM wrote:
    You mean this link
    That's helpful too but,  I had read "When I prepare/define my own basic error cluster I have only what I define in the string part of the cluster" as you wanted to use a file to expose those custom error codes and ultimately ship them with your solution dynamically rather than statically
    The error ring will pick up any custom errors you define in the error file(s).  Including formatting!  this then populates the explain errors and error dialogs just like any error definition that ships with any LabVIEW component or toolkit.
    Certainly, an error ring can also STATICALLY define or re-define an error within the application instance the ring is called from.  Those Error Rings are quite flexible!
    Jeff

  • Loading Error for an Master Data Info Object!!

    Hi all
      I am getting this error for set od records...But actually ...there is no data in that...How it reflects as duplicate records...Pls tell me wht is the solution for this??U can chk the attachment as well as there is no data for the column PE FULL NAME.....   which is the error stack in DTP..
    But  I can see the data in PSA for the particular data packet & record numbers...
    Pls help with regard to the issue.                                                                               
    Error Information:                                                                         
    Diagnosis                                                                               
    There are duplicates of the data record 2 & with the key                
        '000000000000000000000000000001E &' for characteristic ZPENAME &.                                                                               
    System Response                                                                               
    Procedure                                                                               
    If this message appears during a data load, maintain the attribute in   
        the PSA maintenance screens. If this message appears in the master data 
        maintenance screens, leave the transaction and call it again. This      
        allows you to maintain your master data.

    <i>1).If source field length is more than target field length..Is it wrong if we do mapping like this?????</i>
    Yes it is wrong, its okay the otherwise though.
    <i>2)Do u have any idea of long text which exceeds 60???I saw the blog of eugene ,but not sure how far it works..Can u guide me with regard to it as my datasource is created by function module..</i>
    I never dealt with it...sry !!

Maybe you are looking for

  • Taskeng.exe and computer shutting down

    Over the past few weeks, when i unplug my laptop, after a few minutes it will turn off. But if when i turn it on and it was not plugged in, it does not turn ff so it not a battery problem. However, after i turn it back on, the black box and taskeng.e

  • Multiple headers not uploaded in ws_delivery_update_2

    Hi, I have uploaded the picking quantity through Bapi using  FM-ws_delivery_update_2.I can upload for single header with multiple line items but i cant able to upload for multiple headers in this FM.Pls suggest. Thanks, Bala Moderator message : Cross

  • Table Misfitting

    Hello, I've been working on an InDesign document which contains a few tables. One of those tables comes from an MS Word document and consists of 5 columns and about 100 rows. If you look at the content of most of the cells you will see that the text

  • VAT notification against 'C' forms w.e.f. 02.04.2010

    Hi, As per VAT notification issued by Haryana  Govt. the Surcharge has been levied  on sales  @ 5% made in the state and outside the state i.e. on Vat and CST except on the sales made against 'C' forms w.e.f. 02.04.2010. In that case SAP provides any

  • Starting at Current Line Checkbox to be make it default by space

    Hi, If you are press (Ctrl+F) in the output . We can see the checkbox "Starting at Current Lane" . I need this make it as default unchecked. Any info?. a®