I have to supress one field named PAYMENT GURANTEE PROCEDURE

hi,
i am trying to supress the field called payment gurantee procedure in CMR through OBD2.
but
unfortunately i am not able to find the field in customer master data in OBD2 in the relevant accoutn group.
help me on this..
regards,
balajit

Hi,
Go to OBD2 tcode and then double click on the Sales Data that is present under the Field Status Section.
Now, under the select Grouop section double click the Billing option.
Then you see the field "Hedging and credit contr. area", in that select the option Supress.
Note to ensure double click the field "Hedging and credit contr. area", you will find the Payment Guarantee Procedure field.
Regards

Similar Messages

  • I am designing ABAP query in SQ01 i have not get one field MATNR

    Dear All,
    I am designing ABAP query in SQ01for MEK2 for Report.
    I  have not get one field MATNR
    I have two table konp and konh i have design in SQ1 i am not get field regarding this table .
    Please Help me.
    Thanks in Advance.
    Regards
    Kumar

    Dear Clemens
    I want MATNR FIELD related to these table.
    I am using KONP AND KONH TABLE .
    Regards
    Kumar

  • Adding one field in selection-screen in rfitemar

    hi experts
    1)  I am converting the rfitemar to z or y program after that i have to add one field   wbs element(projk) in selection screen.
    2) The WBS Element values should be displayed in the output report ie one column which contain wbs element values .
    Plz help me as soon as possible

    Hi,
       In this report,
    1. find out the final table for display.
    2. add ur custom fields in that table using appending structure.
    3. find out correct enchance spot or BADI,...etc...before diaply(befor calling FM REUSE_GRID_DISPLAY or method  SET_TABLE_for_display or..etc).
    4. in that enchance spot or badi u can write ur logic.
    Regards,
    Ramesh.

  • Addition of one field in cube!

    Hi,
    i have to add one field in cube.
    scenario is----
    i have one report which would give the information about the developer activities over a period of time. in this report we can see the information like which developer has worked on which requests and how much time he has worked on and so on.
    now this report does not have any closing date for a request. it has the status of a request against the developer .my requirement now is to get that additinal field which would calculates the closing date of request.
    if request status is closed then the last checked date for that request would be the closing date of request.
    my question is
    can i directly create a characteristic date field and add in infocube, the values for which would be coming from the update routine? (i think it is not neccessary that this field should be present in transfer rules also )
    if yes, can some one help me in the logic of update routine?
    Thanks,
    Ravi

    Yes, you can (but you will not have this additional field filled for all the records already contained in your cube...)
    Create (and then add in your cube) a date KF, then put in the update rule for it:
    IF data_package-requeststatus = 'closed'.
    RESULT = data_package-lastcheckeddate.
    ENDIF.
    I don't know if you already have on the same record this "last checked date" or if you have to apply some logic (in this case, do you have an ODS before the cube ?)
    Hope it helps!
    Bye,
    Roberto

  • How i can restrict one field up to 3 MB in size

    Hi   Friends-
    Basically i have to restrict one field to  3 mb  size .
    Detail of my req :
    In tcode  SE19  if you give classic badi impl  name as  HRRCF_DOC_UPLOAD     and  display  you will find a class   CL_IM_HRRCF_DOC_UPLOAD   just double click and then  select  the second method  CHECK_ATTACH_FILE_SIZE  and up side click on parameters  here one parameter is there called  CONTENT    type is  string   and  i have to ristrict it to  3 MB  how  i can do it ? 
    Pls  guide me for the same .
    Regards
    Meeta

    You can purchase an upgrade, but the only options available as a qualifying previous product are CS5 and CS5 Extended and Acrobat X Suite.  It isn't entirely clear if CS5 also includes CS5.1 or not, so I'd suggest using the Chat Now button over at the side to clarify.
    To get to this listing, you can go to www.adobe.com then click Search and type in Photoshop CS6 then click the Buy button next to Photoshop CS6 in the results Creative Suite 6 then edit your cart to make it an upgrade:
    You can also choose the Extended version of PS CS6 which is more money and can additionally do things with video and sequences of images and maybe 3D, although I'm not exactly sure at this point since I already have PS-CS6 Extended as part of my CC Photography Plan PS-CC+LR for $10/month.

  • Problem with creating an dynamic internal table with only one field.

    Hi,
    i create an internal table like this:
    FIELD-SYMBOLS: <GT_ITAB>      TYPE TABLE,
                   <GS_ITAB>,
                   <FS>.
    DATA: GT_DATA TYPE REF TO DATA.
    DATA: GS_DATA TYPE REF TO DATA.
    DATA: TABNAME   LIKE DD03L-TABNAME.
    DATA: FIELDNAME LIKE DD03L-FIELDNAME.
    DATA: TBFDNAM   TYPE TBFDNAM VALUE 'LFA1-NAME1'.
    SPLIT TBFDNAM AT '-' INTO TABNAME FIELDNAME.
    CREATE DATA GT_DATA TYPE TABLE OF (TABNAME).
    ASSIGN GT_DATA->* TO <GT_ITAB>.
    CREATE DATA GS_DATA  LIKE LINE OF <GT_ITAB>.
    ASSIGN GS_DATA->* TO <GS_ITAB>.
    SELECT * FROM (TABNAME) INTO CORRESPONDING FIELDS OF TABLE <GT_ITAB>.
      BREAK-POINT.
    it works OK.
    Now i want to create an internal table not like LFA1 but with LFA1-NAME1 Field TBFDNAM.
    It's not only LFA1-NAME1 it shell be the value of TBFDNAM.
    When i change
    CREATE DATA GT_DATA TYPE TABLE OF (TABNAME).
    to
    CREATE DATA GT_DATA TYPE TABLE OF ( TBFDNAM).
    i get an shortdump.
    Any idea?
    Regards, Dieter

    Hi Dieter,
    Your approach is ok, but it will create dynamic table without a structure of NAME1. Only the line type will be suitable (but field name will not exists -> hence the error in the select statement).
    In this case you need to create a dynamic table which structure consists of one field named NAME1.
    This code is the appropriate one:
    " your definitions
    DATA: tabname LIKE dd03l-tabname.
    DATA: fieldname LIKE dd03l-fieldname.
    DATA: tbfdnam TYPE tbfdnam VALUE 'LFA1-NAME1'.
    FIELD-SYMBOLS <gt_itab> TYPE table.
    "new ones
    DATA: it_fcat TYPE lvc_t_fcat WITH HEADER LINE.
    DATA: gt_itab TYPE REF TO data.
    " get table and fieldname
    SPLIT tbfdnam AT '-' INTO tabname fieldname.
    " create dynamic table with structure NAME1 (only one field)
    it_fcat-fieldname = fieldname.
    it_fcat-tabname = tabname.
    APPEND it_fcat.
    CALL METHOD cl_alv_table_create=>create_dynamic_table
      EXPORTING
        it_fieldcatalog           = it_fcat[]
      IMPORTING
        ep_table                  = gt_itab
      EXCEPTIONS
        generate_subpool_dir_full = 1
        OTHERS                    = 2.
    CHECK sy-subrc = 0.
    " dereference table
    ASSIGN gt_itab->* TO <gt_itab>.
    " insert data only to NAME1 field
    SELECT * FROM (tabname) INTO CORRESPONDING FIELDS OF TABLE <gt_itab>.
    I checked, this works fine:)
    Regards
    Marcin

  • Customer payment guarantee procedure

    Hi,
    How can I assign the amount of the "Customer payment guarantee procedure", because I set the type of the payment guarantee of the master data (XD02) but I cannot find the way to assign the amount.
    Should I create a FI document? How can FI/SD document be related?
    Thanks,
    Cecilia

    hi
    in XD02 you cannot find the payment amount to enter but you can find an payment gurantee procedure how and where and when the customer will pay your money for the goods.
    sorry for sending:
    http://help.sap.com/saphelp_47x200/helpdata/en/93/744a0a546011d1a7020000e829fd11/frameset.htm
    balajia

  • Is there a way that you can have two different text fields (email, phone) that one at least one of them must be completed before submitting the form? Can it be done using javascript in the validation tab? if so, how?

    Is there a way that you can have two different text fields (email, phone) that one at least one of them must be completed before submitting the form? Can it be done using javascript in the validation tab? if so, how?

    Here is one solution:
    // mouse up action for submit button;
    function GetField(cName) {
    // get field object for cName field with error checking;
    var oField = this.getField(cName);
    if(oField == null) app.alert("Error accessing field named " + cName + "\nPleae verigy field name, spelling and capitalizeation.", 1, 0);
    return oField;
    } // end GetField function;
    var oPhone = GetField("phone");
    oPhone.required = oPhone.value == oPhone.defaultValue;
    var oEmail = GetField("email");
    oEmail.required = oEmail.value == oEmail.defaultValue;
    if(oPhone.required && oEmail.required) {
    app.alert("Missing required fields.", 1, 0);
    } else {
    app.alert("Submitting form", 3, 0);
    // additional code for submission;

  • Grouping on fields that have more than one value entered.  Please need help fast!!!

    Post Author: DennisC
    CA Forum: General
    I am creating a report that is to be grouped on a particular field that can have more than one entry.  My user said they did not care how I did it but to only count the record one time.  The field that is selected is a dropdown on an form that is in Alpha order.  So the entries always appear in the the field in alpha order.  This is for use as an example:  Record 1 has a value of CAT in the field,  Record 2 has a value of CAT, DOG in the field and Record 3 has a value of CAT, DOG, HORSE in the field.  I get 3 separate groupings for the 3 records.
    Group = CAT                      
          Then the detail information appears here
    Group = CAT, DOG
          Then the detail information appears here
    Group = CAT,DOG,HORSE
          Then the detail information appears here
    What is would like to see using this example is one group for CAT with all 3 records appearing under it and ignore the other two.  This way there would all be getting counted but the report would look a little more streamlined.
    Group = CAT
          record 1 detail information
          record 2 detail information
          record 3 detail information
    thanks in advanced for any help!!!!

    Post Author: shawks
    CA Forum: General
    I am trying resolve the same/similar issue in Crystal Reports 10.  For example, on a table there is a column called X with values Xsub1, Xsub2, Xsub3, etc.  The user can select a parameter that includes Xsub2 and Xsub4.  If this is selected 2 reports are generated (one for Xsub2 and Xsub4).  What we really want is one report with the combined information for Xsub2 and Xsub4.  How is (or is it) possible to do this in Crystal Reports 10?  FYI - When the report was initially created the main body of the report was placed in the Group Footer so if the Group Footer is suppressed the content of the report is suppressed, too.
    Thanks

  • Query SQL code gets deleted after export to Excel. "Query must have at least one destination field"

    Hi all,
    I'm getting really frustrated by this Access error. It happens when I export the result of a query through an Access macro to Excel, the first time it runs well but the next time, there is a chance that the query won't run and the error "Query
    must have at least one destination field" will be displayed. After that, I try to check the query SQL code and discover the code has vanished. I'm using simple Select query without joins, only "where", "group by" and "order by"
    statements.
    Thank you in advance for your help,
    Jesus 
    Edit:
    One of these queries are like the following (all of them are of this type):
    SELECT Field1, field2, field3, field4, field5, Sum(Field6) AS SumOfField6, Sum(Field7) AS SumOfField7
    FROM Table1
    WHERE Field6 is not null
    GROUP BY Field1, field2, field3, field4, field5
    Order By Sum(Field6) desc

    Hi Peter, 
    Thank you for your response, I updated the original question with one of the codes.
    Thanks,
    Jesus

  • How to create an array in one field and have another field display certain elements from that array?

    I am making a form in Acrobat XI pro.
    In one text field, I created an array of several elements. I want other text fields to display certain elements from that array. For instance, one field should display the 3rd element, another field should display the 13th element, etc.
    The Javascript for making the array is very long, and so I don't want to have to re-calculate the array every single time (in order to reduce rendering time when I open the form on an iPad). This is why I'd like to only have to create the array once, and simply refer to it throughout the form.

    What code are you using to update the array currently? Are you completely rebuiding it when an element changes, or just changing specific elements for certain fields? I'm still not sure what exactly you are trying to do, but something like this in a document level script will create your array:
    var myArray;
    // Call 'updateArray' to initialize array
    updateArray();
    function updateArray() {
         // Code here to create/update array
         myArray = new Array();
         myArray[0] = "Value 1";
         myArray[1] = "Value 2";
         myArray[2] = "Value 3";
    Then, for each field that needs to update this array, you can add a call to 'updateArray()' in the appropriate event. This will rebuild the array completely; if you just want to update specific elements, then you can access them directly.

  • I have made one field as drop down in web ui. there are 3 values in drop down suppose a, b , c.

    i have made one field as drop down in web ui. there are 3 values in drop down suppose a, b , c.
    now i want to make c value as default value in drop down what to do?

    Hello Bala,
    you can find number of discussions regarding this on SCN.
    Search and do code in DO_INIT_CONTEXT method of view to set the value in entity.
    lr_entity ?= me->typed_context->context_node_name->collection_wrapper->get_current( ).
          lr_entity->set_property( iv_attr_name = 'Attribute_name' iv_value = 'value' ).
    Regards Harish Kumar

  • HT4262 I have two networks one each in two cities.  Both are named the same but require different passwords. I am at my second location but cannot connect to his wifi network. How do I delet one network so I can connect to my second network?

    I have two networks one each in two cities.  Both are named the same but require different passwords. I am at my second location and cannot connect to this wifi network. How do I delet one network so I can connect to my second network?

    Just go to the wireless network preferences and empty out all the stored wireless networks.. then scan and connect to the local wireless.
    Select them and tap the - button below it.
    Once they are emptied out.. it might be good to reboot the computer with the remember networks unchecked.
    Start with a clean slate.

  • Hello. I have iPad, new one, unpacked. but unfortunately I lost my check Can I exchange my iPad for a new one with retina display with extra payment?

    Hello. I have iPad, new one, unpacked.
    but unfortunately I lost my check
    Can I exchange my iPad for another one with retina display with extra payment?

    Did you purchase it at an Apple Store?  If so, then you should be able ot have them look up the receipt in their system.  If you purchased it at another store, check their policies.  IIRC, Best Buy allows you to exchange items without a reciept, but they won't refund without one.  Other stores may have other policies.

  • I have date type list field in sharepoint list and i have created one form in sharepoint webpage.

    Hi All,
    i have date type list field in sharepoint list and i have created one form in sharepoint webpage.
    Now i want to save that field from shareepoint webpage, its declared "t1.text" but its showing error.
    How can i save this field?

    Hi AnilKarthink, 
    I wrote a Technet Wiki article on saving data to the various SharePoint fields. You can view it here: http://social.technet.microsoft.com/wiki/contents/articles/21801.sharepoint-a-complete-guide-to-getting-and-setting-fields-using-c.aspx
    Regards, Matthew
    MCPD | MCITP
    My Blog
    View
    Matthew Yarlett's profile
    See my webpart on the TechNet Gallery that allows administrative users to upload, crop and format user profile photos. Check it out here:
    Upload and Crop User Profile Photos

Maybe you are looking for

  • How to upload HR Photo in BACKGROUND from Server

    Hi Friends, I can upload employee photo file located on my PC in dialog mode using tcode OAAD. I can also upload employee photo file located on my PC in background using a batch-input program. But is there a possibility to upload a employee photo fil

  • File download for OrdAudio type

    Hello I would like to ask why my filedownload link is not displayed. I am using type OrdAudio for Audio files. Do I have to use OrdDoc for this. Is this the reason for JHS not showing the download link Esma

  • I'm trying to find the download link for the Adobe XI Santdard

    I have bought from a reseler and I got de letter with the ID en Licence Number, but I need to downoad the program, I need help

  • Storage location list during Confirmation

    Hi! I discovered during confirmation of the goods in SRM (SRM 4, extended classic) that when I choose to list the storage location for selection, although only the relevant storage locations are listed, there are gaps in between the storage locations

  • Bootcamp 2.1 update fails

    Dear sirs, i have a Macbook PRO + Win VISTA business (Macosx 10.5.3, all software at last update level), bootcamp 2.0 installed, and when i try to install bootcamp 2.1 (via apple software updater or manually) e retreive this error message: error appl