Add a new field to an existing Condition table
How can I add a new field to an existing condition table?
I have table 971 and I want to add INCOTERMS (INCO1) to this existing table but do not see how to add it.
Thanks
Hi Vicky,
I dont think you can add new fields to the condition table once you have activated the condition table.
SAP says you can only make limited changes to the condition table, like changing the description, fast entry screen, header and footer fields, but not able to add new fields to the table, and I think that is the correct approch or else for the same table you will have two sets of condition records.
Please refer to the below link:
http://help.sap.com/saphelp_erp60_sp/helpdata/en/de/7a8534c960a134e10000009b38f83b/frameset.htm
What you can do is create a new condition table with additional field and assign this table before the currently used table in the access sequence.
Hope this helps.
Regards
Raj
Similar Messages
-
Adding new field in an existing condition table
Dear friends,
I have an existing condition table for material exclusion with the combination of Plant and material.
Is it possible to change this table and add a field of division also?
Regards,
RonnieHi,
The optimzed solution is to better create a new sequence of fields including the division, so that a new condition table is created based on the key combination or access sequence.
You can add a new field to an existing condition table using APPEND structure facility in Se11. But once on activating the table, how will this division field get populated in the table.
But whereas if you create a new key combination, the data for this condition tables will automatically gets filled up while creating master data thro VK11.
So, its better to go for a new access sequence combination
as a new table is created for this key combinations.
Regards,
JLN -
How to add a new field to an existing Generic Search result list?
Good day,
I'm new to the concepts of the Generic Search Framework. I'm attempting to add a new field to an existing result list, and have that new field restricted to a value of "C". This new field will not be displayed, it is only used to ensure that Invoice Documents with a DocStatus of "C" are returned to the B2B Application.
From the *modification\generic-searchbackend-config.xml file, the existing
<h4><property-group name="billing_resultlist_B2B_R3">
<property name="BILLINGDOC" columnTitle="sbt.sbs.genericsearch.billing.invoice.title" parameterType="rowkey" hyperlink="b2b/documentstatusdetailprepare.do" linkParamClass="com.sap.isa.ui.uiclass.genericsearch.GenericSearchUIDynamicContent" linkParamMethod="buildAttributesForBillingDocumentDetails" linkTargetFrameName="form_input" />
<property name="BILL_DATE" type="date" columnTitle="status.sales.date" writeUnderProperty="BILLINGDOC" defaultSortSequence="DESCENDING" />
<property name="NET_VALUE" type="number" columnTitle="status.billing.detail.netvalue" fieldOutputHandlerClass="com.sap.isa.ui.uiclass.genericsearch.GenericSearchUIDynamicContent" fieldOutputHandlerMethod="buildBillingNetValue" cssClassName="amount" />
<property name="CURRENCY" type="hidden" />
<property name="PAYER" columnTitle="gs.hd.gl.partner" linkParamClass="com.sap.isa.ui.uiclass.genericsearch.GenericSearchUIDynamicContent" linkParamMethod="buildShowPartnerLinkSales" />
<property name="PAYERS_GUID" type="hidden" />
<property name="SD_DOC_CAT" type="hidden" />
<property name="OBJECTS_ORIGIN" type="hidden" />
</property-group>
</h4>
I'm trying to better understand how the R/3 tables and columns are specified in the Generic Search Framework. I know that the R/3 table and field is: VBRK.RFBSK, but in the configuration XML files, I never see this exact information specified. How it is specified to be a part of the result set?
After reading the section in the Development and Extension Guide, I also learned about the "allowedValue" definition, and I believe that I will use that to specify the "C" value for the Invoice Document Status field.
I would greatly appreciate any help.
Thanks,
_kevinHi Kevin,
this means you are working in this section of the generic-searchbackend-config.xml
<property-group name="SearchCriteria_B2B_Billing"
useSearchRequestMemory="true">
Below this property
<property name="IRT_BDH_BILL_TYPE"
type="box"
entityType="BEART_BILL_TYPE"
tokenType="EXP"
requestParameterName="rc_documenttypes"
label="gs.att.lbl.doc.type"
UIJScriptOnChange="GSloadNewPageR3(this);">
<allowedValue value="ORDER" description="b2b.status.shuffler.key1val2"/>
<allowedValue value="QUOTATION" description="b2b.status.shuffler.key1val1" />
<allowedValue value="INQUIRY" description="b2b.status.shuffler.key1val11" />
<allowedValue value="ORDERTMP" description="b2b.status.shuffler.key1val3" />
<allowedValue value="CONTRACT" description="b2b.status.shuffler.key1val4" />
<allowedValue value="INVOICE" description="b2b.status.shuffler.key1val5" default="true"/>
<allowedValue value="CREDITMEMO" description="b2b.status.shuffler.key1val6" />
<allowedValue value="DOWNPAYMENT" description="b2b.status.shuffler.key1val7" />
<allowedValue value="AUCTION" description="b2b.status.shuffler.key1val9" />
</property>
please try adding this new property
<property name="DOCUMENT_STATUS(1)"
entityType="CL_CRM_REPORT_SET_STATUS"
tokenType="RAN"
type="hidden"
requestParameterName="rc_status_head1" value="C" />
This should do the trick. Unfortunately, I don't have a E-Commerce scenario with an ERP backend for testing purposes available to you have to test it yourself. Keep me updated with the test results !
Philipp Koock
SAP CRM Web Channel Consultant
http://www.koock.net -
How to add one more field to an exist internal table
hi abapers
i am a very new abap programmer and just started learning it.
i want to know How to add one more field to an exist internal table.
lemme me put my question in a very simple way.
i have a internal table having fields f1,f2,f3 and which also that internal also contains some data.
now i want to add two more fields (mm & nn) to that internal table now.
how can i do that.
and i wanna know the websites names where i can find some brain teasing questions in abap programming.
eagerly waiting for ur reply
regards,
Maqsood A KhanHi, MAQSOOD.
You can insert more fields in your internal table like this.
refer this code snippet.
DATA : BEGIN OF tbl_itab OCCURS 0.
INCLUDE STRUCTURE zsdtc009.
DATA : vkorg LIKE vbak-vkorg, "inserted one
vtweg LIKE vbak-vtweg, "inserted one
vkbur LIKE vbak-vkbur, "inserted one
vkgrp LIKE vbak-vkgrp, "inserted one
END OF tbl_itab.
you can also read the book "Teach yourself abap in 21 days"
at http://cma.zdnet.com/book/abap/
but that book is just about basic concept of abap and report program.
it doesn't give a lecture for on-line program.
you can get pdf version books(about abap, sap...things) from sap.
http://help.sap.com/printdocu/core/Print46c/en/Data/htm/english.htm
I wish I could help you.
Regards
Kyung Woo. -
Add 2 new fields to an existing ABAP query in a particular position
Hello,
I have added 2 new fields to an existing ABAP query. These have been successfully added and the query is also executing.
But these 2 new fields are displaying at last. I need to add these fields in a particular column position.
Also I need to change the heading of these 2 new fields.
I tried to do so from the basic list, layout design from SQ01.
But I could not.... whatever I do.. the 2 new fields are displayed at the end of the list...
Please help meHi Andreas,
Do you mean that I should create a complete new abap query?
Is there no way to add some new fields at a particular position to an existing abap query? -
How to modify (add a new field) existing SOAP data source ?
Dear Friends,
I am getting data from Legacy databases (from different Views) mapped to the BW through XI.
There is an existing SOAP Data source which is mapped to the non-R/3 source system Views through XI.
My question is:
Now I wanted to add a new field to the existing SOAP Data source, which will be mapped to the newly added field in the source system by XI.
Please advice how could I modify the existing SOAP data source?
Thanks,
VenkatMy plan is to add the new InfoObject(field)/BIC/ZXXX in the Datasource --> Map that field to the Info Object Zxxx in Comm Str. --> Extras (menu) --> Create BW Data source with SOAP connection --> Regenerate the PROXY --> so that now the XI guys could map the new Infoobject in my Datasource to the new field in the Legacy database tables
But why is that I am not able to add a new field in the Datasource ? I am trying this way: RSA1 --> Infosource tab --> Dbl. click on the existing Datasource --> here...I am trying to add new field in the Datasource...
is there any other special place where I could add a new field to the existing SOAP Datasource ?
Please help..? -
Add a new field(from transparent table) to the infoset
Hi,
I need to add a new field to the existing infoset in HR. I found that field exist in the CSKS table. in the infoset they are using PNP logical database. As per my understaning i have to link the CSKS-KOSTL with P0001-KOSTL.
Could you tell me how to do this?
Please do the needful.
Thanks & Regards,
Krishna.Hi,
I have added that KOSAR in the additional fields and i added the code for that like
clear kosar.
select single kosar
into kosar
from csks
where kokrs = p0001-kokrs
and kostl = p0001-kostl.
Is it will work now? One more help how to add this change to the transport?
Please do the needful.
Thanks & Regards,
Krishna. -
Adding a boolean field to an existing sbo table
hi everybody
i want to add a boolean field to an existing sbo table.
when i try to do it from the tools ... manage user fields
i get only types like numeric string..
i dont get the booelan type
does anybody know how can i do that thanks.
for now i used the numeric type and the values 0 and 1Hi,
you can do it in the following way:
checkBox = ((SAPbouiCOM.CheckBox)(item.Specific));
checkBox.Caption = this.caption;
<b>checkBox.DataBind.SetBound(true, tableName, alias);</b>
checkBox.ValOn = "1";
checkBox.ValOff = "0";
Andrey -
Add a new field to existing Table
Hi , We want to add a new field to existing table from ECC and populate historical data .
We have already extracted data from ECC to VBAK Table . We have to add a new field - Incoterms in HANA . This field exists in ECC .
Please guide.Hi Vicky,
I dont think you can add new fields to the condition table once you have activated the condition table.
SAP says you can only make limited changes to the condition table, like changing the description, fast entry screen, header and footer fields, but not able to add new fields to the table, and I think that is the correct approch or else for the same table you will have two sets of condition records.
Please refer to the below link:
http://help.sap.com/saphelp_erp60_sp/helpdata/en/de/7a8534c960a134e10000009b38f83b/frameset.htm
What you can do is create a new condition table with additional field and assign this table before the currently used table in the access sequence.
Hope this helps.
Regards
Raj -
Add new field to the existing custom segment
Hi Experts,
We have a custom segment. In the last month (that time our release is 7.0) I have added a additional field (ERNAM-Created By) to this custom segment.
Couple of days back, we upgraded to 7.1 release.
Now, functional analyst is saying to change the description from 'Created By' to "Batch_Usrer".....so, I created a custom data element and assigned this Batch_Usrer as label.
Now, I went to WE31, entered my_custom_segment and selected ADD VERSION button and then trying to change the assigned data eleement from ERNAM to ZZERNAM for that custom field....but, system is not allowing me to do so!! I tried PENCIL button, Delete Row button, Insert Row button, Menu options, I tried to CANCEL RELEASE the previous version
Pls. let me know How can I get it?
Thank youYou can only change the Released version by cancelling the release in system with same Release. I.e. if your segment definition has field1 which was created and released when system release was 700, than you CAN"T change that field in any higher release. Since you are now in 701, you can't change any existing fields which were created as part of 700. I guess the only option is too add a new field.
Regards,
Naimesh Patel -
IDOC - add new field in in existing segment definition
Hi,
For segement type say Z1MARA1 if we need to add a new field in segement definition say Z2MARA1 SAP is not allowing to add new field if we tried to cancelled the realsed 30E it not allowing since the SAP realease which we are working is 640 so only we can create new segement defination with version Z2MARA1001 with new field added but issues is that the partner Profile for outbound parameters the Segment release in IDOc Type is 31I so if we change this segment release in IDOC type to new version ie., 640 then it will pick all the new segement associated with it due to which the the format in which we pass the segements to third party will change so is there any way to use the existing segment definition which is release 30E & add addition field to it. Only one way I found is that when i try to cancel the released message is trigger so in the debug if I make it success it allows to add new field in existing segment definition but which is wrong way of doing is there any way we can used same segment definition & add new field without adding new version & new released.
Thanks in advance.
RajeevVarma,
I know that we can add new segement with new version my question is existing segement definition can we add a new filed because in partner profile we specified release 31i so even we create new segement type then version will be 640 so it will not pick the latest version.
Thanks
Rajeev -
How to add a new data element for existing table filed(Primary key field)
Hi Experts,
How to add a new data element for existing table field(Primary key field)
For this filed ther is no foreign key relation ships and even check table.
while activating table it is giving message like below.
can you help any one to solve this and wil steps to add new dataelement for existing primary key filed of a table.
Check table (NAMING SPACE/TABLE NAME(EX:/TC/VENDOR)) (username/19.02.10/03:29)
Primary key change not permitted for value table /TC/VENDOR
Check on table /TC/VENDOR resulted in errors
Thanks
RaviHi,
Easiest way is to download the table eg into an Excel table (if possible) or text table. Drop the table from the database. Build your table with the new key field. Build the database table again and fill it.
You can do it also over the database into a new table. Drop the old one. Build the enhanced one and fill it. Afterwards drop your (temporary) table.
Maybe there are other ways, but this works.
Success,
Rob -
I am new in DART extract and wanted add the new field in Existing Segement
Hi ALL
I am new in DART extract and client is request us to add the new field in Existing Segment.
What is proceedure i need to follow to add the new field in existing segment.
Moderator: Please, post in proper forumI added an Interactions button and in the Actions on Success I open an URL or file. I have placed the video on our web server. In the URL I point to our web server "http://www.wmabhs.org/Media/Add Client 3rd Party Coverage.mp4". If I run this from any browser it works. So what do you think I have done wrong?
-
How to add a new Field in the Dynamic Selection screen section.
HI,
There is a requirement in which I need to add a field in existing program of dynamic selections.
I need to add a field KNKK-DBRTG (Customer Rating) in dynamic selections screen of some existing report
which has a dynamic selection screen with other fields like customer account, company code etc. Along with this i need to add Customer rating field also in the selection screen.
I have used GET KNKK statement to select this in the Dynamic selection screen. But I need to make it appear
on the screen.
LDB used is the Customer Database.
I have added GET KNKK statement after GET KNA1 statement.
Can any one help me how we can make this rating field appear in the selection screen.
With the GET statement Credit control area Fields can be selected in the selection screen but I have to permanantly add the field in the selection screen.
Regards
Prashant PrabhuHi,
So you need that this new field have data in old records?
1.- If you are in BI 7.0 and the logic or data for that New field are in the same Dimension, you can use a Remodeling to fill it. I mean if you want if you want to load from a Master Data from other InfoObject in the same Dim.
2.- If condition "1" is not yours.
First add the new field, then create a Backup Cube (both cubes with the new field) and make a full update with all information in the original Cube. The new field willl be empty in both cubes.
Create an UR from BackUp_Cube to Original_Cube with all direct mapping and create a logic in the Start Routine of the UR (modiying the data_package) you can look for the data in the DSO that you often use to load.
To do that both cubes have to be Datasources ( right click on Cube-> aditional function-> and I think is "Extract Datasource")
Hope it helps. Regards, Federico -
How to add a new field to the Quote: Shipping and Bill Tab Payment region
Hello All,
We have a requirement to add payment description column to the Payment Region of Shipping and Bill tab in Quoting User(Quote Page).
We have extended the View object HeaderPaymentsVOObj and created a custom view object, then created and ported the substitution.
In Quotes page, 'Shipping and Bills' tab Payments region, we have created a new item(Payment Description), assigned the custom View object instance and attribute to it.
We are able to enter and update the payment details before substitution, but after substitution while entering payment details we are facing the below error.
At most one payment record can exist at quote header/line level.
Help and inputs are highly appreciated.
Thanks in advance.
Regards,
Supriya.Hi,
So you need that this new field have data in old records?
1.- If you are in BI 7.0 and the logic or data for that New field are in the same Dimension, you can use a Remodeling to fill it. I mean if you want if you want to load from a Master Data from other InfoObject in the same Dim.
2.- If condition "1" is not yours.
First add the new field, then create a Backup Cube (both cubes with the new field) and make a full update with all information in the original Cube. The new field willl be empty in both cubes.
Create an UR from BackUp_Cube to Original_Cube with all direct mapping and create a logic in the Start Routine of the UR (modiying the data_package) you can look for the data in the DSO that you often use to load.
To do that both cubes have to be Datasources ( right click on Cube-> aditional function-> and I think is "Extract Datasource")
Hope it helps. Regards, Federico
Maybe you are looking for
-
Hi All, When trying to run a report (that makes inserts to the database )in 6i Reports the following error is faced: REP-1401: 'afterpform': Fatal PL/SQL error occured. ORA-03120 two-task conversion routine:interger overflow But when the same report
-
Header and footer overlap on scrolled pages on certain websites
When scrolling down on certain websites multiple pages appear overlapping on the header and footer, eg Asos
-
Client security password manager has locked computer
Never setup password or forgot it . Now when log on. Client security screen pops up asking for password and locks computer. Can't close it or do anything on computer.
-
I have a number of reports relating to capacity management which work great. I am being asked now to produce a single report for database growth - i.e a graph that shows the growth of all my db's for the month on one line graph. I can produce these p
-
Installing Cintiq with Imac; trapped in dual-screen **** -please help!
Attempting to install a Cintiq 12X on my Imac for the benefit of my artist daughter. There appears to be something wrong with the Cintiq, but that's not my problem. I switched my main screen from the Imac to the Cintiq, just to see if my desktop woul